@aitronos/freddy-plugins 0.4.32 → 0.4.34
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 +28 -0
- package/dist/freddy-plugins.css +1 -1
- package/dist/index.cjs +23 -23
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +8 -8
- package/dist/index.js +353 -348
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -99,11 +99,11 @@ declare const __VLS_component_5: DefineComponent<Props_18, {
|
|
|
99
99
|
inputId: ComputedRef<string>;
|
|
100
100
|
containerClasses: ComputedRef< {
|
|
101
101
|
[x: string]: boolean;
|
|
102
|
-
'input-field-container--destructive': boolean;
|
|
103
|
-
'input-field-container--focused': boolean;
|
|
104
|
-
'input-field-container--disabled': boolean;
|
|
105
|
-
'input-field-container--loading': boolean;
|
|
106
|
-
'input-field-container--success': boolean;
|
|
102
|
+
'freddy-plugins-input-field-container--destructive': boolean;
|
|
103
|
+
'freddy-plugins-input-field-container--focused': boolean;
|
|
104
|
+
'freddy-plugins-input-field-container--disabled': boolean;
|
|
105
|
+
'freddy-plugins-input-field-container--loading': boolean;
|
|
106
|
+
'freddy-plugins-input-field-container--success': boolean;
|
|
107
107
|
}>;
|
|
108
108
|
focusInput: () => void;
|
|
109
109
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -157,7 +157,7 @@ declare type __VLS_Props_10 = {
|
|
|
157
157
|
};
|
|
158
158
|
|
|
159
159
|
declare type __VLS_Props_11 = {
|
|
160
|
-
type:
|
|
160
|
+
type: ISkeletonType;
|
|
161
161
|
hasHeader?: boolean;
|
|
162
162
|
count?: number;
|
|
163
163
|
};
|
|
@@ -3624,6 +3624,8 @@ export declare interface ISelectOption {
|
|
|
3624
3624
|
group?: string;
|
|
3625
3625
|
}
|
|
3626
3626
|
|
|
3627
|
+
declare type ISkeletonType = 'card' | 'paragraph' | 'table' | 'single-box' | 'single-paragraph';
|
|
3628
|
+
|
|
3627
3629
|
export declare interface ISnackbarMessage {
|
|
3628
3630
|
id: string;
|
|
3629
3631
|
message: string;
|
|
@@ -4653,8 +4655,6 @@ inputRef: HTMLTextAreaElement;
|
|
|
4653
4655
|
|
|
4654
4656
|
export declare const SkeletonLoader: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
4655
4657
|
|
|
4656
|
-
declare type SkeletonType = "card" | "paragraph" | "table" | "single-box" | "single-paragraph";
|
|
4657
|
-
|
|
4658
4658
|
export declare const Slider: DefineComponent<SliderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4659
4659
|
"update:modelValue": (value: number) => any;
|
|
4660
4660
|
"update:rangeValue": (range: [number, number]) => any;
|