@osovitny/anatoly 2.14.57 → 2.14.58
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/ui/components/base/base.dialog.mjs +13 -13
- package/esm2020/lib/ui/dialogs/contact-us/contact-us.dialog.mjs +3 -3
- package/fesm2015/osovitny-anatoly.mjs +14 -14
- package/fesm2015/osovitny-anatoly.mjs.map +1 -1
- package/fesm2020/osovitny-anatoly.mjs +14 -14
- package/fesm2020/osovitny-anatoly.mjs.map +1 -1
- package/lib/ui/components/base/base.dialog.d.ts +5 -5
- package/package.json +1 -1
|
@@ -3371,35 +3371,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
3371
3371
|
class BaseDialog extends BaseEditComponent {
|
|
3372
3372
|
constructor() {
|
|
3373
3373
|
super();
|
|
3374
|
-
this.
|
|
3374
|
+
this._isOpen = false;
|
|
3375
3375
|
this.closed = new EventEmitter();
|
|
3376
3376
|
}
|
|
3377
|
-
get
|
|
3378
|
-
return this.
|
|
3377
|
+
get isOpen() {
|
|
3378
|
+
return this._isOpen;
|
|
3379
3379
|
}
|
|
3380
|
-
set
|
|
3381
|
-
this.
|
|
3380
|
+
set isOpen(value) {
|
|
3381
|
+
this._isOpen = value;
|
|
3382
3382
|
}
|
|
3383
3383
|
open() {
|
|
3384
|
-
this.
|
|
3384
|
+
this.isOpen = true;
|
|
3385
3385
|
}
|
|
3386
|
-
close(
|
|
3387
|
-
this.
|
|
3388
|
-
this.closed.emit(
|
|
3386
|
+
close(returnValue = null) {
|
|
3387
|
+
this.isOpen = false;
|
|
3388
|
+
this.closed.emit(returnValue);
|
|
3389
3389
|
}
|
|
3390
3390
|
cancel() {
|
|
3391
|
-
this.
|
|
3391
|
+
this.isOpen = false;
|
|
3392
3392
|
this.closed.emit(-1);
|
|
3393
3393
|
}
|
|
3394
3394
|
}
|
|
3395
3395
|
BaseDialog.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: BaseDialog, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3396
|
-
BaseDialog.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.6", type: BaseDialog, selector: "ng-component", inputs: {
|
|
3396
|
+
BaseDialog.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.6", type: BaseDialog, selector: "ng-component", inputs: { isOpen: "isOpen" }, outputs: { closed: "closed" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
3397
3397
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: BaseDialog, decorators: [{
|
|
3398
3398
|
type: Component,
|
|
3399
3399
|
args: [{
|
|
3400
3400
|
template: ''
|
|
3401
3401
|
}]
|
|
3402
|
-
}], ctorParameters: function () { return []; }, propDecorators: {
|
|
3402
|
+
}], ctorParameters: function () { return []; }, propDecorators: { isOpen: [{
|
|
3403
3403
|
type: Input
|
|
3404
3404
|
}], closed: [{
|
|
3405
3405
|
type: Output
|
|
@@ -3758,10 +3758,10 @@ class ContactUsDialog extends BaseDialog {
|
|
|
3758
3758
|
}
|
|
3759
3759
|
}
|
|
3760
3760
|
ContactUsDialog.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: ContactUsDialog, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3761
|
-
ContactUsDialog.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.6", type: ContactUsDialog, selector: "anatoly-contactus-dialog", viewQueries: [{ propertyName: "contactUsForm", first: true, predicate: ["contactusform"], descendants: true }], usesInheritance: true, ngImport: i0, template: "<kendo-dialog (close)='onClose()' *ngIf='
|
|
3761
|
+
ContactUsDialog.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.6", type: ContactUsDialog, selector: "anatoly-contactus-dialog", viewQueries: [{ propertyName: "contactUsForm", first: true, predicate: ["contactusform"], descendants: true }], usesInheritance: true, ngImport: i0, template: "<kendo-dialog (close)='onClose()' *ngIf='isOpen' [width]='800' title='Contact Us' class=\"k-dialog-wrapper\">\r\n <div class=\"k-content k-window-content k-dialog-content\">\r\n <anatoly-forms-contactus-form #contactusform [showActionButtons]='false' (submit)='onSubmit()'>\r\n </anatoly-forms-contactus-form>\r\n </div>\r\n <kendo-dialog-actions class=\"k-dialog-buttongroup k-actions k-actions-stretched\">\r\n <button (click)='onSubmitFire()' class='btn btn-success' type='button'>Submit</button>\r\n <button (click)='onClose()' class='btn btn-danger' type='button'>Cancel</button>\r\n </kendo-dialog-actions>\r\n</kendo-dialog>\r\n", dependencies: [{ kind: "component", type: i1$8.DialogComponent, selector: "kendo-dialog", inputs: ["actions", "actionsLayout", "autoFocusedElement", "title", "width", "minWidth", "maxWidth", "height", "minHeight", "maxHeight", "animation"], outputs: ["action", "close"], exportAs: ["kendoDialog"] }, { kind: "component", type: i1$8.DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "directive", type: i1$5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ContactUsForm, selector: "anatoly-forms-contactus-form", inputs: ["showActionButtons"], outputs: ["submit"] }] });
|
|
3762
3762
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: ContactUsDialog, decorators: [{
|
|
3763
3763
|
type: Component,
|
|
3764
|
-
args: [{ selector: 'anatoly-contactus-dialog', template: "<kendo-dialog (close)='onClose()' *ngIf='
|
|
3764
|
+
args: [{ selector: 'anatoly-contactus-dialog', template: "<kendo-dialog (close)='onClose()' *ngIf='isOpen' [width]='800' title='Contact Us' class=\"k-dialog-wrapper\">\r\n <div class=\"k-content k-window-content k-dialog-content\">\r\n <anatoly-forms-contactus-form #contactusform [showActionButtons]='false' (submit)='onSubmit()'>\r\n </anatoly-forms-contactus-form>\r\n </div>\r\n <kendo-dialog-actions class=\"k-dialog-buttongroup k-actions k-actions-stretched\">\r\n <button (click)='onSubmitFire()' class='btn btn-success' type='button'>Submit</button>\r\n <button (click)='onClose()' class='btn btn-danger' type='button'>Cancel</button>\r\n </kendo-dialog-actions>\r\n</kendo-dialog>\r\n" }]
|
|
3765
3765
|
}], ctorParameters: function () { return []; }, propDecorators: { contactUsForm: [{
|
|
3766
3766
|
type: ViewChild,
|
|
3767
3767
|
args: ['contactusform']
|