@creatorsn/vfluent3 0.3.47 → 0.3.51
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 +377 -122
- package/dist/types/packages/color-picker/source/index.vue.d.ts +378 -122
- package/dist/types/packages/flip-view/index.d.ts +1 -1
- package/dist/types/packages/flip-view/source/index.vue.d.ts +1 -1
- package/dist/types/packages/index.d.ts +0 -3
- package/dist/types/packages/radio/index.d.ts +0 -6
- package/dist/types/packages/radio/source/index.vue.d.ts +0 -6
- package/dist/vfluent3.js +8661 -8689
- package/dist/vfluent3.umd.cjs +11 -11
- package/package.json +1 -1
- package/dist/types/packages/color-picker/source/index.d.ts +0 -107
- package/dist/types/packages/radio-group/index.d.ts +0 -3
- package/dist/types/packages/radio-group/source/index.d.ts +0 -20
- package/dist/types/packages/radio-group/source/index.vue.d.ts +0 -2
- package/dist/types/packages/radio-group/style/index.d.ts +0 -3
|
@@ -1,142 +1,398 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
3
|
+
$props: {
|
|
4
|
+
readonly theme?: string | undefined;
|
|
5
|
+
readonly type?: string | undefined;
|
|
6
|
+
readonly disabled?: boolean | undefined;
|
|
7
|
+
readonly lang?: string | undefined;
|
|
8
|
+
readonly foreground?: string | undefined;
|
|
9
|
+
readonly modelValue?: string | undefined;
|
|
10
|
+
};
|
|
11
|
+
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
12
|
+
}, {
|
|
13
|
+
colorModeOptions: {
|
|
14
|
+
key: string;
|
|
15
|
+
text: string;
|
|
16
|
+
}[];
|
|
17
|
+
colorMode: {
|
|
18
|
+
key: string;
|
|
19
|
+
text: string;
|
|
20
|
+
};
|
|
21
|
+
color: string;
|
|
22
|
+
r: string;
|
|
23
|
+
g: string;
|
|
24
|
+
b: string;
|
|
25
|
+
h: string;
|
|
26
|
+
s: string;
|
|
27
|
+
v: string;
|
|
28
|
+
alpha: string;
|
|
29
|
+
syncLock: boolean;
|
|
30
|
+
hueValue: number;
|
|
31
|
+
pointerSaturationValue: number;
|
|
32
|
+
paletteSaturationValue: number;
|
|
33
|
+
brightnessValue: number;
|
|
34
|
+
alphaValue: number;
|
|
35
|
+
colorObj: Color;
|
|
36
|
+
colorLeft: number;
|
|
37
|
+
colorTop: number;
|
|
38
|
+
colorValueLeft: number;
|
|
39
|
+
colorSaturationLeft: number;
|
|
40
|
+
colorAlphaLeft: number;
|
|
41
|
+
baseColorList: Color[];
|
|
42
|
+
colorList: Color[];
|
|
43
|
+
updateCoordsThrottled: undefined;
|
|
44
|
+
updateValueThrottled: undefined;
|
|
45
|
+
updateSaturationThrottled: undefined;
|
|
46
|
+
updateAlphaThrottled: undefined;
|
|
47
|
+
colorAreaMouseMoveEvent: undefined;
|
|
48
|
+
colorValueMouseMoveEvent: undefined;
|
|
49
|
+
colorSaturationMouseMoveEvent: undefined;
|
|
50
|
+
colorAlphaMouseMoveEvent: undefined;
|
|
51
|
+
}, {
|
|
52
|
+
$theme(): string;
|
|
53
|
+
computedColorPickerClass(): string[];
|
|
54
|
+
computedColorPickerStyle(): {
|
|
55
|
+
'--fv-color-picker--color-list': string;
|
|
56
|
+
'--fv-color-picker--color': string;
|
|
57
|
+
'--fv-color-picker--color-alpha': string;
|
|
58
|
+
'--fv-color-picker--color-value': string;
|
|
59
|
+
'--fv-color-picker--color-saturation-empty': string;
|
|
60
|
+
'--fv-color-picker--color-saturation-full': string;
|
|
61
|
+
'--fv-color-picker--pointer-left': string;
|
|
62
|
+
'--fv-color-picker--pointer-top': string;
|
|
63
|
+
'--fv-color-picker--color-value-left': string;
|
|
64
|
+
'--fv-color-picker--color-saturation-left': string;
|
|
65
|
+
'--fv-color-picker--color-alpha-left': string;
|
|
66
|
+
'--fv-color-picker--color-value-empty': string;
|
|
67
|
+
};
|
|
68
|
+
colorListStr(): string;
|
|
69
|
+
computedText: {
|
|
70
|
+
get(): string;
|
|
71
|
+
set(val: any): void;
|
|
72
|
+
};
|
|
73
|
+
computedR: {
|
|
74
|
+
get(): string;
|
|
75
|
+
set(val: any): void;
|
|
76
|
+
};
|
|
77
|
+
computedG: {
|
|
78
|
+
get(): string;
|
|
79
|
+
set(val: any): void;
|
|
80
|
+
};
|
|
81
|
+
computedB: {
|
|
82
|
+
get(): string;
|
|
83
|
+
set(val: any): void;
|
|
84
|
+
};
|
|
85
|
+
computedH: {
|
|
86
|
+
get(): string;
|
|
87
|
+
set(val: any): void;
|
|
88
|
+
};
|
|
89
|
+
computedS: {
|
|
90
|
+
get(): string;
|
|
91
|
+
set(val: any): void;
|
|
92
|
+
};
|
|
93
|
+
computedV: {
|
|
94
|
+
get(): string;
|
|
95
|
+
set(val: any): void;
|
|
96
|
+
};
|
|
97
|
+
computedAlpha: {
|
|
98
|
+
get(): string;
|
|
99
|
+
set(val: any): void;
|
|
100
|
+
};
|
|
56
101
|
}, {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
102
|
+
withSyncLock(task: any): void;
|
|
103
|
+
syncRGBFields(clr: any): void;
|
|
104
|
+
syncText(clr: any, emit?: boolean): void;
|
|
105
|
+
syncStateFields(clr: any): void;
|
|
106
|
+
syncPointerFromState(): void;
|
|
107
|
+
syncValueSliderFromState(): void;
|
|
108
|
+
syncSaturationSliderFromState(): void;
|
|
109
|
+
syncAlphaSliderFromState(): void;
|
|
110
|
+
syncColorList(): void;
|
|
111
|
+
buildColorFromState(): Color;
|
|
112
|
+
commitState(syncPointer?: boolean, emit?: boolean): void;
|
|
113
|
+
syncFromColor(clr: any, syncPointer?: boolean, emit?: boolean): void;
|
|
114
|
+
syncHSV(clr: any): void;
|
|
115
|
+
syncAlpha(clr: any): void;
|
|
116
|
+
handleUpdateCoords(mouse: any): void;
|
|
117
|
+
mousemoveEvent(mouse: any): void;
|
|
118
|
+
onMousedown(mouse: any): void;
|
|
119
|
+
handleUpdateValue(mouse: any): void;
|
|
120
|
+
valueMousemoveEvent(mouse: any): void;
|
|
121
|
+
onValueMouseDown(mouse: any): void;
|
|
122
|
+
handleUpdateSaturation(mouse: any): void;
|
|
123
|
+
saturationMousemoveEvent(mouse: any): void;
|
|
124
|
+
onSaturationMouseDown(mouse: any): void;
|
|
125
|
+
applyPaletteSaturation(number: any, emit?: boolean): void;
|
|
126
|
+
handleUpdateAlpha(mouse: any): void;
|
|
127
|
+
alphaMousemoveEvent(mouse: any): void;
|
|
128
|
+
onAlphaMouseDown(mouse: any): void;
|
|
129
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
63
130
|
P: {};
|
|
64
131
|
B: {};
|
|
65
132
|
D: {};
|
|
66
133
|
C: {};
|
|
67
134
|
M: {};
|
|
68
135
|
Defaults: {};
|
|
69
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
136
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
137
|
+
$props: {
|
|
138
|
+
readonly theme?: string | undefined;
|
|
139
|
+
readonly type?: string | undefined;
|
|
140
|
+
readonly disabled?: boolean | undefined;
|
|
141
|
+
readonly lang?: string | undefined;
|
|
142
|
+
readonly foreground?: string | undefined;
|
|
143
|
+
readonly modelValue?: string | undefined;
|
|
144
|
+
};
|
|
145
|
+
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
146
|
+
}, {
|
|
147
|
+
colorModeOptions: {
|
|
148
|
+
key: string;
|
|
149
|
+
text: string;
|
|
150
|
+
}[];
|
|
151
|
+
colorMode: {
|
|
152
|
+
key: string;
|
|
153
|
+
text: string;
|
|
154
|
+
};
|
|
155
|
+
color: string;
|
|
156
|
+
r: string;
|
|
157
|
+
g: string;
|
|
158
|
+
b: string;
|
|
159
|
+
h: string;
|
|
160
|
+
s: string;
|
|
161
|
+
v: string;
|
|
162
|
+
alpha: string;
|
|
163
|
+
syncLock: boolean;
|
|
164
|
+
hueValue: number;
|
|
165
|
+
pointerSaturationValue: number;
|
|
166
|
+
paletteSaturationValue: number;
|
|
167
|
+
brightnessValue: number;
|
|
168
|
+
alphaValue: number;
|
|
169
|
+
colorObj: Color;
|
|
170
|
+
colorLeft: number;
|
|
171
|
+
colorTop: number;
|
|
172
|
+
colorValueLeft: number;
|
|
173
|
+
colorSaturationLeft: number;
|
|
174
|
+
colorAlphaLeft: number;
|
|
175
|
+
baseColorList: Color[];
|
|
176
|
+
colorList: Color[];
|
|
177
|
+
updateCoordsThrottled: undefined;
|
|
178
|
+
updateValueThrottled: undefined;
|
|
179
|
+
updateSaturationThrottled: undefined;
|
|
180
|
+
updateAlphaThrottled: undefined;
|
|
181
|
+
colorAreaMouseMoveEvent: undefined;
|
|
182
|
+
colorValueMouseMoveEvent: undefined;
|
|
183
|
+
colorSaturationMouseMoveEvent: undefined;
|
|
184
|
+
colorAlphaMouseMoveEvent: undefined;
|
|
185
|
+
}, {
|
|
186
|
+
$theme(): string;
|
|
187
|
+
computedColorPickerClass(): string[];
|
|
188
|
+
computedColorPickerStyle(): {
|
|
189
|
+
'--fv-color-picker--color-list': string;
|
|
190
|
+
'--fv-color-picker--color': string;
|
|
191
|
+
'--fv-color-picker--color-alpha': string;
|
|
192
|
+
'--fv-color-picker--color-value': string;
|
|
193
|
+
'--fv-color-picker--color-saturation-empty': string;
|
|
194
|
+
'--fv-color-picker--color-saturation-full': string;
|
|
195
|
+
'--fv-color-picker--pointer-left': string;
|
|
196
|
+
'--fv-color-picker--pointer-top': string;
|
|
197
|
+
'--fv-color-picker--color-value-left': string;
|
|
198
|
+
'--fv-color-picker--color-saturation-left': string;
|
|
199
|
+
'--fv-color-picker--color-alpha-left': string;
|
|
200
|
+
'--fv-color-picker--color-value-empty': string;
|
|
201
|
+
};
|
|
202
|
+
colorListStr(): string;
|
|
203
|
+
computedText: {
|
|
204
|
+
get(): string;
|
|
205
|
+
set(val: any): void;
|
|
206
|
+
};
|
|
207
|
+
computedR: {
|
|
208
|
+
get(): string;
|
|
209
|
+
set(val: any): void;
|
|
210
|
+
};
|
|
211
|
+
computedG: {
|
|
212
|
+
get(): string;
|
|
213
|
+
set(val: any): void;
|
|
214
|
+
};
|
|
215
|
+
computedB: {
|
|
216
|
+
get(): string;
|
|
217
|
+
set(val: any): void;
|
|
218
|
+
};
|
|
219
|
+
computedH: {
|
|
220
|
+
get(): string;
|
|
221
|
+
set(val: any): void;
|
|
222
|
+
};
|
|
223
|
+
computedS: {
|
|
224
|
+
get(): string;
|
|
225
|
+
set(val: any): void;
|
|
226
|
+
};
|
|
227
|
+
computedV: {
|
|
228
|
+
get(): string;
|
|
229
|
+
set(val: any): void;
|
|
230
|
+
};
|
|
231
|
+
computedAlpha: {
|
|
232
|
+
get(): string;
|
|
233
|
+
set(val: any): void;
|
|
234
|
+
};
|
|
235
|
+
}, {
|
|
236
|
+
withSyncLock(task: any): void;
|
|
237
|
+
syncRGBFields(clr: any): void;
|
|
238
|
+
syncText(clr: any, emit?: boolean): void;
|
|
239
|
+
syncStateFields(clr: any): void;
|
|
240
|
+
syncPointerFromState(): void;
|
|
241
|
+
syncValueSliderFromState(): void;
|
|
242
|
+
syncSaturationSliderFromState(): void;
|
|
243
|
+
syncAlphaSliderFromState(): void;
|
|
244
|
+
syncColorList(): void;
|
|
245
|
+
buildColorFromState(): Color;
|
|
246
|
+
commitState(syncPointer?: boolean, emit?: boolean): void;
|
|
247
|
+
syncFromColor(clr: any, syncPointer?: boolean, emit?: boolean): void;
|
|
248
|
+
syncHSV(clr: any): void;
|
|
249
|
+
syncAlpha(clr: any): void;
|
|
250
|
+
handleUpdateCoords(mouse: any): void;
|
|
251
|
+
mousemoveEvent(mouse: any): void;
|
|
252
|
+
onMousedown(mouse: any): void;
|
|
253
|
+
handleUpdateValue(mouse: any): void;
|
|
254
|
+
valueMousemoveEvent(mouse: any): void;
|
|
255
|
+
onValueMouseDown(mouse: any): void;
|
|
256
|
+
handleUpdateSaturation(mouse: any): void;
|
|
257
|
+
saturationMousemoveEvent(mouse: any): void;
|
|
258
|
+
onSaturationMouseDown(mouse: any): void;
|
|
259
|
+
applyPaletteSaturation(number: any, emit?: boolean): void;
|
|
260
|
+
handleUpdateAlpha(mouse: any): void;
|
|
261
|
+
alphaMousemoveEvent(mouse: any): void;
|
|
262
|
+
onAlphaMouseDown(mouse: any): void;
|
|
263
|
+
}, {}>;
|
|
102
264
|
__isFragment?: undefined;
|
|
103
265
|
__isTeleport?: undefined;
|
|
104
266
|
__isSuspense?: undefined;
|
|
105
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
106
|
-
|
|
107
|
-
|
|
267
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
268
|
+
$props: {
|
|
269
|
+
readonly theme?: string | undefined;
|
|
270
|
+
readonly type?: string | undefined;
|
|
271
|
+
readonly disabled?: boolean | undefined;
|
|
272
|
+
readonly lang?: string | undefined;
|
|
273
|
+
readonly foreground?: string | undefined;
|
|
274
|
+
readonly modelValue?: string | undefined;
|
|
275
|
+
};
|
|
276
|
+
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
277
|
+
}, {
|
|
278
|
+
colorModeOptions: {
|
|
279
|
+
key: string;
|
|
280
|
+
text: string;
|
|
281
|
+
}[];
|
|
282
|
+
colorMode: {
|
|
283
|
+
key: string;
|
|
284
|
+
text: string;
|
|
285
|
+
};
|
|
286
|
+
color: string;
|
|
287
|
+
r: string;
|
|
288
|
+
g: string;
|
|
289
|
+
b: string;
|
|
290
|
+
h: string;
|
|
291
|
+
s: string;
|
|
292
|
+
v: string;
|
|
293
|
+
alpha: string;
|
|
294
|
+
syncLock: boolean;
|
|
295
|
+
hueValue: number;
|
|
296
|
+
pointerSaturationValue: number;
|
|
297
|
+
paletteSaturationValue: number;
|
|
298
|
+
brightnessValue: number;
|
|
299
|
+
alphaValue: number;
|
|
300
|
+
colorObj: Color;
|
|
301
|
+
colorLeft: number;
|
|
302
|
+
colorTop: number;
|
|
303
|
+
colorValueLeft: number;
|
|
304
|
+
colorSaturationLeft: number;
|
|
305
|
+
colorAlphaLeft: number;
|
|
306
|
+
baseColorList: Color[];
|
|
307
|
+
colorList: Color[];
|
|
308
|
+
updateCoordsThrottled: undefined;
|
|
309
|
+
updateValueThrottled: undefined;
|
|
310
|
+
updateSaturationThrottled: undefined;
|
|
311
|
+
updateAlphaThrottled: undefined;
|
|
312
|
+
colorAreaMouseMoveEvent: undefined;
|
|
313
|
+
colorValueMouseMoveEvent: undefined;
|
|
314
|
+
colorSaturationMouseMoveEvent: undefined;
|
|
315
|
+
colorAlphaMouseMoveEvent: undefined;
|
|
316
|
+
}, {
|
|
317
|
+
$theme(): string;
|
|
318
|
+
computedColorPickerClass(): string[];
|
|
319
|
+
computedColorPickerStyle(): {
|
|
320
|
+
'--fv-color-picker--color-list': string;
|
|
321
|
+
'--fv-color-picker--color': string;
|
|
322
|
+
'--fv-color-picker--color-alpha': string;
|
|
323
|
+
'--fv-color-picker--color-value': string;
|
|
324
|
+
'--fv-color-picker--color-saturation-empty': string;
|
|
325
|
+
'--fv-color-picker--color-saturation-full': string;
|
|
326
|
+
'--fv-color-picker--pointer-left': string;
|
|
327
|
+
'--fv-color-picker--pointer-top': string;
|
|
328
|
+
'--fv-color-picker--color-value-left': string;
|
|
329
|
+
'--fv-color-picker--color-saturation-left': string;
|
|
330
|
+
'--fv-color-picker--color-alpha-left': string;
|
|
331
|
+
'--fv-color-picker--color-value-empty': string;
|
|
332
|
+
};
|
|
333
|
+
colorListStr(): string;
|
|
334
|
+
computedText: {
|
|
335
|
+
get(): string;
|
|
336
|
+
set(val: any): void;
|
|
337
|
+
};
|
|
338
|
+
computedR: {
|
|
339
|
+
get(): string;
|
|
340
|
+
set(val: any): void;
|
|
341
|
+
};
|
|
342
|
+
computedG: {
|
|
343
|
+
get(): string;
|
|
344
|
+
set(val: any): void;
|
|
108
345
|
};
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
346
|
+
computedB: {
|
|
347
|
+
get(): string;
|
|
348
|
+
set(val: any): void;
|
|
112
349
|
};
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
350
|
+
computedH: {
|
|
351
|
+
get(): string;
|
|
352
|
+
set(val: any): void;
|
|
116
353
|
};
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
354
|
+
computedS: {
|
|
355
|
+
get(): string;
|
|
356
|
+
set(val: any): void;
|
|
120
357
|
};
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
358
|
+
computedV: {
|
|
359
|
+
get(): string;
|
|
360
|
+
set(val: any): void;
|
|
124
361
|
};
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
362
|
+
computedAlpha: {
|
|
363
|
+
get(): string;
|
|
364
|
+
set(val: any): void;
|
|
128
365
|
};
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
366
|
+
}, {
|
|
367
|
+
withSyncLock(task: any): void;
|
|
368
|
+
syncRGBFields(clr: any): void;
|
|
369
|
+
syncText(clr: any, emit?: boolean): void;
|
|
370
|
+
syncStateFields(clr: any): void;
|
|
371
|
+
syncPointerFromState(): void;
|
|
372
|
+
syncValueSliderFromState(): void;
|
|
373
|
+
syncSaturationSliderFromState(): void;
|
|
374
|
+
syncAlphaSliderFromState(): void;
|
|
375
|
+
syncColorList(): void;
|
|
376
|
+
buildColorFromState(): Color;
|
|
377
|
+
commitState(syncPointer?: boolean, emit?: boolean): void;
|
|
378
|
+
syncFromColor(clr: any, syncPointer?: boolean, emit?: boolean): void;
|
|
379
|
+
syncHSV(clr: any): void;
|
|
380
|
+
syncAlpha(clr: any): void;
|
|
381
|
+
handleUpdateCoords(mouse: any): void;
|
|
382
|
+
mousemoveEvent(mouse: any): void;
|
|
383
|
+
onMousedown(mouse: any): void;
|
|
384
|
+
handleUpdateValue(mouse: any): void;
|
|
385
|
+
valueMousemoveEvent(mouse: any): void;
|
|
386
|
+
onValueMouseDown(mouse: any): void;
|
|
387
|
+
handleUpdateSaturation(mouse: any): void;
|
|
388
|
+
saturationMousemoveEvent(mouse: any): void;
|
|
389
|
+
onSaturationMouseDown(mouse: any): void;
|
|
390
|
+
applyPaletteSaturation(number: any, emit?: boolean): void;
|
|
391
|
+
handleUpdateAlpha(mouse: any): void;
|
|
392
|
+
alphaMousemoveEvent(mouse: any): void;
|
|
393
|
+
onAlphaMouseDown(mouse: any): void;
|
|
394
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
140
395
|
$slots: {};
|
|
141
396
|
});
|
|
142
397
|
export default _default;
|
|
398
|
+
import { Color } from "../../../utils/common/color";
|
|
@@ -201,7 +201,7 @@ export declare const FvFlipView: import("../../types/plugins/component-plugin").
|
|
|
201
201
|
$slots: {
|
|
202
202
|
item: (_: {
|
|
203
203
|
data: any;
|
|
204
|
-
index: symbol | "length" | "name" | "toString" | "call" | "
|
|
204
|
+
index: symbol | "length" | "name" | "toString" | "call" | "apply" | "bind" | "prototype" | "arguments" | "caller";
|
|
205
205
|
}) => any;
|
|
206
206
|
};
|
|
207
207
|
})>;
|
|
@@ -200,7 +200,7 @@ declare const _default: {
|
|
|
200
200
|
$slots: {
|
|
201
201
|
item: (_: {
|
|
202
202
|
data: any;
|
|
203
|
-
index: symbol | "length" | "name" | "toString" | "call" | "
|
|
203
|
+
index: symbol | "length" | "name" | "toString" | "call" | "apply" | "bind" | "prototype" | "arguments" | "caller";
|
|
204
204
|
}) => any;
|
|
205
205
|
};
|
|
206
206
|
});
|
|
@@ -37,7 +37,6 @@ export * from "./pivot";
|
|
|
37
37
|
export * from "./progress-bar";
|
|
38
38
|
export * from "./progress-ring";
|
|
39
39
|
export * from "./radio";
|
|
40
|
-
export * from "./radio-group";
|
|
41
40
|
export * from "./rating-control";
|
|
42
41
|
export * from "./resize-watcher";
|
|
43
42
|
export * from "./reveal-container";
|
|
@@ -97,7 +96,6 @@ import Pivot from "./pivot";
|
|
|
97
96
|
import ProgressBar from "./progress-bar";
|
|
98
97
|
import ProgressRing from "./progress-ring";
|
|
99
98
|
import Radio from "./radio";
|
|
100
|
-
import RadioGroup from "./radio-group";
|
|
101
99
|
import RatingControl from "./rating-control";
|
|
102
100
|
import ResizeWatcher from "./resize-watcher";
|
|
103
101
|
import RevealContainer from "./reveal-container";
|
|
@@ -158,7 +156,6 @@ declare module 'vue' {
|
|
|
158
156
|
FvProgressBar: typeof ProgressBar;
|
|
159
157
|
FvProgressRing: typeof ProgressRing;
|
|
160
158
|
FvRadio: typeof Radio;
|
|
161
|
-
FvRadioGroup: typeof RadioGroup;
|
|
162
159
|
FvRatingControl: typeof RatingControl;
|
|
163
160
|
FvResizeWatcher: typeof ResizeWatcher;
|
|
164
161
|
FvRevealContainer: typeof RevealContainer;
|
|
@@ -19,7 +19,6 @@ export declare const FvRadio: import("../../types/plugins/component-plugin").Com
|
|
|
19
19
|
}, {}, {
|
|
20
20
|
$theme(): string;
|
|
21
21
|
isActived(): boolean;
|
|
22
|
-
isGroup(): boolean;
|
|
23
22
|
isDisabled(): any;
|
|
24
23
|
model: {
|
|
25
24
|
get(): any;
|
|
@@ -27,7 +26,6 @@ export declare const FvRadio: import("../../types/plugins/component-plugin").Com
|
|
|
27
26
|
};
|
|
28
27
|
}, {
|
|
29
28
|
click(): void;
|
|
30
|
-
setGroup(parent: any): void;
|
|
31
29
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
32
30
|
P: {};
|
|
33
31
|
B: {};
|
|
@@ -54,7 +52,6 @@ export declare const FvRadio: import("../../types/plugins/component-plugin").Com
|
|
|
54
52
|
}, {}, {
|
|
55
53
|
$theme(): string;
|
|
56
54
|
isActived(): boolean;
|
|
57
|
-
isGroup(): boolean;
|
|
58
55
|
isDisabled(): any;
|
|
59
56
|
model: {
|
|
60
57
|
get(): any;
|
|
@@ -62,7 +59,6 @@ export declare const FvRadio: import("../../types/plugins/component-plugin").Com
|
|
|
62
59
|
};
|
|
63
60
|
}, {
|
|
64
61
|
click(): void;
|
|
65
|
-
setGroup(parent: any): void;
|
|
66
62
|
}, {}>;
|
|
67
63
|
__isFragment?: undefined;
|
|
68
64
|
__isTeleport?: undefined;
|
|
@@ -86,7 +82,6 @@ export declare const FvRadio: import("../../types/plugins/component-plugin").Com
|
|
|
86
82
|
}, {}, {
|
|
87
83
|
$theme(): string;
|
|
88
84
|
isActived(): boolean;
|
|
89
|
-
isGroup(): boolean;
|
|
90
85
|
isDisabled(): any;
|
|
91
86
|
model: {
|
|
92
87
|
get(): any;
|
|
@@ -94,7 +89,6 @@ export declare const FvRadio: import("../../types/plugins/component-plugin").Com
|
|
|
94
89
|
};
|
|
95
90
|
}, {
|
|
96
91
|
click(): void;
|
|
97
|
-
setGroup(parent: any): void;
|
|
98
92
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
99
93
|
$slots: {
|
|
100
94
|
default: (_: {}) => any;
|
|
@@ -18,7 +18,6 @@ declare const _default: {
|
|
|
18
18
|
}, {}, {
|
|
19
19
|
$theme(): string;
|
|
20
20
|
isActived(): boolean;
|
|
21
|
-
isGroup(): boolean;
|
|
22
21
|
isDisabled(): any;
|
|
23
22
|
model: {
|
|
24
23
|
get(): any;
|
|
@@ -26,7 +25,6 @@ declare const _default: {
|
|
|
26
25
|
};
|
|
27
26
|
}, {
|
|
28
27
|
click(): void;
|
|
29
|
-
setGroup(parent: any): void;
|
|
30
28
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
31
29
|
P: {};
|
|
32
30
|
B: {};
|
|
@@ -53,7 +51,6 @@ declare const _default: {
|
|
|
53
51
|
}, {}, {
|
|
54
52
|
$theme(): string;
|
|
55
53
|
isActived(): boolean;
|
|
56
|
-
isGroup(): boolean;
|
|
57
54
|
isDisabled(): any;
|
|
58
55
|
model: {
|
|
59
56
|
get(): any;
|
|
@@ -61,7 +58,6 @@ declare const _default: {
|
|
|
61
58
|
};
|
|
62
59
|
}, {
|
|
63
60
|
click(): void;
|
|
64
|
-
setGroup(parent: any): void;
|
|
65
61
|
}, {}>;
|
|
66
62
|
__isFragment?: undefined;
|
|
67
63
|
__isTeleport?: undefined;
|
|
@@ -85,7 +81,6 @@ declare const _default: {
|
|
|
85
81
|
}, {}, {
|
|
86
82
|
$theme(): string;
|
|
87
83
|
isActived(): boolean;
|
|
88
|
-
isGroup(): boolean;
|
|
89
84
|
isDisabled(): any;
|
|
90
85
|
model: {
|
|
91
86
|
get(): any;
|
|
@@ -93,7 +88,6 @@ declare const _default: {
|
|
|
93
88
|
};
|
|
94
89
|
}, {
|
|
95
90
|
click(): void;
|
|
96
|
-
setGroup(parent: any): void;
|
|
97
91
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
98
92
|
$slots: {
|
|
99
93
|
default: (_: {}) => any;
|