@solfacil/girassol 0.51.0 → 0.53.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 +2604 -2585
- package/dist/girassol.umd.js +6 -6
- package/dist/style.css +1 -1
- package/dist/types/components/file-upload/Download.vue.d.ts +2 -0
- package/dist/types/components/file-upload/FileUpload.vue.d.ts +2 -0
- package/dist/types/components/file-upload/types.d.ts +1 -0
- 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 +8 -0
- package/package.json +1 -1
|
@@ -4,6 +4,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
4
4
|
downloadSrc?: Download['downloadSrc'];
|
|
5
5
|
downloadMenu?: DownloadMenu[] | undefined;
|
|
6
6
|
fileIcon: Download['fileIcon'];
|
|
7
|
+
fileName?: Download['fileName'];
|
|
7
8
|
}>, {}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
9
|
"menu:preview": (url: string) => void;
|
|
9
10
|
} & {
|
|
@@ -15,6 +16,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
15
16
|
downloadSrc?: Download['downloadSrc'];
|
|
16
17
|
downloadMenu?: DownloadMenu[] | undefined;
|
|
17
18
|
fileIcon: Download['fileIcon'];
|
|
19
|
+
fileName?: Download['fileName'];
|
|
18
20
|
}>, {}>>> & {
|
|
19
21
|
"onMenu:preview"?: ((url: string) => any) | undefined;
|
|
20
22
|
"onMenu:download"?: ((url: string) => any) | undefined;
|
|
@@ -12,6 +12,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
12
12
|
loading?: FileUpload['loading'];
|
|
13
13
|
downloadSrc?: FileUpload['downloadSrc'];
|
|
14
14
|
downloadMenu?: import("./types").DownloadMenu[] | undefined;
|
|
15
|
+
fileName?: FileUpload['fileName'];
|
|
15
16
|
useField?: ParentValidate['useFieldParent'];
|
|
16
17
|
rules?: ParentValidate['rules'];
|
|
17
18
|
opts?: ParentValidate['opts'];
|
|
@@ -43,6 +44,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
43
44
|
loading?: FileUpload['loading'];
|
|
44
45
|
downloadSrc?: FileUpload['downloadSrc'];
|
|
45
46
|
downloadMenu?: import("./types").DownloadMenu[] | undefined;
|
|
47
|
+
fileName?: FileUpload['fileName'];
|
|
46
48
|
useField?: ParentValidate['useFieldParent'];
|
|
47
49
|
rules?: ParentValidate['rules'];
|
|
48
50
|
opts?: ParentValidate['opts'];
|
|
@@ -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
|
});
|
|
@@ -5853,6 +5855,9 @@ export declare const components: {
|
|
|
5853
5855
|
} & {
|
|
5854
5856
|
default: () => string[];
|
|
5855
5857
|
};
|
|
5858
|
+
fileName: {
|
|
5859
|
+
type: import("vue").PropType<string>;
|
|
5860
|
+
};
|
|
5856
5861
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5857
5862
|
"update:modelValue": (value: import("./components/file-upload/types").FileUploadModel | undefined) => void;
|
|
5858
5863
|
} & {
|
|
@@ -5923,6 +5928,9 @@ export declare const components: {
|
|
|
5923
5928
|
} & {
|
|
5924
5929
|
default: () => string[];
|
|
5925
5930
|
};
|
|
5931
|
+
fileName: {
|
|
5932
|
+
type: import("vue").PropType<string>;
|
|
5933
|
+
};
|
|
5926
5934
|
}>> & {
|
|
5927
5935
|
"onUpdate:modelValue"?: ((value: import("./components/file-upload/types").FileUploadModel | undefined) => any) | undefined;
|
|
5928
5936
|
"onMenu:preview"?: ((url: string) => any) | undefined;
|