@dao-style/core 1.6.0 → 1.6.1-beta.10

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 (32) hide show
  1. package/dist/components/action-icon/action-icon.d.ts +0 -9
  2. package/dist/components/action-icon/action-icon.vue.d.ts +0 -3
  3. package/dist/components/action-icon/props.d.ts +1 -1
  4. package/dist/components/button/button.d.ts +0 -9
  5. package/dist/components/button/button.vue.d.ts +0 -3
  6. package/dist/components/dropdown/dropdown-item.d.ts +40 -1
  7. package/dist/components/dropdown/dropdown-item.vue.d.ts +18 -0
  8. package/dist/components/dropdown/dropdown.d.ts +856 -5
  9. package/dist/components/dropdown/dropdown.vue.d.ts +285 -2
  10. package/dist/components/dropdown/props.d.ts +8 -0
  11. package/dist/components/ellipsis/ellipsis.d.ts +2686 -994
  12. package/dist/components/ellipsis/ellipsis.vue.d.ts +577 -14
  13. package/dist/components/pagination/pagination.d.ts +4 -4
  14. package/dist/components/pagination/pagination.vue.d.ts +1 -1
  15. package/dist/components/table/column-setting-props.d.ts +4 -0
  16. package/dist/components/table/column-setting.vue.d.ts +9 -0
  17. package/dist/components/table/components/tdAction.vue.d.ts +2 -2
  18. package/dist/components/table/table-props.d.ts +4 -4
  19. package/dist/components/table/table.d.ts +20 -20
  20. package/dist/components/table/table.vue.d.ts +9 -9
  21. package/dist/components/tabs/props.d.ts +4 -0
  22. package/dist/components/tabs/tabs.d.ts +29 -1
  23. package/dist/components/tabs/tabs.vue.d.ts +12 -0
  24. package/dist/components/toolbar/toolbar-filter-props.d.ts +4 -0
  25. package/dist/components/toolbar/toolbar-filter.vue.d.ts +9 -0
  26. package/dist/components/toolbar/toolbar-props.d.ts +4 -0
  27. package/dist/components/toolbar/toolbar.d.ts +20 -1
  28. package/dist/components/toolbar/toolbar.vue.d.ts +9 -0
  29. package/dist/dao-style.js +6 -6
  30. package/dist/dao-style.mjs +2628 -2554
  31. package/dist/style.css +1 -1
  32. package/package.json +1 -1
