@solfacil/girassol 0.51.0 → 0.52.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/dist/girassol.es.js +2599 -2583
- package/dist/girassol.umd.js +6 -6
- package/dist/style.css +1 -1
- package/dist/types/components/forms/inputs/input-core/Input.vue.d.ts +4 -0
- package/dist/types/components/forms/inputs/input-text/InputText.vue.d.ts +2 -0
- package/dist/types/components/forms/inputs/types.d.ts +4 -0
- package/dist/types/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -5,6 +5,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
5
5
|
modelValue: InputCore['modelValue'];
|
|
6
6
|
error?: InputCore['error'];
|
|
7
7
|
mask?: Mask | undefined;
|
|
8
|
+
hasLeftIcon?: InputCore['hasLeftIcon'];
|
|
9
|
+
hasRightIcon?: InputCore['hasRightIcon'];
|
|
8
10
|
size?: InputCore['size'];
|
|
9
11
|
hasFeedbackIcon?: InputCore['hasFeedbackIcon'];
|
|
10
12
|
}>, {
|
|
@@ -18,6 +20,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
18
20
|
modelValue: InputCore['modelValue'];
|
|
19
21
|
error?: InputCore['error'];
|
|
20
22
|
mask?: Mask | undefined;
|
|
23
|
+
hasLeftIcon?: InputCore['hasLeftIcon'];
|
|
24
|
+
hasRightIcon?: InputCore['hasRightIcon'];
|
|
21
25
|
size?: InputCore['size'];
|
|
22
26
|
hasFeedbackIcon?: InputCore['hasFeedbackIcon'];
|
|
23
27
|
}>, {
|
|
@@ -56,6 +56,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
56
56
|
size: "small" | "medium";
|
|
57
57
|
error: string | null;
|
|
58
58
|
}>, {
|
|
59
|
+
'icon:left': (_: {}) => any;
|
|
60
|
+
'icon:right': (_: {}) => any;
|
|
59
61
|
icon: (_: {}) => any;
|
|
60
62
|
}>;
|
|
61
63
|
export default _default;
|
|
@@ -5,6 +5,8 @@ export interface InputCore {
|
|
|
5
5
|
modelValue: ModelValue;
|
|
6
6
|
error?: boolean;
|
|
7
7
|
size?: Size;
|
|
8
|
+
hasLeftIcon?: boolean;
|
|
9
|
+
hasRightIcon?: boolean;
|
|
8
10
|
hasFeedbackIcon?: boolean;
|
|
9
11
|
}
|
|
10
12
|
export interface InputText {
|
|
@@ -19,6 +21,8 @@ export interface InputText {
|
|
|
19
21
|
disabled?: boolean;
|
|
20
22
|
isSuccess?: boolean;
|
|
21
23
|
isLoading?: boolean;
|
|
24
|
+
leftReferenceIcon?: string;
|
|
25
|
+
rightReferenceIcon?: string;
|
|
22
26
|
size?: Size;
|
|
23
27
|
}
|
|
24
28
|
export {};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1104,6 +1104,8 @@ export declare const components: {
|
|
|
1104
1104
|
error: string | null;
|
|
1105
1105
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1106
1106
|
$slots: {
|
|
1107
|
+
'icon:left': (_: {}) => any;
|
|
1108
|
+
'icon:right': (_: {}) => any;
|
|
1107
1109
|
icon: (_: {}) => any;
|
|
1108
1110
|
};
|
|
1109
1111
|
});
|