carbon-components-angular 5.38.1 → 5.38.2
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/docs/documentation/components/PasswordInputLabelComponent.html +1 -1
- package/docs/documentation/components/TextInputLabelComponent.html +1 -1
- package/docs/documentation/js/search/search_index.js +2 -2
- package/docs/documentation/modules/ThemeModule/dependencies.svg +4 -4
- package/docs/documentation/modules/ThemeModule.html +4 -4
- package/docs/documentation/modules/TilesModule/dependencies.svg +91 -91
- package/docs/documentation/modules/TilesModule.html +91 -91
- package/docs/documentation/modules/TimePickerModule/dependencies.svg +4 -4
- package/docs/documentation/modules/TimePickerModule.html +4 -4
- package/docs/documentation/modules/TimePickerSelectModule/dependencies.svg +30 -30
- package/docs/documentation/modules/TimePickerSelectModule.html +30 -30
- package/docs/documentation/modules/ToggleModule/dependencies.svg +17 -17
- package/docs/documentation/modules/ToggleModule.html +17 -17
- package/docs/documentation/modules/ToggletipModule/dependencies.svg +39 -39
- package/docs/documentation/modules/ToggletipModule.html +39 -39
- package/docs/documentation/modules/TooltipModule/dependencies.svg +4 -4
- package/docs/documentation/modules/TooltipModule.html +4 -4
- package/docs/documentation/modules/TreeviewModule/dependencies.svg +37 -37
- package/docs/documentation/modules/TreeviewModule.html +37 -37
- package/docs/documentation/modules/UIShellModule/dependencies.svg +4 -4
- package/docs/documentation/modules/UIShellModule.html +4 -4
- package/docs/documentation.json +14 -14
- package/docs/storybook/{1345.99dc9be1.iframe.bundle.js → 1345.9201efca.iframe.bundle.js} +1 -1
- package/docs/storybook/iframe.html +2 -2
- package/docs/storybook/{main.f9881119.iframe.bundle.js → main.99dffacb.iframe.bundle.js} +1 -1
- package/docs/storybook/project.json +1 -1
- package/docs/storybook/{runtime~main.e4e9c482.iframe.bundle.js → runtime~main.b26c0bbe.iframe.bundle.js} +1 -1
- package/esm2020/input/password-input-label.component.mjs +2 -2
- package/esm2020/input/text-input-label.component.mjs +2 -2
- package/fesm2015/carbon-components-angular-input.mjs +4 -4
- package/fesm2015/carbon-components-angular-input.mjs.map +1 -1
- package/fesm2020/carbon-components-angular-input.mjs +2 -2
- package/fesm2020/carbon-components-angular-input.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2046,7 +2046,7 @@ export class PasswordInputLabelComponent extends BaseIconButton implements After
|
|
|
2046
2046
|
@HostBinding("class.cds--password-input-wrapper") passwordInputWrapper = true;
|
|
2047
2047
|
@HostBinding("class.cds--text-input-wrapper") textInputWrapper = true;
|
|
2048
2048
|
@HostBinding("class.cds--text-input-wrapper--readonly") get isReadonly() {
|
|
2049
|
-
return this.wrapper?.nativeElement.querySelector("input")?.readOnly;
|
|
2049
|
+
return this.wrapper?.nativeElement.querySelector("input")?.readOnly ?? false;
|
|
2050
2050
|
}
|
|
2051
2051
|
|
|
2052
2052
|
/**
|
|
@@ -1193,7 +1193,7 @@ export class TextInputLabelComponent implements AfterViewInit {
|
|
|
1193
1193
|
@HostBinding("class.cds--form-item") labelClass = true;
|
|
1194
1194
|
|
|
1195
1195
|
@HostBinding("class.cds--text-input-wrapper--readonly") get isReadonly() {
|
|
1196
|
-
return this.wrapper?.nativeElement.querySelector("input")?.readOnly;
|
|
1196
|
+
return this.wrapper?.nativeElement.querySelector("input")?.readOnly ?? false;
|
|
1197
1197
|
}
|
|
1198
1198
|
|
|
1199
1199
|
/**
|