@alauda/ui 6.1.6-beta → 6.1.6-beta.3

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 (47) hide show
  1. package/alauda-ui.metadata.json +1 -1
  2. package/bundles/alauda-ui.umd.js +4 -2
  3. package/bundles/alauda-ui.umd.js.map +1 -1
  4. package/bundles/alauda-ui.umd.min.js +1 -1
  5. package/bundles/alauda-ui.umd.min.js.map +1 -1
  6. package/esm2015/accordion/accordion-item/accordion-item.component.ngfactory.js +2 -2
  7. package/esm2015/back-top/back-top.component.ngfactory.js +2 -2
  8. package/esm2015/breadcrumb/breadcrumb-item.component.ngfactory.js +2 -2
  9. package/esm2015/button/button.component.ngfactory.js +2 -2
  10. package/esm2015/checkbox/checkbox.component.js +3 -3
  11. package/esm2015/checkbox/checkbox.component.ngfactory.js +3 -3
  12. package/esm2015/checkbox/checkbox.component.ngsummary.json +1 -1
  13. package/esm2015/date-picker/calendar/header/component.ngfactory.js +5 -5
  14. package/esm2015/date-picker/trigger/trigger.component.ngfactory.js +9 -9
  15. package/esm2015/dialog/confirm-dialog/confirm-dialog.component.ngfactory.js +3 -3
  16. package/esm2015/dialog/dialog-content/dialog-header.component.ngfactory.js +2 -2
  17. package/esm2015/drawer/component/drawer.component.ngfactory.js +2 -2
  18. package/esm2015/dropdown/dropdown-button/dropdown-button.component.ngfactory.js +2 -2
  19. package/esm2015/dropdown/submenu/submenu.component.ngfactory.js +2 -2
  20. package/esm2015/icon/icon.component.js +3 -3
  21. package/esm2015/icon/icon.component.ngfactory.js +1 -1
  22. package/esm2015/icon/icon.component.ngsummary.json +1 -1
  23. package/esm2015/inline-alert/inline-alert.component.ngfactory.js +4 -4
  24. package/esm2015/input/input.component.js +4 -2
  25. package/esm2015/input/input.component.ngfactory.js +1 -1
  26. package/esm2015/input/input.component.ngsummary.json +1 -1
  27. package/esm2015/input/number-input/number-input.component.ngfactory.js +3 -3
  28. package/esm2015/input/search/search.component.ngfactory.js +6 -6
  29. package/esm2015/message/message.component.ngfactory.js +2 -2
  30. package/esm2015/notification/notification.component.ngfactory.js +3 -3
  31. package/esm2015/paginator/paginator.component.ngfactory.js +7 -7
  32. package/esm2015/radio/radio-button/radio-button.component.ngfactory.js +2 -2
  33. package/esm2015/select/multi-select/multi-select.component.ngfactory.js +4 -4
  34. package/esm2015/select/option/option.component.ngfactory.js +2 -2
  35. package/esm2015/select/select.component.ngfactory.js +4 -4
  36. package/esm2015/steps/steps.component.ngfactory.js +3 -3
  37. package/esm2015/table/table-cell.component.ngfactory.js +2 -2
  38. package/esm2015/tabs/tab-group.component.ngfactory.js +3 -3
  39. package/esm2015/tabs/tab-header.component.ngfactory.js +3 -3
  40. package/esm2015/tag/tag.component.ngfactory.js +3 -3
  41. package/esm2015/time-picker/component.ngfactory.js +5 -5
  42. package/esm2015/tree-select/tree-node/tree-node.component.ngfactory.js +4 -4
  43. package/esm2015/tree-select/tree-select.component.ngfactory.js +4 -4
  44. package/fesm2015/alauda-ui.js +5 -3
  45. package/fesm2015/alauda-ui.js.map +1 -1
  46. package/input/input.component.d.ts +1 -0
  47. package/package.json +1 -1
@@ -694,7 +694,7 @@
694
694
  { type: IconRegisterService }
695
695
  ]; };
696
696
  IconComponent.propDecorators = {
697
- icon: [{ type: i0.Input }],
697
+ icon: [{ type: i0.HostBinding, args: ['attr.data-test',] }, { type: i0.Input }],
698
698
  light: [{ type: i0.Input }],
699
699
  dark: [{ type: i0.Input }],
700
700
  link: [{ type: i0.Input }],
@@ -3933,7 +3933,7 @@
3933
3933
  CheckboxComponent.propDecorators = {
3934
3934
  name: [{ type: i0.Input }],
3935
3935
  type: [{ type: i0.Input }],
3936
- label: [{ type: i0.Input }],
3936
+ label: [{ type: i0.HostBinding, args: ['attr.data-test',] }, { type: i0.Input }],
3937
3937
  indeterminate: [{ type: i0.Input }],
3938
3938
  elRef: [{ type: i0.ViewChild, args: ['elRef', { static: true },] }]
3939
3939
  };
@@ -3956,6 +3956,7 @@
3956
3956
  function InputComponent(elementRef, renderer) {
3957
3957
  this.elementRef = elementRef;
3958
3958
  this.renderer = renderer;
3959
+ this._id = 'aui-input';
3959
3960
  this._size = ComponentSize.Medium;
3960
3961
  this._disabled = false;
3961
3962
  this.size$ = new rxjs.BehaviorSubject(this.size);
@@ -4021,6 +4022,7 @@
4021
4022
  { type: i0.Renderer2 }
4022
4023
  ]; };
4023
4024
  InputComponent.propDecorators = {
4025
+ _id: [{ type: i0.HostBinding, args: ['attr.data-test',] }],
4024
4026
  size: [{ type: i0.Input }],
4025
4027
  disabled: [{ type: i0.Input }]
4026
4028
  };