@creatorsn/vfluent3 0.3.49 → 0.3.52

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