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.
Files changed (65) hide show
  1. package/docs/documentation/components/ListRow.html +66 -235
  2. package/docs/documentation/components/PasswordInputLabelComponent.html +263 -71
  3. package/docs/documentation/components/StructuredList.html +1 -1
  4. package/docs/documentation/components/TextInputLabelComponent.html +379 -108
  5. package/docs/documentation/coverage.html +14 -14
  6. package/docs/documentation/directives/PasswordInput.html +63 -5
  7. package/docs/documentation/directives/TextInput.html +60 -1
  8. package/docs/documentation/js/search/search_index.js +2 -2
  9. package/docs/documentation/modules/TagModule/dependencies.svg +28 -28
  10. package/docs/documentation/modules/TagModule.html +28 -28
  11. package/docs/documentation/modules/ThemeModule/dependencies.svg +13 -13
  12. package/docs/documentation/modules/ThemeModule.html +13 -13
  13. package/docs/documentation/modules/TilesModule/dependencies.svg +100 -100
  14. package/docs/documentation/modules/TilesModule.html +100 -100
  15. package/docs/documentation/modules/TimePickerModule/dependencies.svg +4 -4
  16. package/docs/documentation/modules/TimePickerModule.html +4 -4
  17. package/docs/documentation/modules/TimePickerSelectModule/dependencies.svg +31 -31
  18. package/docs/documentation/modules/TimePickerSelectModule.html +31 -31
  19. package/docs/documentation/modules/ToggleModule/dependencies.svg +18 -18
  20. package/docs/documentation/modules/ToggleModule.html +18 -18
  21. package/docs/documentation/modules/ToggletipModule/dependencies.svg +37 -37
  22. package/docs/documentation/modules/ToggletipModule.html +37 -37
  23. package/docs/documentation/modules/TooltipModule/dependencies.svg +4 -4
  24. package/docs/documentation/modules/TooltipModule.html +4 -4
  25. package/docs/documentation/modules/TreeviewModule/dependencies.svg +33 -33
  26. package/docs/documentation/modules/TreeviewModule.html +33 -33
  27. package/docs/documentation/modules/UIShellModule/dependencies.svg +4 -4
  28. package/docs/documentation/modules/UIShellModule.html +4 -4
  29. package/docs/documentation.json +336 -178
  30. package/docs/storybook/1345.4ae7e616.iframe.bundle.js +1 -0
  31. package/docs/storybook/iframe.html +2 -2
  32. package/docs/storybook/index.json +1 -1
  33. package/docs/storybook/{input-input-stories.fa251a40.iframe.bundle.js → input-input-stories.13368962.iframe.bundle.js} +1 -1
  34. package/docs/storybook/{input-password-stories.def6cbdf.iframe.bundle.js → input-password-stories.de5bf47f.iframe.bundle.js} +1 -1
  35. package/docs/storybook/main.8ed1584b.iframe.bundle.js +1 -0
  36. package/docs/storybook/main.css +34 -28
  37. package/docs/storybook/patterns-filtering-multiple-categories-stories.17085244.iframe.bundle.js +1 -0
  38. package/docs/storybook/project.json +1 -1
  39. package/docs/storybook/{runtime~main.90978505.iframe.bundle.js → runtime~main.ac7f971f.iframe.bundle.js} +1 -1
  40. package/docs/storybook/stories.json +1 -1
  41. package/docs/storybook/{structured-list-structured-list-stories.c86ef32b.iframe.bundle.js → structured-list-structured-list-stories.a1c0bf43.iframe.bundle.js} +1 -1
  42. package/esm2020/input/input.directive.mjs +9 -3
  43. package/esm2020/input/label.component.mjs +1 -1
  44. package/esm2020/input/password-input-label.component.mjs +92 -38
  45. package/esm2020/input/password.directive.mjs +9 -3
  46. package/esm2020/input/text-input-label.component.mjs +145 -83
  47. package/esm2020/structured-list/list-row.component.mjs +14 -20
  48. package/esm2020/structured-list/structured-list.component.mjs +2 -2
  49. package/fesm2015/carbon-components-angular-input.mjs +251 -123
  50. package/fesm2015/carbon-components-angular-input.mjs.map +1 -1
  51. package/fesm2015/carbon-components-angular-structured-list.mjs +14 -20
  52. package/fesm2015/carbon-components-angular-structured-list.mjs.map +1 -1
  53. package/fesm2020/carbon-components-angular-input.mjs +251 -123
  54. package/fesm2020/carbon-components-angular-input.mjs.map +1 -1
  55. package/fesm2020/carbon-components-angular-structured-list.mjs +14 -20
  56. package/fesm2020/carbon-components-angular-structured-list.mjs.map +1 -1
  57. package/input/input.directive.d.ts +1 -0
  58. package/input/password-input-label.component.d.ts +7 -1
  59. package/input/password.directive.d.ts +1 -0
  60. package/input/text-input-label.component.d.ts +9 -2
  61. package/package.json +1 -1
  62. package/structured-list/list-row.component.d.ts +1 -3
  63. package/docs/storybook/1345.e54b0c87.iframe.bundle.js +0 -1
  64. package/docs/storybook/main.e6ee5d76.iframe.bundle.js +0 -1
  65. 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();