@aitronos/freddy-plugins 0.1.51 → 0.1.53
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 +74 -1
- package/dist/index.js +975 -887
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -41,6 +41,46 @@ close: (...args: any[]) => void;
|
|
|
41
41
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
42
42
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
43
43
|
|
|
44
|
+
declare const __VLS_component_4: DefineComponent<ExtractPropTypes< {
|
|
45
|
+
text: StringConstructor;
|
|
46
|
+
placement: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
showDelay: {
|
|
51
|
+
type: NumberConstructor;
|
|
52
|
+
default: number;
|
|
53
|
+
};
|
|
54
|
+
hideDelay: {
|
|
55
|
+
type: NumberConstructor;
|
|
56
|
+
default: number;
|
|
57
|
+
};
|
|
58
|
+
custom: BooleanConstructor;
|
|
59
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
60
|
+
text: StringConstructor;
|
|
61
|
+
placement: {
|
|
62
|
+
type: StringConstructor;
|
|
63
|
+
default: string;
|
|
64
|
+
};
|
|
65
|
+
showDelay: {
|
|
66
|
+
type: NumberConstructor;
|
|
67
|
+
default: number;
|
|
68
|
+
};
|
|
69
|
+
hideDelay: {
|
|
70
|
+
type: NumberConstructor;
|
|
71
|
+
default: number;
|
|
72
|
+
};
|
|
73
|
+
custom: BooleanConstructor;
|
|
74
|
+
}>> & Readonly<{}>, {
|
|
75
|
+
placement: string;
|
|
76
|
+
showDelay: number;
|
|
77
|
+
hideDelay: number;
|
|
78
|
+
custom: boolean;
|
|
79
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
80
|
+
trigger: HTMLSpanElement;
|
|
81
|
+
tooltip: HTMLDivElement;
|
|
82
|
+
}, any>;
|
|
83
|
+
|
|
44
84
|
declare type __VLS_Props = {
|
|
45
85
|
isVisible: boolean;
|
|
46
86
|
largeModel: boolean;
|
|
@@ -95,12 +135,27 @@ declare function __VLS_template_3(): {
|
|
|
95
135
|
rootEl: HTMLDivElement;
|
|
96
136
|
};
|
|
97
137
|
|
|
138
|
+
declare function __VLS_template_4(): {
|
|
139
|
+
attrs: Partial<{}>;
|
|
140
|
+
slots: {
|
|
141
|
+
default?(_: {}): any;
|
|
142
|
+
tooltip?(_: {}): any;
|
|
143
|
+
};
|
|
144
|
+
refs: {
|
|
145
|
+
trigger: HTMLSpanElement;
|
|
146
|
+
tooltip: HTMLDivElement;
|
|
147
|
+
};
|
|
148
|
+
rootEl: any;
|
|
149
|
+
};
|
|
150
|
+
|
|
98
151
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
99
152
|
|
|
100
153
|
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
101
154
|
|
|
102
155
|
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
103
156
|
|
|
157
|
+
declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
|
|
158
|
+
|
|
104
159
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
105
160
|
new (): {
|
|
106
161
|
$slots: S;
|
|
@@ -119,6 +174,12 @@ declare type __VLS_WithTemplateSlots_3<T, S> = T & {
|
|
|
119
174
|
};
|
|
120
175
|
};
|
|
121
176
|
|
|
177
|
+
declare type __VLS_WithTemplateSlots_4<T, S> = T & {
|
|
178
|
+
new (): {
|
|
179
|
+
$slots: S;
|
|
180
|
+
};
|
|
181
|
+
};
|
|
182
|
+
|
|
122
183
|
export declare const AdvancedModal: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
123
184
|
|
|
124
185
|
/**
|
|
@@ -571,14 +632,17 @@ export declare const Pagination: DefineComponent<ExtractPropTypes< {
|
|
|
571
632
|
totalItems: {
|
|
572
633
|
type: NumberConstructor;
|
|
573
634
|
required: true;
|
|
635
|
+
default: number;
|
|
574
636
|
};
|
|
575
637
|
itemsPerPage: {
|
|
576
638
|
type: NumberConstructor;
|
|
577
639
|
required: true;
|
|
640
|
+
default: number;
|
|
578
641
|
};
|
|
579
642
|
currentPage: {
|
|
580
643
|
type: NumberConstructor;
|
|
581
644
|
required: true;
|
|
645
|
+
default: number;
|
|
582
646
|
};
|
|
583
647
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
584
648
|
"update:currentPage": (...args: any[]) => void;
|
|
@@ -586,18 +650,25 @@ required: true;
|
|
|
586
650
|
totalItems: {
|
|
587
651
|
type: NumberConstructor;
|
|
588
652
|
required: true;
|
|
653
|
+
default: number;
|
|
589
654
|
};
|
|
590
655
|
itemsPerPage: {
|
|
591
656
|
type: NumberConstructor;
|
|
592
657
|
required: true;
|
|
658
|
+
default: number;
|
|
593
659
|
};
|
|
594
660
|
currentPage: {
|
|
595
661
|
type: NumberConstructor;
|
|
596
662
|
required: true;
|
|
663
|
+
default: number;
|
|
597
664
|
};
|
|
598
665
|
}>> & Readonly<{
|
|
599
666
|
"onUpdate:currentPage"?: ((...args: any[]) => any) | undefined;
|
|
600
|
-
}>, {
|
|
667
|
+
}>, {
|
|
668
|
+
totalItems: number;
|
|
669
|
+
itemsPerPage: number;
|
|
670
|
+
currentPage: number;
|
|
671
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
601
672
|
|
|
602
673
|
/**
|
|
603
674
|
* Converts a date to a human-readable format (e.g., "12 Dec 2023 at 12:34").
|
|
@@ -672,6 +743,8 @@ export declare const ToastMessage: DefineComponent< {}, {}, {}, {}, {}, Compo
|
|
|
672
743
|
|
|
673
744
|
declare type ToastType = "success" | "danger" | "info";
|
|
674
745
|
|
|
746
|
+
export declare const Tooltip: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
747
|
+
|
|
675
748
|
export declare const useSnackBar: () => {
|
|
676
749
|
snackQueue: Ref< {
|
|
677
750
|
title: string;
|