@creatorsn/vfluent3 0.3.51 → 0.3.53
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/dist/style.css +1 -1
- package/dist/types/packages/color-picker/index.d.ts +66 -3
- package/dist/types/packages/color-picker/source/index.vue.d.ts +66 -3
- package/dist/types/packages/index.d.ts +3 -0
- package/dist/types/packages/navigation-panel/index.d.ts +2 -0
- package/dist/types/packages/navigation-panel/source/index.vue.d.ts +2 -0
- package/dist/types/packages/navigation-view/index.d.ts +2 -0
- package/dist/types/packages/navigation-view/source/index.vue.d.ts +2 -0
- package/dist/types/packages/tab-view/index.d.ts +290 -0
- package/dist/types/packages/tab-view/source/index.vue.d.ts +289 -0
- package/dist/types/packages/tab-view/style/index.d.ts +3 -0
- package/dist/types/packages/verify-box/index.d.ts +3 -0
- package/dist/types/packages/verify-box/source/index.vue.d.ts +3 -0
- package/dist/vfluent3.js +3695 -3162
- package/dist/vfluent3.umd.cjs +9 -9
- package/package.json +1 -1
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
3
|
+
$props: {
|
|
4
|
+
readonly fontSize?: number | undefined;
|
|
5
|
+
readonly background?: string | undefined;
|
|
6
|
+
readonly borderRadius?: number | undefined;
|
|
7
|
+
readonly padding?: string | undefined;
|
|
8
|
+
readonly theme?: string | undefined;
|
|
9
|
+
readonly disabled?: boolean | undefined;
|
|
10
|
+
readonly lang?: string | undefined;
|
|
11
|
+
readonly modelValue?: (() => null) | undefined;
|
|
12
|
+
readonly foreground?: string | undefined;
|
|
13
|
+
readonly hoverBackground?: string | undefined;
|
|
14
|
+
readonly itemHeight?: number | undefined;
|
|
15
|
+
readonly draggable?: boolean | undefined;
|
|
16
|
+
readonly items?: {
|
|
17
|
+
name: string;
|
|
18
|
+
}[] | undefined;
|
|
19
|
+
readonly choosenForeground?: string | undefined;
|
|
20
|
+
readonly itemWidth?: number | undefined;
|
|
21
|
+
readonly chooseBackground?: string | undefined;
|
|
22
|
+
readonly activeBackground?: string | undefined;
|
|
23
|
+
readonly imgBorderRadius?: number | undefined;
|
|
24
|
+
readonly closable?: boolean | undefined;
|
|
25
|
+
readonly showAddButton?: boolean | undefined;
|
|
26
|
+
readonly addButtonIcon?: string | undefined;
|
|
27
|
+
readonly addButtonBackground?: string | undefined;
|
|
28
|
+
readonly addButtonForeground?: string | undefined;
|
|
29
|
+
readonly closeButtonIcon?: string | undefined;
|
|
30
|
+
readonly closeIconSize?: number | undefined;
|
|
31
|
+
readonly closeButtonForeground?: string | undefined;
|
|
32
|
+
readonly overflowMode?: string | undefined;
|
|
33
|
+
};
|
|
34
|
+
$emit: (event: "add" | "change" | "close" | "update:modelValue" | "update:items" | "reorder", ...args: any[]) => void;
|
|
35
|
+
}, {
|
|
36
|
+
thisItems: never[];
|
|
37
|
+
thisValue: null;
|
|
38
|
+
itemKeySeed: number;
|
|
39
|
+
dragState: {
|
|
40
|
+
dragKey: null;
|
|
41
|
+
dragIndex: number;
|
|
42
|
+
dropKey: null;
|
|
43
|
+
dropPosition: string;
|
|
44
|
+
};
|
|
45
|
+
}, {
|
|
46
|
+
isDisabled(): boolean;
|
|
47
|
+
$theme(): string;
|
|
48
|
+
normalizedOverflowMode(): "scroll" | "shrink";
|
|
49
|
+
overflowClass(): string;
|
|
50
|
+
tabItemSizeStyle(): {
|
|
51
|
+
width: any;
|
|
52
|
+
minWidth: string;
|
|
53
|
+
maxWidth: string;
|
|
54
|
+
flex: string;
|
|
55
|
+
} | {
|
|
56
|
+
width: any;
|
|
57
|
+
minWidth: any;
|
|
58
|
+
maxWidth: any;
|
|
59
|
+
flex?: undefined;
|
|
60
|
+
};
|
|
61
|
+
}, {
|
|
62
|
+
itemsInit(): void;
|
|
63
|
+
generateItemKey(item: any): string;
|
|
64
|
+
findCurrentValue(): void;
|
|
65
|
+
defaultItemInit(): void;
|
|
66
|
+
sameItem(a: any, b: any): boolean;
|
|
67
|
+
itemClick(item: any): void;
|
|
68
|
+
tabDraggable(item: any): any;
|
|
69
|
+
tabClosable(item: any): any;
|
|
70
|
+
handleDragStart(event: any, index: any, item: any): void;
|
|
71
|
+
handleDragOver(event: any, index: any, item: any): void;
|
|
72
|
+
handleDrop(event: any, index: any, item: any): void;
|
|
73
|
+
canDrop(index: any, item: any): boolean;
|
|
74
|
+
computeDropPosition(event: any): "after" | "before";
|
|
75
|
+
reorderItems(targetIndex: any, dropPosition: any): void;
|
|
76
|
+
addClick(event: any): void;
|
|
77
|
+
closeItem(event: any, index: any, item: any): void;
|
|
78
|
+
isDragging(item: any): boolean;
|
|
79
|
+
isDropPosition(item: any, position: any): boolean;
|
|
80
|
+
itemImage(item: any): any;
|
|
81
|
+
itemTitle(item: any): any;
|
|
82
|
+
isURL(url: any): boolean;
|
|
83
|
+
publicItem(item: any): any;
|
|
84
|
+
publicItems(items?: any[]): any[];
|
|
85
|
+
eqal(item: any): boolean;
|
|
86
|
+
valueTrigger(val: any): any;
|
|
87
|
+
formatSize(value: any): any;
|
|
88
|
+
clearDragState(): void;
|
|
89
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
90
|
+
P: {};
|
|
91
|
+
B: {};
|
|
92
|
+
D: {};
|
|
93
|
+
C: {};
|
|
94
|
+
M: {};
|
|
95
|
+
Defaults: {};
|
|
96
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
97
|
+
$props: {
|
|
98
|
+
readonly fontSize?: number | undefined;
|
|
99
|
+
readonly background?: string | undefined;
|
|
100
|
+
readonly borderRadius?: number | undefined;
|
|
101
|
+
readonly padding?: string | undefined;
|
|
102
|
+
readonly theme?: string | undefined;
|
|
103
|
+
readonly disabled?: boolean | undefined;
|
|
104
|
+
readonly lang?: string | undefined;
|
|
105
|
+
readonly modelValue?: (() => null) | undefined;
|
|
106
|
+
readonly foreground?: string | undefined;
|
|
107
|
+
readonly hoverBackground?: string | undefined;
|
|
108
|
+
readonly itemHeight?: number | undefined;
|
|
109
|
+
readonly draggable?: boolean | undefined;
|
|
110
|
+
readonly items?: {
|
|
111
|
+
name: string;
|
|
112
|
+
}[] | undefined;
|
|
113
|
+
readonly choosenForeground?: string | undefined;
|
|
114
|
+
readonly itemWidth?: number | undefined;
|
|
115
|
+
readonly chooseBackground?: string | undefined;
|
|
116
|
+
readonly activeBackground?: string | undefined;
|
|
117
|
+
readonly imgBorderRadius?: number | undefined;
|
|
118
|
+
readonly closable?: boolean | undefined;
|
|
119
|
+
readonly showAddButton?: boolean | undefined;
|
|
120
|
+
readonly addButtonIcon?: string | undefined;
|
|
121
|
+
readonly addButtonBackground?: string | undefined;
|
|
122
|
+
readonly addButtonForeground?: string | undefined;
|
|
123
|
+
readonly closeButtonIcon?: string | undefined;
|
|
124
|
+
readonly closeIconSize?: number | undefined;
|
|
125
|
+
readonly closeButtonForeground?: string | undefined;
|
|
126
|
+
readonly overflowMode?: string | undefined;
|
|
127
|
+
};
|
|
128
|
+
$emit: (event: "add" | "change" | "close" | "update:modelValue" | "update:items" | "reorder", ...args: any[]) => void;
|
|
129
|
+
}, {
|
|
130
|
+
thisItems: never[];
|
|
131
|
+
thisValue: null;
|
|
132
|
+
itemKeySeed: number;
|
|
133
|
+
dragState: {
|
|
134
|
+
dragKey: null;
|
|
135
|
+
dragIndex: number;
|
|
136
|
+
dropKey: null;
|
|
137
|
+
dropPosition: string;
|
|
138
|
+
};
|
|
139
|
+
}, {
|
|
140
|
+
isDisabled(): boolean;
|
|
141
|
+
$theme(): string;
|
|
142
|
+
normalizedOverflowMode(): "scroll" | "shrink";
|
|
143
|
+
overflowClass(): string;
|
|
144
|
+
tabItemSizeStyle(): {
|
|
145
|
+
width: any;
|
|
146
|
+
minWidth: string;
|
|
147
|
+
maxWidth: string;
|
|
148
|
+
flex: string;
|
|
149
|
+
} | {
|
|
150
|
+
width: any;
|
|
151
|
+
minWidth: any;
|
|
152
|
+
maxWidth: any;
|
|
153
|
+
flex?: undefined;
|
|
154
|
+
};
|
|
155
|
+
}, {
|
|
156
|
+
itemsInit(): void;
|
|
157
|
+
generateItemKey(item: any): string;
|
|
158
|
+
findCurrentValue(): void;
|
|
159
|
+
defaultItemInit(): void;
|
|
160
|
+
sameItem(a: any, b: any): boolean;
|
|
161
|
+
itemClick(item: any): void;
|
|
162
|
+
tabDraggable(item: any): any;
|
|
163
|
+
tabClosable(item: any): any;
|
|
164
|
+
handleDragStart(event: any, index: any, item: any): void;
|
|
165
|
+
handleDragOver(event: any, index: any, item: any): void;
|
|
166
|
+
handleDrop(event: any, index: any, item: any): void;
|
|
167
|
+
canDrop(index: any, item: any): boolean;
|
|
168
|
+
computeDropPosition(event: any): "after" | "before";
|
|
169
|
+
reorderItems(targetIndex: any, dropPosition: any): void;
|
|
170
|
+
addClick(event: any): void;
|
|
171
|
+
closeItem(event: any, index: any, item: any): void;
|
|
172
|
+
isDragging(item: any): boolean;
|
|
173
|
+
isDropPosition(item: any, position: any): boolean;
|
|
174
|
+
itemImage(item: any): any;
|
|
175
|
+
itemTitle(item: any): any;
|
|
176
|
+
isURL(url: any): boolean;
|
|
177
|
+
publicItem(item: any): any;
|
|
178
|
+
publicItems(items?: any[]): any[];
|
|
179
|
+
eqal(item: any): boolean;
|
|
180
|
+
valueTrigger(val: any): any;
|
|
181
|
+
formatSize(value: any): any;
|
|
182
|
+
clearDragState(): void;
|
|
183
|
+
}, {}>;
|
|
184
|
+
__isFragment?: undefined;
|
|
185
|
+
__isTeleport?: undefined;
|
|
186
|
+
__isSuspense?: undefined;
|
|
187
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
188
|
+
$props: {
|
|
189
|
+
readonly fontSize?: number | undefined;
|
|
190
|
+
readonly background?: string | undefined;
|
|
191
|
+
readonly borderRadius?: number | undefined;
|
|
192
|
+
readonly padding?: string | undefined;
|
|
193
|
+
readonly theme?: string | undefined;
|
|
194
|
+
readonly disabled?: boolean | undefined;
|
|
195
|
+
readonly lang?: string | undefined;
|
|
196
|
+
readonly modelValue?: (() => null) | undefined;
|
|
197
|
+
readonly foreground?: string | undefined;
|
|
198
|
+
readonly hoverBackground?: string | undefined;
|
|
199
|
+
readonly itemHeight?: number | undefined;
|
|
200
|
+
readonly draggable?: boolean | undefined;
|
|
201
|
+
readonly items?: {
|
|
202
|
+
name: string;
|
|
203
|
+
}[] | undefined;
|
|
204
|
+
readonly choosenForeground?: string | undefined;
|
|
205
|
+
readonly itemWidth?: number | undefined;
|
|
206
|
+
readonly chooseBackground?: string | undefined;
|
|
207
|
+
readonly activeBackground?: string | undefined;
|
|
208
|
+
readonly imgBorderRadius?: number | undefined;
|
|
209
|
+
readonly closable?: boolean | undefined;
|
|
210
|
+
readonly showAddButton?: boolean | undefined;
|
|
211
|
+
readonly addButtonIcon?: string | undefined;
|
|
212
|
+
readonly addButtonBackground?: string | undefined;
|
|
213
|
+
readonly addButtonForeground?: string | undefined;
|
|
214
|
+
readonly closeButtonIcon?: string | undefined;
|
|
215
|
+
readonly closeIconSize?: number | undefined;
|
|
216
|
+
readonly closeButtonForeground?: string | undefined;
|
|
217
|
+
readonly overflowMode?: string | undefined;
|
|
218
|
+
};
|
|
219
|
+
$emit: (event: "add" | "change" | "close" | "update:modelValue" | "update:items" | "reorder", ...args: any[]) => void;
|
|
220
|
+
}, {
|
|
221
|
+
thisItems: never[];
|
|
222
|
+
thisValue: null;
|
|
223
|
+
itemKeySeed: number;
|
|
224
|
+
dragState: {
|
|
225
|
+
dragKey: null;
|
|
226
|
+
dragIndex: number;
|
|
227
|
+
dropKey: null;
|
|
228
|
+
dropPosition: string;
|
|
229
|
+
};
|
|
230
|
+
}, {
|
|
231
|
+
isDisabled(): boolean;
|
|
232
|
+
$theme(): string;
|
|
233
|
+
normalizedOverflowMode(): "scroll" | "shrink";
|
|
234
|
+
overflowClass(): string;
|
|
235
|
+
tabItemSizeStyle(): {
|
|
236
|
+
width: any;
|
|
237
|
+
minWidth: string;
|
|
238
|
+
maxWidth: string;
|
|
239
|
+
flex: string;
|
|
240
|
+
} | {
|
|
241
|
+
width: any;
|
|
242
|
+
minWidth: any;
|
|
243
|
+
maxWidth: any;
|
|
244
|
+
flex?: undefined;
|
|
245
|
+
};
|
|
246
|
+
}, {
|
|
247
|
+
itemsInit(): void;
|
|
248
|
+
generateItemKey(item: any): string;
|
|
249
|
+
findCurrentValue(): void;
|
|
250
|
+
defaultItemInit(): void;
|
|
251
|
+
sameItem(a: any, b: any): boolean;
|
|
252
|
+
itemClick(item: any): void;
|
|
253
|
+
tabDraggable(item: any): any;
|
|
254
|
+
tabClosable(item: any): any;
|
|
255
|
+
handleDragStart(event: any, index: any, item: any): void;
|
|
256
|
+
handleDragOver(event: any, index: any, item: any): void;
|
|
257
|
+
handleDrop(event: any, index: any, item: any): void;
|
|
258
|
+
canDrop(index: any, item: any): boolean;
|
|
259
|
+
computeDropPosition(event: any): "after" | "before";
|
|
260
|
+
reorderItems(targetIndex: any, dropPosition: any): void;
|
|
261
|
+
addClick(event: any): void;
|
|
262
|
+
closeItem(event: any, index: any, item: any): void;
|
|
263
|
+
isDragging(item: any): boolean;
|
|
264
|
+
isDropPosition(item: any, position: any): boolean;
|
|
265
|
+
itemImage(item: any): any;
|
|
266
|
+
itemTitle(item: any): any;
|
|
267
|
+
isURL(url: any): boolean;
|
|
268
|
+
publicItem(item: any): any;
|
|
269
|
+
publicItems(items?: any[]): any[];
|
|
270
|
+
eqal(item: any): boolean;
|
|
271
|
+
valueTrigger(val: any): any;
|
|
272
|
+
formatSize(value: any): any;
|
|
273
|
+
clearDragState(): void;
|
|
274
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
275
|
+
$slots: {
|
|
276
|
+
item: (_: {
|
|
277
|
+
item: never;
|
|
278
|
+
index: number;
|
|
279
|
+
eqal: (item: any) => boolean;
|
|
280
|
+
valueTrigger: (val: any) => any;
|
|
281
|
+
}) => any;
|
|
282
|
+
'close-button': (_: {
|
|
283
|
+
item: never;
|
|
284
|
+
index: number;
|
|
285
|
+
}) => any;
|
|
286
|
+
'add-button': (_: {}) => any;
|
|
287
|
+
};
|
|
288
|
+
});
|
|
289
|
+
export default _default;
|
|
@@ -31,6 +31,7 @@ export declare const FvVerifyBox: import("../../types/plugins/component-plugin")
|
|
|
31
31
|
valueFormat(): void;
|
|
32
32
|
handleKeyDown(event: any, idx: any): void;
|
|
33
33
|
handlePaste(event: any): void;
|
|
34
|
+
pasteProcess(data: any): void;
|
|
34
35
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
35
36
|
P: {};
|
|
36
37
|
B: {};
|
|
@@ -69,6 +70,7 @@ export declare const FvVerifyBox: import("../../types/plugins/component-plugin")
|
|
|
69
70
|
valueFormat(): void;
|
|
70
71
|
handleKeyDown(event: any, idx: any): void;
|
|
71
72
|
handlePaste(event: any): void;
|
|
73
|
+
pasteProcess(data: any): void;
|
|
72
74
|
}, {}>;
|
|
73
75
|
__isFragment?: undefined;
|
|
74
76
|
__isTeleport?: undefined;
|
|
@@ -104,6 +106,7 @@ export declare const FvVerifyBox: import("../../types/plugins/component-plugin")
|
|
|
104
106
|
valueFormat(): void;
|
|
105
107
|
handleKeyDown(event: any, idx: any): void;
|
|
106
108
|
handlePaste(event: any): void;
|
|
109
|
+
pasteProcess(data: any): void;
|
|
107
110
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
108
111
|
$slots: {};
|
|
109
112
|
})>;
|
|
@@ -30,6 +30,7 @@ declare const _default: {
|
|
|
30
30
|
valueFormat(): void;
|
|
31
31
|
handleKeyDown(event: any, idx: any): void;
|
|
32
32
|
handlePaste(event: any): void;
|
|
33
|
+
pasteProcess(data: any): void;
|
|
33
34
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
34
35
|
P: {};
|
|
35
36
|
B: {};
|
|
@@ -68,6 +69,7 @@ declare const _default: {
|
|
|
68
69
|
valueFormat(): void;
|
|
69
70
|
handleKeyDown(event: any, idx: any): void;
|
|
70
71
|
handlePaste(event: any): void;
|
|
72
|
+
pasteProcess(data: any): void;
|
|
71
73
|
}, {}>;
|
|
72
74
|
__isFragment?: undefined;
|
|
73
75
|
__isTeleport?: undefined;
|
|
@@ -103,6 +105,7 @@ declare const _default: {
|
|
|
103
105
|
valueFormat(): void;
|
|
104
106
|
handleKeyDown(event: any, idx: any): void;
|
|
105
107
|
handlePaste(event: any): void;
|
|
108
|
+
pasteProcess(data: any): void;
|
|
106
109
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
107
110
|
$slots: {};
|
|
108
111
|
});
|