carbon-components-angular 5.48.0 → 5.50.0
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/ListRow.html +66 -235
- package/docs/documentation/components/PasswordInputLabelComponent.html +263 -71
- package/docs/documentation/components/StructuredList.html +1 -1
- package/docs/documentation/components/TextInputLabelComponent.html +379 -108
- package/docs/documentation/coverage.html +14 -14
- package/docs/documentation/directives/PasswordInput.html +63 -5
- package/docs/documentation/directives/TextInput.html +60 -1
- package/docs/documentation/js/search/search_index.js +2 -2
- package/docs/documentation/modules/TagModule/dependencies.svg +28 -28
- package/docs/documentation/modules/TagModule.html +28 -28
- package/docs/documentation/modules/ThemeModule/dependencies.svg +13 -13
- package/docs/documentation/modules/ThemeModule.html +13 -13
- package/docs/documentation/modules/TilesModule/dependencies.svg +100 -100
- package/docs/documentation/modules/TilesModule.html +100 -100
- package/docs/documentation/modules/TimePickerModule/dependencies.svg +4 -4
- package/docs/documentation/modules/TimePickerModule.html +4 -4
- package/docs/documentation/modules/TimePickerSelectModule/dependencies.svg +31 -31
- package/docs/documentation/modules/TimePickerSelectModule.html +31 -31
- package/docs/documentation/modules/ToggleModule/dependencies.svg +18 -18
- package/docs/documentation/modules/ToggleModule.html +18 -18
- package/docs/documentation/modules/ToggletipModule/dependencies.svg +37 -37
- package/docs/documentation/modules/ToggletipModule.html +37 -37
- package/docs/documentation/modules/TooltipModule/dependencies.svg +4 -4
- package/docs/documentation/modules/TooltipModule.html +4 -4
- package/docs/documentation/modules/TreeviewModule/dependencies.svg +33 -33
- package/docs/documentation/modules/TreeviewModule.html +33 -33
- package/docs/documentation/modules/UIShellModule/dependencies.svg +4 -4
- package/docs/documentation/modules/UIShellModule.html +4 -4
- package/docs/documentation.json +336 -178
- package/docs/storybook/1345.4ae7e616.iframe.bundle.js +1 -0
- package/docs/storybook/iframe.html +2 -2
- package/docs/storybook/index.json +1 -1
- package/docs/storybook/{input-input-stories.fa251a40.iframe.bundle.js → input-input-stories.13368962.iframe.bundle.js} +1 -1
- package/docs/storybook/{input-password-stories.def6cbdf.iframe.bundle.js → input-password-stories.de5bf47f.iframe.bundle.js} +1 -1
- package/docs/storybook/main.8ed1584b.iframe.bundle.js +1 -0
- package/docs/storybook/main.css +34 -28
- package/docs/storybook/patterns-filtering-multiple-categories-stories.17085244.iframe.bundle.js +1 -0
- package/docs/storybook/project.json +1 -1
- package/docs/storybook/{runtime~main.90978505.iframe.bundle.js → runtime~main.ac7f971f.iframe.bundle.js} +1 -1
- package/docs/storybook/stories.json +1 -1
- package/docs/storybook/{structured-list-structured-list-stories.c86ef32b.iframe.bundle.js → structured-list-structured-list-stories.a1c0bf43.iframe.bundle.js} +1 -1
- package/esm2020/input/input.directive.mjs +9 -3
- package/esm2020/input/label.component.mjs +1 -1
- package/esm2020/input/password-input-label.component.mjs +92 -38
- package/esm2020/input/password.directive.mjs +9 -3
- package/esm2020/input/text-input-label.component.mjs +145 -83
- package/esm2020/structured-list/list-row.component.mjs +14 -20
- package/esm2020/structured-list/structured-list.component.mjs +2 -2
- package/fesm2015/carbon-components-angular-input.mjs +251 -123
- package/fesm2015/carbon-components-angular-input.mjs.map +1 -1
- package/fesm2015/carbon-components-angular-structured-list.mjs +14 -20
- package/fesm2015/carbon-components-angular-structured-list.mjs.map +1 -1
- package/fesm2020/carbon-components-angular-input.mjs +251 -123
- package/fesm2020/carbon-components-angular-input.mjs.map +1 -1
- package/fesm2020/carbon-components-angular-structured-list.mjs +14 -20
- package/fesm2020/carbon-components-angular-structured-list.mjs.map +1 -1
- package/input/input.directive.d.ts +1 -0
- package/input/password-input-label.component.d.ts +7 -1
- package/input/password.directive.d.ts +1 -0
- package/input/text-input-label.component.d.ts +9 -2
- package/package.json +1 -1
- package/structured-list/list-row.component.d.ts +1 -3
- package/docs/storybook/1345.e54b0c87.iframe.bundle.js +0 -1
- package/docs/storybook/main.e6ee5d76.iframe.bundle.js +0 -1
- package/docs/storybook/patterns-filtering-multiple-categories-stories.487f9487.iframe.bundle.js +0 -1
|
@@ -1274,7 +1274,6 @@ export class StructuredList implements AfterContentInit, ControlValueAccessor {
|
|
|
1274
1274
|
this.rows.forEach(row => {
|
|
1275
1275
|
setSelection(row);
|
|
1276
1276
|
row.name = this.name;
|
|
1277
|
-
row.tabindex = this.selection ? "0" : null;
|
|
1278
1277
|
row.change.subscribe(() => {
|
|
1279
1278
|
this.selected.emit({
|
|
1280
1279
|
value: row.value,
|
|
@@ -1282,6 +1281,7 @@ export class StructuredList implements AfterContentInit, ControlValueAccessor {
|
|
|
1282
1281
|
name: this.name
|
|
1283
1282
|
});
|
|
1284
1283
|
this.onChange(row.value);
|
|
1284
|
+
this.writeValue(row.value);
|
|
1285
1285
|
});
|
|
1286
1286
|
});
|
|
1287
1287
|
this.updateChildren();
|