Skip to content

Commit 979289d

Browse files
author
Mirek Simek
committed
version 0.6.11: added maxHeight, height, maxWidth, width
1 parent d417b56 commit 979289d

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

angular/package-dist.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "django-angular-dynamic-forms",
3-
"version": "0.6.10",
3+
"version": "0.6.11",
44
"license": "MIT",
55
"description": "Django Rest Framework meets Angular 5 material.io dynamic forms - automatic create and edit dialogs",
66
"typings": "./django-angular-dynamic-forms.d.ts",

angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "django-angular-dynamic-forms",
3-
"version": "0.6.10",
3+
"version": "0.6.11",
44
"license": "MIT",
55
"description": "Django Rest Framework meets Angular 5 material.io dynamic forms - rapid development of create and edit dialogs",
66
"typings": "./django-angular-dynamic-forms.d.ts",

angular/src/django-form-dialog.service.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ export class DjangoFormDialogService {
2222
const dialogRef = this.dialog.open(DialogDjangoFormComponent, {
2323
// width: '250px',
2424
maxHeight: '90vh',
25+
height: 'auto',
26+
maxWidth: '90vw',
27+
width: 'auto',
2528
data: {
2629
djangoUrl,
2730
config: extraOptions.config,

demo/angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "django-angular-dynamic-forms-demo",
3-
"version": "0.6.10",
3+
"version": "0.6.11",
44
"license": "MIT",
55
"scripts": {
66
"ng": "ng",

demo/django/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# Versions should comply with PEP440. For a discussion on single-sourcing
2626
# the version across setup.py and the project code, see
2727
# https://packaging.python.org/en/latest/single_source_version.html
28-
version='0.6.10',
28+
version='0.6.11',
2929

3030
description='Angular forms for django rest framework',
3131
long_description=long_description,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# Versions should comply with PEP440. For a discussion on single-sourcing
2626
# the version across setup.py and the project code, see
2727
# https://packaging.python.org/en/latest/single_source_version.html
28-
version='0.6.10',
28+
version='0.6.11',
2929

3030
description='Django Rest Framework meets Angular 5 material.io dynamic forms - rapid development of create and edit dialogs',
3131
long_description=long_description,

0 commit comments

Comments
 (0)