voiptime-components 1.7.3 → 1.7.5
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/index.cjs.js +8 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +73 -14
- package/dist/index.es.js +1636 -1447
- package/dist/index.umd.js +8 -1
- package/package.json +1 -1
- package/src/assets/main.scss +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -59,7 +59,26 @@ declare const __VLS_component_3: DefineComponent<VCheckboxProps, {}, {}, {}, {},
|
|
|
59
59
|
isDouble: boolean;
|
|
60
60
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
|
|
61
61
|
|
|
62
|
-
declare const __VLS_component_4: DefineComponent<
|
|
62
|
+
declare const __VLS_component_4: DefineComponent<VRadioboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
63
|
+
blur: (event: FocusEvent) => any;
|
|
64
|
+
change: (value: any, event: Event) => any;
|
|
65
|
+
focus: (event: FocusEvent) => any;
|
|
66
|
+
"update:modelValue": (value: any) => any;
|
|
67
|
+
}, string, PublicProps, Readonly<VRadioboxProps> & Readonly<{
|
|
68
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
69
|
+
onChange?: ((value: any, event: Event) => any) | undefined;
|
|
70
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
71
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
72
|
+
}>, {
|
|
73
|
+
required: boolean;
|
|
74
|
+
disabled: boolean;
|
|
75
|
+
modelValue: any;
|
|
76
|
+
size: "small" | "medium" | "large";
|
|
77
|
+
checked: boolean;
|
|
78
|
+
variant: "primary" | "success" | "warning" | "danger" | "info";
|
|
79
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
|
|
80
|
+
|
|
81
|
+
declare const __VLS_component_5: DefineComponent<__VLS_PublicProps, {
|
|
63
82
|
toggleRowSelection: (row: Record<string, any>, selected?: boolean) => void;
|
|
64
83
|
toggleAllSelection: () => void;
|
|
65
84
|
selectAbsolutelyAll: () => void;
|
|
@@ -146,7 +165,7 @@ declare const __VLS_component_4: DefineComponent<__VLS_PublicProps, {
|
|
|
146
165
|
tableWrapperRef: HTMLDivElement;
|
|
147
166
|
}, HTMLDivElement>;
|
|
148
167
|
|
|
149
|
-
declare const
|
|
168
|
+
declare const __VLS_component_6: DefineComponent<DropdownProps, {
|
|
150
169
|
show: () => void;
|
|
151
170
|
hide: () => void;
|
|
152
171
|
visible: Ref<boolean, boolean>;
|
|
@@ -172,13 +191,13 @@ declare const __VLS_component_5: DefineComponent<DropdownProps, {
|
|
|
172
191
|
menuRef: HTMLDivElement;
|
|
173
192
|
}, HTMLDivElement>;
|
|
174
193
|
|
|
175
|
-
declare const
|
|
194
|
+
declare const __VLS_component_7: DefineComponent<DropdownItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
176
195
|
click: (event: MouseEvent) => any;
|
|
177
196
|
}, string, PublicProps, Readonly<DropdownItemProps> & Readonly<{
|
|
178
197
|
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
179
198
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLIElement>;
|
|
180
199
|
|
|
181
|
-
declare const
|
|
200
|
+
declare const __VLS_component_8: DefineComponent<VtSelectProps, {
|
|
182
201
|
registerOption: (option: VtSelectOption, slotContent?: any) => void;
|
|
183
202
|
unregisterOption: (value: any) => void;
|
|
184
203
|
focus(): void;
|
|
@@ -317,7 +336,7 @@ declare const __VLS_component_7: DefineComponent<VtSelectProps, {
|
|
|
317
336
|
scrollContainerRef: HTMLDivElement;
|
|
318
337
|
}, HTMLDivElement>;
|
|
319
338
|
|
|
320
|
-
declare const
|
|
339
|
+
declare const __VLS_component_9: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
321
340
|
click: (option: VtSelectOption) => any;
|
|
322
341
|
}, string, PublicProps, Readonly<{}> & Readonly<{
|
|
323
342
|
onClick?: ((option: VtSelectOption) => any) | undefined;
|
|
@@ -358,6 +377,16 @@ declare function __VLS_template_3(): {
|
|
|
358
377
|
};
|
|
359
378
|
|
|
360
379
|
declare function __VLS_template_4(): {
|
|
380
|
+
attrs: Partial<{}>;
|
|
381
|
+
slots: {
|
|
382
|
+
label?(_: {}): any;
|
|
383
|
+
default?(_: {}): any;
|
|
384
|
+
};
|
|
385
|
+
refs: {};
|
|
386
|
+
rootEl: HTMLLabelElement;
|
|
387
|
+
};
|
|
388
|
+
|
|
389
|
+
declare function __VLS_template_5(): {
|
|
361
390
|
attrs: Partial<{}>;
|
|
362
391
|
slots: {
|
|
363
392
|
default?(_: {}): any;
|
|
@@ -368,7 +397,7 @@ declare function __VLS_template_4(): {
|
|
|
368
397
|
rootEl: HTMLDivElement;
|
|
369
398
|
};
|
|
370
399
|
|
|
371
|
-
declare function
|
|
400
|
+
declare function __VLS_template_6(): {
|
|
372
401
|
attrs: Partial<{}>;
|
|
373
402
|
slots: {
|
|
374
403
|
default?(_: {}): any;
|
|
@@ -382,7 +411,7 @@ declare function __VLS_template_5(): {
|
|
|
382
411
|
rootEl: HTMLDivElement;
|
|
383
412
|
};
|
|
384
413
|
|
|
385
|
-
declare function
|
|
414
|
+
declare function __VLS_template_7(): {
|
|
386
415
|
attrs: Partial<{}>;
|
|
387
416
|
slots: {
|
|
388
417
|
default?(_: {}): any;
|
|
@@ -391,7 +420,7 @@ declare function __VLS_template_6(): {
|
|
|
391
420
|
rootEl: HTMLLIElement;
|
|
392
421
|
};
|
|
393
422
|
|
|
394
|
-
declare function
|
|
423
|
+
declare function __VLS_template_8(): {
|
|
395
424
|
attrs: Partial<{}>;
|
|
396
425
|
slots: {
|
|
397
426
|
default?(_: {}): any;
|
|
@@ -495,7 +524,7 @@ declare function __VLS_template_7(): {
|
|
|
495
524
|
rootEl: HTMLDivElement;
|
|
496
525
|
};
|
|
497
526
|
|
|
498
|
-
declare function
|
|
527
|
+
declare function __VLS_template_9(): {
|
|
499
528
|
attrs: Partial<{}>;
|
|
500
529
|
slots: {
|
|
501
530
|
default?(_: {}): any;
|
|
@@ -520,6 +549,8 @@ declare type __VLS_TemplateResult_7 = ReturnType<typeof __VLS_template_7>;
|
|
|
520
549
|
|
|
521
550
|
declare type __VLS_TemplateResult_8 = ReturnType<typeof __VLS_template_8>;
|
|
522
551
|
|
|
552
|
+
declare type __VLS_TemplateResult_9 = ReturnType<typeof __VLS_template_9>;
|
|
553
|
+
|
|
523
554
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
524
555
|
new (): {
|
|
525
556
|
$slots: S;
|
|
@@ -568,6 +599,12 @@ declare type __VLS_WithTemplateSlots_8<T, S> = T & {
|
|
|
568
599
|
};
|
|
569
600
|
};
|
|
570
601
|
|
|
602
|
+
declare type __VLS_WithTemplateSlots_9<T, S> = T & {
|
|
603
|
+
new (): {
|
|
604
|
+
$slots: S;
|
|
605
|
+
};
|
|
606
|
+
};
|
|
607
|
+
|
|
571
608
|
export declare const DEFAULT_COLUMN_CONFIG: {
|
|
572
609
|
readonly sortable: true;
|
|
573
610
|
readonly actionColumn: false;
|
|
@@ -848,9 +885,9 @@ export declare interface VCheckboxSlots {
|
|
|
848
885
|
label?: () => any;
|
|
849
886
|
}
|
|
850
887
|
|
|
851
|
-
export declare const VDropdown:
|
|
888
|
+
export declare const VDropdown: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
852
889
|
|
|
853
|
-
export declare const VDropdownItem:
|
|
890
|
+
export declare const VDropdownItem: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
854
891
|
|
|
855
892
|
export declare const VIcon: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
856
893
|
color: string;
|
|
@@ -971,7 +1008,7 @@ export declare interface VModalProps {
|
|
|
971
1008
|
|
|
972
1009
|
export declare type VModalSize = 'small' | 'medium' | 'large';
|
|
973
1010
|
|
|
974
|
-
export declare const VOption:
|
|
1011
|
+
export declare const VOption: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|
|
975
1012
|
|
|
976
1013
|
export declare const VPagination: DefineComponent<PaginationProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
977
1014
|
"update:currentPage": (page: number) => any;
|
|
@@ -990,9 +1027,31 @@ export declare const VPagination: DefineComponent<PaginationProps, {}, {}, {}, {
|
|
|
990
1027
|
maxVisiblePages: number;
|
|
991
1028
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
992
1029
|
|
|
993
|
-
export declare const
|
|
1030
|
+
export declare const VRadiobox: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
1031
|
+
|
|
1032
|
+
export declare interface VRadioboxEmits {
|
|
1033
|
+
'update:modelValue': [value: any];
|
|
1034
|
+
change: [value: any, event: Event];
|
|
1035
|
+
focus: [event: FocusEvent];
|
|
1036
|
+
blur: [event: FocusEvent];
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
export declare interface VRadioboxProps {
|
|
1040
|
+
modelValue?: any;
|
|
1041
|
+
value?: any;
|
|
1042
|
+
checked?: boolean;
|
|
1043
|
+
disabled?: boolean;
|
|
1044
|
+
label?: string;
|
|
1045
|
+
name?: string;
|
|
1046
|
+
id?: string;
|
|
1047
|
+
size?: 'small' | 'medium' | 'large';
|
|
1048
|
+
variant?: 'primary' | 'success' | 'warning' | 'danger' | 'info';
|
|
1049
|
+
required?: boolean;
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
export declare const VSelect: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
994
1053
|
|
|
995
|
-
export declare const VTable:
|
|
1054
|
+
export declare const VTable: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
996
1055
|
|
|
997
1056
|
export declare const VTableColumn: DefineComponent<VTableColumnProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<VTableColumnProps> & Readonly<{}>, {
|
|
998
1057
|
sortable: boolean;
|