@aitronos/freddy-plugins 0.3.0 → 0.4.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/CHANGELOG.md +8 -0
- package/README.md +61 -11
- package/dist/freddy-plugins.css +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +7 -52
- package/dist/index.js +556 -552
- package/dist/index.js.map +1 -1
- package/package.json +14 -3
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { ComputedRef } from 'vue';
|
|
|
6
6
|
import { DefineComponent } from 'vue';
|
|
7
7
|
import { DirectiveBinding } from 'vue';
|
|
8
8
|
import { ExtractPropTypes } from 'vue';
|
|
9
|
+
import { default as ModalBox } from './ModalBox.vue';
|
|
9
10
|
import { PublicProps } from 'vue';
|
|
10
11
|
import { Ref } from 'vue';
|
|
11
12
|
|
|
@@ -61,40 +62,13 @@ variant: "primary" | "secondary" | "blanc";
|
|
|
61
62
|
stayOpen: boolean;
|
|
62
63
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
63
64
|
|
|
64
|
-
declare const __VLS_component_4: DefineComponent<
|
|
65
|
-
isVisible: {
|
|
66
|
-
type: BooleanConstructor;
|
|
67
|
-
default: boolean;
|
|
68
|
-
};
|
|
69
|
-
largeModel: {
|
|
70
|
-
type: BooleanConstructor;
|
|
71
|
-
default: boolean;
|
|
72
|
-
};
|
|
73
|
-
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
74
|
-
close: (...args: any[]) => void;
|
|
75
|
-
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
76
|
-
isVisible: {
|
|
77
|
-
type: BooleanConstructor;
|
|
78
|
-
default: boolean;
|
|
79
|
-
};
|
|
80
|
-
largeModel: {
|
|
81
|
-
type: BooleanConstructor;
|
|
82
|
-
default: boolean;
|
|
83
|
-
};
|
|
84
|
-
}>> & Readonly<{
|
|
85
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
86
|
-
}>, {
|
|
87
|
-
isVisible: boolean;
|
|
88
|
-
largeModel: boolean;
|
|
89
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
90
|
-
|
|
91
|
-
declare const __VLS_component_5: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
65
|
+
declare const __VLS_component_4: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
92
66
|
close: (...args: any[]) => void;
|
|
93
67
|
}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{
|
|
94
68
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
95
69
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
96
70
|
|
|
97
|
-
declare const
|
|
71
|
+
declare const __VLS_component_5: DefineComponent<TooltipProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
98
72
|
tooltipWrapper: HTMLDivElement;
|
|
99
73
|
}, HTMLDivElement>;
|
|
100
74
|
|
|
@@ -173,17 +147,6 @@ declare function __VLS_template_3(): {
|
|
|
173
147
|
};
|
|
174
148
|
|
|
175
149
|
declare function __VLS_template_4(): {
|
|
176
|
-
attrs: Partial<{}>;
|
|
177
|
-
slots: {
|
|
178
|
-
header?(_: {}): any;
|
|
179
|
-
body?(_: {}): any;
|
|
180
|
-
footer?(_: {}): any;
|
|
181
|
-
};
|
|
182
|
-
refs: {};
|
|
183
|
-
rootEl: any;
|
|
184
|
-
};
|
|
185
|
-
|
|
186
|
-
declare function __VLS_template_5(): {
|
|
187
150
|
attrs: Partial<{}>;
|
|
188
151
|
slots: {
|
|
189
152
|
content?(_: {}): any;
|
|
@@ -192,7 +155,7 @@ declare function __VLS_template_5(): {
|
|
|
192
155
|
rootEl: HTMLDivElement;
|
|
193
156
|
};
|
|
194
157
|
|
|
195
|
-
declare function
|
|
158
|
+
declare function __VLS_template_5(): {
|
|
196
159
|
attrs: Partial<{}>;
|
|
197
160
|
slots: {
|
|
198
161
|
default?(_: {}): any;
|
|
@@ -214,8 +177,6 @@ declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
|
|
|
214
177
|
|
|
215
178
|
declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
|
|
216
179
|
|
|
217
|
-
declare type __VLS_TemplateResult_6 = ReturnType<typeof __VLS_template_6>;
|
|
218
|
-
|
|
219
180
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
220
181
|
new (): {
|
|
221
182
|
$slots: S;
|
|
@@ -246,12 +207,6 @@ declare type __VLS_WithTemplateSlots_5<T, S> = T & {
|
|
|
246
207
|
};
|
|
247
208
|
};
|
|
248
209
|
|
|
249
|
-
declare type __VLS_WithTemplateSlots_6<T, S> = T & {
|
|
250
|
-
new (): {
|
|
251
|
-
$slots: S;
|
|
252
|
-
};
|
|
253
|
-
};
|
|
254
|
-
|
|
255
210
|
export declare const AdvancedModal: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
256
211
|
|
|
257
212
|
export declare const AnimeSpaceman: DefineComponent<SpacemanLogoProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SpacemanLogoProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, SVGSVGElement>;
|
|
@@ -760,9 +715,9 @@ brand: "contentplate" | "flowplate" | "flowplate-csv" | "freddy";
|
|
|
760
715
|
showTitle: boolean;
|
|
761
716
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
762
717
|
|
|
763
|
-
export
|
|
718
|
+
export { ModalBox }
|
|
764
719
|
|
|
765
|
-
export declare const ModalOverlay:
|
|
720
|
+
export declare const ModalOverlay: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
766
721
|
|
|
767
722
|
export declare function openConfirmBoxModal(title: string, description: string): Promise<boolean>;
|
|
768
723
|
|
|
@@ -974,7 +929,7 @@ export declare const ToastMessage: DefineComponent< {}, {}, {}, {}, {}, Compo
|
|
|
974
929
|
|
|
975
930
|
declare type ToastType = "success" | "danger" | "info";
|
|
976
931
|
|
|
977
|
-
export declare const Tooltip:
|
|
932
|
+
export declare const Tooltip: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
978
933
|
|
|
979
934
|
declare interface TooltipProps {
|
|
980
935
|
/** The text content to display in the tooltip */
|