ll-plus 2.1.10 → 2.1.12
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.
- package/es/component.mjs +2 -0
- package/es/component.mjs.map +1 -1
- package/es/components/code-editor/src/code-editor.vue2.mjs.map +1 -1
- package/es/components/index.d.ts +1 -0
- package/es/components/index.mjs +2 -0
- package/es/components/index.mjs.map +1 -1
- package/es/components/key-value/index.d.ts +4 -4
- package/es/components/key-value/src/components/key-value-item.vue.d.ts +2 -2
- package/es/components/key-value/src/components/key-value-item.vue2.mjs +6 -2
- package/es/components/key-value/src/components/key-value-item.vue2.mjs.map +1 -1
- package/es/components/key-value/src/config/key-value-item.d.ts +2 -2
- package/es/components/key-value/src/config/key-value-item.mjs.map +1 -1
- package/es/components/key-value/src/config/key-value.d.ts +3 -3
- package/es/components/key-value/src/config/key-value.mjs +2 -2
- package/es/components/key-value/src/config/key-value.mjs.map +1 -1
- package/es/components/key-value/src/key-value.vue.d.ts +4 -4
- package/es/components/key-value/src/key-value.vue2.mjs +7 -4
- package/es/components/key-value/src/key-value.vue2.mjs.map +1 -1
- package/es/components/tag-group/index.d.ts +394 -0
- package/es/components/tag-group/index.mjs +10 -0
- package/es/components/tag-group/index.mjs.map +1 -0
- package/es/components/tag-group/src/tag-group.d.ts +14 -0
- package/es/components/tag-group/src/tag-group.mjs +22 -0
- package/es/components/tag-group/src/tag-group.mjs.map +1 -0
- package/es/components/tag-group/src/tag-group.vue.d.ts +388 -0
- package/es/components/tag-group/src/tag-group.vue.mjs +8 -0
- package/es/components/tag-group/src/tag-group.vue.mjs.map +1 -0
- package/es/components/tag-group/src/tag-group.vue2.mjs +325 -0
- package/es/components/tag-group/src/tag-group.vue2.mjs.map +1 -0
- package/es/index.mjs +2 -0
- package/es/index.mjs.map +1 -1
- package/es/utils/props/runtime.d.ts +2 -2
- package/global.d.ts +1 -0
- package/index.full.js +474 -127
- package/index.full.min.js +21 -21
- package/index.full.min.js.map +1 -1
- package/index.full.min.mjs +21 -21
- package/index.full.min.mjs.map +1 -1
- package/index.full.mjs +474 -130
- package/lib/component.js +18 -16
- package/lib/component.js.map +1 -1
- package/lib/components/code-editor/src/code-editor.vue2.js.map +1 -1
- package/lib/components/index.d.ts +1 -0
- package/lib/components/index.js +22 -17
- package/lib/components/index.js.map +1 -1
- package/lib/components/key-value/index.d.ts +4 -4
- package/lib/components/key-value/src/components/key-value-item.vue.d.ts +2 -2
- package/lib/components/key-value/src/components/key-value-item.vue2.js +6 -2
- package/lib/components/key-value/src/components/key-value-item.vue2.js.map +1 -1
- package/lib/components/key-value/src/config/key-value-item.d.ts +2 -2
- package/lib/components/key-value/src/config/key-value-item.js.map +1 -1
- package/lib/components/key-value/src/config/key-value.d.ts +3 -3
- package/lib/components/key-value/src/config/key-value.js +2 -2
- package/lib/components/key-value/src/config/key-value.js.map +1 -1
- package/lib/components/key-value/src/key-value.vue.d.ts +4 -4
- package/lib/components/key-value/src/key-value.vue2.js +6 -3
- package/lib/components/key-value/src/key-value.vue2.js.map +1 -1
- package/lib/components/tag-group/index.d.ts +394 -0
- package/lib/components/tag-group/index.js +17 -0
- package/lib/components/tag-group/index.js.map +1 -0
- package/lib/components/tag-group/src/tag-group.d.ts +14 -0
- package/lib/components/tag-group/src/tag-group.js +25 -0
- package/lib/components/tag-group/src/tag-group.js.map +1 -0
- package/lib/components/tag-group/src/tag-group.vue.d.ts +388 -0
- package/lib/components/tag-group/src/tag-group.vue.js +12 -0
- package/lib/components/tag-group/src/tag-group.vue.js.map +1 -0
- package/lib/components/tag-group/src/tag-group.vue2.js +329 -0
- package/lib/components/tag-group/src/tag-group.vue2.js.map +1 -0
- package/lib/index.js +22 -17
- package/lib/index.js.map +1 -1
- package/lib/utils/props/runtime.d.ts +2 -2
- package/package.json +1 -1
- package/theme-chalk/css/form.css +1 -1
- package/theme-chalk/css/index.css +1 -1
- package/theme-chalk/css/tag-group.css +5 -0
- package/types/packages/components/index.d.ts +1 -0
- package/types/packages/components/key-value/index.d.ts +4 -4
- package/types/packages/components/key-value/src/components/key-value-item.vue.d.ts +2 -2
- package/types/packages/components/key-value/src/config/key-value-item.d.ts +2 -2
- package/types/packages/components/key-value/src/config/key-value.d.ts +3 -3
- package/types/packages/components/key-value/src/key-value.vue.d.ts +4 -4
- package/types/packages/components/tag-group/index.d.ts +394 -0
- package/types/packages/components/tag-group/src/tag-group.d.ts +14 -0
- package/types/packages/components/tag-group/src/tag-group.vue.d.ts +388 -0
- package/types/packages/utils/props/runtime.d.ts +2 -2
|
@@ -0,0 +1,394 @@
|
|
|
1
|
+
import TagGroup from './src/tag-group.vue';
|
|
2
|
+
export declare const LlTagGroup: import("ll-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
3
|
+
readonly value: import("ll-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
4
|
+
readonly options: import("ll-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, readonly [], boolean>;
|
|
5
|
+
}, {
|
|
6
|
+
props: import("@vue/shared").LooseRequired<{
|
|
7
|
+
readonly value: string;
|
|
8
|
+
readonly options: string[];
|
|
9
|
+
readonly onChange?: ((value: string) => any) | undefined;
|
|
10
|
+
readonly "onUpdate:value"?: ((value: string) => any) | undefined;
|
|
11
|
+
readonly "onUpdate:options"?: ((value: any) => any) | undefined;
|
|
12
|
+
} & {}>;
|
|
13
|
+
emits: ((event: "change", value: string) => void) & ((event: "update:value", value: string) => void) & ((event: "update:options", value: any) => void);
|
|
14
|
+
bem: {
|
|
15
|
+
b: (blockSuffix?: string) => string;
|
|
16
|
+
e: (element?: string) => string;
|
|
17
|
+
m: (modifier?: string) => string;
|
|
18
|
+
be: (blockSuffix?: string, element?: string) => string;
|
|
19
|
+
em: (element: string, modifier: string) => string;
|
|
20
|
+
bm: (blockSuffix: string, modifier: string) => string;
|
|
21
|
+
bem: (blockSuffix: string, element: string, modifier: string) => string;
|
|
22
|
+
is: (name?: string) => string;
|
|
23
|
+
};
|
|
24
|
+
formItemContext: import("ant-design-vue/es/form/FormItemContext").FormItemContext;
|
|
25
|
+
loading: import("vue").Ref<boolean>;
|
|
26
|
+
inputValue: import("vue").Ref<string>;
|
|
27
|
+
visible: import("vue").Ref<boolean>;
|
|
28
|
+
value: import("vue").Ref<string[]>;
|
|
29
|
+
more: import("vue").Ref<number>;
|
|
30
|
+
btnRef: import("vue").Ref<any>;
|
|
31
|
+
mouseMove: import("vue").Ref<boolean>;
|
|
32
|
+
tagsTypeRef: import("vue").Ref<HTMLDivElement | null>;
|
|
33
|
+
tagRefs: import("vue").Ref<HTMLDivElement>[];
|
|
34
|
+
filterOptionsValue: import("vue").Ref<string[]>;
|
|
35
|
+
innerOptions: import("vue").Ref<string[]>;
|
|
36
|
+
tagsTypeWidth: import("vue").Ref<number>;
|
|
37
|
+
shownArr: import("vue").Ref<string[]>;
|
|
38
|
+
getTagRefs: (i: number) => (el: any) => void;
|
|
39
|
+
getWidth: () => void;
|
|
40
|
+
handleEnter: () => void;
|
|
41
|
+
handleDel: (idx: number) => void;
|
|
42
|
+
handleClickFilter: (item: string) => void;
|
|
43
|
+
readonly Popover: {
|
|
44
|
+
new (...args: any[]): import("@vue/runtime-core").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
45
|
+
content: {
|
|
46
|
+
default: any;
|
|
47
|
+
type: import("vue").PropType<any>;
|
|
48
|
+
};
|
|
49
|
+
title: {
|
|
50
|
+
default: any;
|
|
51
|
+
type: import("vue").PropType<any>;
|
|
52
|
+
};
|
|
53
|
+
trigger: import("vue").PropType<import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
54
|
+
open: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
default: any;
|
|
57
|
+
};
|
|
58
|
+
visible: {
|
|
59
|
+
type: BooleanConstructor;
|
|
60
|
+
default: any;
|
|
61
|
+
};
|
|
62
|
+
placement: import("vue").PropType<import("ant-design-vue/es/tooltip").TooltipPlacement>;
|
|
63
|
+
color: import("vue").PropType<import("ant-design-vue/es/_util/type").LiteralUnion<import("ant-design-vue/es/_util/colors").PresetColorType>>;
|
|
64
|
+
transitionName: StringConstructor;
|
|
65
|
+
overlayStyle: {
|
|
66
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
67
|
+
default: import("vue").CSSProperties;
|
|
68
|
+
};
|
|
69
|
+
overlayInnerStyle: {
|
|
70
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
71
|
+
default: import("vue").CSSProperties;
|
|
72
|
+
};
|
|
73
|
+
overlayClassName: StringConstructor;
|
|
74
|
+
openClassName: StringConstructor;
|
|
75
|
+
prefixCls: StringConstructor;
|
|
76
|
+
mouseEnterDelay: NumberConstructor;
|
|
77
|
+
mouseLeaveDelay: NumberConstructor;
|
|
78
|
+
getPopupContainer: import("vue").PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
79
|
+
arrowPointAtCenter: {
|
|
80
|
+
type: BooleanConstructor;
|
|
81
|
+
default: any;
|
|
82
|
+
};
|
|
83
|
+
arrow: {
|
|
84
|
+
type: import("vue").PropType<boolean | {
|
|
85
|
+
pointAtCenter?: boolean | undefined;
|
|
86
|
+
}>;
|
|
87
|
+
default: boolean | {
|
|
88
|
+
pointAtCenter?: boolean | undefined;
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
autoAdjustOverflow: {
|
|
92
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/es/tooltip").AdjustOverflow>;
|
|
93
|
+
default: boolean | import("ant-design-vue/es/tooltip").AdjustOverflow;
|
|
94
|
+
};
|
|
95
|
+
destroyTooltipOnHide: {
|
|
96
|
+
type: BooleanConstructor;
|
|
97
|
+
default: any;
|
|
98
|
+
};
|
|
99
|
+
align: {
|
|
100
|
+
type: import("vue").PropType<import("ant-design-vue/es/vc-trigger/interface").AlignType>;
|
|
101
|
+
default: import("ant-design-vue/es/vc-trigger/interface").AlignType;
|
|
102
|
+
};
|
|
103
|
+
builtinPlacements: {
|
|
104
|
+
type: import("vue").PropType<import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements>;
|
|
105
|
+
default: import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements;
|
|
106
|
+
};
|
|
107
|
+
children: ArrayConstructor;
|
|
108
|
+
onVisibleChange: import("vue").PropType<(vis: boolean) => void>;
|
|
109
|
+
'onUpdate:visible': import("vue").PropType<(vis: boolean) => void>;
|
|
110
|
+
onOpenChange: import("vue").PropType<(vis: boolean) => void>;
|
|
111
|
+
'onUpdate:open': import("vue").PropType<(vis: boolean) => void>;
|
|
112
|
+
}>>, () => import("ant-design-vue/es/_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
113
|
+
content: {
|
|
114
|
+
default: any;
|
|
115
|
+
type: import("vue").PropType<any>;
|
|
116
|
+
};
|
|
117
|
+
title: {
|
|
118
|
+
default: any;
|
|
119
|
+
type: import("vue").PropType<any>;
|
|
120
|
+
};
|
|
121
|
+
trigger: import("vue").PropType<import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
122
|
+
open: {
|
|
123
|
+
type: BooleanConstructor;
|
|
124
|
+
default: any;
|
|
125
|
+
};
|
|
126
|
+
visible: {
|
|
127
|
+
type: BooleanConstructor;
|
|
128
|
+
default: any;
|
|
129
|
+
};
|
|
130
|
+
placement: import("vue").PropType<import("ant-design-vue/es/tooltip").TooltipPlacement>;
|
|
131
|
+
color: import("vue").PropType<import("ant-design-vue/es/_util/type").LiteralUnion<import("ant-design-vue/es/_util/colors").PresetColorType>>;
|
|
132
|
+
transitionName: StringConstructor;
|
|
133
|
+
overlayStyle: {
|
|
134
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
135
|
+
default: import("vue").CSSProperties;
|
|
136
|
+
};
|
|
137
|
+
overlayInnerStyle: {
|
|
138
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
139
|
+
default: import("vue").CSSProperties;
|
|
140
|
+
};
|
|
141
|
+
overlayClassName: StringConstructor;
|
|
142
|
+
openClassName: StringConstructor;
|
|
143
|
+
prefixCls: StringConstructor;
|
|
144
|
+
mouseEnterDelay: NumberConstructor;
|
|
145
|
+
mouseLeaveDelay: NumberConstructor;
|
|
146
|
+
getPopupContainer: import("vue").PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
147
|
+
arrowPointAtCenter: {
|
|
148
|
+
type: BooleanConstructor;
|
|
149
|
+
default: any;
|
|
150
|
+
};
|
|
151
|
+
arrow: {
|
|
152
|
+
type: import("vue").PropType<boolean | {
|
|
153
|
+
pointAtCenter?: boolean | undefined;
|
|
154
|
+
}>;
|
|
155
|
+
default: boolean | {
|
|
156
|
+
pointAtCenter?: boolean | undefined;
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
autoAdjustOverflow: {
|
|
160
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/es/tooltip").AdjustOverflow>;
|
|
161
|
+
default: boolean | import("ant-design-vue/es/tooltip").AdjustOverflow;
|
|
162
|
+
};
|
|
163
|
+
destroyTooltipOnHide: {
|
|
164
|
+
type: BooleanConstructor;
|
|
165
|
+
default: any;
|
|
166
|
+
};
|
|
167
|
+
align: {
|
|
168
|
+
type: import("vue").PropType<import("ant-design-vue/es/vc-trigger/interface").AlignType>;
|
|
169
|
+
default: import("ant-design-vue/es/vc-trigger/interface").AlignType;
|
|
170
|
+
};
|
|
171
|
+
builtinPlacements: {
|
|
172
|
+
type: import("vue").PropType<import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements>;
|
|
173
|
+
default: import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements;
|
|
174
|
+
};
|
|
175
|
+
children: ArrayConstructor;
|
|
176
|
+
onVisibleChange: import("vue").PropType<(vis: boolean) => void>;
|
|
177
|
+
'onUpdate:visible': import("vue").PropType<(vis: boolean) => void>;
|
|
178
|
+
onOpenChange: import("vue").PropType<(vis: boolean) => void>;
|
|
179
|
+
'onUpdate:open': import("vue").PropType<(vis: boolean) => void>;
|
|
180
|
+
}>>, {
|
|
181
|
+
title: any;
|
|
182
|
+
align: import("ant-design-vue/es/vc-trigger/interface").AlignType;
|
|
183
|
+
open: boolean;
|
|
184
|
+
content: any;
|
|
185
|
+
visible: boolean;
|
|
186
|
+
arrow: boolean | {
|
|
187
|
+
pointAtCenter?: boolean | undefined;
|
|
188
|
+
};
|
|
189
|
+
builtinPlacements: import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements;
|
|
190
|
+
overlayInnerStyle: import("vue").CSSProperties;
|
|
191
|
+
overlayStyle: import("vue").CSSProperties;
|
|
192
|
+
destroyTooltipOnHide: boolean;
|
|
193
|
+
autoAdjustOverflow: boolean | import("ant-design-vue/es/tooltip").AdjustOverflow;
|
|
194
|
+
arrowPointAtCenter: boolean;
|
|
195
|
+
}, true, {}, {}, {
|
|
196
|
+
P: {};
|
|
197
|
+
B: {};
|
|
198
|
+
D: {};
|
|
199
|
+
C: {};
|
|
200
|
+
M: {};
|
|
201
|
+
Defaults: {};
|
|
202
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
203
|
+
content: {
|
|
204
|
+
default: any;
|
|
205
|
+
type: import("vue").PropType<any>;
|
|
206
|
+
};
|
|
207
|
+
title: {
|
|
208
|
+
default: any;
|
|
209
|
+
type: import("vue").PropType<any>;
|
|
210
|
+
};
|
|
211
|
+
trigger: import("vue").PropType<import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
212
|
+
open: {
|
|
213
|
+
type: BooleanConstructor;
|
|
214
|
+
default: any;
|
|
215
|
+
};
|
|
216
|
+
visible: {
|
|
217
|
+
type: BooleanConstructor;
|
|
218
|
+
default: any;
|
|
219
|
+
};
|
|
220
|
+
placement: import("vue").PropType<import("ant-design-vue/es/tooltip").TooltipPlacement>;
|
|
221
|
+
color: import("vue").PropType<import("ant-design-vue/es/_util/type").LiteralUnion<import("ant-design-vue/es/_util/colors").PresetColorType>>;
|
|
222
|
+
transitionName: StringConstructor;
|
|
223
|
+
overlayStyle: {
|
|
224
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
225
|
+
default: import("vue").CSSProperties;
|
|
226
|
+
};
|
|
227
|
+
overlayInnerStyle: {
|
|
228
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
229
|
+
default: import("vue").CSSProperties;
|
|
230
|
+
};
|
|
231
|
+
overlayClassName: StringConstructor;
|
|
232
|
+
openClassName: StringConstructor;
|
|
233
|
+
prefixCls: StringConstructor;
|
|
234
|
+
mouseEnterDelay: NumberConstructor;
|
|
235
|
+
mouseLeaveDelay: NumberConstructor;
|
|
236
|
+
getPopupContainer: import("vue").PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
237
|
+
arrowPointAtCenter: {
|
|
238
|
+
type: BooleanConstructor;
|
|
239
|
+
default: any;
|
|
240
|
+
};
|
|
241
|
+
arrow: {
|
|
242
|
+
type: import("vue").PropType<boolean | {
|
|
243
|
+
pointAtCenter?: boolean | undefined;
|
|
244
|
+
}>;
|
|
245
|
+
default: boolean | {
|
|
246
|
+
pointAtCenter?: boolean | undefined;
|
|
247
|
+
};
|
|
248
|
+
};
|
|
249
|
+
autoAdjustOverflow: {
|
|
250
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/es/tooltip").AdjustOverflow>;
|
|
251
|
+
default: boolean | import("ant-design-vue/es/tooltip").AdjustOverflow;
|
|
252
|
+
};
|
|
253
|
+
destroyTooltipOnHide: {
|
|
254
|
+
type: BooleanConstructor;
|
|
255
|
+
default: any;
|
|
256
|
+
};
|
|
257
|
+
align: {
|
|
258
|
+
type: import("vue").PropType<import("ant-design-vue/es/vc-trigger/interface").AlignType>;
|
|
259
|
+
default: import("ant-design-vue/es/vc-trigger/interface").AlignType;
|
|
260
|
+
};
|
|
261
|
+
builtinPlacements: {
|
|
262
|
+
type: import("vue").PropType<import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements>;
|
|
263
|
+
default: import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements;
|
|
264
|
+
};
|
|
265
|
+
children: ArrayConstructor;
|
|
266
|
+
onVisibleChange: import("vue").PropType<(vis: boolean) => void>;
|
|
267
|
+
'onUpdate:visible': import("vue").PropType<(vis: boolean) => void>;
|
|
268
|
+
onOpenChange: import("vue").PropType<(vis: boolean) => void>;
|
|
269
|
+
'onUpdate:open': import("vue").PropType<(vis: boolean) => void>;
|
|
270
|
+
}>>, () => import("ant-design-vue/es/_util/type").VueNode, {}, {}, {}, {
|
|
271
|
+
title: any;
|
|
272
|
+
align: import("ant-design-vue/es/vc-trigger/interface").AlignType;
|
|
273
|
+
open: boolean;
|
|
274
|
+
content: any;
|
|
275
|
+
visible: boolean;
|
|
276
|
+
arrow: boolean | {
|
|
277
|
+
pointAtCenter?: boolean | undefined;
|
|
278
|
+
};
|
|
279
|
+
builtinPlacements: import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements;
|
|
280
|
+
overlayInnerStyle: import("vue").CSSProperties;
|
|
281
|
+
overlayStyle: import("vue").CSSProperties;
|
|
282
|
+
destroyTooltipOnHide: boolean;
|
|
283
|
+
autoAdjustOverflow: boolean | import("ant-design-vue/es/tooltip").AdjustOverflow;
|
|
284
|
+
arrowPointAtCenter: boolean;
|
|
285
|
+
}>;
|
|
286
|
+
__isFragment?: undefined;
|
|
287
|
+
__isTeleport?: undefined;
|
|
288
|
+
__isSuspense?: undefined;
|
|
289
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
290
|
+
content: {
|
|
291
|
+
default: any;
|
|
292
|
+
type: import("vue").PropType<any>;
|
|
293
|
+
};
|
|
294
|
+
title: {
|
|
295
|
+
default: any;
|
|
296
|
+
type: import("vue").PropType<any>;
|
|
297
|
+
};
|
|
298
|
+
trigger: import("vue").PropType<import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
299
|
+
open: {
|
|
300
|
+
type: BooleanConstructor;
|
|
301
|
+
default: any;
|
|
302
|
+
};
|
|
303
|
+
visible: {
|
|
304
|
+
type: BooleanConstructor;
|
|
305
|
+
default: any;
|
|
306
|
+
};
|
|
307
|
+
placement: import("vue").PropType<import("ant-design-vue/es/tooltip").TooltipPlacement>;
|
|
308
|
+
color: import("vue").PropType<import("ant-design-vue/es/_util/type").LiteralUnion<import("ant-design-vue/es/_util/colors").PresetColorType>>;
|
|
309
|
+
transitionName: StringConstructor;
|
|
310
|
+
overlayStyle: {
|
|
311
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
312
|
+
default: import("vue").CSSProperties;
|
|
313
|
+
};
|
|
314
|
+
overlayInnerStyle: {
|
|
315
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
316
|
+
default: import("vue").CSSProperties;
|
|
317
|
+
};
|
|
318
|
+
overlayClassName: StringConstructor;
|
|
319
|
+
openClassName: StringConstructor;
|
|
320
|
+
prefixCls: StringConstructor;
|
|
321
|
+
mouseEnterDelay: NumberConstructor;
|
|
322
|
+
mouseLeaveDelay: NumberConstructor;
|
|
323
|
+
getPopupContainer: import("vue").PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
324
|
+
arrowPointAtCenter: {
|
|
325
|
+
type: BooleanConstructor;
|
|
326
|
+
default: any;
|
|
327
|
+
};
|
|
328
|
+
arrow: {
|
|
329
|
+
type: import("vue").PropType<boolean | {
|
|
330
|
+
pointAtCenter?: boolean | undefined;
|
|
331
|
+
}>;
|
|
332
|
+
default: boolean | {
|
|
333
|
+
pointAtCenter?: boolean | undefined;
|
|
334
|
+
};
|
|
335
|
+
};
|
|
336
|
+
autoAdjustOverflow: {
|
|
337
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/es/tooltip").AdjustOverflow>;
|
|
338
|
+
default: boolean | import("ant-design-vue/es/tooltip").AdjustOverflow;
|
|
339
|
+
};
|
|
340
|
+
destroyTooltipOnHide: {
|
|
341
|
+
type: BooleanConstructor;
|
|
342
|
+
default: any;
|
|
343
|
+
};
|
|
344
|
+
align: {
|
|
345
|
+
type: import("vue").PropType<import("ant-design-vue/es/vc-trigger/interface").AlignType>;
|
|
346
|
+
default: import("ant-design-vue/es/vc-trigger/interface").AlignType;
|
|
347
|
+
};
|
|
348
|
+
builtinPlacements: {
|
|
349
|
+
type: import("vue").PropType<import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements>;
|
|
350
|
+
default: import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements;
|
|
351
|
+
};
|
|
352
|
+
children: ArrayConstructor;
|
|
353
|
+
onVisibleChange: import("vue").PropType<(vis: boolean) => void>;
|
|
354
|
+
'onUpdate:visible': import("vue").PropType<(vis: boolean) => void>;
|
|
355
|
+
onOpenChange: import("vue").PropType<(vis: boolean) => void>;
|
|
356
|
+
'onUpdate:open': import("vue").PropType<(vis: boolean) => void>;
|
|
357
|
+
}>>, () => import("ant-design-vue/es/_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
358
|
+
title: any;
|
|
359
|
+
align: import("ant-design-vue/es/vc-trigger/interface").AlignType;
|
|
360
|
+
open: boolean;
|
|
361
|
+
content: any;
|
|
362
|
+
visible: boolean;
|
|
363
|
+
arrow: boolean | {
|
|
364
|
+
pointAtCenter?: boolean | undefined;
|
|
365
|
+
};
|
|
366
|
+
builtinPlacements: import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements;
|
|
367
|
+
overlayInnerStyle: import("vue").CSSProperties;
|
|
368
|
+
overlayStyle: import("vue").CSSProperties;
|
|
369
|
+
destroyTooltipOnHide: boolean;
|
|
370
|
+
autoAdjustOverflow: boolean | import("ant-design-vue/es/tooltip").AdjustOverflow;
|
|
371
|
+
arrowPointAtCenter: boolean;
|
|
372
|
+
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[]>;
|
|
373
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
374
|
+
'update:value': (value: string) => boolean;
|
|
375
|
+
'update:options': (value: any) => boolean;
|
|
376
|
+
change: (value: string) => boolean;
|
|
377
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
378
|
+
readonly value: import("ll-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
379
|
+
readonly options: import("ll-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, readonly [], boolean>;
|
|
380
|
+
}>> & {
|
|
381
|
+
onChange?: ((value: string) => any) | undefined;
|
|
382
|
+
"onUpdate:value"?: ((value: string) => any) | undefined;
|
|
383
|
+
"onUpdate:options"?: ((value: any) => any) | undefined;
|
|
384
|
+
}, {
|
|
385
|
+
readonly value: string;
|
|
386
|
+
readonly options: string[];
|
|
387
|
+
}, {}>>;
|
|
388
|
+
export default LlTagGroup;
|
|
389
|
+
export * from './src/tag-group';
|
|
390
|
+
declare module 'vue' {
|
|
391
|
+
interface GlobalComponents {
|
|
392
|
+
LlTagGroup: typeof TagGroup;
|
|
393
|
+
}
|
|
394
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import '../../utils/index.mjs';
|
|
2
|
+
import TagGroup from './src/tag-group.vue.mjs';
|
|
3
|
+
export { tagGroupEmits, tagGroupProps } from './src/tag-group.mjs';
|
|
4
|
+
import { withInstall } from '../../utils/with-install.mjs';
|
|
5
|
+
|
|
6
|
+
"use strict";
|
|
7
|
+
const LlTagGroup = withInstall(TagGroup);
|
|
8
|
+
|
|
9
|
+
export { LlTagGroup, LlTagGroup as default };
|
|
10
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../../../../packages/components/tag-group/index.ts"],"sourcesContent":["import { withInstall } from '@ll-plus/utils'\n\nimport TagGroup from './src/tag-group.vue'\n\nexport const LlTagGroup = withInstall(TagGroup)\nexport default LlTagGroup\nexport * from './src/tag-group'\n\ndeclare module 'vue' {\n export interface GlobalComponents {\n LlTagGroup: typeof TagGroup\n }\n}\n"],"names":[],"mappings":";;;;;;AAIa,MAAA,UAAA,GAAa,YAAY,QAAQ;;;;"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { ExtractPropTypes } from 'vue';
|
|
2
|
+
import type TagGroup from './tag-group.vue';
|
|
3
|
+
export declare const tagGroupProps: {
|
|
4
|
+
readonly value: import("ll-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
5
|
+
readonly options: import("ll-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, readonly [], boolean>;
|
|
6
|
+
};
|
|
7
|
+
export declare const tagGroupEmits: {
|
|
8
|
+
'update:value': (value: string) => boolean;
|
|
9
|
+
'update:options': (value: any) => boolean;
|
|
10
|
+
change: (value: string) => boolean;
|
|
11
|
+
};
|
|
12
|
+
export type TagGroupProps = ExtractPropTypes<typeof tagGroupProps>;
|
|
13
|
+
export type TagGroupEmits = typeof tagGroupEmits;
|
|
14
|
+
export type TagGroupInstance = InstanceType<typeof TagGroup>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import '../../../utils/index.mjs';
|
|
2
|
+
import { buildProps, definePropType } from '../../../utils/props/runtime.mjs';
|
|
3
|
+
|
|
4
|
+
"use strict";
|
|
5
|
+
const tagGroupProps = buildProps({
|
|
6
|
+
value: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: ""
|
|
9
|
+
},
|
|
10
|
+
options: {
|
|
11
|
+
type: definePropType(Array),
|
|
12
|
+
default: []
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
const tagGroupEmits = {
|
|
16
|
+
"update:value": (value) => !!value,
|
|
17
|
+
"update:options": (value) => !!value,
|
|
18
|
+
change: (value) => !!value
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export { tagGroupEmits, tagGroupProps };
|
|
22
|
+
//# sourceMappingURL=tag-group.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tag-group.mjs","sources":["../../../../../packages/components/tag-group/src/tag-group.ts"],"sourcesContent":["import { buildProps, definePropType } from '@ll-plus/utils'\n\nimport type { ExtractPropTypes } from 'vue'\n\nimport type TagGroup from './tag-group.vue'\n\nexport const tagGroupProps = buildProps({\n value: {\n type: String,\n default: ''\n },\n options: {\n type: definePropType<string[]>(Array),\n default: []\n }\n} as const)\n\nexport const tagGroupEmits = {\n 'update:value': (value: string) => !!value,\n 'update:options': (value: any) => !!value,\n change: (value: string) => !!value\n}\n\n// props\nexport type TagGroupProps = ExtractPropTypes<typeof tagGroupProps>\n\n// emits\nexport type TagGroupEmits = typeof tagGroupEmits\n\n// instance\nexport type TagGroupInstance = InstanceType<typeof TagGroup>\n"],"names":[],"mappings":";;;;AAMO,MAAM,gBAAgB,UAAW,CAAA;AAAA,EACtC,KAAO,EAAA;AAAA,IACL,IAAM,EAAA,MAAA;AAAA,IACN,OAAS,EAAA,EAAA;AAAA,GACX;AAAA,EACA,OAAS,EAAA;AAAA,IACP,IAAA,EAAM,eAAyB,KAAK,CAAA;AAAA,IACpC,SAAS,EAAC;AAAA,GACZ;AACF,CAAU,EAAA;AAEH,MAAM,aAAgB,GAAA;AAAA,EAC3B,cAAgB,EAAA,CAAC,KAAkB,KAAA,CAAC,CAAC,KAAA;AAAA,EACrC,gBAAkB,EAAA,CAAC,KAAe,KAAA,CAAC,CAAC,KAAA;AAAA,EACpC,MAAQ,EAAA,CAAC,KAAkB,KAAA,CAAC,CAAC,KAAA;AAC/B;;;;"}
|