@alauda/ui 6.4.6-beta.3 → 6.4.6-beta.6

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 (102) hide show
  1. package/alauda-ui.d.ts +3 -0
  2. package/button/button.types.d.ts +9 -0
  3. package/esm2020/accordion/accordion-item/accordion-item.component.mjs +3 -1
  4. package/esm2020/alauda-ui.mjs +4 -1
  5. package/esm2020/anchor/anchor.component.mjs +2 -1
  6. package/esm2020/back-top/back-top.component.mjs +4 -2
  7. package/esm2020/button/button.component.mjs +2 -1
  8. package/esm2020/button/button.types.mjs +10 -1
  9. package/esm2020/date-picker/calendar/constant.mjs +2 -1
  10. package/esm2020/date-picker/calendar/header/component.mjs +5 -1
  11. package/esm2020/date-picker/calendar/panel/picker-panel.mjs +5 -1
  12. package/esm2020/date-picker/calendar/range-picker-panel/component.mjs +3 -1
  13. package/esm2020/date-picker/calendar/util.mjs +2 -1
  14. package/esm2020/dialog/dialog-content/dialog-content.component.mjs +2 -1
  15. package/esm2020/dialog/dialog.service.mjs +2 -1
  16. package/esm2020/drawer/component/drawer.component.mjs +4 -1
  17. package/esm2020/drawer/component/helper-directives.mjs +5 -1
  18. package/esm2020/form/common-form.mjs +8 -1
  19. package/esm2020/icon/icon-register.service.mjs +2 -1
  20. package/esm2020/input/autosize.directive.mjs +7 -2
  21. package/esm2020/input/input.component.mjs +5 -1
  22. package/esm2020/input/search/search.component.mjs +2 -2
  23. package/esm2020/input/tags-input/tags-input.component.mjs +7 -2
  24. package/esm2020/message/message.config.mjs +6 -1
  25. package/esm2020/notification/notification.component.mjs +5 -1
  26. package/esm2020/paginator/paginator-intl.mjs +12 -1
  27. package/esm2020/paginator/paginator.component.mjs +9 -1
  28. package/esm2020/radio/radio-button/radio-button.component.mjs +2 -1
  29. package/esm2020/radio/radio-group/radio-group.component.mjs +4 -1
  30. package/esm2020/radio/radio.component.mjs +2 -1
  31. package/esm2020/scrolling/fixed-size-table-virtual-scroll-strategy.mjs +3 -1
  32. package/esm2020/scrolling/fixed-size-table-virtual-scroll.directive.mjs +3 -1
  33. package/esm2020/scrolling/fixed-size-virtual-scroll.directive.mjs +2 -1
  34. package/esm2020/select/base-select.mjs +5 -2
  35. package/esm2020/select/multi-select/multi-select.component.mjs +4 -2
  36. package/esm2020/select/select.component.mjs +2 -1
  37. package/esm2020/select/validators.mjs +6 -2
  38. package/esm2020/sort/sort-errors.mjs +5 -1
  39. package/esm2020/sort/sort-header.component.mjs +5 -1
  40. package/esm2020/sort/sort.directive.mjs +2 -1
  41. package/esm2020/steps/steps.component.mjs +5 -1
  42. package/esm2020/table/table-cell-def.directive.mjs +5 -1
  43. package/esm2020/table/table-cell.directive.mjs +3 -1
  44. package/esm2020/table/table-column-def.directive.mjs +7 -1
  45. package/esm2020/table/table-header-cell-def.directive.mjs +5 -1
  46. package/esm2020/table/table-header-cell.directive.mjs +3 -1
  47. package/esm2020/table/table-header-row-def.directive.mjs +5 -1
  48. package/esm2020/table/table-header-row.component.mjs +2 -1
  49. package/esm2020/table/table-row-def.directive.mjs +6 -1
  50. package/esm2020/table/table-row.component.mjs +2 -1
  51. package/esm2020/table/table-scroll.directive.mjs +2 -1
  52. package/esm2020/table/table.component.mjs +4 -1
  53. package/esm2020/tabs/tab-body.component.mjs +19 -1
  54. package/esm2020/tabs/tab-context.service.mjs +4 -1
  55. package/esm2020/tabs/tab-group.component.mjs +46 -1
  56. package/esm2020/tabs/tab-header-active-indicator.component.mjs +10 -1
  57. package/esm2020/tabs/tab-header.component.mjs +106 -3
  58. package/esm2020/tabs/tab.component.mjs +15 -1
  59. package/esm2020/tabs/tabs.types.mjs +4 -1
  60. package/esm2020/tag/tag.component.mjs +2 -1
  61. package/esm2020/time-picker/panel/panel.component.mjs +3 -1
  62. package/esm2020/tooltip/tooltip-intl.mjs +7 -1
  63. package/esm2020/tree-select/tree-select.component.mjs +2 -1
  64. package/esm2020/types.mjs +4 -1
  65. package/esm2020/utils/bem.mjs +2 -1
  66. package/esm2020/utils/coercion.mjs +5 -1
  67. package/fesm2015/alauda-ui.mjs +375 -10
  68. package/fesm2015/alauda-ui.mjs.map +1 -1
  69. package/fesm2020/alauda-ui.mjs +375 -10
  70. package/fesm2020/alauda-ui.mjs.map +1 -1
  71. package/form/common-form.d.ts +7 -0
  72. package/input/autosize.directive.d.ts +3 -0
  73. package/input/input.component.d.ts +3 -0
  74. package/message/message.config.d.ts +20 -0
  75. package/notification/notification.component.d.ts +4 -0
  76. package/package.json +2 -3
  77. package/paginator/paginator-intl.d.ts +9 -0
  78. package/paginator/paginator.component.d.ts +14 -0
  79. package/radio/radio-group/radio-group.component.d.ts +3 -0
  80. package/select/base-select.d.ts +3 -0
  81. package/sort/sort-errors.d.ts +4 -0
  82. package/steps/steps.component.d.ts +3 -0
  83. package/steps/types.d.ts +3 -0
  84. package/table/table-cell-def.directive.d.ts +4 -0
  85. package/table/table-cell.directive.d.ts +1 -0
  86. package/table/table-column-def.directive.d.ts +4 -0
  87. package/table/table-header-cell-def.directive.d.ts +4 -0
  88. package/table/table-header-cell.directive.d.ts +1 -0
  89. package/table/table-header-row-def.directive.d.ts +4 -0
  90. package/table/table-header-row.component.d.ts +1 -0
  91. package/table/table-row-def.directive.d.ts +5 -0
  92. package/table/table-row.component.d.ts +1 -0
  93. package/tabs/tab-body.component.d.ts +16 -0
  94. package/tabs/tab-context.service.d.ts +3 -0
  95. package/tabs/tab-group.component.d.ts +28 -0
  96. package/tabs/tab-header-active-indicator.component.d.ts +9 -0
  97. package/tabs/tab-header.component.d.ts +83 -0
  98. package/tabs/tab.component.d.ts +18 -0
  99. package/tabs/tabs.types.d.ts +3 -0
  100. package/theme/_theme-preset.scss +2 -0
  101. package/tooltip/tooltip-intl.d.ts +4 -0
  102. package/types.d.ts +3 -0
