@finema/core 1.4.92 → 1.4.94
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/README.md +2 -5
- package/dist/module.json +1 -1
- package/dist/module.mjs +4 -1
- package/dist/runtime/components/Badge.vue +3 -45
- package/dist/runtime/components/Form/Fields.vue +9 -0
- package/dist/runtime/components/Form/InputUploadDropzoneAuto/index.vue +7 -1
- package/dist/runtime/components/Form/InputUploadDropzoneAutoMultiple/Item.vue +283 -282
- package/dist/runtime/components/Form/InputUploadDropzoneAutoMultiple/index.vue +13 -4
- package/dist/runtime/components/Form/InputUploadDropzoneImageAutoMultiple/index.vue +134 -0
- package/dist/runtime/components/Form/InputUploadDropzoneImageAutoMultiple/item.vue +198 -0
- package/dist/runtime/components/Form/InputUploadDropzoneImageAutoMultiple/types.d.ts +20 -0
- package/dist/runtime/components/Form/InputUploadDropzoneImageAutoMultiple/types.mjs +0 -0
- package/dist/runtime/components/Form/InputUploadFileClassic/index.vue +5 -3
- package/dist/runtime/components/Form/InputUploadFileClassicAuto/index.vue +9 -5
- package/dist/runtime/components/Form/types.d.ts +4 -2
- package/dist/runtime/components/Form/types.mjs +1 -0
- package/dist/runtime/composables/useNotification.d.ts +7 -0
- package/dist/runtime/composables/useNotification.mjs +39 -0
- package/dist/runtime/types/config.d.ts +1 -1
- package/dist/runtime/ui.config/badge.d.ts +3 -1
- package/dist/runtime/ui.config/badge.mjs +1 -9
- package/dist/runtime/ui.config/index.d.ts +1 -0
- package/dist/runtime/ui.config/index.mjs +1 -0
- package/dist/runtime/ui.config/uploadDropzoneImage.d.ts +83 -0
- package/dist/runtime/ui.config/uploadDropzoneImage.mjs +26 -0
- package/dist/runtime/ui.config/uploadFileDropzone.d.ts +4 -0
- package/dist/runtime/ui.config/uploadFileDropzone.mjs +5 -1
- package/package.json +2 -1
|
@@ -34,13 +34,17 @@ export const uploadFileDropzone = {
|
|
|
34
34
|
},
|
|
35
35
|
action: {
|
|
36
36
|
wrapper: "flex items-center space-x-4",
|
|
37
|
+
addingWrapper: "flex size-24 flex-col items-center justify-center overflow-hidden rounded-lg border-[1px] border-dashed p-2 cursor-pointer transition hover:bg-gray-100",
|
|
37
38
|
iconClass: "size-6 text-gray-400 cursor-pointer",
|
|
38
39
|
deleteIconClass: "size-6 text-danger cursor-pointer",
|
|
39
40
|
retryBtnClass: "px-0",
|
|
41
|
+
addingBtnClass: "size-7 text-gray-500",
|
|
42
|
+
addingTextClass: "text-center text-sm text-gray-500",
|
|
40
43
|
previewIcon: "i-ic:outline-remove-red-eye",
|
|
41
44
|
downloadIcon: "i-ic:outline-file-download",
|
|
42
45
|
deleteIcon: "ph:trash",
|
|
43
|
-
retryIcon: "ph:arrow-counter-clockwise"
|
|
46
|
+
retryIcon: "ph:arrow-counter-clockwise",
|
|
47
|
+
addingIcon: "i-material-symbols:add"
|
|
44
48
|
},
|
|
45
49
|
background: {
|
|
46
50
|
default: "bg-white border-gray-border",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finema/core",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.94",
|
|
4
4
|
"repository": "https://gitlab.finema.co/finema/ui-kit",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Finema Dev Core Team",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|
|
24
24
|
"prepack": "nuxt-module-build build",
|
|
25
|
+
"docs": "nuxi dev docs",
|
|
25
26
|
"dev": "nuxi dev playground",
|
|
26
27
|
"dev:build": "nuxi build playground",
|
|
27
28
|
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|