@solfacil/girassol 0.52.0 → 0.53.1
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 +432 -427
- package/dist/girassol.umd.js +5 -5
- 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/index.d.ts +6 -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'];
|
package/dist/types/index.d.ts
CHANGED
|
@@ -5855,6 +5855,9 @@ export declare const components: {
|
|
|
5855
5855
|
} & {
|
|
5856
5856
|
default: () => string[];
|
|
5857
5857
|
};
|
|
5858
|
+
fileName: {
|
|
5859
|
+
type: import("vue").PropType<string>;
|
|
5860
|
+
};
|
|
5858
5861
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5859
5862
|
"update:modelValue": (value: import("./components/file-upload/types").FileUploadModel | undefined) => void;
|
|
5860
5863
|
} & {
|
|
@@ -5925,6 +5928,9 @@ export declare const components: {
|
|
|
5925
5928
|
} & {
|
|
5926
5929
|
default: () => string[];
|
|
5927
5930
|
};
|
|
5931
|
+
fileName: {
|
|
5932
|
+
type: import("vue").PropType<string>;
|
|
5933
|
+
};
|
|
5928
5934
|
}>> & {
|
|
5929
5935
|
"onUpdate:modelValue"?: ((value: import("./components/file-upload/types").FileUploadModel | undefined) => any) | undefined;
|
|
5930
5936
|
"onMenu:preview"?: ((url: string) => any) | undefined;
|