carbon-components-angular 5.57.7 → 5.57.8

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 (36) hide show
  1. package/docs/documentation/components/Search.html +2 -2
  2. package/docs/documentation/js/search/search_index.js +2 -2
  3. package/docs/documentation/modules/ThemeModule/dependencies.svg +13 -13
  4. package/docs/documentation/modules/ThemeModule.html +13 -13
  5. package/docs/documentation/modules/TilesModule/dependencies.svg +108 -108
  6. package/docs/documentation/modules/TilesModule.html +108 -108
  7. package/docs/documentation/modules/TimePickerModule/dependencies.svg +7 -7
  8. package/docs/documentation/modules/TimePickerModule.html +7 -7
  9. package/docs/documentation/modules/TimePickerSelectModule/dependencies.svg +45 -49
  10. package/docs/documentation/modules/TimePickerSelectModule.html +45 -49
  11. package/docs/documentation/modules/ToggleModule/dependencies.svg +40 -44
  12. package/docs/documentation/modules/ToggleModule.html +40 -44
  13. package/docs/documentation/modules/ToggletipModule/dependencies.svg +37 -37
  14. package/docs/documentation/modules/ToggletipModule.html +37 -37
  15. package/docs/documentation/modules/TooltipModule/dependencies.svg +4 -4
  16. package/docs/documentation/modules/TooltipModule.html +4 -4
  17. package/docs/documentation/modules/TreeviewModule/dependencies.svg +37 -37
  18. package/docs/documentation/modules/TreeviewModule.html +37 -37
  19. package/docs/documentation.json +142 -142
  20. package/docs/storybook/5868.b4e430ef.iframe.bundle.js +1 -0
  21. package/docs/storybook/contained-list-contained-list-stories.78647fe4.iframe.bundle.js +1 -0
  22. package/docs/storybook/iframe.html +2 -2
  23. package/docs/storybook/{main.cbd21ea8.iframe.bundle.js → main.c603de4f.iframe.bundle.js} +1 -1
  24. package/docs/storybook/project.json +1 -1
  25. package/docs/storybook/{runtime~main.c8376105.iframe.bundle.js → runtime~main.73123593.iframe.bundle.js} +1 -1
  26. package/docs/storybook/{search-search-stories.1ec59397.iframe.bundle.js → search-search-stories.f110ce00.iframe.bundle.js} +1 -1
  27. package/docs/storybook/ui-shell-ui-shell-stories.a7356f0e.iframe.bundle.js +1 -0
  28. package/esm2020/search/search.component.mjs +3 -3
  29. package/fesm2015/carbon-components-angular-search.mjs +2 -2
  30. package/fesm2015/carbon-components-angular-search.mjs.map +1 -1
  31. package/fesm2020/carbon-components-angular-search.mjs +2 -2
  32. package/fesm2020/carbon-components-angular-search.mjs.map +1 -1
  33. package/package.json +1 -1
  34. package/docs/storybook/5868.6c94dae1.iframe.bundle.js +0 -1
  35. package/docs/storybook/contained-list-contained-list-stories.b7913db8.iframe.bundle.js +0 -1
  36. package/docs/storybook/ui-shell-ui-shell-stories.032f0170.iframe.bundle.js +0 -1
@@ -2714,13 +2714,13 @@ export class Search implements ControlValueAccessor {
2714
2714
  */
2715
2715
  clearSearch(): void {
2716
2716
  this.value = "";
2717
+ this.doValueChange();
2717
2718
  this.clear.emit();
2718
- this.propagateChange(this.value);
2719
2719
  }
2720
2720
 
2721
2721
  doValueChange() {
2722
- this.valueChange.emit(this.value);
2723
2722
  this.propagateChange(this.value);
2723
+ this.valueChange.emit(this.value);
2724
2724
  }
2725
2725
 
2726
2726
  openSearch() {