@progress-chef/platform-shared-components 0.0.72 → 0.0.73
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.
|
@@ -14,6 +14,8 @@ export class TextareaComponent {
|
|
|
14
14
|
this.themesService = themesService;
|
|
15
15
|
this.placeholder = 'Enter here';
|
|
16
16
|
this.resizable = 'vertical';
|
|
17
|
+
this.readonly = false;
|
|
18
|
+
this.disabled = false;
|
|
17
19
|
this.value = '';
|
|
18
20
|
this.control = new FormControl();
|
|
19
21
|
this.inputChange = new EventEmitter();
|
|
@@ -30,11 +32,11 @@ export class TextareaComponent {
|
|
|
30
32
|
this.emitOnFocus.emit();
|
|
31
33
|
}
|
|
32
34
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextareaComponent, deps: [{ token: i1.ThemesService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
33
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: TextareaComponent, selector: "lib-text-area", inputs: { placeholder: "placeholder", resizable: "resizable", rows: "rows", cols: "cols", width: "width", value: "value", control: "control", focus: "focus" }, outputs: { inputChange: "inputChange", emitOnBlur: "emitOnBlur", emitOnFocus: "emitOnFocus" }, viewQueries: [{ propertyName: "textarea", first: true, predicate: ["textarea"], descendants: true }], ngImport: i0, template: "<kendo-textarea\n #textarea\n [placeholder]=\"placeholder\"\n [resizable]=\"resizable\"\n [rows]=\"rows\"\n [cols]=\"cols\"\n [style.width.px]=\"width\"\n [(ngModel)]=\"value\"\n [formControl]=\"control\"\n (ngModelChange)=\"emitValueChange($event)\"\n (blur)=\"onBlur()\"\n (focus)=\"onFocus()\"\n>\n</kendo-textarea>\n", styles: [".random-css-to-not-keep-this-file-empty{display:none}\n"], dependencies: [{ kind: "component", type: i2.TextAreaComponent, selector: "kendo-textarea", inputs: ["focusableId", "flow", "rows", "cols", "maxlength", "tabindex", "tabIndex", "resizable", "size", "rounded", "fillMode"], outputs: ["focus", "blur", "valueChange"], exportAs: ["kendoTextArea"] }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); }
|
|
35
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: TextareaComponent, selector: "lib-text-area", inputs: { placeholder: "placeholder", resizable: "resizable", readonly: "readonly", disabled: "disabled", rows: "rows", cols: "cols", width: "width", value: "value", control: "control", focus: "focus" }, outputs: { inputChange: "inputChange", emitOnBlur: "emitOnBlur", emitOnFocus: "emitOnFocus" }, viewQueries: [{ propertyName: "textarea", first: true, predicate: ["textarea"], descendants: true }], ngImport: i0, template: "<kendo-textarea\n #textarea\n [placeholder]=\"placeholder\"\n [resizable]=\"resizable\"\n [rows]=\"rows\"\n [cols]=\"cols\"\n [style.width.px]=\"width\"\n [(ngModel)]=\"value\"\n [formControl]=\"control\"\n (ngModelChange)=\"emitValueChange($event)\"\n (blur)=\"onBlur()\"\n (focus)=\"onFocus()\"\n [readonly]=\"readonly\"\n [disabled]=\"disabled\"\n>\n</kendo-textarea>\n", styles: [".random-css-to-not-keep-this-file-empty{display:none}::ng-deep kendo-textarea.k-disabled{pointer-events:auto}\n"], dependencies: [{ kind: "component", type: i2.TextAreaComponent, selector: "kendo-textarea", inputs: ["focusableId", "flow", "rows", "cols", "maxlength", "tabindex", "tabIndex", "resizable", "size", "rounded", "fillMode"], outputs: ["focus", "blur", "valueChange"], exportAs: ["kendoTextArea"] }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); }
|
|
34
36
|
}
|
|
35
37
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextareaComponent, decorators: [{
|
|
36
38
|
type: Component,
|
|
37
|
-
args: [{ selector: 'lib-text-area', template: "<kendo-textarea\n #textarea\n [placeholder]=\"placeholder\"\n [resizable]=\"resizable\"\n [rows]=\"rows\"\n [cols]=\"cols\"\n [style.width.px]=\"width\"\n [(ngModel)]=\"value\"\n [formControl]=\"control\"\n (ngModelChange)=\"emitValueChange($event)\"\n (blur)=\"onBlur()\"\n (focus)=\"onFocus()\"\n>\n</kendo-textarea>\n", styles: [".random-css-to-not-keep-this-file-empty{display:none}\n"] }]
|
|
39
|
+
args: [{ selector: 'lib-text-area', template: "<kendo-textarea\n #textarea\n [placeholder]=\"placeholder\"\n [resizable]=\"resizable\"\n [rows]=\"rows\"\n [cols]=\"cols\"\n [style.width.px]=\"width\"\n [(ngModel)]=\"value\"\n [formControl]=\"control\"\n (ngModelChange)=\"emitValueChange($event)\"\n (blur)=\"onBlur()\"\n (focus)=\"onFocus()\"\n [readonly]=\"readonly\"\n [disabled]=\"disabled\"\n>\n</kendo-textarea>\n", styles: [".random-css-to-not-keep-this-file-empty{display:none}::ng-deep kendo-textarea.k-disabled{pointer-events:auto}\n"] }]
|
|
38
40
|
}], ctorParameters: function () { return [{ type: i1.ThemesService }]; }, propDecorators: { textarea: [{
|
|
39
41
|
type: ViewChild,
|
|
40
42
|
args: ['textarea', { static: false }]
|
|
@@ -42,6 +44,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
42
44
|
type: Input
|
|
43
45
|
}], resizable: [{
|
|
44
46
|
type: Input
|
|
47
|
+
}], readonly: [{
|
|
48
|
+
type: Input
|
|
49
|
+
}], disabled: [{
|
|
50
|
+
type: Input
|
|
45
51
|
}], rows: [{
|
|
46
52
|
type: Input
|
|
47
53
|
}], cols: [{
|
|
@@ -61,4 +67,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
61
67
|
}], emitOnFocus: [{
|
|
62
68
|
type: Output
|
|
63
69
|
}] } });
|
|
64
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
70
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC1hcmVhLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3NoYXJlZC9zcmMvbGliL2F0b21zL3RleHQtYXJlYS90ZXh0LWFyZWEuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvc2hhcmVkL3NyYy9saWIvYXRvbXMvdGV4dC1hcmVhL3RleHQtYXJlYS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsU0FBUyxFQUNULFlBQVksRUFDWixLQUFLLEVBQ0wsTUFBTSxFQUNOLFNBQVMsR0FDVixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7Ozs7O0FBUzdDLE1BQU0sT0FBTyxpQkFBaUI7SUFZNUIsSUFDSSxLQUFLLENBQUMsS0FBVTtRQUNsQixJQUFJLENBQUMsTUFBTSxHQUFHLEtBQUssQ0FBQztRQUNwQixJQUFJLElBQUksQ0FBQyxNQUFNO1lBQ2IsSUFBSSxDQUFDLFFBQVEsRUFBRSxLQUFLLEVBQUUsYUFBYSxFQUFFLEtBQUssRUFBRSxDQUFDO0lBQ2pELENBQUM7SUFPRCxZQUFvQixhQUE0QjtRQUE1QixrQkFBYSxHQUFiLGFBQWEsQ0FBZTtRQXJCdkMsZ0JBQVcsR0FBVyxZQUFZLENBQUM7UUFDbkMsY0FBUyxHQUFnRCxVQUFVLENBQUM7UUFDcEUsYUFBUSxHQUFZLEtBQUssQ0FBQztRQUMxQixhQUFRLEdBQVksS0FBSyxDQUFDO1FBSTFCLFVBQUssR0FBVyxFQUFFLENBQUM7UUFDbkIsWUFBTyxHQUFnQixJQUFJLFdBQVcsRUFBRSxDQUFDO1FBU3hDLGdCQUFXLEdBQUcsSUFBSSxZQUFZLEVBQVUsQ0FBQztRQUN6QyxlQUFVLEdBQUcsSUFBSSxZQUFZLEVBQVUsQ0FBQztRQUN4QyxnQkFBVyxHQUFHLElBQUksWUFBWSxFQUFVLENBQUM7SUFFQyxDQUFDO0lBRXJELGVBQWUsQ0FBQyxFQUFVO1FBQ3hCLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxDQUFDO0lBQzVCLENBQUM7SUFFRCxNQUFNO1FBQ0osSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLEVBQUUsQ0FBQztJQUN6QixDQUFDO0lBRUQsT0FBTztRQUNMLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxFQUFFLENBQUM7SUFDMUIsQ0FBQzsrR0FwQ1UsaUJBQWlCO21HQUFqQixpQkFBaUIsc2NDaEI5QixtWUFnQkE7OzRGREFhLGlCQUFpQjtrQkFMN0IsU0FBUzsrQkFDRSxlQUFlO29HQU1pQixRQUFRO3NCQUFqRCxTQUFTO3VCQUFDLFVBQVUsRUFBRSxFQUFFLE1BQU0sRUFBRSxLQUFLLEVBQUU7Z0JBQy9CLFdBQVc7c0JBQW5CLEtBQUs7Z0JBQ0csU0FBUztzQkFBakIsS0FBSztnQkFDRyxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLO2dCQUNHLElBQUk7c0JBQVosS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFFRixLQUFLO3NCQURSLEtBQUs7Z0JBUUksV0FBVztzQkFBcEIsTUFBTTtnQkFDRyxVQUFVO3NCQUFuQixNQUFNO2dCQUNHLFdBQVc7c0JBQXBCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDb21wb25lbnQsXG4gIEV2ZW50RW1pdHRlcixcbiAgSW5wdXQsXG4gIE91dHB1dCxcbiAgVmlld0NoaWxkLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZvcm1Db250cm9sIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHsgVGhlbWVzU2VydmljZSB9IGZyb20gJ0Bwcm9ncmVzcy1jaGVmL3BsYXRmb3JtLXRoZW1lcy1zZXJ2aWNlJztcbmltcG9ydCB7IFRleHRBcmVhQ29tcG9uZW50IH0gZnJvbSAnQHByb2dyZXNzL2tlbmRvLWFuZ3VsYXItaW5wdXRzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGliLXRleHQtYXJlYScsXG4gIHRlbXBsYXRlVXJsOiAnLi90ZXh0LWFyZWEuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi90ZXh0LWFyZWEuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBUZXh0YXJlYUNvbXBvbmVudCB7XG5cbiAgQFZpZXdDaGlsZCgndGV4dGFyZWEnLCB7IHN0YXRpYzogZmFsc2UgfSkgdGV4dGFyZWE6IFRleHRBcmVhQ29tcG9uZW50IHwgdW5kZWZpbmVkO1xuICBASW5wdXQoKSBwbGFjZWhvbGRlcjogc3RyaW5nID0gJ0VudGVyIGhlcmUnO1xuICBASW5wdXQoKSByZXNpemFibGU6ICd2ZXJ0aWNhbCcgfCAnaG9yaXpvbnRhbCcgfCAnYm90aCcgfCAnbm9uZScgPSAndmVydGljYWwnO1xuICBASW5wdXQoKSByZWFkb25seTogYm9vbGVhbiA9IGZhbHNlO1xuICBASW5wdXQoKSBkaXNhYmxlZDogYm9vbGVhbiA9IGZhbHNlO1xuICBASW5wdXQoKSByb3dzITogbnVtYmVyO1xuICBASW5wdXQoKSBjb2xzITogbnVtYmVyO1xuICBASW5wdXQoKSB3aWR0aCE6IHN0cmluZztcbiAgQElucHV0KCkgdmFsdWU6IHN0cmluZyA9ICcnO1xuICBASW5wdXQoKSBjb250cm9sOiBGb3JtQ29udHJvbCA9IG5ldyBGb3JtQ29udHJvbCgpO1xuICBASW5wdXQoKVxuICBzZXQgZm9jdXModmFsdWU6IGFueSkge1xuICAgIHRoaXMuX2ZvY3VzID0gdmFsdWU7XG4gICAgaWYgKHRoaXMuX2ZvY3VzKVxuICAgICAgdGhpcy50ZXh0YXJlYT8uaW5wdXQ/Lm5hdGl2ZUVsZW1lbnQ/LmZvY3VzKCk7XG4gIH1cbiAgcHJpdmF0ZSBfZm9jdXM6IGFueTtcblxuICBAT3V0cHV0KCkgaW5wdXRDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyPHN0cmluZz4oKTtcbiAgQE91dHB1dCgpIGVtaXRPbkJsdXIgPSBuZXcgRXZlbnRFbWl0dGVyPHN0cmluZz4oKTtcbiAgQE91dHB1dCgpIGVtaXRPbkZvY3VzID0gbmV3IEV2ZW50RW1pdHRlcjxzdHJpbmc+KCk7XG5cbiAgY29uc3RydWN0b3IocHJpdmF0ZSB0aGVtZXNTZXJ2aWNlOiBUaGVtZXNTZXJ2aWNlKSB7IH1cblxuICBlbWl0VmFsdWVDaGFuZ2UoZXY6IHN0cmluZykge1xuICAgIHRoaXMuaW5wdXRDaGFuZ2UuZW1pdChldik7XG4gIH1cblxuICBvbkJsdXIoKSB7XG4gICAgdGhpcy5lbWl0T25CbHVyLmVtaXQoKTtcbiAgfVxuXG4gIG9uRm9jdXMoKSB7XG4gICAgdGhpcy5lbWl0T25Gb2N1cy5lbWl0KCk7XG4gIH1cblxufVxuIiwiPGtlbmRvLXRleHRhcmVhXG4gICN0ZXh0YXJlYVxuICBbcGxhY2Vob2xkZXJdPVwicGxhY2Vob2xkZXJcIlxuICBbcmVzaXphYmxlXT1cInJlc2l6YWJsZVwiXG4gIFtyb3dzXT1cInJvd3NcIlxuICBbY29sc109XCJjb2xzXCJcbiAgW3N0eWxlLndpZHRoLnB4XT1cIndpZHRoXCJcbiAgWyhuZ01vZGVsKV09XCJ2YWx1ZVwiXG4gIFtmb3JtQ29udHJvbF09XCJjb250cm9sXCJcbiAgKG5nTW9kZWxDaGFuZ2UpPVwiZW1pdFZhbHVlQ2hhbmdlKCRldmVudClcIlxuICAoYmx1cik9XCJvbkJsdXIoKVwiXG4gIChmb2N1cyk9XCJvbkZvY3VzKClcIlxuICBbcmVhZG9ubHldPVwicmVhZG9ubHlcIlxuICBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIlxuPlxuPC9rZW5kby10ZXh0YXJlYT5cbiJdfQ==
|
|
@@ -1508,6 +1508,8 @@ class TextareaComponent {
|
|
|
1508
1508
|
this.themesService = themesService;
|
|
1509
1509
|
this.placeholder = 'Enter here';
|
|
1510
1510
|
this.resizable = 'vertical';
|
|
1511
|
+
this.readonly = false;
|
|
1512
|
+
this.disabled = false;
|
|
1511
1513
|
this.value = '';
|
|
1512
1514
|
this.control = new FormControl();
|
|
1513
1515
|
this.inputChange = new EventEmitter();
|
|
@@ -1524,11 +1526,11 @@ class TextareaComponent {
|
|
|
1524
1526
|
this.emitOnFocus.emit();
|
|
1525
1527
|
}
|
|
1526
1528
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextareaComponent, deps: [{ token: i1$1.ThemesService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1527
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: TextareaComponent, selector: "lib-text-area", inputs: { placeholder: "placeholder", resizable: "resizable", rows: "rows", cols: "cols", width: "width", value: "value", control: "control", focus: "focus" }, outputs: { inputChange: "inputChange", emitOnBlur: "emitOnBlur", emitOnFocus: "emitOnFocus" }, viewQueries: [{ propertyName: "textarea", first: true, predicate: ["textarea"], descendants: true }], ngImport: i0, template: "<kendo-textarea\n #textarea\n [placeholder]=\"placeholder\"\n [resizable]=\"resizable\"\n [rows]=\"rows\"\n [cols]=\"cols\"\n [style.width.px]=\"width\"\n [(ngModel)]=\"value\"\n [formControl]=\"control\"\n (ngModelChange)=\"emitValueChange($event)\"\n (blur)=\"onBlur()\"\n (focus)=\"onFocus()\"\n>\n</kendo-textarea>\n", styles: [".random-css-to-not-keep-this-file-empty{display:none}\n"], dependencies: [{ kind: "component", type: i3$1.TextAreaComponent, selector: "kendo-textarea", inputs: ["focusableId", "flow", "rows", "cols", "maxlength", "tabindex", "tabIndex", "resizable", "size", "rounded", "fillMode"], outputs: ["focus", "blur", "valueChange"], exportAs: ["kendoTextArea"] }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); }
|
|
1529
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: TextareaComponent, selector: "lib-text-area", inputs: { placeholder: "placeholder", resizable: "resizable", readonly: "readonly", disabled: "disabled", rows: "rows", cols: "cols", width: "width", value: "value", control: "control", focus: "focus" }, outputs: { inputChange: "inputChange", emitOnBlur: "emitOnBlur", emitOnFocus: "emitOnFocus" }, viewQueries: [{ propertyName: "textarea", first: true, predicate: ["textarea"], descendants: true }], ngImport: i0, template: "<kendo-textarea\n #textarea\n [placeholder]=\"placeholder\"\n [resizable]=\"resizable\"\n [rows]=\"rows\"\n [cols]=\"cols\"\n [style.width.px]=\"width\"\n [(ngModel)]=\"value\"\n [formControl]=\"control\"\n (ngModelChange)=\"emitValueChange($event)\"\n (blur)=\"onBlur()\"\n (focus)=\"onFocus()\"\n [readonly]=\"readonly\"\n [disabled]=\"disabled\"\n>\n</kendo-textarea>\n", styles: [".random-css-to-not-keep-this-file-empty{display:none}::ng-deep kendo-textarea.k-disabled{pointer-events:auto}\n"], dependencies: [{ kind: "component", type: i3$1.TextAreaComponent, selector: "kendo-textarea", inputs: ["focusableId", "flow", "rows", "cols", "maxlength", "tabindex", "tabIndex", "resizable", "size", "rounded", "fillMode"], outputs: ["focus", "blur", "valueChange"], exportAs: ["kendoTextArea"] }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); }
|
|
1528
1530
|
}
|
|
1529
1531
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextareaComponent, decorators: [{
|
|
1530
1532
|
type: Component,
|
|
1531
|
-
args: [{ selector: 'lib-text-area', template: "<kendo-textarea\n #textarea\n [placeholder]=\"placeholder\"\n [resizable]=\"resizable\"\n [rows]=\"rows\"\n [cols]=\"cols\"\n [style.width.px]=\"width\"\n [(ngModel)]=\"value\"\n [formControl]=\"control\"\n (ngModelChange)=\"emitValueChange($event)\"\n (blur)=\"onBlur()\"\n (focus)=\"onFocus()\"\n>\n</kendo-textarea>\n", styles: [".random-css-to-not-keep-this-file-empty{display:none}\n"] }]
|
|
1533
|
+
args: [{ selector: 'lib-text-area', template: "<kendo-textarea\n #textarea\n [placeholder]=\"placeholder\"\n [resizable]=\"resizable\"\n [rows]=\"rows\"\n [cols]=\"cols\"\n [style.width.px]=\"width\"\n [(ngModel)]=\"value\"\n [formControl]=\"control\"\n (ngModelChange)=\"emitValueChange($event)\"\n (blur)=\"onBlur()\"\n (focus)=\"onFocus()\"\n [readonly]=\"readonly\"\n [disabled]=\"disabled\"\n>\n</kendo-textarea>\n", styles: [".random-css-to-not-keep-this-file-empty{display:none}::ng-deep kendo-textarea.k-disabled{pointer-events:auto}\n"] }]
|
|
1532
1534
|
}], ctorParameters: function () { return [{ type: i1$1.ThemesService }]; }, propDecorators: { textarea: [{
|
|
1533
1535
|
type: ViewChild,
|
|
1534
1536
|
args: ['textarea', { static: false }]
|
|
@@ -1536,6 +1538,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1536
1538
|
type: Input
|
|
1537
1539
|
}], resizable: [{
|
|
1538
1540
|
type: Input
|
|
1541
|
+
}], readonly: [{
|
|
1542
|
+
type: Input
|
|
1543
|
+
}], disabled: [{
|
|
1544
|
+
type: Input
|
|
1539
1545
|
}], rows: [{
|
|
1540
1546
|
type: Input
|
|
1541
1547
|
}], cols: [{
|