@tedi-design-system/angular 7.1.0-rc.10 → 7.1.0-rc.11
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.
|
@@ -5233,8 +5233,14 @@ class TextFieldComponent {
|
|
|
5233
5233
|
* Disables the input from a parent template (e.g. a wrapping field component).
|
|
5234
5234
|
* Combined with the reactive-forms disabled state and any input-group state.
|
|
5235
5235
|
*/
|
|
5236
|
-
|
|
5237
|
-
|
|
5236
|
+
disabledInput = input(false, ...(ngDevMode ? [{ debugName: "disabledInput",
|
|
5237
|
+
// eslint-disable-next-line @angular-eslint/no-input-rename
|
|
5238
|
+
alias: "disabled",
|
|
5239
|
+
transform: booleanAttribute }] : [{
|
|
5240
|
+
// eslint-disable-next-line @angular-eslint/no-input-rename
|
|
5241
|
+
alias: "disabled",
|
|
5242
|
+
transform: booleanAttribute,
|
|
5243
|
+
}]));
|
|
5238
5244
|
disabled = computed(() => this.disabledInput() ||
|
|
5239
5245
|
this.formDisabled() ||
|
|
5240
5246
|
(this.group?.disabled() ?? false), ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|