luyoumin-ui 0.0.55 → 0.0.57

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 (43) hide show
  1. package/dist/{charts-data-HIzwoYtU.js → charts-data-Efhsb3Am.js} +1 -1
  2. package/dist/components/LymBubbleContainer.vue.d.ts +132 -0
  3. package/dist/components/LymButton.vue.d.ts +8 -6
  4. package/dist/components/LymCheckBox.vue.d.ts +2 -2
  5. package/dist/components/LymDialog.vue.d.ts +3 -3
  6. package/dist/components/LymDivider.vue.d.ts +95 -0
  7. package/dist/components/LymDrawer.vue.d.ts +7 -5
  8. package/dist/components/LymInput.vue.d.ts +5 -5
  9. package/dist/components/LymLink.vue.d.ts +8 -6
  10. package/dist/components/LymPopover.vue.d.ts +78 -0
  11. package/dist/components/LymSelect.vue.d.ts +7 -7
  12. package/dist/components/LymSteps.vue.d.ts +18 -0
  13. package/dist/components/LymTooltip.vue.d.ts +78 -0
  14. package/dist/components/cascader/LymCascader.vue.d.ts +2 -2
  15. package/dist/components/generic-img/GenericImg.vue.d.ts +7 -5
  16. package/dist/components/loading/LymLoading.d.ts +22 -0
  17. package/dist/components/loading/LymLoading.vue.d.ts +121 -0
  18. package/dist/components/notification/LymNotification.d.ts +17 -0
  19. package/dist/components/notification/LymNotification.vue.d.ts +101 -0
  20. package/dist/components/notification/LymNotificationBox.d.ts +10 -0
  21. package/dist/components/notification/LymNotificationBox.vue.d.ts +86 -0
  22. package/dist/components/tabs/LymTabPane.vue.d.ts +61 -0
  23. package/dist/components/tabs/LymTabs.vue.d.ts +195 -0
  24. package/dist/components/three/LymColumnChart.vue.d.ts +18 -0
  25. package/dist/components/three/LymWebGLComponent.vue.d.ts +18 -0
  26. package/dist/components/tree/LymTree.vue.d.ts +170 -0
  27. package/dist/components/tree/LymTreeNode.vue.d.ts +111 -0
  28. package/dist/components/tree/LymTreeSelect.vue.d.ts +255 -0
  29. package/dist/global.d.ts +12 -1
  30. package/dist/{index-B-ZGDKRq.js → index-CPEqSdp4.js} +98302 -72644
  31. package/dist/index.d.ts +11 -1
  32. package/dist/luyoumin-ui.es.js +12 -2
  33. package/dist/luyoumin-ui.umd.js +4 -4
  34. package/dist/style.css +1 -1
  35. package/dist/utils/canvas_utils.d.ts +5 -0
  36. package/dist/utils/directives.d.ts +23 -0
  37. package/dist/utils/dom_utils.d.ts +16 -0
  38. package/dist/utils/img_deal.d.ts +6 -0
  39. package/dist/vue-BACwxqLg.js +4 -0
  40. package/package.json +2 -1
  41. package/src/global.d.ts +12 -1
  42. package/src/style.css +14 -3
  43. package/dist/components/JsonExportExcel.vue.d.ts +0 -32
@@ -4,7 +4,7 @@ var __publicField = (obj, key, value2) => {
4
4
  __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value2);
5
5
  return value2;
6
6
  };
