@yh-ui/components 0.1.12 → 0.1.16

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 (90) hide show
  1. package/dist/ai-artifacts/src/ai-artifacts.d.ts +1 -1
  2. package/dist/ai-artifacts/src/ai-artifacts.d.vue.ts +18 -1
  3. package/dist/ai-artifacts/src/ai-artifacts.vue +30 -2
  4. package/dist/ai-artifacts/src/ai-artifacts.vue.d.ts +18 -1
  5. package/dist/ai-editor-sender/src/ai-editor-sender.d.vue.ts +2 -2
  6. package/dist/ai-editor-sender/src/ai-editor-sender.vue.d.ts +2 -2
  7. package/dist/ai-mention/__tests__/ai-mention.ssr.test.cjs +38 -0
  8. package/dist/ai-mention/__tests__/ai-mention.ssr.test.d.ts +1 -0
  9. package/dist/ai-mention/__tests__/ai-mention.ssr.test.mjs +37 -0
  10. package/dist/ai-mention/__tests__/ai-mention.test.cjs +113 -0
  11. package/dist/ai-mention/__tests__/ai-mention.test.d.ts +1 -0
  12. package/dist/ai-mention/__tests__/ai-mention.test.mjs +84 -0
  13. package/dist/ai-mention/index.cjs +26 -0
  14. package/dist/ai-mention/index.d.ts +29 -0
  15. package/dist/ai-mention/index.mjs +5 -0
  16. package/dist/ai-mention/src/ai-mention.cjs +95 -0
  17. package/dist/ai-mention/src/ai-mention.css +545 -0
  18. package/dist/ai-mention/src/ai-mention.d.ts +99 -0
  19. package/dist/ai-mention/src/ai-mention.d.vue.ts +68 -0
  20. package/dist/ai-mention/src/ai-mention.mjs +89 -0
  21. package/dist/ai-mention/src/ai-mention.vue +650 -0
  22. package/dist/ai-mention/src/ai-mention.vue.d.ts +68 -0
  23. package/dist/ai-sender/__tests__/ai-sender.test.cjs +17 -10
  24. package/dist/ai-sender/__tests__/ai-sender.test.mjs +17 -10
  25. package/dist/ai-sender/src/ai-sender.cjs +7 -0
  26. package/dist/ai-sender/src/ai-sender.d.ts +7 -0
  27. package/dist/ai-sender/src/ai-sender.d.vue.ts +8 -3
  28. package/dist/ai-sender/src/ai-sender.mjs +7 -0
  29. package/dist/ai-sender/src/ai-sender.vue +25 -18
  30. package/dist/ai-sender/src/ai-sender.vue.d.ts +8 -3
  31. package/dist/ai-sources/src/ai-sources.d.vue.ts +2 -2
  32. package/dist/ai-sources/src/ai-sources.vue +41 -57
  33. package/dist/ai-sources/src/ai-sources.vue.d.ts +2 -2
  34. package/dist/ai-voice-trigger/__tests__/ai-voice-trigger.test.cjs +19 -2
  35. package/dist/ai-voice-trigger/__tests__/ai-voice-trigger.test.mjs +12 -2
  36. package/dist/ai-voice-trigger/src/ai-voice-trigger.cjs +32 -0
  37. package/dist/ai-voice-trigger/src/ai-voice-trigger.css +111 -12
  38. package/dist/ai-voice-trigger/src/ai-voice-trigger.d.ts +32 -0
  39. package/dist/ai-voice-trigger/src/ai-voice-trigger.d.vue.ts +22 -2
  40. package/dist/ai-voice-trigger/src/ai-voice-trigger.mjs +32 -0
  41. package/dist/ai-voice-trigger/src/ai-voice-trigger.vue +201 -50
  42. package/dist/ai-voice-trigger/src/ai-voice-trigger.vue.d.ts +22 -2
  43. package/dist/alert/src/alert.d.vue.ts +1 -1
  44. package/dist/alert/src/alert.vue.d.ts +1 -1
  45. package/dist/autocomplete/src/autocomplete.d.vue.ts +2 -2
  46. package/dist/autocomplete/src/autocomplete.vue.d.ts +2 -2
  47. package/dist/calendar/src/calendar.d.vue.ts +1 -1
  48. package/dist/calendar/src/calendar.vue.d.ts +1 -1
  49. package/dist/date-picker/src/date-picker.d.vue.ts +2 -2
  50. package/dist/date-picker/src/date-picker.vue.d.ts +2 -2
  51. package/dist/dialog/src/dialog.d.vue.ts +8 -8
  52. package/dist/dialog/src/dialog.vue.d.ts +8 -8
  53. package/dist/drawer/index.d.ts +42 -1
  54. package/dist/drawer/src/drawer.d.vue.ts +4 -4
  55. package/dist/drawer/src/drawer.vue.d.ts +4 -4
  56. package/dist/icon/src/icons/index.cjs +7 -2
  57. package/dist/icon/src/icons/index.d.ts +1 -0
  58. package/dist/icon/src/icons/index.mjs +7 -1
  59. package/dist/index.cjs +13 -1
  60. package/dist/index.d.ts +1 -0
  61. package/dist/index.mjs +4 -1
  62. package/dist/infinite-scroll/src/infinite-scroll.d.vue.ts +1 -1
  63. package/dist/infinite-scroll/src/infinite-scroll.vue.d.ts +1 -1
  64. package/dist/input/index.d.ts +3 -3
  65. package/dist/input/src/input.d.vue.ts +1 -1
  66. package/dist/input/src/input.vue.d.ts +1 -1
  67. package/dist/input-number/index.d.ts +3 -3
  68. package/dist/input-number/src/input-number.d.vue.ts +1 -1
  69. package/dist/input-number/src/input-number.vue.d.ts +1 -1
  70. package/dist/input-tag/src/input-tag.d.vue.ts +2 -2
  71. package/dist/input-tag/src/input-tag.vue.d.ts +2 -2
  72. package/dist/mention/index.d.ts +181 -1
  73. package/dist/mention/src/mention.d.vue.ts +5 -5
  74. package/dist/mention/src/mention.vue +6 -2
  75. package/dist/mention/src/mention.vue.d.ts +5 -5
  76. package/dist/message/src/message.d.vue.ts +1 -1
  77. package/dist/message/src/message.vue.d.ts +1 -1
  78. package/dist/notification/src/notification.d.vue.ts +1 -1
  79. package/dist/notification/src/notification.vue.d.ts +1 -1
  80. package/dist/select/src/select.d.vue.ts +3 -3
  81. package/dist/select/src/select.vue.d.ts +3 -3
  82. package/dist/skeleton/src/skeleton.d.vue.ts +1 -1
  83. package/dist/skeleton/src/skeleton.vue.d.ts +1 -1
  84. package/dist/table/src/table-column.d.vue.ts +1 -1
  85. package/dist/table/src/table-column.vue.d.ts +1 -1
  86. package/dist/table/src/table.d.vue.ts +2 -2
  87. package/dist/table/src/table.vue.d.ts +2 -2
  88. package/dist/time-picker/src/time-picker.d.vue.ts +1 -1
  89. package/dist/time-picker/src/time-picker.vue.d.ts +1 -1
  90. package/package.json +5 -5
