voiptime-components 1.8.6 → 1.8.8

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.d.ts CHANGED
@@ -43,6 +43,28 @@ declare const __VLS_component_11: DefineComponent<CollapseItemProps, {}, {}, {},
43
43
  disabled: boolean;
44
44
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
45
45
 
46
+ declare const __VLS_component_12: DefineComponent<VTabsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
47
+ "update:modelValue": (value: string) => any;
48
+ "tab-change": (value: string) => any;
49
+ "tab-remove": (name: string) => any;
50
+ "tab-add": () => any;
51
+ }, string, PublicProps, Readonly<VTabsProps> & Readonly<{
52
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
53
+ "onTab-change"?: ((value: string) => any) | undefined;
54
+ "onTab-remove"?: ((name: string) => any) | undefined;
55
+ "onTab-add"?: (() => any) | undefined;
56
+ }>, {
57
+ modelValue: string;
58
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
59
+
60
+ declare const __VLS_component_13: DefineComponent<VTabItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<VTabItemProps> & Readonly<{}>, {
61
+ label: string;
62
+ name: string;
63
+ disabled: boolean;
64
+ icon: IconName;
65
+ closable: boolean;
66
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
67
+
46
68
  declare const __VLS_component_2: DefineComponent<VModalProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
47
69
  close: () => any;
48
70
  "update:modelValue": (value: boolean) => any;
@@ -397,6 +419,24 @@ declare function __VLS_template_11(): {
397
419
  rootEl: HTMLDivElement;
398
420
  };
399
421
 
422
+ declare function __VLS_template_12(): {
423
+ attrs: Partial<{}>;
424
+ slots: {
425
+ default?(_: {}): any;
426
+ };
427
+ refs: {};
428
+ rootEl: HTMLDivElement;
429
+ };
430
+
431
+ declare function __VLS_template_13(): {
432
+ attrs: Partial<{}>;
433
+ slots: {
434
+ default?(_: {}): any;
435
+ };
436
+ refs: {};
437
+ rootEl: HTMLDivElement;
438
+ };
439
+
400
440
  declare function __VLS_template_2(): {
401
441
  attrs: Partial<{}>;
402
442
  slots: {
@@ -579,6 +619,10 @@ declare type __VLS_TemplateResult_10 = ReturnType<typeof __VLS_template_10>;
579
619
 
580
620
  declare type __VLS_TemplateResult_11 = ReturnType<typeof __VLS_template_11>;
581
621
 
622
+ declare type __VLS_TemplateResult_12 = ReturnType<typeof __VLS_template_12>;
623
+
624
+ declare type __VLS_TemplateResult_13 = ReturnType<typeof __VLS_template_13>;
625
+
582
626
  declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
583
627
 
584
628
  declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
@@ -613,6 +657,18 @@ declare type __VLS_WithTemplateSlots_11<T, S> = T & {
613
657
  };
614
658
  };
615
659
 
660
+ declare type __VLS_WithTemplateSlots_12<T, S> = T & {
661
+ new (): {
662
+ $slots: S;
663
+ };
664
+ };
665
+
666
+ declare type __VLS_WithTemplateSlots_13<T, S> = T & {
667
+ new (): {
668
+ $slots: S;
669
+ };
670
+ };
671
+
616
672
  declare type __VLS_WithTemplateSlots_2<T, S> = T & {
617
673
  new (): {
618
674
  $slots: S;
@@ -1521,6 +1577,16 @@ export declare interface VRadioboxProps {
1521
1577
 
1522
1578
  export declare const VSelect: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
1523
1579
 
1580
+ export declare const VTabItem: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
1581
+
1582
+ export declare interface VTabItemProps {
1583
+ label?: string;
1584
+ disabled?: boolean;
1585
+ name?: string;
1586
+ closable?: boolean;
1587
+ icon?: IconName;
1588
+ }
1589
+
1524
1590
  export declare const VTable: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
1525
1591
 
1526
1592
  export declare const VTableColumn: DefineComponent<VTableColumnProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<VTableColumnProps> & Readonly<{}>, {
@@ -1648,6 +1714,19 @@ export declare interface VTableStyleConfig {
1648
1714
  [key: string]: string;
1649
1715
  }
1650
1716
 
1717
+ export declare const VTabs: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
1718
+
1719
+ export declare type VTabsEmits = {
1720
+ (e: 'update:modelValue', value: string): void;
1721
+ (e: 'tab-change', value: string): void;
1722
+ (e: 'tab-remove', name: string): void;
1723
+ (e: 'tab-add'): void;
1724
+ };
1725
+
1726
+ export declare interface VTabsProps {
1727
+ modelValue?: string;
1728
+ }
1729
+
1651
1730
  export declare const VTimePicker: DefineComponent<VTimePickerProps, {
1652
1731
  focus: () => void;
1653
1732
  blur: () => void;