7
- import { e as each, f as formatTime, m as modifyHSL, p as parseDate, a as format, r as round, c as clipRectByRect, b as addCommas, l as lift, d as linearMap } from "./index-B-ZGDKRq.js";
7
+ import { e as each, f as formatTime, m as modifyHSL, p as parseDate, a as format, r as round, c as clipRectByRect, b as addCommas, l as lift, d as linearMap } from "./index-CPEqSdp4.js";
8
8
  const rawData = [
9
9
  ["Income", "Life Expectancy", "Population", "Country", "Year"],
10
10
  [815, 34.05, 351014, "Australia", 1800],
@@ -0,0 +1,132 @@
1
+ import { PropType } from 'vue';
2
+
3
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
4
+ modelValue: {
5
+ type: BooleanConstructor;
6
+ default: boolean;
7
+ };
8
+ positionTarget: {
9
+ type: {
10
+ new (): HTMLElement;
11
+ prototype: HTMLElement;
12
+ };
13
+ default: () => null;
14
+ };
15
+ direction: {
16
+ type: PropType<"left" | "right" | "bottom" | "top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end">;
17
+ default: string;
18
+ };
19
+ bgColor: {
20
+ type: StringConstructor;
21
+ default: string;
22
+ };
23
+ maxW: {
24
+ type: StringConstructor;
25
+ default: string;
26
+ };
27
+ zIndex: {
28
+ type: (StringConstructor | NumberConstructor)[];
29
+ default: number;
30
+ };
31
+ offsetX: {
32
+ type: (StringConstructor | NumberConstructor)[];
33
+ default: number;
34
+ };
35
+ offsetY: {
36
+ type: (StringConstructor | NumberConstructor)[];
37
+ default: number;
38
+ };
39
+ fontSize: {
40
+ type: (StringConstructor | NumberConstructor)[];
41
+ default: string;
42
+ };
43
+ color: {
44
+ type: StringConstructor;
45
+ default: string;
46
+ };
47
+ borderColor: {
48
+ type: StringConstructor;
49
+ default: string;
50
+ };
51
+ triangleBgColor: {
52
+ type: StringConstructor;
53
+ default: string;
54
+ };
55
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
56
+ "update:modelValue": (val: any) => void;
57
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
58
+ modelValue: {
59
+ type: BooleanConstructor;
60
+ default: boolean;
61
+ };
62
+ positionTarget: {
63
+ type: {
64
+ new (): HTMLElement;
65
+ prototype: HTMLElement;
66
+ };
67
+ default: () => null;
68
+ };
69
+ direction: {
70
+ type: PropType<"left" | "right" | "bottom" | "top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end">;
71
+ default: string;
72
+ };
73
+ bgColor: {
74
+ type: StringConstructor;
75
+ default: string;
76
+ };
77
+ maxW: {
78
+ type: StringConstructor;
79
+ default: string;
80
+ };
81
+ zIndex: {
82
+ type: (StringConstructor | NumberConstructor)[];
83
+ default: number;
84
+ };
85
+ offsetX: {
86
+ type: (StringConstructor | NumberConstructor)[];
87
+ default: number;
88
+ };
89
+ offsetY: {
90
+ type: (StringConstructor | NumberConstructor)[];
91
+ default: number;
92
+ };
93
+ fontSize: {
94
+ type: (StringConstructor | NumberConstructor)[];
95
+ default: string;
96
+ };
97
+ color: {
98
+ type: StringConstructor;
99
+ default: string;
100
+ };
101
+ borderColor: {
102
+ type: StringConstructor;
103
+ default: string;
104
+ };
105
+ triangleBgColor: {
106
+ type: StringConstructor;
107
+ default: string;
108
+ };
109
+ }>> & {
110
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
111
+ }, {
112
+ color: string;
113
+ modelValue: boolean;
114
+ fontSize: string | number;
115
+ positionTarget: HTMLElement;
116
+ direction: "left" | "right" | "bottom" | "top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
117
+ bgColor: string;
118
+ maxW: string;
119
+ zIndex: string | number;
120
+ offsetX: string | number;
121
+ offsetY: string | number;
122
+ borderColor: string;
123
+ triangleBgColor: string;
124
+ }, {}>, {
125
+ default?(_: {}): any;
126
+ }>;
127
+ export default _default;
128
+ type __VLS_WithTemplateSlots<T, S> = T & {
129
+ new (): {
130
+ $slots: S;
131
+ };
132
+ };
@@ -1,6 +1,8 @@
1
+ import { PropType } from 'vue';
2
+
1
3
  declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