@@ -3,7 +3,187 @@
3
3
  * @description 提及组件导出
4
4
  */
5
5
  import Mention from './src/mention.vue';
6
- export declare const YhMention: any;
6
+ export declare const YhMention: import("@yh-ui/utils").SFCWithInstall<{
7
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("./src/mention").MentionProps> & Readonly<{
8
+ onSearch?: ((keyword: string, trigger: string) => any) | undefined;
9
+ onChange?: ((value: string) => any) | undefined;
10
+ onOpen?: (() => any) | undefined;
11
+ onClear?: (() => any) | undefined;
12
+ onInput?: ((value: string) => any) | undefined;
13
+ onSelect?: ((option: import("./src/mention").MentionOption, trigger: string) => any) | undefined;
14
+ onBlur?: ((event: FocusEvent) => any) | undefined;
15
+ onClose?: (() => any) | undefined;
16
+ onFocus?: ((event: FocusEvent) => any) | undefined;
17
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
18
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
19
+ }>, {
20
+ ref: HTMLInputElement | HTMLTextAreaElement | undefined;
21
+ wrapperRef: HTMLElement | undefined;
22
+ focus: () => void;
23
+ blur: () => void;
24
+ clear: () => void;
25
+ insertMention: (option: import("./src/mention").MentionOption, trigger?: string) => void;
26
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
27
+ search: (keyword: string, trigger: string) => any;
28
+ change: (value: string) => any;
29
+ open: () => any;
30
+ clear: () => any;
31
+ input: (value: string) => any;
32
+ select: (option: import("./src/mention").MentionOption, trigger: string) => any;
33
+ blur: (event: FocusEvent) => any;
34
+ close: () => any;
35
+ focus: (event: FocusEvent) => any;
36
+ keydown: (event: KeyboardEvent) => any;
37
+ "update:modelValue": (value: string) => any;
38
+ }, import("vue").PublicProps, {
39
+ teleported: boolean;
40
+ disabled: boolean;
41
+ split: string;
42
+ type: "input" | "textarea";
43
+ size: import("./src/mention").MentionSize;
44
+ loading: boolean;
45
+ placement: import("./src/mention").MentionPlacement;
46
+ popperClass: string;
47
+ triggers: string[];
48
+ options: import("./src/mention").MentionOption[];
49
+ autofocus: boolean;
50
+ modelValue: string;
51
+ readonly: boolean;
52
+ clearable: boolean;
53
+ showWordLimit: boolean;
54
+ maxCount: number;
55
+ filterOption: ((keyword: string, option: import("./src/mention").MentionOption) => boolean) | false;
56
+ loadingText: string;
57
+ noDataText: string;
58
+ wholeWord: boolean;
59
+ rows: number;
60
+ debounce: number;
61
+ validateEvent: boolean;
62
+ }, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
63
+ P: {};
64
+ B: {};
65
+ D: {};
66
+ C: {};
67
+ M: {};
68
+ Defaults: {};
69
+ }, Readonly<import("./src/mention").MentionProps> & Readonly<{
70
+ onSearch?: ((keyword: string, trigger: string) => any) | undefined;
71
+ onChange?: ((value: string) => any) | undefined;
72
+ onOpen?: (() => any) | undefined;
73
+ onClear?: (() => any) | undefined;
74
+ onInput?: ((value: string) => any) | undefined;
75
+ onSelect?: ((option: import("./src/mention").MentionOption, trigger: string) => any) | undefined;
76
+ onBlur?: ((event: FocusEvent) => any) | undefined;
77
+ onClose?: (() => any) | undefined;
78
+ onFocus?: ((event: FocusEvent) => any) | undefined;
79
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
80
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
81
+ }>, {
82
+ ref: HTMLInputElement | HTMLTextAreaElement | undefined;
83
+ wrapperRef: HTMLElement | undefined;
84
+ focus: () => void;
85
+ blur: () => void;
86
+ clear: () => void;
87
+ insertMention: (option: import("./src/mention").MentionOption, trigger?: string) => void;
88
+ }, {}, {}, {}, {
89
+ teleported: boolean;
90
+ disabled: boolean;
91
+ split: string;
92
+ type: "input" | "textarea";
93
+ size: import("./src/mention").MentionSize;
94
+ loading: boolean;
95
+ placement: import("./src/mention").MentionPlacement;
96
+ popperClass: string;
97
+ triggers: string[];
98
+ options: import("./src/mention").MentionOption[];
99
+ autofocus: boolean;
100
+ modelValue: string;
101
+ readonly: boolean;
102
+ clearable: boolean;
103
+ showWordLimit: boolean;
104
+ maxCount: number;
105
+ filterOption: ((keyword: string, option: import("./src/mention").MentionOption) => boolean) | false;
106
+ loadingText: string;
107
+ noDataText: string;
108
+ wholeWord: boolean;
109
+ rows: number;
110
+ debounce: number;
111
+ validateEvent: boolean;
112
+ }>;
113
+ __isFragment?: never;
114
+ __isTeleport?: never;
115
+ __isSuspense?: never;
116
+ } & import("vue").ComponentOptionsBase<Readonly<import("./src/mention").MentionProps> & Readonly<{
117
+ onSearch?: ((keyword: string, trigger: string) => any) | undefined;
118
+ onChange?: ((value: string) => any) | undefined;
119
+ onOpen?: (() => any) | undefined;
120
+ onClear?: (() => any) | undefined;
121
+ onInput?: ((value: string) => any) | undefined;
122
+ onSelect?: ((option: import("./src/mention").MentionOption, trigger: string) => any) | undefined;
123
+ onBlur?: ((event: FocusEvent) => any) | undefined;
124
+ onClose?: (() => any) | undefined;
125
+ onFocus?: ((event: FocusEvent) => any) | undefined;
126
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
127
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
128
+ }>, {
129
+ ref: HTMLInputElement | HTMLTextAreaElement | undefined;
130
+ wrapperRef: HTMLElement | undefined;
131
+ focus: () => void;
132
+ blur: () => void;
133
+ clear: () => void;
134
+ insertMention: (option: import("./src/mention").MentionOption, trigger?: string) => void;
135
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
136
+ search: (keyword: string, trigger: string) => any;
137
+ change: (value: string) => any;
138
+ open: () => any;
139
+ clear: () => any;
140
+ input: (value: string) => any;
141
+ select: (option: import("./src/mention").MentionOption, trigger: string) => any;
142
+ blur: (event: FocusEvent) => any;
143
+ close: () => any;
144
+ focus: (event: FocusEvent) => any;
145
+ keydown: (event: KeyboardEvent) => any;
146
+ "update:modelValue": (value: string) => any;
147
+ }, string, {
148
+ teleported: boolean;
149
+ disabled: boolean;
150
+ split: string;
151
+ type: "input" | "textarea";
152
+ size: import("./src/mention").MentionSize;
153
+ loading: boolean;
154
+ placement: import("./src/mention").MentionPlacement;
155
+ popperClass: string;
156
+ triggers: string[];
157
+ options: import("./src/mention").MentionOption[];
158
+ autofocus: boolean;
159
+ modelValue: string;
160
+ readonly: boolean;
161
+ clearable: boolean;
162
+ showWordLimit: boolean;
163
+ maxCount: number;
164
+ filterOption: ((keyword: string, option: import("./src/mention").MentionOption) => boolean) | false;
165
+ loadingText: string;
166
+ noDataText: string;
167
+ wholeWord: boolean;
168
+ rows: number;
169
+ debounce: number;
170
+ validateEvent: boolean;
171
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
172
+ $slots: {
173
+ prefix?: (props: {}) => any;
174
+ } & {
175
+ suffix?: (props: {}) => any;
176
+ } & {
177
+ loading?: (props: {}) => any;
178
+ } & {
179
+ empty?: (props: {}) => any;
180
+ } & {
181
+ option?: (props: {
182
+ option: any;
183
+ keyword: any;
184
+ }) => any;
185
+ };
186
+ })> & Record<string, unknown>;
7
187
  export default YhMention;
