@aitronos/freddy-plugins 0.1.40 → 0.1.41
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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +21 -4
- package/dist/index.js +511 -442
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -35,9 +35,9 @@ isVisible: boolean;
|
|
|
35
35
|
largeModel: boolean;
|
|
36
36
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
37
37
|
|
|
38
|
-
declare const __VLS_component_3: DefineComponent<
|
|
38
|
+
declare const __VLS_component_3: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
39
39
|
close: (...args: any[]) => void;
|
|
40
|
-
}, string, PublicProps, Readonly<
|
|
40
|
+
}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{
|
|
41
41
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
42
42
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
43
43
|
|
|
@@ -47,12 +47,20 @@ declare type __VLS_Props = {
|
|
|
47
47
|
};
|
|
48
48
|
|
|
49
49
|
declare type __VLS_Props_2 = {
|
|
50
|
+
isChecked: boolean;
|
|
51
|
+
isDashInput?: boolean;
|
|
52
|
+
blueCheckbox?: boolean;
|
|
53
|
+
disabled?: boolean;
|
|
54
|
+
ariaLabel?: string;
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
declare type __VLS_Props_3 = {
|
|
50
58
|
modalTitle: string;
|
|
51
59
|
headerClass: string;
|
|
52
60
|
disableClickOutside?: boolean;
|
|
53
61
|
};
|
|
54
62
|
|
|
55
|
-
declare type
|
|
63
|
+
declare type __VLS_Props_4 = {
|
|
56
64
|
customClass?: string;
|
|
57
65
|
};
|
|
58
66
|
|
|
@@ -165,6 +173,12 @@ description: string;
|
|
|
165
173
|
*/
|
|
166
174
|
export declare const copyToClipboard: (textToCopy: string) => Promise<void>;
|
|
167
175
|
|
|
176
|
+
export declare const CustomCheckbox: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
177
|
+
"update:isChecked": (value: boolean) => any;
|
|
178
|
+
}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{
|
|
179
|
+
"onUpdate:isChecked"?: ((value: boolean) => any) | undefined;
|
|
180
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
|
|
181
|
+
|
|
168
182
|
export declare const daysInMonth: number;
|
|
169
183
|
|
|
170
184
|
/**
|
|
@@ -631,11 +645,12 @@ export declare interface Snack {
|
|
|
631
645
|
message: string;
|
|
632
646
|
toastType: ToastType;
|
|
633
647
|
duration?: number;
|
|
648
|
+
toastContainerSize?: "full" | "half" | "side70";
|
|
634
649
|
}
|
|
635
650
|
|
|
636
651
|
export declare const SnackBar: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
637
652
|
|
|
638
|
-
export declare const Spinner: DefineComponent<
|
|
653
|
+
export declare const Spinner: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
639
654
|
|
|
640
655
|
export declare const TabList: DefineComponent<ITabList, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
641
656
|
tabSwitch: (...args: any[]) => void;
|
|
@@ -661,11 +676,13 @@ export declare const useSnackBar: () => {
|
|
|
661
676
|
message: string;
|
|
662
677
|
toastType: ToastType;
|
|
663
678
|
duration?: number | undefined;
|
|
679
|
+
toastContainerSize?: "full" | "half" | "side70" | undefined;
|
|
664
680
|
}[], Snack[] | {
|
|
665
681
|
title: string;
|
|
666
682
|
message: string;
|
|
667
683
|
toastType: ToastType;
|
|
668
684
|
duration?: number | undefined;
|
|
685
|
+
toastContainerSize?: "full" | "half" | "side70" | undefined;
|
|
669
686
|
}[]>;
|
|
670
687
|
addSnackBar: (snack: Snack) => void;
|
|
671
688
|
removeSnackBar: (snack: Snack) => void;
|