@@ -1,7 +1,10 @@
1
1
  import { ValueOf } from '../types';
2
2
  export declare const TabSize: {
3
+ /** 卡片级尺寸 */
3
4
  readonly Large: "large";
5
+ /** 页面级尺寸 */
4
6
  readonly Medium: "medium";
7
+ /** 小尺寸 */
5
8
  readonly Small: "small";
6
9
  };
7
10
  export declare type TabSize = ValueOf<typeof TabSize>;
@@ -50,6 +50,7 @@
50
50
 
51
51
  @mixin light-mode {
52
52
  color-scheme: light;
53
+
53
54
  --aui-color-blue: #{rgb-string(#007af5)};
54
55
  --aui-color-b-0: #{rgb-string(#0067d0)};
55
56
  --aui-color-b-1: #{rgb-string(#268df6)};
@@ -114,6 +115,7 @@
114
115
 
115
116
  @mixin dark-mode {
116
117
  color-scheme: dark;
118
+
117
119
  --aui-color-blue: #{rgb-string(#3d8eff)};
118
120
  --aui-color-b-0: #{rgb-string(#3674cc)};
119
121
  --aui-color-b-1: #{rgb-string(#6daaff)};
@@ -1,5 +1,8 @@
1
1
  import { Optional } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
+ /**
4
+ * Texts to render on the code editor.
5
+ */
3
6
  export declare class TooltipCopyIntl {
4
7
  copyTip: string;
5
8
  copySuccessTip: string;
@@ -8,6 +11,7 @@ export declare class TooltipCopyIntl {
8
11
  static ɵprov: i0.ɵɵInjectableDeclaration<TooltipCopyIntl>;
9
12
  }
10
13
  export declare function TOOLTIP_COPY_INTL_PROVIDER_FACTORY(parentIntl: TooltipCopyIntl): TooltipCopyIntl;
14
+ /** @docs-private */
11
15
  export declare const TOOLTIP_COPY_INTL_INTL_PROVIDER: {
12
16
  provide: typeof TooltipCopyIntl;
13
17
  deps: Optional[][];
package/types.d.ts CHANGED
@@ -4,6 +4,9 @@ export declare const ComponentSize: {
4
4
  readonly Medium: "medium";
5
5
  readonly Small: "small";
6
6
  readonly Mini: "mini";
7
+ /**
8
+ * represents default internally, @link https://github.com/angular/vscode-ng-language-service/issues/1147
9
+ */
7
10
  readonly Empty: "";
8
11
  };
9
12
  export declare type ComponentSize = ValueOf<typeof ComponentSize>;