8
188
  export * from './src/mention';
9
189
  export type MentionInstance = InstanceType<typeof Mention>;
@@ -63,17 +63,17 @@ declare const __VLS_component: import("vue").DefineComponent<MentionProps, {
63
63
  options: MentionOption[];
64
64
  autofocus: boolean;
65
65
  modelValue: string;
66
+ readonly: boolean;
66
67
  clearable: boolean;
67
68
  showWordLimit: boolean;
68
- rows: number;
69
- debounce: number;
70
- validateEvent: boolean;
71
- readonly: boolean;
72
- loadingText: string;
73
69
  maxCount: number;
74
70
  filterOption: ((keyword: string, option: MentionOption) => boolean) | false;
71
+ loadingText: string;
75
72
  noDataText: string;
76
73
  wholeWord: boolean;
74
+ rows: number;
75
+ debounce: number;
76
+ validateEvent: boolean;
77
77
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
78
78
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
79
79
  export default _default;
@@ -288,8 +288,12 @@ const focus = () => inputRef.value?.focus();
288
288
  const blur = () => inputRef.value?.blur();
289
289
  const clear = () => handleClear();
290
290
  defineExpose({
291
- ref: inputRef.value,
292
- wrapperRef: wrapperRef.value,
291
+ get ref() {
292
+ return inputRef.value;
293
+ },
294
+ get wrapperRef() {
295
+ return wrapperRef.value;
296
+ },
293
297
  focus,
294
298
  blur,
295
299
  clear,
@@ -63,17 +63,17 @@ declare const __VLS_component: import("vue").DefineComponent<MentionProps, {
63
63
  options: MentionOption[];
64
64
  autofocus: boolean;
65
65
  modelValue: string;
66
+ readonly: boolean;
66
67
  clearable: boolean;
67
68
  showWordLimit: boolean;
68
- rows: number;
69
- debounce: number;
70
- validateEvent: boolean;
71
- readonly: boolean;
72
- loadingText: string;
73
69
  maxCount: number;
74
70
  filterOption: ((keyword: string, option: MentionOption) => boolean) | false;
71
+ loadingText: string;
75
72
  noDataText: string;
76
73
  wholeWord: boolean;
74
+ rows: number;
75
+ debounce: number;
76
+ validateEvent: boolean;
77
77
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
78
78
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
79
79
  export default _default;
@@ -17,8 +17,8 @@ declare const __VLS_component: import("vue").DefineComponent<MessageProps, {
17
17
  type: import("./message").MessageType;
18
18
  center: boolean;
19
19
  placement: import("./message").MessagePlacement;
20
- duration: number;
21
20
  showClose: boolean;
21
+ duration: number;
22
22
  dangerouslyUseHTMLString: boolean;
23
23
  grouping: boolean;
24
24
  repeatNum: number;
@@ -17,8 +17,8 @@ declare const __VLS_component: import("vue").DefineComponent<MessageProps, {
17
17
  type: import("./message").MessageType;
18
18
  center: boolean;
19
19
  placement: import("./message").MessagePlacement;
20
- duration: number;
21
20
  showClose: boolean;
21
+ duration: number;
22
22
  dangerouslyUseHTMLString: boolean;
23
23
  grouping: boolean;
24
24
  repeatNum: number;
@@ -17,8 +17,8 @@ declare const __VLS_component: import("vue").DefineComponent<NotificationProps,
17
17
  }>, {
18
18
  offset: number;
19
19
  position: import("./notification").NotificationPosition;
20
- duration: number;
21
20
  showClose: boolean;
21
+ duration: number;
22
22
  dangerouslyUseHTMLString: boolean;
23
23
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
24
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -17,8 +17,8 @@ declare const __VLS_component: import("vue").DefineComponent<NotificationProps,
17
17
  }>, {
18
18
  offset: number;
19
19
  position: import("./notification").NotificationPosition;
20
- duration: number;
21
20
  showClose: boolean;
21
+ duration: number;
22
22
  dangerouslyUseHTMLString: boolean;
23
23
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
24
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -41,17 +41,17 @@ declare const __VLS_component: import("vue").DefineComponent<SelectProps, {
41
41
  multiple: boolean;
42
42
  loading: boolean;
43
43
  clearable: boolean;
44
+ loadingText: string;
45
+ noDataText: string;
46
+ validateEvent: boolean;
44
47
  valueKey: string;
45
48
  fitInputWidth: boolean;
46
- validateEvent: boolean;
47
49
  itemHeight: number;
48
50
  filterable: boolean;
49
51
  collapseTags: boolean;
50
52
  collapseTagsTooltip: boolean;
51
53
  maxCollapseTags: number;
52
54
  tagType: import("./select").SelectTagType;
53
- loadingText: string;
54
- noDataText: string;
55
55
  multipleLimit: number;
56
56
  remote: boolean;
57
57
  noMatchText: string;
@@ -41,17 +41,17 @@ declare const __VLS_component: import("vue").DefineComponent<SelectProps, {
41
41
  multiple: boolean;
42
42
  loading: boolean;
43
43
  clearable: boolean;
44
+ loadingText: string;
45
+ noDataText: string;
46
+ validateEvent: boolean;
44
47
  valueKey: string;
45
48
  fitInputWidth: boolean;
46
- validateEvent: boolean;
47
49
  itemHeight: number;
48
50
  filterable: boolean;
49
51
  collapseTags: boolean;
50
52
  collapseTagsTooltip: boolean;
51
53
  maxCollapseTags: number;
52
54
  tagType: import("./select").SelectTagType;
53
- loadingText: string;
54
- noDataText: string;
55
55
  multipleLimit: number;
56
56
  remote: boolean;
57
57
  noMatchText: string;
@@ -75,8 +75,8 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
75
75
  readonly title: boolean;
76
76
  readonly loading: boolean;
77
77
  readonly avatar: boolean;
78
- readonly lazy: boolean;
79
78
  readonly rows: number;
79
+ readonly lazy: boolean;
80
80
  readonly animated: boolean;
81
81
  readonly throttle: number;
82
82
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -75,8 +75,8 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
75
75
  readonly title: boolean;
76
76
  readonly loading: boolean;
77
77
  readonly avatar: boolean;
78
- readonly lazy: boolean;
79
78
  readonly rows: number;
79
+ readonly lazy: boolean;
80
80
  readonly animated: boolean;
81
81
  readonly throttle: number;
82
82
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -60,10 +60,10 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}
60
60
  minWidth: number | string;
61
61
  label: string;
62
62
  className: string;
63
+ resizable: boolean;
63
64
  filterable: boolean;
64
65
  align: "left" | "center" | "right";
65
66
  headerAlign: "left" | "center" | "right";
66
- resizable: boolean;
67
67
  prop: string;
68
68
  columnKey: string;
69
69
  sortable: boolean | "custom";
@@ -60,10 +60,10 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}
60
60
  minWidth: number | string;
61
61
  label: string;
62
62
  className: string;
63
+ resizable: boolean;
63
64
  filterable: boolean;
64
65
  align: "left" | "center" | "right";
65
66
  headerAlign: "left" | "center" | "right";
66
- resizable: boolean;
67
67
  prop: string;
68
68
  columnKey: string;
69
69
  sortable: boolean | "custom";
@@ -470,10 +470,10 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
470
470
  readonly loading: boolean | import("./table").TableLoadingConfig;
471
471
  readonly fit: boolean;
472
472
  readonly lazy: boolean;
473
- readonly emptyText: string;
474
- readonly pagination: boolean | TablePaginationConfig;
475
473
  readonly showHeader: boolean;
476
474
  readonly resizable: boolean;
475
+ readonly emptyText: string;
476
+ readonly pagination: boolean | TablePaginationConfig;
477
477
  readonly rowKey: import("./table").RowKey;
478
478
  readonly stripe: boolean;
479
479
  readonly highlightCurrentRow: boolean;
@@ -470,10 +470,10 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
470
470
  readonly loading: boolean | import("./table").TableLoadingConfig;
471
471
  readonly fit: boolean;
472
472
  readonly lazy: boolean;
473
- readonly emptyText: string;
474
- readonly pagination: boolean | TablePaginationConfig;
475
473
  readonly showHeader: boolean;
476
474
  readonly resizable: boolean;
475
+ readonly emptyText: string;
476
+ readonly pagination: boolean | TablePaginationConfig;
477
477
  readonly rowKey: import("./table").RowKey;
478
478
  readonly stripe: boolean;
479
479
  readonly highlightCurrentRow: boolean;
@@ -36,13 +36,13 @@ declare const __VLS_component: import("vue").DefineComponent<TimePickerProps, {
36
36
  placeholder: string;
37
37
  clearable: boolean;
38
38
  validateEvent: boolean;
39
+ showFooter: boolean;
39
40
  format: string;
40
41
  tabindex: number | string;
41
42
  showSeconds: boolean;
42
43
  startPlaceholder: string;
43
44
  endPlaceholder: string;
44
45
  rangeSeparator: string;
45
- showFooter: boolean;
46
46
  orderOnConfirm: boolean;
47
47
  isRange: boolean;
48
48
  cancelText: string;
@@ -36,13 +36,13 @@ declare const __VLS_component: import("vue").DefineComponent<TimePickerProps, {
36
36
  placeholder: string;
37
37
  clearable: boolean;
38
38
  validateEvent: boolean;
39
+ showFooter: boolean;
39
40
  format: string;
40
41
  tabindex: number | string;
41
42
  showSeconds: boolean;
42
43
  startPlaceholder: string;
43
44
  endPlaceholder: string;
44
45
  rangeSeparator: string;
45
- showFooter: boolean;
46
46
  orderOnConfirm: boolean;
47
47
  isRange: boolean;
48
48
  cancelText: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yh-ui/components",
3
- "version": "0.1.12",
3
+ "version": "0.1.16",
4
4
  "description": "YH-UI Vue 3 Components",
5
5
  "type": "module",
6
6
  "sideEffects": [
@@ -40,10 +40,10 @@
40
40
  "highlight.js": "^11.11.1",
41
41
  "markdown-it": "^14.1.1",
42
42
  "viewerjs": "^1.11.7",
43
- "@yh-ui/locale": "0.1.12",
44
- "@yh-ui/hooks": "0.1.12",
45
- "@yh-ui/theme": "0.1.12",
46
- "@yh-ui/utils": "0.1.12"
43
+ "@yh-ui/hooks": "0.1.16",
44
+ "@yh-ui/locale": "0.1.16",
45
+ "@yh-ui/theme": "0.1.16",
46
+ "@yh-ui/utils": "0.1.16"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "vue": "^3.5.27"