@@ -4,8 +4,8 @@ declare const DaoPagination: {
4
4
  $: import("vue").ComponentInternalInstance;
5
5
  $data: {};
6
6
  $props: Partial<{
7
- layout: import("./pagination-props").PaginationLayoutKey[];
8
7
  compact: boolean;
8
+ layout: import("./pagination-props").PaginationLayoutKey[];
9
9
  total: number;
10
10
  pageSize: number;
11
11
  pageSizeOptions: number[];
@@ -65,7 +65,7 @@ declare const DaoPagination: {
65
65
  "onSize-change"?: ((...args: any[]) => any) | undefined;
66
66
  onPageChange?: ((...args: any[]) => any) | undefined;
67
67
  onSizeChange?: ((...args: any[]) => any) | undefined;
68
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "layout" | "compact" | "total" | "pageSize" | "pageSizeOptions" | "pageFormat" | "totalFormat" | "currentPage" | "pageSizerWidth" | "noShadow">;
68
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "compact" | "layout" | "total" | "pageSize" | "pageSizeOptions" | "pageFormat" | "totalFormat" | "currentPage" | "pageSizerWidth" | "noShadow">;
69
69
  $attrs: {
70
70
  [x: string]: unknown;
71
71
  };
@@ -152,8 +152,8 @@ declare const DaoPagination: {
152
152
  updatePageSize: (val: number) => void;
153
153
  currentShowPageFormat: () => void;
154
154
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("next" | "prev" | "update:page-size" | "update:current-page" | "page-change" | "size-change" | "pageChange" | "sizeChange")[], string, {
155
- layout: import("./pagination-props").PaginationLayoutKey[];
156
155
  compact: boolean;
156
+ layout: import("./pagination-props").PaginationLayoutKey[];
157
157
  total: number;
158
158
  pageSize: number;
159
159
  pageSizeOptions: number[];
@@ -331,8 +331,8 @@ declare const DaoPagination: {
331
331
  updatePageSize: (val: number) => void;
332
332
  currentShowPageFormat: () => void;
333
333
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("next" | "prev" | "update:page-size" | "update:current-page" | "page-change" | "size-change" | "pageChange" | "sizeChange")[], "next" | "prev" | "update:page-size" | "update:current-page" | "page-change" | "size-change" | "pageChange" | "sizeChange", {
334
- layout: import("./pagination-props").PaginationLayoutKey[];
335
334
  compact: boolean;
335
+ layout: import("./pagination-props").PaginationLayoutKey[];
336
336
  total: number;
337
337
  pageSize: number;
338
338
  pageSizeOptions: number[];
@@ -113,8 +113,8 @@ declare const _default: import("vue").DefineComponent<{
113
113
  onPageChange?: ((...args: any[]) => any) | undefined;
114
114
  onSizeChange?: ((...args: any[]) => any) | undefined;
115
115
  }, {
116
- layout: PaginationLayoutKey[];
117
116
  compact: boolean;
117
+ layout: PaginationLayoutKey[];
118
118
  total: number;
119
119
  pageSize: number;
120
120
  pageSizeOptions: number[];
@@ -13,5 +13,9 @@ export declare const columnSettingProps: {
13
13
  type: PropType<DaoTableColumn[]>;
14
14
  default: () => DaoTableColumn[];
15
15
  };
16
+ compact: {
17
+ type: BooleanConstructor;
18
+ default: boolean;
19
+ };
16
20
  };
17
21
  export type ColumnSettingProps = ExtractPropTypes<typeof columnSettingProps>;
@@ -8,6 +8,10 @@ declare const _default: import("vue").DefineComponent<{
8
8
  type: import("vue").PropType<DaoTableColumn[]>;
9
9
  default: () => DaoTableColumn[];
10
10
  };
11
+ compact: {
12
+ type: BooleanConstructor;
13
+ default: boolean;
14
+ };
11
15
  }, {
12
16
  search: import("vue").Ref<string>;
13
17
  realColumns: import("vue").ComputedRef<DaoTableColumn[]>;
@@ -31,9 +35,14 @@ declare const _default: import("vue").DefineComponent<{
31
35
  type: import("vue").PropType<DaoTableColumn[]>;
32
36
  default: () => DaoTableColumn[];
33
37
  };
38
+ compact: {
39
+ type: BooleanConstructor;
40
+ default: boolean;
41
+ };
34
42
  }>> & {
35
43
  onConfirm?: ((...args: any[]) => any) | undefined;
36
44
  }, {
45
+ compact: boolean;
37
46
  columns: DaoTableColumn[];
38
47
  tableSetting: Record<string, import("./type").tableSettingItem>;
39
48
  }>;
@@ -4,7 +4,7 @@ export type TdMouseEvent = MouseEvent & {
4
4
  };
5
5
  declare const _default: import("vue").DefineComponent<{
6
6
  compact: {
7
- type: import("vue").PropType<boolean>;
7
+ type: BooleanConstructor;
8
8
  default: boolean;
9
9
  };
10
10
  }, {
@@ -12,7 +12,7 @@ declare const _default: import("vue").DefineComponent<{
12
12
  iconSize: import("vue").ComputedRef<ActionIconSize>;
13
13
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
14
14
  compact: {
15
- type: import("vue").PropType<boolean>;
15
+ type: BooleanConstructor;
16
16
  default: boolean;
17
17
  };
18
18
  }>>, {
@@ -62,6 +62,10 @@ export declare const tableProps: {
62
62
  type: BooleanConstructor;
63
63
  default: boolean;
64
64
  };
65
+ compact: {
66
+ type: BooleanConstructor;
67
+ default: boolean;
68
+ };
65
69
  id: {
66
70
  type: PropType<string>;
67
71
  require: boolean;
@@ -98,10 +102,6 @@ export declare const tableProps: {
98
102
  type: PropType<DaoTableSort>;
99
103
  default: () => DaoTableSort;
100
104
  };
101
- compact: {
102
- type: PropType<boolean>;
103
- default: boolean;
104
- };
105
105
  highlight: {
106
106
  type: BooleanConstructor;
107
107
  default: boolean;
@@ -8,9 +8,9 @@ declare const DaoTable: {
8
8
  $data: {};
9
9
  $props: Partial<{
10
10
  search: import("../toolbar").SearchModelType;
11
+ compact: boolean;
11
12
  sort: import("./type").DaoTableSort;
12
13
  data: import("./table-props").DataPropType;
13
- compact: boolean;
14
14
  columns: DaoTableColumn[];
15
15
  loading: boolean;
16
16
  searchPlaceholder: string;
@@ -74,6 +74,10 @@ declare const DaoTable: {
74
74
  type: BooleanConstructor;
75
75
  default: boolean;
76
76
  };
77
+ compact: {
78
+ type: BooleanConstructor;
79
+ default: boolean;
80
+ };
77
81
  id: {
78
82
  type: import("vue").PropType<string>;
79
83
  require: boolean;
@@ -110,10 +114,6 @@ declare const DaoTable: {
110
114
  type: import("vue").PropType<import("./type").DaoTableSort>;
111
115
  default: () => import("./type").DaoTableSort;
112
116
  };
113
- compact: {
114
- type: import("vue").PropType<boolean>;
115
- default: boolean;
116
- };
117
117
  highlight: {
118
118
  type: BooleanConstructor;
119
119
  default: boolean;
@@ -212,7 +212,7 @@ declare const DaoTable: {
212
212
  "onRow-click"?: ((...args: any[]) => any) | undefined;
213
213
  onOnHighlight?: ((...args: any[]) => any) | undefined;
214
214
  onOffHighlight?: ((...args: any[]) => any) | undefined;
215
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "sort" | "data" | "compact" | "columns" | "loading" | "searchPlaceholder" | "total" | "selectedFormat" | "deselectText" | "removeText" | "showHeader" | "pageSize" | "pageSizeOptions" | "pageFormat" | "currentPage" | "pageSizerWidth" | "noShadow" | "searchOptions" | "fuzzy" | "hideRefresh" | "hideSearch" | "noRounded" | "selectable" | "selectedRows" | "expandable" | "expandedRows" | "highlight" | "highlightedRow" | "emptyText" | "pageLayout" | "hideBatchBar" | "hideToolbar" | "hideSetting">;
215
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "compact" | "sort" | "data" | "columns" | "loading" | "searchPlaceholder" | "total" | "selectedFormat" | "deselectText" | "removeText" | "showHeader" | "pageSize" | "pageSizeOptions" | "pageFormat" | "currentPage" | "pageSizerWidth" | "noShadow" | "searchOptions" | "fuzzy" | "hideRefresh" | "hideSearch" | "noRounded" | "selectable" | "selectedRows" | "expandable" | "expandedRows" | "highlight" | "highlightedRow" | "emptyText" | "pageLayout" | "hideBatchBar" | "hideToolbar" | "hideSetting">;
216
216
  $attrs: {
217
217
  [x: string]: unknown;
218
218
  };
@@ -259,6 +259,10 @@ declare const DaoTable: {
259
259
  type: BooleanConstructor;
260
260
  default: boolean;
261
261
  };
262
+ compact: {
263
+ type: BooleanConstructor;
264
+ default: boolean;
265
+ };
262
266
  id: {
263
267
  type: import("vue").PropType<string>;
264
268
  require: boolean;
@@ -295,10 +299,6 @@ declare const DaoTable: {
295
299
  type: import("vue").PropType<import("./type").DaoTableSort>;
296
300
  default: () => import("./type").DaoTableSort;
297
301
  };
298
- compact: {
299
- type: import("vue").PropType<boolean>;
300
- default: boolean;
301
- };
302
302
  highlight: {
303
303
  type: BooleanConstructor;
304
304
  default: boolean;
@@ -483,9 +483,9 @@ declare const DaoTable: {
483
483
  getEllipsisContent: (column: DaoTableColumn, row: Record<string, unknown>, index: number) => string;
484
484
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("search" | "delete" | "select" | "next" | "prev" | "deselect" | "update:page-size" | "update:current-page" | "page-change" | "size-change" | "pageChange" | "sizeChange" | "update:search" | "refresh" | "update:selectedRows" | "update:expandedRows" | "update:highlightedRow" | "sortChange" | "hideColumn" | "afterResize" | "expandToggle" | "row-click" | "onHighlight" | "offHighlight")[], string, {
485
485
  search: import("../toolbar").SearchModelType;
486
+ compact: boolean;
486
487
  sort: import("./type").DaoTableSort;
487
488
  data: import("./table-props").DataPropType;
488
- compact: boolean;
489
489
  columns: DaoTableColumn[];
490
490
  loading: boolean;
491
491
  searchPlaceholder: string;
@@ -569,6 +569,10 @@ declare const DaoTable: {
569
569
  type: BooleanConstructor;
570
570
  default: boolean;
571
571
  };
572
+ compact: {
573
+ type: BooleanConstructor;
574
+ default: boolean;
575
+ };
572
576
  id: {
573
577
  type: import("vue").PropType<string>;
574
578
  require: boolean;
@@ -605,10 +609,6 @@ declare const DaoTable: {
605
609
  type: import("vue").PropType<import("./type").DaoTableSort>;
606
610
  default: () => import("./type").DaoTableSort;
607
611
  };
608
- compact: {
609
- type: import("vue").PropType<boolean>;
610
- default: boolean;
611
- };
612
612
  highlight: {
613
613
  type: BooleanConstructor;
614
614
  default: boolean;
@@ -828,6 +828,10 @@ declare const DaoTable: {
828
828
  type: BooleanConstructor;
829
829
  default: boolean;
830
830
  };
831
+ compact: {
832
+ type: BooleanConstructor;
833
+ default: boolean;
834
+ };
831
835
  id: {
832
836
  type: import("vue").PropType<string>;
833
837
  require: boolean;
@@ -864,10 +868,6 @@ declare const DaoTable: {
864
868
  type: import("vue").PropType<import("./type").DaoTableSort>;
865
869
  default: () => import("./type").DaoTableSort;
866
870
  };
867
- compact: {
868
- type: import("vue").PropType<boolean>;
869
- default: boolean;
870
- };
871
871
  highlight: {
872
872
  type: BooleanConstructor;
873
873
  default: boolean;
@@ -1052,9 +1052,9 @@ declare const DaoTable: {
1052
1052
  getEllipsisContent: (column: DaoTableColumn, row: Record<string, unknown>, index: number) => string;
1053
1053
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("search" | "delete" | "select" | "next" | "prev" | "deselect" | "update:page-size" | "update:current-page" | "page-change" | "size-change" | "pageChange" | "sizeChange" | "update:search" | "refresh" | "update:selectedRows" | "update:expandedRows" | "update:highlightedRow" | "sortChange" | "hideColumn" | "afterResize" | "expandToggle" | "row-click" | "onHighlight" | "offHighlight")[], "search" | "delete" | "select" | "next" | "prev" | "deselect" | "update:page-size" | "update:current-page" | "page-change" | "size-change" | "pageChange" | "sizeChange" | "update:search" | "refresh" | "update:selectedRows" | "update:expandedRows" | "update:highlightedRow" | "sortChange" | "hideColumn" | "afterResize" | "expandToggle" | "row-click" | "onHighlight" | "offHighlight", {
1054
1054
  search: import("../toolbar").SearchModelType;
1055
+ compact: boolean;
1055
1056
  sort: import("./type").DaoTableSort;
1056
1057
  data: import("./table-props").DataPropType;
1057
- compact: boolean;
1058
1058
  columns: DaoTableColumn[];
1059
1059
  loading: boolean;
1060
1060
  searchPlaceholder: string;
@@ -36,6 +36,10 @@ declare const _default: import("vue").DefineComponent<{
36
36
  type: BooleanConstructor;
37
37
  default: boolean;
38
38
  };
39
+ compact: {
40
+ type: BooleanConstructor;
41
+ default: boolean;
42
+ };
39
43
  id: {
40
44
  type: import("vue").PropType<string>;
41
45
  require: boolean;
@@ -72,10 +76,6 @@ declare const _default: import("vue").DefineComponent<{
72
76
  type: import("vue").PropType<import("./type").DaoTableSort>;
73
77
  default: () => import("./type").DaoTableSort;
74
78
  };
75
- compact: {
76
- type: import("vue").PropType<boolean>;
77
- default: boolean;
78
- };
79
79
  highlight: {
80
80
  type: BooleanConstructor;
81
81
  default: boolean;
@@ -266,6 +266,10 @@ declare const _default: import("vue").DefineComponent<{
266
266
  type: BooleanConstructor;
267
267
  default: boolean;
268
268
  };
269
+ compact: {
270
+ type: BooleanConstructor;
271
+ default: boolean;
272
+ };
269
273
  id: {
270
274
  type: import("vue").PropType<string>;
271
275
  require: boolean;
@@ -302,10 +306,6 @@ declare const _default: import("vue").DefineComponent<{
302
306
  type: import("vue").PropType<import("./type").DaoTableSort>;
303
307
  default: () => import("./type").DaoTableSort;
304
308
  };
305
- compact: {
306
- type: import("vue").PropType<boolean>;
307
- default: boolean;
308
- };
309
309
  highlight: {
310
310
  type: BooleanConstructor;
311
311
  default: boolean;
@@ -406,9 +406,9 @@ declare const _default: import("vue").DefineComponent<{
406
406
  onOffHighlight?: ((...args: any[]) => any) | undefined;
407
407
  }, {
408
408
  search: import("../toolbar").SearchModelType;
409
+ compact: boolean;
409
410
  sort: import("./type").DaoTableSort;
410
411
  data: DataPropType;
411
- compact: boolean;
412
412
  columns: DaoTableColumn[];
413
413
  loading: boolean;
414
414
  searchPlaceholder: string;
@@ -24,6 +24,10 @@ export declare const tabsProps: {
24
24
  type: BooleanConstructor;
25
25
  default: boolean;
26
26
  };
27
+ compact: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
27
31
  };
28
32
  type modelValueType = string;
29
33
  export declare const tabsEmit: {
@@ -8,6 +8,7 @@ declare const DaoTabs: {
8
8
  direction: string;
9
9
  modelValue: string;
10
10
  vertical: boolean;
11
+ compact: boolean;
11
12
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
12
13
  type: {
13
14
  type: StringConstructor;
@@ -28,11 +29,15 @@ declare const DaoTabs: {
28
29
  type: BooleanConstructor;
29
30
  default: boolean;
30
31
  };
32
+ compact: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
31
36
  }>> & {
32
37
  onChange?: ((...args: any[]) => any) | undefined;
33
38
  onClick?: ((...args: any[]) => any) | undefined;
34
39
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
35
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "direction" | "modelValue" | "vertical">;
40
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "direction" | "modelValue" | "vertical" | "compact">;
36
41
  $attrs: {
37
42
  [x: string]: unknown;
38
43
  };
@@ -66,6 +71,10 @@ declare const DaoTabs: {
66
71
  type: BooleanConstructor;
67
72
  default: boolean;
68
73
  };
74
+ compact: {
75
+ type: BooleanConstructor;
76
+ default: boolean;
77
+ };
69
78
  }>> & {
70
79
  onChange?: ((...args: any[]) => any) | undefined;
71
80
  onClick?: ((...args: any[]) => any) | undefined;
@@ -78,6 +87,9 @@ declare const DaoTabs: {
78
87
  hasSlot: boolean;
79
88
  }[];
80
89
  tabBody: import("vue").Ref<HTMLElement | undefined>;
90
+ tabsType: import("vue").ComputedRef<string>;
91
+ tabsWrapperClass: import("vue").ComputedRef<string[]>;
92
+ tabsHeaderClass: import("vue").ComputedRef<string[] | "">;
81
93
  onClick: (e: MouseEvent, tabValue: string) => void;
82
94
  updateValue: (tabValue: string) => void;
83
95
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "change" | "update:modelValue")[], string, {
@@ -85,6 +97,7 @@ declare const DaoTabs: {
85
97
  direction: string;
86
98
  modelValue: string;
87
99
  vertical: boolean;
100
+ compact: boolean;
88
101
  }, {}, string> & {
89
102
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
90
103
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -125,6 +138,10 @@ declare const DaoTabs: {
125
138
  type: BooleanConstructor;
126
139
  default: boolean;
127
140
  };
141
+ compact: {
142
+ type: BooleanConstructor;
143
+ default: boolean;
144
+ };
128
145
  }>> & {
129
146
  onChange?: ((...args: any[]) => any) | undefined;
130
147
  onClick?: ((...args: any[]) => any) | undefined;
@@ -137,6 +154,9 @@ declare const DaoTabs: {
137
154
  hasSlot: boolean;
138
155
  }[];
139
156
  tabBody: import("vue").Ref<HTMLElement | undefined>;
157
+ tabsType: import("vue").ComputedRef<string>;
158
+ tabsWrapperClass: import("vue").ComputedRef<string[]>;
159
+ tabsHeaderClass: import("vue").ComputedRef<string[] | "">;
140
160
  onClick: (e: MouseEvent, tabValue: string) => void;
141
161
  updateValue: (tabValue: string) => void;
142
162
  }> & {} & import("vue").ComponentCustomProperties & {};
@@ -163,6 +183,10 @@ declare const DaoTabs: {
163
183
  type: BooleanConstructor;
164
184
  default: boolean;
165
185
  };
186
+ compact: {
187
+ type: BooleanConstructor;
188
+ default: boolean;
189
+ };
166
190
  }>> & {
167
191
  onChange?: ((...args: any[]) => any) | undefined;
168
192
  onClick?: ((...args: any[]) => any) | undefined;
@@ -175,6 +199,9 @@ declare const DaoTabs: {
175
199
  hasSlot: boolean;
176
200
  }[];
177
201
  tabBody: import("vue").Ref<HTMLElement | undefined>;
202
+ tabsType: import("vue").ComputedRef<string>;
203
+ tabsWrapperClass: import("vue").ComputedRef<string[]>;
204
+ tabsHeaderClass: import("vue").ComputedRef<string[] | "">;
178
205
  onClick: (e: MouseEvent, tabValue: string) => void;
179
206
  updateValue: (tabValue: string) => void;
180
207
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "change" | "update:modelValue")[], "click" | "change" | "update:modelValue", {
@@ -182,6 +209,7 @@ declare const DaoTabs: {
182
209
  direction: string;
183
210
  modelValue: string;
184
211
  vertical: boolean;
212
+ compact: boolean;
185
213
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
186
214
  $slots: {
187
215
  action: SlotFn;
@@ -18,6 +18,10 @@ declare const _default: import("vue").DefineComponent<{
18
18
  type: BooleanConstructor;
19
19
  default: boolean;
20
20
  };
21
+ compact: {
22
+ type: BooleanConstructor;
23
+ default: boolean;
24
+ };
21
25
  }, {
22
26
  tabList: {
23
27
  label: import("./types").DaoTabItemLabel;
@@ -26,6 +30,9 @@ declare const _default: import("vue").DefineComponent<{
26
30
  hasSlot: boolean;
27
31
  }[];
28
32
  tabBody: import("vue").Ref<HTMLElement | undefined>;
33
+ tabsType: import("vue").ComputedRef<string>;
34
+ tabsWrapperClass: import("vue").ComputedRef<string[]>;
35
+ tabsHeaderClass: import("vue").ComputedRef<string[] | "">;
29
36
  onClick: (e: MouseEvent, tabValue: string) => void;
30
37
  updateValue: (tabValue: string) => void;
31
38
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "change" | "update:modelValue")[], "click" | "change" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -48,6 +55,10 @@ declare const _default: import("vue").DefineComponent<{
48
55
  type: BooleanConstructor;
49
56
  default: boolean;
50
57
  };
58
+ compact: {
59
+ type: BooleanConstructor;
60
+ default: boolean;
61
+ };
51
62
  }>> & {
52
63
  onChange?: ((...args: any[]) => any) | undefined;
53
64
  onClick?: ((...args: any[]) => any) | undefined;
@@ -57,5 +68,6 @@ declare const _default: import("vue").DefineComponent<{
57
68
  direction: string;
58
69
  modelValue: string;
59
70
  vertical: boolean;
71
+ compact: boolean;
60
72
  }>;
61
73
  export default _default;
@@ -17,5 +17,9 @@ export declare const toolbarFilterProps: {
17
17
  type: PropType<FuzzyOption>;
18
18
  default: undefined;
19
19
  };
20
+ compact: {
21
+ type: BooleanConstructor;
22
+ default: boolean;
23
+ };
20
24
  };
21
25
  export type ToolbarFilterProps = ExtractPropTypes<typeof toolbarFilterProps>;
@@ -20,6 +20,10 @@ declare const _default: import("vue").DefineComponent<{
20
20
  type: import("vue").PropType<import("./types").FuzzyOption>;
21
21
  default: undefined;
22
22
  };
23
+ compact: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
23
27
  }, {
24
28
  computedSearchPlaceholder: import("vue").ComputedRef<string>;
25
29
  daoInputSearchRef: import("vue").Ref<any>;
@@ -51,11 +55,16 @@ declare const _default: import("vue").DefineComponent<{
51
55
  type: import("vue").PropType<import("./types").FuzzyOption>;
52
56
  default: undefined;
53
57
  };
58
+ compact: {
59
+ type: BooleanConstructor;
60
+ default: boolean;
61
+ };
54
62
  }>> & {
55
63
  onSearch?: ((...args: any[]) => any) | undefined;
56
64
  "onUpdate:search"?: ((...args: any[]) => any) | undefined;
57
65
  }, {
58
66
  search: Record<string, import("./types").SearchValue[]>;
67
+ compact: boolean;
59
68
  searchPlaceholder: string;
60
69
  searchOptions: SearchOption[];
61
70
  fuzzy: import("./types").FuzzyOption;
@@ -49,5 +49,9 @@ export declare const toolbarProps: {
49
49
  type: BooleanConstructor;
50
50
  default: boolean;
51
51
  };
52
+ compact: {
53
+ type: BooleanConstructor;
54
+ default: boolean;
55
+ };
52
56
  };
53
57
  export type ToolbarProps = ExtractPropTypes<typeof toolbarProps>;
@@ -6,6 +6,7 @@ declare const _default: {
6
6
  $data: {};
7
7
  $props: Partial<{
8
8
  search: import("./toolbar-props").SearchModelType;
9
+ compact: boolean;
9
10
  searchPlaceholder: string;
10
11
  noShadow: boolean;
11
12
  searchOptions: import("./types").SearchOption[];
@@ -46,11 +47,15 @@ declare const _default: {
46
47
  type: BooleanConstructor;
47
48
  default: boolean;
48
49
  };
50
+ compact: {
51
+ type: BooleanConstructor;
52
+ default: boolean;
53
+ };
49
54
  }>> & {
50
55
  onSearch?: ((...args: any[]) => any) | undefined;
51
56
  "onUpdate:search"?: ((...args: any[]) => any) | undefined;
52
57
  onRefresh?: ((...args: any[]) => any) | undefined;
53
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "searchPlaceholder" | "noShadow" | "searchOptions" | "fuzzy" | "hideRefresh" | "hideSearch" | "noRounded">;
58
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "compact" | "searchPlaceholder" | "noShadow" | "searchOptions" | "fuzzy" | "hideRefresh" | "hideSearch" | "noRounded">;
54
59
  $attrs: {
55
60
  [x: string]: unknown;
56
61
  };
@@ -97,6 +102,10 @@ declare const _default: {
97
102
  type: BooleanConstructor;
98
103
  default: boolean;
99
104
  };
105
+ compact: {
106
+ type: BooleanConstructor;
107
+ default: boolean;
108
+ };
100
109
  }>> & {
101
110
  onSearch?: ((...args: any[]) => any) | undefined;
102
111
  "onUpdate:search"?: ((...args: any[]) => any) | undefined;
@@ -119,6 +128,7 @@ declare const _default: {
119
128
  getValueLabel: (key: string, value: import("./types").SearchValue) => import("./types").SearchValue;
120
129
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("search" | "update:search" | "refresh")[], string, {
121
130
  search: import("./toolbar-props").SearchModelType;
131
+ compact: boolean;
122
132
  searchPlaceholder: string;
123
133
  noShadow: boolean;
124
134
  searchOptions: import("./types").SearchOption[];
@@ -179,6 +189,10 @@ declare const _default: {
179
189
  type: BooleanConstructor;
180
190
  default: boolean;
181
191
  };
192
+ compact: {
193
+ type: BooleanConstructor;
194
+ default: boolean;
195
+ };
182
196
  }>> & {
183
197
  onSearch?: ((...args: any[]) => any) | undefined;
184
198
  "onUpdate:search"?: ((...args: any[]) => any) | undefined;
@@ -236,6 +250,10 @@ declare const _default: {
236
250
  type: BooleanConstructor;
237
251
  default: boolean;
238
252
  };
253
+ compact: {
254
+ type: BooleanConstructor;
255
+ default: boolean;
256
+ };
239
257
  }>> & {
240
258
  onSearch?: ((...args: any[]) => any) | undefined;
241
259
  "onUpdate:search"?: ((...args: any[]) => any) | undefined;
@@ -258,6 +276,7 @@ declare const _default: {
258
276
  getValueLabel: (key: string, value: import("./types").SearchValue) => import("./types").SearchValue;
259
277
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("search" | "update:search" | "refresh")[], "search" | "update:search" | "refresh", {
260
278
  search: import("./toolbar-props").SearchModelType;
279
+ compact: boolean;
261
280
  searchPlaceholder: string;
262
281
  noShadow: boolean;
263
282
  searchOptions: import("./types").SearchOption[];
@@ -32,6 +32,10 @@ declare const _default: import("vue").DefineComponent<{
32
32
  type: BooleanConstructor;
33
33
  default: boolean;
34
34
  };
35
+ compact: {
36
+ type: BooleanConstructor;
37
+ default: boolean;
38
+ };
35
39
  }, {
36
40
  t: import("vue-i18n").ComposerTranslation<{
37
41
  [x: string]: import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType>;
@@ -81,12 +85,17 @@ declare const _default: import("vue").DefineComponent<{
81
85
  type: BooleanConstructor;
82
86
  default: boolean;
83
87
  };
88
+ compact: {
89
+ type: BooleanConstructor;
90
+ default: boolean;
91
+ };
84
92
  }>> & {
85
93
  onSearch?: ((...args: any[]) => any) | undefined;
86
94
  "onUpdate:search"?: ((...args: any[]) => any) | undefined;
87
95
  onRefresh?: ((...args: any[]) => any) | undefined;
88
96
  }, {
89
97
  search: import("./toolbar-props").SearchModelType;
98
+ compact: boolean;
90
99
  searchPlaceholder: string;
91
100
  noShadow: boolean;
92
101
  searchOptions: import("./types").SearchOption[];