@db-ux/ngx-core-components 2.4.0 → 2.4.1
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/components/checkbox/checkbox.d.ts +2 -2
- package/components/input/input.d.ts +2 -2
- package/components/radio/radio.d.ts +2 -2
- package/components/select/select.d.ts +2 -2
- package/components/switch/model.d.ts +1 -3
- package/components/switch/switch.d.ts +3 -4
- package/components/textarea/textarea.d.ts +2 -2
- package/fesm2022/db-ux-ngx-core-components.mjs +26 -41
- package/fesm2022/db-ux-ngx-core-components.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -1124,11 +1124,11 @@ class DBCheckbox {
|
|
|
1124
1124
|
this.required = input();
|
|
1125
1125
|
this.className = input();
|
|
1126
1126
|
this.size = input();
|
|
1127
|
+
this.showRequiredAsterisk = input();
|
|
1127
1128
|
this.showLabel = input();
|
|
1128
1129
|
this.name = input();
|
|
1129
1130
|
this.disabled = model();
|
|
1130
1131
|
this.value = input();
|
|
1131
|
-
this.showRequiredAsterisk = input();
|
|
1132
1132
|
this.ariaDescribedBy = input();
|
|
1133
1133
|
this.label = input();
|
|
1134
1134
|
this.messageIcon = input();
|
|
@@ -1265,7 +1265,7 @@ class DBCheckbox {
|
|
|
1265
1265
|
this.enableAttributePassing(element, "db-checkbox");
|
|
1266
1266
|
}
|
|
1267
1267
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBCheckbox, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1268
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBCheckbox, isStandalone: true, selector: "db-checkbox", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, invalidMessage: { classPropertyName: "invalidMessage", publicName: "invalidMessage", isSignal: true, isRequired: false, transformFunction: null }, message: { classPropertyName: "message", publicName: "message", isSignal: true, isRequired: false, transformFunction: null }, showMessage: { classPropertyName: "showMessage", publicName: "showMessage", isSignal: true, isRequired: false, transformFunction: null }, indeterminate: { classPropertyName: "indeterminate", publicName: "indeterminate", isSignal: true, isRequired: false, transformFunction: null }, checked: { classPropertyName: "checked", publicName: "checked", isSignal: true, isRequired: false, transformFunction: null }, validMessage: { classPropertyName: "validMessage", publicName: "validMessage", isSignal: true, isRequired: false, transformFunction: null }, validation: { classPropertyName: "validation", publicName: "validation", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null },
|
|
1268
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBCheckbox, isStandalone: true, selector: "db-checkbox", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, invalidMessage: { classPropertyName: "invalidMessage", publicName: "invalidMessage", isSignal: true, isRequired: false, transformFunction: null }, message: { classPropertyName: "message", publicName: "message", isSignal: true, isRequired: false, transformFunction: null }, showMessage: { classPropertyName: "showMessage", publicName: "showMessage", isSignal: true, isRequired: false, transformFunction: null }, indeterminate: { classPropertyName: "indeterminate", publicName: "indeterminate", isSignal: true, isRequired: false, transformFunction: null }, checked: { classPropertyName: "checked", publicName: "checked", isSignal: true, isRequired: false, transformFunction: null }, validMessage: { classPropertyName: "validMessage", publicName: "validMessage", isSignal: true, isRequired: false, transformFunction: null }, validation: { classPropertyName: "validation", publicName: "validation", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, showRequiredAsterisk: { classPropertyName: "showRequiredAsterisk", publicName: "showRequiredAsterisk", isSignal: true, isRequired: false, transformFunction: null }, showLabel: { classPropertyName: "showLabel", publicName: "showLabel", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, ariaDescribedBy: { classPropertyName: "ariaDescribedBy", publicName: "ariaDescribedBy", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, messageIcon: { classPropertyName: "messageIcon", publicName: "messageIcon", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { checked: "checkedChange", disabled: "disabledChange", change: "change", blur: "blur", focus: "focus" }, providers: [{
|
|
1269
1269
|
provide: NG_VALUE_ACCESSOR,
|
|
1270
1270
|
useExisting: DBCheckbox,
|
|
1271
1271
|
multi: true
|
|
@@ -1273,6 +1273,7 @@ class DBCheckbox {
|
|
|
1273
1273
|
<div
|
|
1274
1274
|
[class]="cls('db-checkbox', className())"
|
|
1275
1275
|
[attr.data-size]="size()"
|
|
1276
|
+
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
1276
1277
|
[attr.data-hide-label]="getHideProp(showLabel())"
|
|
1277
1278
|
>
|
|
1278
1279
|
<label [attr.for]="_id()">
|
|
@@ -1287,7 +1288,6 @@ class DBCheckbox {
|
|
|
1287
1288
|
[disabled]="getBoolean(disabled(), 'disabled')"
|
|
1288
1289
|
[attr.value]="value()"
|
|
1289
1290
|
[required]="getBoolean(required(), 'required')"
|
|
1290
|
-
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
1291
1291
|
(change)="handleChange($event)"
|
|
1292
1292
|
(blur)="handleBlur($event)"
|
|
1293
1293
|
(focus)="handleFocus($event)"
|
|
@@ -1325,6 +1325,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
1325
1325
|
<div
|
|
1326
1326
|
[class]="cls('db-checkbox', className())"
|
|
1327
1327
|
[attr.data-size]="size()"
|
|
1328
|
+
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
1328
1329
|
[attr.data-hide-label]="getHideProp(showLabel())"
|
|
1329
1330
|
>
|
|
1330
1331
|
<label [attr.for]="_id()">
|
|
@@ -1339,7 +1340,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
1339
1340
|
[disabled]="getBoolean(disabled(), 'disabled')"
|
|
1340
1341
|
[attr.value]="value()"
|
|
1341
1342
|
[required]="getBoolean(required(), 'required')"
|
|
1342
|
-
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
1343
1343
|
(change)="handleChange($event)"
|
|
1344
1344
|
(blur)="handleBlur($event)"
|
|
1345
1345
|
(focus)="handleFocus($event)"
|
|
@@ -2184,13 +2184,13 @@ class DBInput {
|
|
|
2184
2184
|
this.showIcon = input();
|
|
2185
2185
|
this.icon = input();
|
|
2186
2186
|
this.iconAfter = input();
|
|
2187
|
+
this.showRequiredAsterisk = input();
|
|
2187
2188
|
this.label = input();
|
|
2188
2189
|
this.fieldSizing = input();
|
|
2189
2190
|
this.name = input();
|
|
2190
2191
|
this.type = input();
|
|
2191
2192
|
this.placeholder = input();
|
|
2192
2193
|
this.disabled = model();
|
|
2193
|
-
this.showRequiredAsterisk = input();
|
|
2194
2194
|
this.step = input();
|
|
2195
2195
|
this.maxlength = input();
|
|
2196
2196
|
this.minlength = input();
|
|
@@ -2322,7 +2322,7 @@ class DBInput {
|
|
|
2322
2322
|
this.enableAttributePassing(element, "db-input");
|
|
2323
2323
|
}
|
|
2324
2324
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBInput, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2325
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBInput, isStandalone: true, selector: "db-input", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, invalidMessage: { classPropertyName: "invalidMessage", publicName: "invalidMessage", isSignal: true, isRequired: false, transformFunction: null }, dataListId: { classPropertyName: "dataListId", publicName: "dataListId", isSignal: true, isRequired: false, transformFunction: null }, message: { classPropertyName: "message", publicName: "message", isSignal: true, isRequired: false, transformFunction: null }, showMessage: { classPropertyName: "showMessage", publicName: "showMessage", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, validMessage: { classPropertyName: "validMessage", publicName: "validMessage", isSignal: true, isRequired: false, transformFunction: null }, validation: { classPropertyName: "validation", publicName: "validation", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, minLength: { classPropertyName: "minLength", publicName: "minLength", isSignal: true, isRequired: false, transformFunction: null }, maxLength: { classPropertyName: "maxLength", publicName: "maxLength", isSignal: true, isRequired: false, transformFunction: null }, pattern: { classPropertyName: "pattern", publicName: "pattern", isSignal: true, isRequired: false, transformFunction: null }, dataList: { classPropertyName: "dataList", publicName: "dataList", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, showLabel: { classPropertyName: "showLabel", publicName: "showLabel", isSignal: true, isRequired: false, transformFunction: null }, showIcon: { classPropertyName: "showIcon", publicName: "showIcon", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, iconAfter: { classPropertyName: "iconAfter", publicName: "iconAfter", isSignal: true, isRequired: false, transformFunction: null },
|
|
2325
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBInput, isStandalone: true, selector: "db-input", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, invalidMessage: { classPropertyName: "invalidMessage", publicName: "invalidMessage", isSignal: true, isRequired: false, transformFunction: null }, dataListId: { classPropertyName: "dataListId", publicName: "dataListId", isSignal: true, isRequired: false, transformFunction: null }, message: { classPropertyName: "message", publicName: "message", isSignal: true, isRequired: false, transformFunction: null }, showMessage: { classPropertyName: "showMessage", publicName: "showMessage", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, validMessage: { classPropertyName: "validMessage", publicName: "validMessage", isSignal: true, isRequired: false, transformFunction: null }, validation: { classPropertyName: "validation", publicName: "validation", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, minLength: { classPropertyName: "minLength", publicName: "minLength", isSignal: true, isRequired: false, transformFunction: null }, maxLength: { classPropertyName: "maxLength", publicName: "maxLength", isSignal: true, isRequired: false, transformFunction: null }, pattern: { classPropertyName: "pattern", publicName: "pattern", isSignal: true, isRequired: false, transformFunction: null }, dataList: { classPropertyName: "dataList", publicName: "dataList", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, showLabel: { classPropertyName: "showLabel", publicName: "showLabel", isSignal: true, isRequired: false, transformFunction: null }, showIcon: { classPropertyName: "showIcon", publicName: "showIcon", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, iconAfter: { classPropertyName: "iconAfter", publicName: "iconAfter", isSignal: true, isRequired: false, transformFunction: null }, showRequiredAsterisk: { classPropertyName: "showRequiredAsterisk", publicName: "showRequiredAsterisk", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, fieldSizing: { classPropertyName: "fieldSizing", publicName: "fieldSizing", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, type: { classPropertyName: "type", publicName: "type", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, step: { classPropertyName: "step", publicName: "step", isSignal: true, isRequired: false, transformFunction: null }, maxlength: { classPropertyName: "maxlength", publicName: "maxlength", isSignal: true, isRequired: false, transformFunction: null }, minlength: { classPropertyName: "minlength", publicName: "minlength", isSignal: true, isRequired: false, transformFunction: null }, max: { classPropertyName: "max", publicName: "max", isSignal: true, isRequired: false, transformFunction: null }, min: { classPropertyName: "min", publicName: "min", isSignal: true, isRequired: false, transformFunction: null }, readOnly: { classPropertyName: "readOnly", publicName: "readOnly", isSignal: true, isRequired: false, transformFunction: null }, readonly: { classPropertyName: "readonly", publicName: "readonly", isSignal: true, isRequired: false, transformFunction: null }, form: { classPropertyName: "form", publicName: "form", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, autocomplete: { classPropertyName: "autocomplete", publicName: "autocomplete", isSignal: true, isRequired: false, transformFunction: null }, autofocus: { classPropertyName: "autofocus", publicName: "autofocus", isSignal: true, isRequired: false, transformFunction: null }, ariaDescribedBy: { classPropertyName: "ariaDescribedBy", publicName: "ariaDescribedBy", isSignal: true, isRequired: false, transformFunction: null }, messageIcon: { classPropertyName: "messageIcon", publicName: "messageIcon", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { value: "valueChange", disabled: "disabledChange", input: "input", change: "change", blur: "blur", focus: "focus" }, providers: [{
|
|
2326
2326
|
provide: NG_VALUE_ACCESSOR,
|
|
2327
2327
|
useExisting: DBInput,
|
|
2328
2328
|
multi: true
|
|
@@ -2334,6 +2334,7 @@ class DBInput {
|
|
|
2334
2334
|
[attr.data-hide-icon]="getHideProp(showIcon())"
|
|
2335
2335
|
[attr.data-icon]="icon()"
|
|
2336
2336
|
[attr.data-icon-after]="iconAfter()"
|
|
2337
|
+
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
2337
2338
|
[attr.data-hide-icon-after]="getHideProp(showIcon())"
|
|
2338
2339
|
>
|
|
2339
2340
|
<label [attr.for]="_id()">{{label() ?? DEFAULT_LABEL}}</label>
|
|
@@ -2348,7 +2349,6 @@ class DBInput {
|
|
|
2348
2349
|
[attr.placeholder]="placeholder() ?? DEFAULT_PLACEHOLDER"
|
|
2349
2350
|
[disabled]="getBoolean(disabled(), 'disabled')"
|
|
2350
2351
|
[required]="getBoolean(required(), 'required')"
|
|
2351
|
-
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
2352
2352
|
[attr.step]="getNumber(step())"
|
|
2353
2353
|
[attr.value]="value() ?? _value()"
|
|
2354
2354
|
[attr.maxLength]="getNumber(maxLength(), maxlength())"
|
|
@@ -2408,6 +2408,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
2408
2408
|
[attr.data-hide-icon]="getHideProp(showIcon())"
|
|
2409
2409
|
[attr.data-icon]="icon()"
|
|
2410
2410
|
[attr.data-icon-after]="iconAfter()"
|
|
2411
|
+
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
2411
2412
|
[attr.data-hide-icon-after]="getHideProp(showIcon())"
|
|
2412
2413
|
>
|
|
2413
2414
|
<label [attr.for]="_id()">{{label() ?? DEFAULT_LABEL}}</label>
|
|
@@ -2422,7 +2423,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
2422
2423
|
[attr.placeholder]="placeholder() ?? DEFAULT_PLACEHOLDER"
|
|
2423
2424
|
[disabled]="getBoolean(disabled(), 'disabled')"
|
|
2424
2425
|
[required]="getBoolean(required(), 'required')"
|
|
2425
|
-
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
2426
2426
|
[attr.step]="getNumber(step())"
|
|
2427
2427
|
[attr.value]="value() ?? _value()"
|
|
2428
2428
|
[attr.maxLength]="getNumber(maxLength(), maxlength())"
|
|
@@ -3812,7 +3812,7 @@ class DBCustomSelect {
|
|
|
3812
3812
|
{{_voiceOverFallback()}}
|
|
3813
3813
|
</span>
|
|
3814
3814
|
</div>
|
|
3815
|
-
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: DBTag, selector: "db-tag", inputs: ["disabled", "removeButton", "id", "className", "semantic", "emphasis", "icon", "showCheckState", "showIcon", "noText", "overflow", "text", "behavior"], outputs: ["remove"] }, { kind: "component", type: DBCustomSelectDropdown, selector: "db-custom-select-dropdown", inputs: ["id", "className", "width"] }, { kind: "component", type: DBInput, selector: "db-input", inputs: ["id", "invalidMessage", "dataListId", "message", "showMessage", "value", "validMessage", "validation", "required", "minLength", "maxLength", "pattern", "dataList", "className", "variant", "showLabel", "showIcon", "icon", "iconAfter", "label", "fieldSizing", "name", "type", "placeholder", "disabled", "
|
|
3815
|
+
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: DBTag, selector: "db-tag", inputs: ["disabled", "removeButton", "id", "className", "semantic", "emphasis", "icon", "showCheckState", "showIcon", "noText", "overflow", "text", "behavior"], outputs: ["remove"] }, { kind: "component", type: DBCustomSelectDropdown, selector: "db-custom-select-dropdown", inputs: ["id", "className", "width"] }, { kind: "component", type: DBInput, selector: "db-input", inputs: ["id", "invalidMessage", "dataListId", "message", "showMessage", "value", "validMessage", "validation", "required", "minLength", "maxLength", "pattern", "dataList", "className", "variant", "showLabel", "showIcon", "icon", "iconAfter", "showRequiredAsterisk", "label", "fieldSizing", "name", "type", "placeholder", "disabled", "step", "maxlength", "minlength", "max", "min", "readOnly", "readonly", "form", "size", "autocomplete", "autofocus", "ariaDescribedBy", "messageIcon"], outputs: ["valueChange", "disabledChange", "input", "change", "blur", "focus"] }, { kind: "component", type: DBCustomSelectList, selector: "db-custom-select-list", inputs: ["multiple", "label", "id", "className"] }, { kind: "component", type: DBCustomSelectListItem, selector: "db-custom-select-list-item", inputs: ["id", "isGroupTitle", "showDivider", "type", "checked", "className", "groupTitle", "icon", "showIcon", "name", "disabled", "value", "label"], outputs: ["checkedChange", "disabledChange", "change"] }, { kind: "component", type: DBInfotext, selector: "db-infotext", inputs: ["id", "className", "icon", "semantic", "size", "showIcon", "text"] }, { kind: "component", type: DBButton, selector: "db-button", inputs: ["id", "className", "type", "disabled", "label", "icon", "showIcon", "size", "state", "width", "variant", "noText", "name", "form", "value", "describedbyid", "ariaexpanded", "ariapressed", "text"] }, { kind: "component", type: DBTooltip, selector: "db-tooltip", inputs: ["id", "variant", "placement", "className", "emphasis", "animation", "delay", "width", "showArrow"] }] }); }
|
|
3816
3816
|
}
|
|
3817
3817
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBCustomSelect, decorators: [{
|
|
3818
3818
|
type: Component,
|
|
@@ -5837,6 +5837,7 @@ class DBRadio {
|
|
|
5837
5837
|
this.checked = input();
|
|
5838
5838
|
this.size = input();
|
|
5839
5839
|
this.showLabel = input();
|
|
5840
|
+
this.showRequiredAsterisk = input();
|
|
5840
5841
|
this.className = input();
|
|
5841
5842
|
this.validation = input();
|
|
5842
5843
|
this.name = input();
|
|
@@ -5845,7 +5846,6 @@ class DBRadio {
|
|
|
5845
5846
|
this.ariaDescribedBy = input();
|
|
5846
5847
|
this.value = model();
|
|
5847
5848
|
this.required = input();
|
|
5848
|
-
this.showRequiredAsterisk = input();
|
|
5849
5849
|
this.label = input();
|
|
5850
5850
|
this.change = output();
|
|
5851
5851
|
this.blur = output();
|
|
@@ -5926,7 +5926,7 @@ class DBRadio {
|
|
|
5926
5926
|
this.enableAttributePassing(element, "db-radio");
|
|
5927
5927
|
}
|
|
5928
5928
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBRadio, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5929
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBRadio, isStandalone: true, selector: "db-radio", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, checked: { classPropertyName: "checked", publicName: "checked", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, showLabel: { classPropertyName: "showLabel", publicName: "showLabel", isSignal: true, isRequired: false, transformFunction: null },
|
|
5929
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBRadio, isStandalone: true, selector: "db-radio", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, checked: { classPropertyName: "checked", publicName: "checked", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, showLabel: { classPropertyName: "showLabel", publicName: "showLabel", isSignal: true, isRequired: false, transformFunction: null }, showRequiredAsterisk: { classPropertyName: "showRequiredAsterisk", publicName: "showRequiredAsterisk", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, validation: { classPropertyName: "validation", publicName: "validation", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, describedbyid: { classPropertyName: "describedbyid", publicName: "describedbyid", isSignal: true, isRequired: false, transformFunction: null }, ariaDescribedBy: { classPropertyName: "ariaDescribedBy", publicName: "ariaDescribedBy", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { disabled: "disabledChange", value: "valueChange", change: "change", blur: "blur", focus: "focus" }, providers: [{
|
|
5930
5930
|
provide: NG_VALUE_ACCESSOR,
|
|
5931
5931
|
useExisting: DBRadio,
|
|
5932
5932
|
multi: true
|
|
@@ -5934,6 +5934,7 @@ class DBRadio {
|
|
|
5934
5934
|
<label
|
|
5935
5935
|
[attr.data-size]="size()"
|
|
5936
5936
|
[attr.data-hide-label]="getHideProp(showLabel())"
|
|
5937
|
+
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
5937
5938
|
[class]="cls('db-radio', className())"
|
|
5938
5939
|
[attr.for]="_id()"
|
|
5939
5940
|
>
|
|
@@ -5949,7 +5950,6 @@ class DBRadio {
|
|
|
5949
5950
|
[attr.aria-describedby]="describedbyid() ?? ariaDescribedBy()"
|
|
5950
5951
|
[attr.value]="value()"
|
|
5951
5952
|
[required]="getBoolean(required(), 'required')"
|
|
5952
|
-
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
5953
5953
|
(change)="handleChange($event)"
|
|
5954
5954
|
(blur)="handleBlur($event)"
|
|
5955
5955
|
(focus)="handleFocus($event)"
|
|
@@ -5970,6 +5970,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
5970
5970
|
<label
|
|
5971
5971
|
[attr.data-size]="size()"
|
|
5972
5972
|
[attr.data-hide-label]="getHideProp(showLabel())"
|
|
5973
|
+
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
5973
5974
|
[class]="cls('db-radio', className())"
|
|
5974
5975
|
[attr.for]="_id()"
|
|
5975
5976
|
>
|
|
@@ -5985,7 +5986,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
5985
5986
|
[attr.aria-describedby]="describedbyid() ?? ariaDescribedBy()"
|
|
5986
5987
|
[attr.value]="value()"
|
|
5987
5988
|
[required]="getBoolean(required(), 'required')"
|
|
5988
|
-
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
5989
5989
|
(change)="handleChange($event)"
|
|
5990
5990
|
(blur)="handleBlur($event)"
|
|
5991
5991
|
(focus)="handleFocus($event)"
|
|
@@ -6164,10 +6164,10 @@ class DBSelect {
|
|
|
6164
6164
|
this.className = input();
|
|
6165
6165
|
this.variant = input();
|
|
6166
6166
|
this.showLabel = input();
|
|
6167
|
+
this.showRequiredAsterisk = input();
|
|
6167
6168
|
this.icon = input();
|
|
6168
6169
|
this.showIcon = input();
|
|
6169
6170
|
this.label = input();
|
|
6170
|
-
this.showRequiredAsterisk = input();
|
|
6171
6171
|
this.disabled = model();
|
|
6172
6172
|
this.name = input();
|
|
6173
6173
|
this.size = input();
|
|
@@ -6299,7 +6299,7 @@ class DBSelect {
|
|
|
6299
6299
|
this.enableAttributePassing(element, "db-select");
|
|
6300
6300
|
}
|
|
6301
6301
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBSelect, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6302
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBSelect, isStandalone: true, selector: "db-select", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, invalidMessage: { classPropertyName: "invalidMessage", publicName: "invalidMessage", isSignal: true, isRequired: false, transformFunction: null }, message: { classPropertyName: "message", publicName: "message", isSignal: true, isRequired: false, transformFunction: null }, showMessage: { classPropertyName: "showMessage", publicName: "showMessage", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, validMessage: { classPropertyName: "validMessage", publicName: "validMessage", isSignal: true, isRequired: false, transformFunction: null }, validation: { classPropertyName: "validation", publicName: "validation", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, showLabel: { classPropertyName: "showLabel", publicName: "showLabel", isSignal: true, isRequired: false, transformFunction: null },
|
|
6302
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBSelect, isStandalone: true, selector: "db-select", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, invalidMessage: { classPropertyName: "invalidMessage", publicName: "invalidMessage", isSignal: true, isRequired: false, transformFunction: null }, message: { classPropertyName: "message", publicName: "message", isSignal: true, isRequired: false, transformFunction: null }, showMessage: { classPropertyName: "showMessage", publicName: "showMessage", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, validMessage: { classPropertyName: "validMessage", publicName: "validMessage", isSignal: true, isRequired: false, transformFunction: null }, validation: { classPropertyName: "validation", publicName: "validation", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, showLabel: { classPropertyName: "showLabel", publicName: "showLabel", isSignal: true, isRequired: false, transformFunction: null }, showRequiredAsterisk: { classPropertyName: "showRequiredAsterisk", publicName: "showRequiredAsterisk", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, showIcon: { classPropertyName: "showIcon", publicName: "showIcon", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, autocomplete: { classPropertyName: "autocomplete", publicName: "autocomplete", isSignal: true, isRequired: false, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, ariaDescribedBy: { classPropertyName: "ariaDescribedBy", publicName: "ariaDescribedBy", isSignal: true, isRequired: false, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, messageIcon: { classPropertyName: "messageIcon", publicName: "messageIcon", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { value: "valueChange", disabled: "disabledChange", click: "click", input: "input", change: "change", blur: "blur", focus: "focus" }, providers: [{
|
|
6303
6303
|
provide: NG_VALUE_ACCESSOR,
|
|
6304
6304
|
useExisting: DBSelect,
|
|
6305
6305
|
multi: true
|
|
@@ -6308,6 +6308,7 @@ class DBSelect {
|
|
|
6308
6308
|
[class]="cls('db-select', className())"
|
|
6309
6309
|
[attr.data-variant]="variant()"
|
|
6310
6310
|
[attr.data-hide-label]="getHideProp(showLabel())"
|
|
6311
|
+
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
6311
6312
|
[attr.data-icon]="icon()"
|
|
6312
6313
|
[attr.data-hide-icon]="getHideProp(showIcon())"
|
|
6313
6314
|
>
|
|
@@ -6317,7 +6318,6 @@ class DBSelect {
|
|
|
6317
6318
|
[attr.data-custom-validity]="validation()"
|
|
6318
6319
|
#_ref
|
|
6319
6320
|
[required]="getBoolean(required(), 'required')"
|
|
6320
|
-
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
6321
6321
|
[disabled]="getBoolean(disabled(), 'disabled')"
|
|
6322
6322
|
[attr.id]="_id()"
|
|
6323
6323
|
[attr.name]="name()"
|
|
@@ -6393,6 +6393,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
6393
6393
|
[class]="cls('db-select', className())"
|
|
6394
6394
|
[attr.data-variant]="variant()"
|
|
6395
6395
|
[attr.data-hide-label]="getHideProp(showLabel())"
|
|
6396
|
+
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
6396
6397
|
[attr.data-icon]="icon()"
|
|
6397
6398
|
[attr.data-hide-icon]="getHideProp(showIcon())"
|
|
6398
6399
|
>
|
|
@@ -6402,7 +6403,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
6402
6403
|
[attr.data-custom-validity]="validation()"
|
|
6403
6404
|
#_ref
|
|
6404
6405
|
[required]="getBoolean(required(), 'required')"
|
|
6405
|
-
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
6406
6406
|
[disabled]="getBoolean(disabled(), 'disabled')"
|
|
6407
6407
|
[attr.id]="_id()"
|
|
6408
6408
|
[attr.name]="name()"
|
|
@@ -6561,8 +6561,6 @@ class DBSwitch {
|
|
|
6561
6561
|
if (this.change) {
|
|
6562
6562
|
this.change.emit(event);
|
|
6563
6563
|
}
|
|
6564
|
-
// We have different ts types in different frameworks, so we need to use any here
|
|
6565
|
-
this._checked.set(event.target?.["checked"]);
|
|
6566
6564
|
handleFrameworkEventAngular(this, event, "checked");
|
|
6567
6565
|
}
|
|
6568
6566
|
handleBlur(event) {
|
|
@@ -6582,12 +6580,13 @@ class DBSwitch {
|
|
|
6582
6580
|
this.cls = cls;
|
|
6583
6581
|
this.getBoolean = getBoolean;
|
|
6584
6582
|
this.id = input();
|
|
6585
|
-
this.checked = model();
|
|
6586
6583
|
this.visualAid = input();
|
|
6587
6584
|
this.size = input();
|
|
6588
6585
|
this.showLabel = input();
|
|
6589
6586
|
this.emphasis = input();
|
|
6587
|
+
this.showRequiredAsterisk = input();
|
|
6590
6588
|
this.className = input();
|
|
6589
|
+
this.checked = model();
|
|
6591
6590
|
this.value = input();
|
|
6592
6591
|
this.disabled = model();
|
|
6593
6592
|
this.describedbyid = input();
|
|
@@ -6595,7 +6594,6 @@ class DBSwitch {
|
|
|
6595
6594
|
this.validation = input();
|
|
6596
6595
|
this.name = input();
|
|
6597
6596
|
this.required = input();
|
|
6598
|
-
this.showRequiredAsterisk = input();
|
|
6599
6597
|
this.icon = input();
|
|
6600
6598
|
this.iconAfter = input();
|
|
6601
6599
|
this.label = input();
|
|
@@ -6604,17 +6602,6 @@ class DBSwitch {
|
|
|
6604
6602
|
this.focus = output();
|
|
6605
6603
|
this._ref = viewChild("_ref");
|
|
6606
6604
|
this._id = signal(undefined);
|
|
6607
|
-
this._checked = signal(false);
|
|
6608
|
-
effect(() => {
|
|
6609
|
-
// --- Mitosis: Workaround to make sure the effect() is triggered ---
|
|
6610
|
-
this.checked();
|
|
6611
|
-
// ---
|
|
6612
|
-
if (this.checked() !== undefined && this.checked() !== null) {
|
|
6613
|
-
this._checked.set(getBoolean(this.checked()));
|
|
6614
|
-
}
|
|
6615
|
-
}, {
|
|
6616
|
-
// Enable writing to signals inside effects
|
|
6617
|
-
});
|
|
6618
6605
|
}
|
|
6619
6606
|
/**
|
|
6620
6607
|
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
@@ -6671,7 +6658,7 @@ class DBSwitch {
|
|
|
6671
6658
|
this.enableAttributePassing(element, "db-switch");
|
|
6672
6659
|
}
|
|
6673
6660
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBSwitch, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6674
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBSwitch, isStandalone: true, selector: "db-switch", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null },
|
|
6661
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBSwitch, isStandalone: true, selector: "db-switch", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, visualAid: { classPropertyName: "visualAid", publicName: "visualAid", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, showLabel: { classPropertyName: "showLabel", publicName: "showLabel", isSignal: true, isRequired: false, transformFunction: null }, emphasis: { classPropertyName: "emphasis", publicName: "emphasis", isSignal: true, isRequired: false, transformFunction: null }, showRequiredAsterisk: { classPropertyName: "showRequiredAsterisk", publicName: "showRequiredAsterisk", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, checked: { classPropertyName: "checked", publicName: "checked", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, describedbyid: { classPropertyName: "describedbyid", publicName: "describedbyid", isSignal: true, isRequired: false, transformFunction: null }, ariaDescribedBy: { classPropertyName: "ariaDescribedBy", publicName: "ariaDescribedBy", isSignal: true, isRequired: false, transformFunction: null }, validation: { classPropertyName: "validation", publicName: "validation", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, iconAfter: { classPropertyName: "iconAfter", publicName: "iconAfter", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { checked: "checkedChange", disabled: "disabledChange", change: "change", blur: "blur", focus: "focus" }, providers: [{
|
|
6675
6662
|
provide: NG_VALUE_ACCESSOR,
|
|
6676
6663
|
useExisting: DBSwitch,
|
|
6677
6664
|
multi: true
|
|
@@ -6682,13 +6669,13 @@ class DBSwitch {
|
|
|
6682
6669
|
[attr.data-hide-label]="getHideProp(showLabel())"
|
|
6683
6670
|
[attr.data-emphasis]="emphasis()"
|
|
6684
6671
|
[attr.for]="_id()"
|
|
6672
|
+
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
6685
6673
|
[class]="cls('db-switch', className())"
|
|
6686
6674
|
>
|
|
6687
6675
|
<input
|
|
6688
6676
|
type="checkbox"
|
|
6689
6677
|
role="switch"
|
|
6690
6678
|
[attr.id]="_id()"
|
|
6691
|
-
[attr.aria-checked]="getBooleanAsString(_checked())"
|
|
6692
6679
|
#_ref
|
|
6693
6680
|
[checked]="getBoolean(checked(), 'checked')"
|
|
6694
6681
|
[attr.value]="value()"
|
|
@@ -6698,7 +6685,6 @@ class DBSwitch {
|
|
|
6698
6685
|
[attr.data-custom-validity]="validation()"
|
|
6699
6686
|
[attr.name]="name()"
|
|
6700
6687
|
[required]="getBoolean(required(), 'required')"
|
|
6701
|
-
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
6702
6688
|
[attr.data-aid-icon]="icon()"
|
|
6703
6689
|
[attr.data-aid-icon-after]="iconAfter()"
|
|
6704
6690
|
(change)="handleChange($event)"
|
|
@@ -6724,13 +6710,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
6724
6710
|
[attr.data-hide-label]="getHideProp(showLabel())"
|
|
6725
6711
|
[attr.data-emphasis]="emphasis()"
|
|
6726
6712
|
[attr.for]="_id()"
|
|
6713
|
+
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
6727
6714
|
[class]="cls('db-switch', className())"
|
|
6728
6715
|
>
|
|
6729
6716
|
<input
|
|
6730
6717
|
type="checkbox"
|
|
6731
6718
|
role="switch"
|
|
6732
6719
|
[attr.id]="_id()"
|
|
6733
|
-
[attr.aria-checked]="getBooleanAsString(_checked())"
|
|
6734
6720
|
#_ref
|
|
6735
6721
|
[checked]="getBoolean(checked(), 'checked')"
|
|
6736
6722
|
[attr.value]="value()"
|
|
@@ -6740,7 +6726,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
6740
6726
|
[attr.data-custom-validity]="validation()"
|
|
6741
6727
|
[attr.name]="name()"
|
|
6742
6728
|
[required]="getBoolean(required(), 'required')"
|
|
6743
|
-
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
6744
6729
|
[attr.data-aid-icon]="icon()"
|
|
6745
6730
|
[attr.data-aid-icon-after]="iconAfter()"
|
|
6746
6731
|
(change)="handleChange($event)"
|
|
@@ -7487,13 +7472,13 @@ class DBTextarea {
|
|
|
7487
7472
|
this.maxLength = input();
|
|
7488
7473
|
this.className = input();
|
|
7489
7474
|
this.variant = input();
|
|
7475
|
+
this.showRequiredAsterisk = input();
|
|
7490
7476
|
this.showLabel = input();
|
|
7491
7477
|
this.label = input();
|
|
7492
7478
|
this.fieldSizing = input();
|
|
7493
7479
|
this.resize = input();
|
|
7494
7480
|
this.showResizer = input();
|
|
7495
7481
|
this.disabled = model();
|
|
7496
|
-
this.showRequiredAsterisk = input();
|
|
7497
7482
|
this.readOnly = input();
|
|
7498
7483
|
this.readonly = input();
|
|
7499
7484
|
this.form = input();
|
|
@@ -7617,7 +7602,7 @@ class DBTextarea {
|
|
|
7617
7602
|
this.enableAttributePassing(element, "db-textarea");
|
|
7618
7603
|
}
|
|
7619
7604
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBTextarea, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7620
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBTextarea, isStandalone: true, selector: "db-textarea", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, invalidMessage: { classPropertyName: "invalidMessage", publicName: "invalidMessage", isSignal: true, isRequired: false, transformFunction: null }, message: { classPropertyName: "message", publicName: "message", isSignal: true, isRequired: false, transformFunction: null }, showMessage: { classPropertyName: "showMessage", publicName: "showMessage", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, validMessage: { classPropertyName: "validMessage", publicName: "validMessage", isSignal: true, isRequired: false, transformFunction: null }, validation: { classPropertyName: "validation", publicName: "validation", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, minLength: { classPropertyName: "minLength", publicName: "minLength", isSignal: true, isRequired: false, transformFunction: null }, maxLength: { classPropertyName: "maxLength", publicName: "maxLength", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null },
|
|
7605
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBTextarea, isStandalone: true, selector: "db-textarea", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, invalidMessage: { classPropertyName: "invalidMessage", publicName: "invalidMessage", isSignal: true, isRequired: false, transformFunction: null }, message: { classPropertyName: "message", publicName: "message", isSignal: true, isRequired: false, transformFunction: null }, showMessage: { classPropertyName: "showMessage", publicName: "showMessage", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, validMessage: { classPropertyName: "validMessage", publicName: "validMessage", isSignal: true, isRequired: false, transformFunction: null }, validation: { classPropertyName: "validation", publicName: "validation", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, minLength: { classPropertyName: "minLength", publicName: "minLength", isSignal: true, isRequired: false, transformFunction: null }, maxLength: { classPropertyName: "maxLength", publicName: "maxLength", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, showRequiredAsterisk: { classPropertyName: "showRequiredAsterisk", publicName: "showRequiredAsterisk", isSignal: true, isRequired: false, transformFunction: null }, showLabel: { classPropertyName: "showLabel", publicName: "showLabel", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, fieldSizing: { classPropertyName: "fieldSizing", publicName: "fieldSizing", isSignal: true, isRequired: false, transformFunction: null }, resize: { classPropertyName: "resize", publicName: "resize", isSignal: true, isRequired: false, transformFunction: null }, showResizer: { classPropertyName: "showResizer", publicName: "showResizer", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, readOnly: { classPropertyName: "readOnly", publicName: "readOnly", isSignal: true, isRequired: false, transformFunction: null }, readonly: { classPropertyName: "readonly", publicName: "readonly", isSignal: true, isRequired: false, transformFunction: null }, form: { classPropertyName: "form", publicName: "form", isSignal: true, isRequired: false, transformFunction: null }, maxlength: { classPropertyName: "maxlength", publicName: "maxlength", isSignal: true, isRequired: false, transformFunction: null }, minlength: { classPropertyName: "minlength", publicName: "minlength", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, wrap: { classPropertyName: "wrap", publicName: "wrap", isSignal: true, isRequired: false, transformFunction: null }, spellCheck: { classPropertyName: "spellCheck", publicName: "spellCheck", isSignal: true, isRequired: false, transformFunction: null }, autocomplete: { classPropertyName: "autocomplete", publicName: "autocomplete", isSignal: true, isRequired: false, transformFunction: null }, ariaDescribedBy: { classPropertyName: "ariaDescribedBy", publicName: "ariaDescribedBy", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, rows: { classPropertyName: "rows", publicName: "rows", isSignal: true, isRequired: false, transformFunction: null }, cols: { classPropertyName: "cols", publicName: "cols", isSignal: true, isRequired: false, transformFunction: null }, messageIcon: { classPropertyName: "messageIcon", publicName: "messageIcon", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { value: "valueChange", disabled: "disabledChange", input: "input", change: "change", blur: "blur", focus: "focus" }, providers: [{
|
|
7621
7606
|
provide: NG_VALUE_ACCESSOR,
|
|
7622
7607
|
useExisting: DBTextarea,
|
|
7623
7608
|
multi: true
|
|
@@ -7625,6 +7610,7 @@ class DBTextarea {
|
|
|
7625
7610
|
<div
|
|
7626
7611
|
[class]="cls('db-textarea', className())"
|
|
7627
7612
|
[attr.data-variant]="variant()"
|
|
7613
|
+
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
7628
7614
|
[attr.data-hide-label]="getHideProp(showLabel())"
|
|
7629
7615
|
>
|
|
7630
7616
|
<label [attr.for]="_id()">{{label() ?? DEFAULT_LABEL}}</label>
|
|
@@ -7638,7 +7624,6 @@ class DBTextarea {
|
|
|
7638
7624
|
[attr.data-hide-resizer]="getHideProp(showResizer() ?? true)"
|
|
7639
7625
|
[disabled]="getBoolean(disabled(), 'disabled')"
|
|
7640
7626
|
[required]="getBoolean(required(), 'required')"
|
|
7641
|
-
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
7642
7627
|
[attr.readOnly]="getBoolean(readOnly(), 'readOnly') || getBoolean(readonly(), 'readonly')"
|
|
7643
7628
|
[attr.form]="form()"
|
|
7644
7629
|
[attr.maxLength]="getNumber(maxLength(), maxlength())"
|
|
@@ -7685,6 +7670,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
7685
7670
|
<div
|
|
7686
7671
|
[class]="cls('db-textarea', className())"
|
|
7687
7672
|
[attr.data-variant]="variant()"
|
|
7673
|
+
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
7688
7674
|
[attr.data-hide-label]="getHideProp(showLabel())"
|
|
7689
7675
|
>
|
|
7690
7676
|
<label [attr.for]="_id()">{{label() ?? DEFAULT_LABEL}}</label>
|
|
@@ -7698,7 +7684,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
7698
7684
|
[attr.data-hide-resizer]="getHideProp(showResizer() ?? true)"
|
|
7699
7685
|
[disabled]="getBoolean(disabled(), 'disabled')"
|
|
7700
7686
|
[required]="getBoolean(required(), 'required')"
|
|
7701
|
-
[attr.data-hide-asterisk]="getHideProp(showRequiredAsterisk())"
|
|
7702
7687
|
[attr.readOnly]="getBoolean(readOnly(), 'readOnly') || getBoolean(readonly(), 'readonly')"
|
|
7703
7688
|
[attr.form]="form()"
|
|
7704
7689
|
[attr.maxLength]="getNumber(maxLength(), maxlength())"
|