@solfacil/girassol 0.3.1 → 0.3.4
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/.vscode/settings.json +1 -0
- package/dist/components.d.ts +3 -5
- package/dist/components.json +1 -1
- package/dist/girassol.es.js +3371 -1299
- package/dist/girassol.umd.js +14 -6
- package/dist/style.css +1 -1
- package/dist/theme/solfacil/index.d.ts +1 -0
- package/dist/theme/solfacil/utilities.d.ts +1 -0
- package/dist/types/components/accordion/Accordion.vue.d.ts +2 -2
- package/dist/types/components/forms/button/button/Button.vue.d.ts +2 -2
- package/dist/types/components/forms/button/button-destructive/ButtonDestructive.vue.d.ts +2 -2
- package/dist/types/components/forms/checkbox/checkbox/Checkbox.vue.d.ts +12 -80
- package/dist/types/components/forms/checkbox/checkbox-group/CheckboxGroup.vue.d.ts +55 -16
- package/dist/types/components/forms/inputs/index.d.ts +4 -0
- package/dist/types/components/forms/inputs/input-core/Input.vue.d.ts +44 -0
- package/dist/types/components/forms/{input → inputs/input-core}/input.spec.d.ts +0 -0
- package/dist/types/components/forms/inputs/input-password/InputPassword.vue.d.ts +58 -0
- package/dist/types/components/{dropdown/dropdown.spec.d.ts → forms/inputs/input-password/input-password.spec.d.ts} +0 -0
- package/dist/types/components/forms/{textarea/Textarea.vue.d.ts → inputs/input-text/InputText.vue.d.ts} +92 -52
- package/dist/types/components/forms/{textarea/textarea.spec.d.ts → inputs/input-text/input-text.spec.d.ts} +0 -0
- package/dist/types/components/forms/inputs/input-textarea/InputTextarea.vue.d.ts +70 -0
- package/dist/types/components/forms/{textfield/textfield-password.spec.d.ts → inputs/input-textarea/textarea.spec.d.ts} +0 -0
- package/dist/types/components/forms/inputs/types.d.ts +24 -0
- package/dist/types/components/forms/radio/radio/Radio.vue.d.ts +11 -77
- package/dist/types/components/forms/radio/radio-group/RadioGroup.vue.d.ts +53 -14
- package/dist/types/components/forms/select/ListOption.vue.d.ts +4 -9
- package/dist/types/components/forms/select/Select.vue.d.ts +139 -184
- package/dist/types/components/forms/select/types.d.ts +23 -0
- package/dist/types/components/forms/switch/Switch.vue.d.ts +18 -102
- package/dist/types/components/informations/chip/Chip.vue.d.ts +5 -5
- package/dist/types/components/loader/CircleLoader.vue.d.ts +15 -68
- package/dist/types/components/menus/menu/Menu.vue.d.ts +2 -2
- package/dist/types/components/menus/menu-navigation-links/MenuNavigationLinks.vue.d.ts +2 -2
- package/dist/types/composables/use-mask/index.d.ts +18 -0
- package/dist/types/composables/use-toast/Toast.vue.d.ts +2 -2
- package/dist/types/composables/use-validate-field/index.d.ts +5 -0
- package/dist/types/composables/use-validate-field/types.d.ts +22 -0
- package/dist/types/index.d.ts +1183 -1730
- package/package.json +7 -5
- package/theme/solfacil/colors.ts +1 -1
- package/theme/solfacil/index.ts +2 -1
- package/theme/solfacil/utilities.ts +27 -0
- package/windi.config.ts +12 -11
- package/dist/README.md.d.ts +0 -2
- package/dist/cli/readme.md.d.ts +0 -2
- package/dist/theme/safelist.d.ts +0 -14
- package/dist/types/components/dropdown/Dropdown.vue.d.ts +0 -238
- package/dist/types/components/dropdown/index.d.ts +0 -2
- package/dist/types/components/forms/input/Input.vue.d.ts +0 -93
- package/dist/types/components/forms/input/index.d.ts +0 -2
- package/dist/types/components/forms/textarea/index.d.ts +0 -2
- package/dist/types/components/forms/textfield/Textfield.vue.d.ts +0 -129
- package/dist/types/components/forms/textfield/TextfieldPassword.vue.d.ts +0 -93
- package/dist/types/components/forms/textfield/index.d.ts +0 -3
- package/dist/types/components/forms/textfield/textfield.spec.d.ts +0 -1
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
new (...args: any[]): {
|
|
3
|
-
$: import("vue").ComponentInternalInstance;
|
|
4
|
-
$data: {};
|
|
5
|
-
$props: Partial<{
|
|
6
|
-
label: string;
|
|
7
|
-
id: string;
|
|
8
|
-
}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
9
|
-
id: string;
|
|
10
|
-
label?: string | undefined;
|
|
11
|
-
}>, {
|
|
12
|
-
id: string;
|
|
13
|
-
label: string;
|
|
14
|
-
}>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "id">;
|
|
15
|
-
$attrs: {
|
|
16
|
-
[x: string]: unknown;
|
|
17
|
-
};
|
|
18
|
-
$refs: {
|
|
19
|
-
[x: string]: unknown;
|
|
20
|
-
};
|
|
21
|
-
$slots: Readonly<{
|
|
22
|
-
[name: string]: import("vue").Slot | undefined;
|
|
23
|
-
}>;
|
|
24
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
25
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
26
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
27
|
-
$el: any;
|
|
28
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
29
|
-
id: string;
|
|
30
|
-
label?: string | undefined;
|
|
31
|
-
}>, {
|
|
32
|
-
id: string;
|
|
33
|
-
label: string;
|
|
34
|
-
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
35
|
-
label: string;
|
|
36
|
-
id: string;
|
|
37
|
-
}> & {
|
|
38
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
39
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
40
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
41
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
42
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
43
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
44
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
45
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
46
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
47
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
48
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
49
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
50
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
51
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
52
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
|
|
53
|
-
};
|
|
54
|
-
$forceUpdate: () => void;
|
|
55
|
-
$nextTick: typeof import("vue").nextTick;
|
|
56
|
-
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
57
|
-
} & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
58
|
-
id: string;
|
|
59
|
-
label?: string | undefined;
|
|
60
|
-
}>, {
|
|
61
|
-
id: string;
|
|
62
|
-
label: string;
|
|
63
|
-
}>>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
64
|
-
__isFragment?: undefined;
|
|
65
|
-
__isTeleport?: undefined;
|
|
66
|
-
__isSuspense?: undefined;
|
|
67
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
68
|
-
id: string;
|
|
69
|
-
label?: string | undefined;
|
|
70
|
-
}>, {
|
|
71
|
-
id: string;
|
|
72
|
-
label: string;
|
|
73
|
-
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
74
|
-
label: string;
|
|
75
|
-
id: string;
|
|
76
|
-
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
77
|
-
$slots: {};
|
|
78
|
-
});
|
|
79
|
-
export default _default;
|
|
80
|
-
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
81
|
-
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
82
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
83
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
84
|
-
} : {
|
|
85
|
-
type: import('vue').PropType<T[K]>;
|
|
86
|
-
required: true;
|
|
87
|
-
};
|
|
88
|
-
};
|
|
89
|
-
declare type __VLS_WithDefaults<P, D> = {
|
|
90
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
|
|
91
|
-
default: D[K];
|
|
92
|
-
} : P[K];
|
|
93
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import '@testing-library/jest-dom';
|