@aitronos/freddy-plugins 0.1.73 → 0.1.74
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/freddy-plugins.css +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +575 -511
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -102,6 +102,11 @@ declare type __VLS_Props_3 = {
|
|
|
102
102
|
};
|
|
103
103
|
|
|
104
104
|
declare type __VLS_Props_4 = {
|
|
105
|
+
type: SkeletonType;
|
|
106
|
+
hasHeader?: boolean;
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
declare type __VLS_Props_5 = {
|
|
105
110
|
customClass?: string;
|
|
106
111
|
};
|
|
107
112
|
|
|
@@ -727,6 +732,10 @@ dropdownRef: HTMLDivElement;
|
|
|
727
732
|
searchInput: HTMLInputElement;
|
|
728
733
|
}, any>;
|
|
729
734
|
|
|
735
|
+
export declare const SkeletonLoader: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
736
|
+
|
|
737
|
+
declare type SkeletonType = "card" | "paragraph" | "table" | "single-box";
|
|
738
|
+
|
|
730
739
|
export declare interface Snack {
|
|
731
740
|
title: string;
|
|
732
741
|
message: string;
|
|
@@ -737,7 +746,7 @@ export declare interface Snack {
|
|
|
737
746
|
|
|
738
747
|
export declare const SnackBar: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
739
748
|
|
|
740
|
-
export declare const Spinner: DefineComponent<
|
|
749
|
+
export declare const Spinner: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
741
750
|
|
|
742
751
|
export declare const TabList: DefineComponent<ITabList, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
743
752
|
tabSwitch: (...args: any[]) => void;
|