2
4
  type: {
3
- type: StringConstructor;
5
+ type: PropType<"default" | "primary" | "success" | "info" | "warning" | "danger">;
4
6
  default: string;
5
7
  };
6
8
  fontSize: {
@@ -68,7 +70,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
68
70
  click: () => void;
69
71
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
70
72
  type: {
71
- type: StringConstructor;
73
+ type: PropType<"default" | "primary" | "success" | "info" | "warning" | "danger">;
72
74
  default: string;
73
75
  };
74
76
  fontSize: {
@@ -135,14 +137,14 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
135
137
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
136
138
  onClick?: (() => any) | undefined;
137
139
  }, {
138
- disabled: boolean;
140
+ round: boolean;
141
+ type: "default" | "primary" | "success" | "info" | "warning" | "danger";
139
142
  circle: boolean;
140
143
  fontSize: string;
141
- padding: string;
142
- type: string;
143
144
  fontWeight: string;
145
+ disabled: boolean;
146
+ padding: string;
144
147
  borderRadius: string;
145
- round: boolean;
146
148
  circlePadding: string;
147
149
  plain: boolean;
148
150
  icon: string;
@@ -84,14 +84,14 @@ declare const _default: import('vue').DefineComponent<{
84
84
  onChange?: ((val: boolean) => any) | undefined;
85
85
  "onUpdate:disabled"?: ((val: any) => any) | undefined;
86
86
  }, {
87
- disabled: boolean;
88
87
  label: string;
89
- value: string;
90
88
  modelValue: boolean;
91
89
  size: number;
90
+ disabled: boolean;
92
91
  labelSpace: string;
93
92
  labelFontSize: string;
94
93
  isCircle: boolean;
94
+ value: string;
95
95
  isIndeterminate: boolean;
96
96
  }, {}>;
97
97
  export default _default;
@@ -113,15 +113,15 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
113
113
  onClose?: (() => any) | undefined;
114
114
  }, {
115
115
  title: string;
116
+ top: string;
116
117
  modelValue: boolean;
117
- width: string;
118
118
  padding: string;
119
- showClose: boolean;
120
- top: string;
121
119
  zIndex: number;
120
+ width: string;
122
121
  isTitleCenter: boolean;
123
122
  isFooterCenter: boolean;
124
123
  canCloseByClickCover: boolean;
124
+ showClose: boolean;
125
125
  bodyMaxH: string;
126
126
  alignTop: boolean;
127
127
  modal: boolean;
@@ -0,0 +1,95 @@
1
+ import { PropType } from 'vue';
2
+
3
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
4
+ direction: {
5
+ type: PropType<"horizontal" | "vertical">;
6
+ default: string;
7
+ };
8
+ contentPosition: {
9
+ type: PropType<"center" | "left" | "right">;
10
+ default: string;
11
+ };
12
+ fontSize: {
13
+ type: StringConstructor;
14
+ default: string;
15
+ };
16
+ lineColor: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ lineStyle: {
21
+ type: PropType<"solid" | "dashed" | "dotted">;
22
+ default: string;
23
+ };
24
+ lineW: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ lineH: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ lineWide: {
33
+ type: StringConstructor;
34
+ default: string;
35
+ };
36
+ linePadding: {
37
+ type: StringConstructor;
38
+ default: string;
39
+ };
40
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
41
+ direction: {
42
+ type: PropType<"horizontal" | "vertical">;
43
+ default: string;
44
+ };
45
+ contentPosition: {
46
+ type: PropType<"center" | "left" | "right">;
47
+ default: string;
48
+ };
49
+ fontSize: {
50
+ type: StringConstructor;
51
+ default: string;
52
+ };
53
+ lineColor: {
54
+ type: StringConstructor;
55
+ default: string;
56
+ };
57
+ lineStyle: {
58
+ type: PropType<"solid" | "dashed" | "dotted">;
59
+ default: string;
60
+ };
61
+ lineW: {
62
+ type: StringConstructor;
63
+ default: string;
64
+ };
65
+ lineH: {
66
+ type: StringConstructor;
67
+ default: string;
68
+ };
69
+ lineWide: {
70
+ type: StringConstructor;
71
+ default: string;
72
+ };
73
+ linePadding: {
74
+ type: StringConstructor;
75
+ default: string;
76
+ };
77
+ }>>, {
78
+ fontSize: string;
79
+ direction: "horizontal" | "vertical";
80
+ contentPosition: "center" | "left" | "right";
81
+ lineColor: string;
82
+ lineStyle: "solid" | "dashed" | "dotted";
83
+ lineW: string;
84
+ lineH: string;
85
+ lineWide: string;
86
+ linePadding: string;
87
+ }, {}>, {
88
+ default?(_: {}): any;
89
+ }>;
90
+ export default _default;
91
+ type __VLS_WithTemplateSlots<T, S> = T & {
92
+ new (): {
93
+ $slots: S;
94
+ };
95
+ };
@@ -1,3 +1,5 @@
1
+ import { PropType } from 'vue';
2
+
1
3
  declare function beforeClose(): void;
2
4
  declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
3
5
  modelValue: {
@@ -5,7 +7,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
5
7
  default: boolean;
6
8
  };
7
9
  direction: {
8
- type: StringConstructor;
10
+ type: PropType<"ltr" | "rtl" | "ttb" | "btt">;
9
11
  default: string;
10
12
  };
11
13
  zIndex: {
@@ -58,7 +60,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
58
60
  default: boolean;
59
61
  };
60
62
  direction: {
61
- type: StringConstructor;
63
+ type: PropType<"ltr" | "rtl" | "ttb" | "btt">;
62
64
  default: string;
63
65
  };
64
66
  zIndex: {
@@ -108,15 +110,15 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
108
110
  }, {
109
111
  title: string;
110
112
  modelValue: boolean;
111
- padding: string;
112
- showClose: boolean;
113
113
  size: string;
114
+ padding: string;
115
+ direction: "ltr" | "rtl" | "ttb" | "btt";
114
116
  zIndex: number;
115
117
  isTitleCenter: boolean;
116
118
  isFooterCenter: boolean;
117
119
  canCloseByClickCover: boolean;
120
+ showClose: boolean;
118
121
  modal: boolean;
119
- direction: string;
120
122
  beforeClose: Function;
121
123
  }, {}>, {
122
124
  header?(_: {
@@ -157,15 +157,14 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
157
157
  }>> & {
158
158
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
159
159
  }, {
160
- disabled: boolean;
161
160
  modelValue: string;
162
- width: string | number;
163
- clearable: boolean;
164
161
  type: string;
165
- placeholder: string;
162
+ disabled: boolean;
163
+ width: string | number;
166
164
  max: number;
167
- min: number;
168
165
  maxlength: string;
166
+ placeholder: string;
167
+ clearable: boolean;
169
168
  formatter: Function;
170
169
  showPassword: boolean;
171
170
  noSpaces: boolean;
@@ -176,6 +175,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
176
175
  suffixIcon: string;
177
176
  showWordLimit: boolean;
178
177
  autoFocus: boolean;
178
+ min: number;
179
179
  }, {}>, {
180
180
  prepend?(_: {}): any;
181
181
  append?(_: {}): any;
@@ -1,10 +1,12 @@
1
+ import { PropType } from 'vue';
2
+
1
3
  declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
2
4
  href: {
3
5
  type: StringConstructor;
4
6
  default: string;
5
7
  };
6
8
  type: {
7
- type: StringConstructor;
9
+ type: PropType<"default" | "primary" | "success" | "info" | "warning" | "danger">;
8
10
  default: string;
9
11
  };
10
12
  disabled: {
@@ -20,7 +22,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
20
22
  default: {};
21
23
  };
22
24
  target: {
23
- type: StringConstructor;
25
+ type: PropType<"_self" | "_blank" | "_parent" | "_top" | "_mywindow">;
24
26
  default: string;
25
27
  };
26
28
  leftIcon: {
@@ -47,7 +49,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
47
49
  default: string;
48
50
  };
49
51
  type: {
50
- type: StringConstructor;
52
+ type: PropType<"default" | "primary" | "success" | "info" | "warning" | "danger">;
51
53
  default: string;
52
54
  };
53
55
  disabled: {
@@ -63,7 +65,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
63
65
  default: {};
64
66
  };
65
67
  target: {
66
- type: StringConstructor;
68
+ type: PropType<"_self" | "_blank" | "_parent" | "_top" | "_mywindow">;
67
69
  default: string;
68
70
  };
69
71
  leftIcon: {
@@ -85,11 +87,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
85
87
  }>> & {
86
88
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
87
89
  }, {
90
+ type: "default" | "primary" | "success" | "info" | "warning" | "danger";
88
91
  disabled: boolean;
89
- type: string;
90
92
  iconSize: string | number;
91
93
  iconSpace: string;
92
- target: string;
94
+ target: "_self" | "_blank" | "_parent" | "_top" | "_mywindow";
93
95
  href: string;
94
96
  hasUnderline: boolean;
95
97
  customColors: Record<string, any>;
@@ -0,0 +1,78 @@
1
+ import { PropType } from 'vue';
2
+
3
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
4
+ content: {
5
+ type: StringConstructor;
6
+ default: string;
7
+ };
8
+ direction: {
9
+ type: PropType<"left" | "right" | "bottom" | "top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end">;
10
+ default: string;
11
+ };
12
+ offsetX: {
13
+ type: (StringConstructor | NumberConstructor)[];
14
+ default: number;
15
+ };
16
+ offsetY: {
17
+ type: (StringConstructor | NumberConstructor)[];
18
+ default: number;
19
+ };
20
+ bubbleMaxW: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ };
24
+ bubbleZIndex: {
25
+ type: (StringConstructor | NumberConstructor)[];
26
+ default: number;
27
+ };
28
+ trigger: {
29
+ type: PropType<"click" | "hover">;
30
+ default: string;
31
+ };
32
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
33
+ content: {
34
+ type: StringConstructor;
35
+ default: string;
36
+ };
37
+ direction: {
38
+ type: PropType<"left" | "right" | "bottom" | "top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end">;
39
+ default: string;
40
+ };
41
+ offsetX: {
42
+ type: (StringConstructor | NumberConstructor)[];
43
+ default: number;
44
+ };
45
+ offsetY: {
46
+ type: (StringConstructor | NumberConstructor)[];
47
+ default: number;
48
+ };
49
+ bubbleMaxW: {
50
+ type: StringConstructor;
51
+ default: string;
52
+ };
53
+ bubbleZIndex: {
54
+ type: (StringConstructor | NumberConstructor)[];
55
+ default: number;
56
+ };
57
+ trigger: {
58
+ type: PropType<"click" | "hover">;
59
+ default: string;
60
+ };
61
+ }>>, {
62
+ direction: "left" | "right" | "bottom" | "top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
63
+ offsetX: string | number;
64
+ offsetY: string | number;
65
+ content: string;
66
+ bubbleMaxW: string;
67
+ bubbleZIndex: string | number;
68
+ trigger: "click" | "hover";
69
+ }, {}>, {
70
+ reference?(_: {}): any;
71
+ default?(_: {}): any;
72
+ }>;
73
+ export default _default;
74
+ type __VLS_WithTemplateSlots<T, S> = T & {
75
+ new (): {
76
+ $slots: S;
77
+ };
78
+ };
@@ -243,21 +243,21 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
243
243
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
244
244
  onSelectCompleted?: (() => any) | undefined;
245
245
  }, {
246
- disabled: boolean;
247
246
  modelValue: string | any[];
247
+ fontSize: string | number;
248
+ disabled: boolean;
249
+ padding: string;
250
+ width: string | number;
251
+ clearable: boolean;
248
252
  options: any[];
249
- labelKey: string;
250
253
  valueKey: string;
251
- width: string | number;
254
+ labelKey: string;
255
+ multiple: boolean;
252
256
  ddbWidth: string | number;
253
- fontSize: string | number;
254
- padding: string;
255
257
  scrollMaxH: string;
256
258
  filterable: boolean;
257
259
  remote: boolean;
258
260
  remoteMethod: Function;
259
- multiple: boolean;
260
- clearable: boolean;
261
261
  collapseTags: boolean;
262
262
  collapseTagsTooltip: boolean;
263
263
  isCascader: boolean;
@@ -0,0 +1,18 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ modelValue: {
3
+ type: BooleanConstructor;
4
+ default: boolean;
5
+ };
6
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
+ "update:modelValue": (val: any) => void;
8
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
9
+ modelValue: {
10
+ type: BooleanConstructor;
11
+ default: boolean;
12
+ };
13
+ }>> & {
14
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
15
+ }, {
16
+ modelValue: boolean;
17
+ }, {}>;
18
+ export default _default;
@@ -0,0 +1,78 @@
1
+ import { PropType } from 'vue';
2
+
3
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
4
+ content: {
5
+ type: StringConstructor;
6
+ default: string;
7
+ };
8
+ direction: {
9
+ type: PropType<"left" | "right" | "bottom" | "top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end">;
10
+ default: string;
11
+ };
12
+ offsetX: {
13
+ type: (StringConstructor | NumberConstructor)[];
14
+ default: number;
15
+ };
16
+ offsetY: {
17
+ type: (StringConstructor | NumberConstructor)[];
18
+ default: number;
19
+ };
20
+ bubbleMaxW: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ };
24
+ bubbleZIndex: {
25
+ type: (StringConstructor | NumberConstructor)[];
26
+ default: number;
27
+ };
28
+ trigger: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
33
+ content: {
34
+ type: StringConstructor;
35
+ default: string;
36
+ };
37
+ direction: {
38
+ type: PropType<"left" | "right" | "bottom" | "top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end">;
39
+ default: string;
40
+ };
41
+ offsetX: {
42
+ type: (StringConstructor | NumberConstructor)[];
43
+ default: number;
44
+ };
45
+ offsetY: {
46
+ type: (StringConstructor | NumberConstructor)[];
47
+ default: number;
48
+ };
49
+ bubbleMaxW: {
50
+ type: StringConstructor;
51
+ default: string;
52
+ };
53
+ bubbleZIndex: {
54
+ type: (StringConstructor | NumberConstructor)[];
55
+ default: number;
56
+ };
57
+ trigger: {
58
+ type: StringConstructor;
59
+ default: string;
60
+ };
61
+ }>>, {
62
+ direction: "left" | "right" | "bottom" | "top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
63
+ offsetX: string | number;
64
+ offsetY: string | number;
65
+ content: string;
66
+ bubbleMaxW: string;
67
+ bubbleZIndex: string | number;
68
+ trigger: string;
69
+ }, {}>, {
70
+ default?(_: {}): any;
71
+ content?(_: {}): any;
72
+ }>;
73
+ export default _default;
74
+ type __VLS_WithTemplateSlots<T, S> = T & {
75
+ new (): {
76
+ $slots: S;
77
+ };
78
+ };
@@ -143,12 +143,12 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
143
143
  }, {
144
144
  modelValue: any[];
145
145
  options: any[];
146
- labelKey: string;
147
146
  valueKey: string;
148
- multiple: boolean;
147
+ labelKey: string;
149
148
  levelW: string;
150
149
  levelH: string;
151
150
  expandTrigger: string;
151
+ multiple: boolean;
152
152
  checkStrictly: boolean;
153
153
  needRefresh: boolean;
154
154
  }, {}>, {