@solfacil/girassol 0.3.2 → 0.3.3
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 +1 -2
- package/dist/components.json +1 -1
- package/dist/girassol.es.js +1638 -1664
- package/dist/girassol.umd.js +10 -6
- package/dist/style.css +1 -1
- 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/inputs/index.d.ts +2 -1
- package/dist/types/components/forms/inputs/input-core/Input.vue.d.ts +17 -90
- package/dist/types/components/forms/inputs/input-password/InputPassword.vue.d.ts +21 -109
- package/dist/types/components/forms/inputs/input-text/InputText.vue.d.ts +7 -10
- package/dist/types/components/forms/inputs/input-textarea/InputTextarea.vue.d.ts +63 -0
- package/dist/types/components/forms/{textarea → inputs/input-textarea}/textarea.spec.d.ts +0 -0
- package/dist/types/components/forms/radio/radio/Radio.vue.d.ts +11 -77
- package/dist/types/components/forms/switch/Switch.vue.d.ts +18 -102
- package/dist/types/components/loader/CircleLoader.vue.d.ts +10 -74
- 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/index.d.ts +565 -1481
- package/package.json +2 -1
- package/dist/README.md.d.ts +0 -2
- package/dist/cli/readme.md.d.ts +0 -2
- package/dist/types/components/dropdown/index.d.ts +0 -2
- package/dist/types/components/forms/textarea/Textarea.vue.d.ts +0 -139
- package/dist/types/components/forms/textarea/index.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solfacil/girassol",
|
|
3
3
|
"description": "Girassol design system",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.3",
|
|
5
5
|
"authors": [
|
|
6
6
|
{
|
|
7
7
|
"name": "Kevin Martin",
|
|
@@ -59,6 +59,7 @@
|
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@vueuse/core": "^9.1.0",
|
|
61
61
|
"gluegun": "latest",
|
|
62
|
+
"maska": "^1.5.0",
|
|
62
63
|
"vee-validate": "^4.6.6",
|
|
63
64
|
"vue": "^3.2.37"
|
|
64
65
|
},
|
package/dist/README.md.d.ts
DELETED
package/dist/cli/readme.md.d.ts
DELETED
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
new (...args: any[]): {
|
|
3
|
-
$: import("vue").ComponentInternalInstance;
|
|
4
|
-
$data: {};
|
|
5
|
-
$props: Partial<{
|
|
6
|
-
label: string;
|
|
7
|
-
modelValue: string;
|
|
8
|
-
resize: 'both' | 'horizontal' | 'vertical' | 'none';
|
|
9
|
-
}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
10
|
-
id: string;
|
|
11
|
-
class?: string | undefined;
|
|
12
|
-
modelValue?: string | undefined;
|
|
13
|
-
label?: string | undefined;
|
|
14
|
-
hint?: string | undefined;
|
|
15
|
-
invert?: boolean | undefined;
|
|
16
|
-
resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
|
|
17
|
-
error?: string | undefined;
|
|
18
|
-
}>, {
|
|
19
|
-
modelValue: string;
|
|
20
|
-
label: string;
|
|
21
|
-
resize: string;
|
|
22
|
-
}>>> & {
|
|
23
|
-
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
24
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "modelValue" | "resize">;
|
|
25
|
-
$attrs: {
|
|
26
|
-
[x: string]: unknown;
|
|
27
|
-
};
|
|
28
|
-
$refs: {
|
|
29
|
-
[x: string]: unknown;
|
|
30
|
-
};
|
|
31
|
-
$slots: Readonly<{
|
|
32
|
-
[name: string]: import("vue").Slot | undefined;
|
|
33
|
-
}>;
|
|
34
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
35
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
36
|
-
$emit: (event: "update:modelValue", event: string) => void;
|
|
37
|
-
$el: any;
|
|
38
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
39
|
-
id: string;
|
|
40
|
-
class?: string | undefined;
|
|
41
|
-
modelValue?: string | undefined;
|
|
42
|
-
label?: string | undefined;
|
|
43
|
-
hint?: string | undefined;
|
|
44
|
-
invert?: boolean | undefined;
|
|
45
|
-
resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
|
|
46
|
-
error?: string | undefined;
|
|
47
|
-
}>, {
|
|
48
|
-
modelValue: string;
|
|
49
|
-
label: string;
|
|
50
|
-
resize: string;
|
|
51
|
-
}>>> & {
|
|
52
|
-
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
53
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
54
|
-
"update:modelValue": (event: string) => void;
|
|
55
|
-
}, string, {
|
|
56
|
-
label: string;
|
|
57
|
-
modelValue: string;
|
|
58
|
-
resize: 'both' | 'horizontal' | 'vertical' | 'none';
|
|
59
|
-
}> & {
|
|
60
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
61
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
62
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
63
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
64
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
65
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
66
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
67
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
68
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
69
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
70
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
71
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
72
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
73
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
74
|
-
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;
|
|
75
|
-
};
|
|
76
|
-
$forceUpdate: () => void;
|
|
77
|
-
$nextTick: typeof import("vue").nextTick;
|
|
78
|
-
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
79
|
-
} & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
80
|
-
id: string;
|
|
81
|
-
class?: string | undefined;
|
|
82
|
-
modelValue?: string | undefined;
|
|
83
|
-
label?: string | undefined;
|
|
84
|
-
hint?: string | undefined;
|
|
85
|
-
invert?: boolean | undefined;
|
|
86
|
-
resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
|
|
87
|
-
error?: string | undefined;
|
|
88
|
-
}>, {
|
|
89
|
-
modelValue: string;
|
|
90
|
-
label: string;
|
|
91
|
-
resize: string;
|
|
92
|
-
}>>> & {
|
|
93
|
-
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
94
|
-
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
95
|
-
__isFragment?: undefined;
|
|
96
|
-
__isTeleport?: undefined;
|
|
97
|
-
__isSuspense?: undefined;
|
|
98
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
99
|
-
id: string;
|
|
100
|
-
class?: string | undefined;
|
|
101
|
-
modelValue?: string | undefined;
|
|
102
|
-
label?: string | undefined;
|
|
103
|
-
hint?: string | undefined;
|
|
104
|
-
invert?: boolean | undefined;
|
|
105
|
-
resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
|
|
106
|
-
error?: string | undefined;
|
|
107
|
-
}>, {
|
|
108
|
-
modelValue: string;
|
|
109
|
-
label: string;
|
|
110
|
-
resize: string;
|
|
111
|
-
}>>> & {
|
|
112
|
-
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
113
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
114
|
-
"update:modelValue": (event: string) => void;
|
|
115
|
-
}, string, {
|
|
116
|
-
label: string;
|
|
117
|
-
modelValue: string;
|
|
118
|
-
resize: 'both' | 'horizontal' | 'vertical' | 'none';
|
|
119
|
-
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
120
|
-
$slots: {
|
|
121
|
-
label: (_: {}) => any;
|
|
122
|
-
default: (_: {}) => any;
|
|
123
|
-
};
|
|
124
|
-
});
|
|
125
|
-
export default _default;
|
|
126
|
-
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
127
|
-
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
128
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
129
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
130
|
-
} : {
|
|
131
|
-
type: import('vue').PropType<T[K]>;
|
|
132
|
-
required: true;
|
|
133
|
-
};
|
|
134
|
-
};
|
|
135
|
-
declare type __VLS_WithDefaults<P, D> = {
|
|
136
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
|
|
137
|
-
default: D[K];
|
|
138
|
-
} : P[K];
|
|
139
|
-
};
|