voiptime-components 1.18.3 → 1.19.0
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 +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +36 -0
- package/dist/index.es.js +1313 -1271
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
- package/src/assets/main.scss +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -112,6 +112,13 @@ declare const __VLS_component_15: DefineComponent<{}, {}, {}, {}, {}, ComponentO
|
|
|
112
112
|
measurementContainer: HTMLDivElement;
|
|
113
113
|
}, HTMLDivElement>;
|
|
114
114
|
|
|
115
|
+
declare const __VLS_component_16: DefineComponent<VInfoBoxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<VInfoBoxProps> & Readonly<{}>, {
|
|
116
|
+
title: string;
|
|
117
|
+
type: VInfoBoxType;
|
|
118
|
+
message: string;
|
|
119
|
+
showIcon: boolean;
|
|
120
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
121
|
+
|
|
115
122
|
declare const __VLS_component_2: DefineComponent<VModalProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
116
123
|
close: () => any;
|
|
117
124
|
"update:modelValue": (value: boolean) => any;
|
|
@@ -549,6 +556,15 @@ declare function __VLS_template_15(): {
|
|
|
549
556
|
rootEl: HTMLDivElement;
|
|
550
557
|
};
|
|
551
558
|
|
|
559
|
+
declare function __VLS_template_16(): {
|
|
560
|
+
attrs: Partial<{}>;
|
|
561
|
+
slots: {
|
|
562
|
+
default?(_: {}): any;
|
|
563
|
+
};
|
|
564
|
+
refs: {};
|
|
565
|
+
rootEl: HTMLDivElement;
|
|
566
|
+
};
|
|
567
|
+
|
|
552
568
|
declare function __VLS_template_2(): {
|
|
553
569
|
attrs: Partial<{}>;
|
|
554
570
|
slots: {
|
|
@@ -747,6 +763,8 @@ declare type __VLS_TemplateResult_14 = ReturnType<typeof __VLS_template_14>;
|
|
|
747
763
|
|
|
748
764
|
declare type __VLS_TemplateResult_15 = ReturnType<typeof __VLS_template_15>;
|
|
749
765
|
|
|
766
|
+
declare type __VLS_TemplateResult_16 = ReturnType<typeof __VLS_template_16>;
|
|
767
|
+
|
|
750
768
|
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
751
769
|
|
|
752
770
|
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
@@ -805,6 +823,12 @@ declare type __VLS_WithTemplateSlots_15<T, S> = T & {
|
|
|
805
823
|
};
|
|
806
824
|
};
|
|
807
825
|
|
|
826
|
+
declare type __VLS_WithTemplateSlots_16<T, S> = T & {
|
|
827
|
+
new (): {
|
|
828
|
+
$slots: S;
|
|
829
|
+
};
|
|
830
|
+
};
|
|
831
|
+
|
|
808
832
|
declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
809
833
|
new (): {
|
|
810
834
|
$slots: S;
|
|
@@ -1896,6 +1920,18 @@ export declare const VIcon: DefineComponent<Props, {}, {}, {}, {}, ComponentOpti
|
|
|
1896
1920
|
color: string;
|
|
1897
1921
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1898
1922
|
|
|
1923
|
+
export declare const VInfoBox: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
|
|
1924
|
+
|
|
1925
|
+
export declare interface VInfoBoxProps {
|
|
1926
|
+
type?: VInfoBoxType;
|
|
1927
|
+
message?: string;
|
|
1928
|
+
title?: string;
|
|
1929
|
+
showIcon?: boolean;
|
|
1930
|
+
icon?: IconName;
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
export declare type VInfoBoxType = 'success' | 'warning' | 'primary' | 'danger';
|
|
1934
|
+
|
|
1899
1935
|
export declare const VInput: DefineComponent<VtInputProps, {
|
|
1900
1936
|
focus(): void;
|
|
1901
1937
|
blur(): void;
|