@cyberpunk-vue/components 1.13.9 → 1.13.11
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/dialog/index.d.ts +3 -3
- package/dist/dialog/src/dialog.vue.d.ts +1 -1
- package/dist/image/index.d.ts +12 -12
- package/dist/image/src/image.d.ts +46 -7
- package/dist/image/src/image.vue.d.ts +5 -5
- package/dist/image-preview/index.d.ts +237 -0
- package/dist/image-preview/src/image-preview.d.ts +45 -1
- package/dist/image-preview/src/image-preview.vue.d.ts +18 -29
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1045 -999
- package/dist/upload/index.d.ts +3 -3
- package/dist/upload/src/upload.vue.d.ts +1 -1
- package/package.json +4 -4
package/dist/upload/index.d.ts
CHANGED
|
@@ -168,8 +168,8 @@ export declare const CpUpload: import('../utils').SFCWithInstall<{
|
|
|
168
168
|
readonly drag: boolean;
|
|
169
169
|
readonly showInnerStripe: boolean;
|
|
170
170
|
readonly multiple: boolean;
|
|
171
|
-
readonly preview: boolean;
|
|
172
171
|
readonly download: boolean;
|
|
172
|
+
readonly preview: boolean;
|
|
173
173
|
readonly action: string;
|
|
174
174
|
readonly headers: Record<string, string>;
|
|
175
175
|
readonly accept: string;
|
|
@@ -344,8 +344,8 @@ export declare const CpUpload: import('../utils').SFCWithInstall<{
|
|
|
344
344
|
readonly drag: boolean;
|
|
345
345
|
readonly showInnerStripe: boolean;
|
|
346
346
|
readonly multiple: boolean;
|
|
347
|
-
readonly preview: boolean;
|
|
348
347
|
readonly download: boolean;
|
|
348
|
+
readonly preview: boolean;
|
|
349
349
|
readonly action: string;
|
|
350
350
|
readonly headers: Record<string, string>;
|
|
351
351
|
readonly accept: string;
|
|
@@ -522,8 +522,8 @@ export declare const CpUpload: import('../utils').SFCWithInstall<{
|
|
|
522
522
|
readonly drag: boolean;
|
|
523
523
|
readonly showInnerStripe: boolean;
|
|
524
524
|
readonly multiple: boolean;
|
|
525
|
-
readonly preview: boolean;
|
|
526
525
|
readonly download: boolean;
|
|
526
|
+
readonly preview: boolean;
|
|
527
527
|
readonly action: string;
|
|
528
528
|
readonly headers: Record<string, string>;
|
|
529
529
|
readonly accept: string;
|
|
@@ -319,8 +319,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
319
319
|
readonly drag: boolean;
|
|
320
320
|
readonly showInnerStripe: boolean;
|
|
321
321
|
readonly multiple: boolean;
|
|
322
|
-
readonly preview: boolean;
|
|
323
322
|
readonly download: boolean;
|
|
323
|
+
readonly preview: boolean;
|
|
324
324
|
readonly action: string;
|
|
325
325
|
readonly headers: Record<string, string>;
|
|
326
326
|
readonly accept: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyberpunk-vue/components",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.11",
|
|
4
4
|
"description": "Cyberpunk Vue components - A futuristic Vue 3 component library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@floating-ui/dom": "^1.7.6",
|
|
27
27
|
"dayjs": "^1.11.20",
|
|
28
|
-
"@cyberpunk-vue/
|
|
29
|
-
"@cyberpunk-vue/
|
|
30
|
-
"@cyberpunk-vue/theme-chalk": "1.13.
|
|
28
|
+
"@cyberpunk-vue/hooks": "1.13.11",
|
|
29
|
+
"@cyberpunk-vue/constants": "1.13.11",
|
|
30
|
+
"@cyberpunk-vue/theme-chalk": "1.13.11"
|
|
31
31
|
},
|
|
32
32
|
"author": "Juxest",
|
|
33
33
|
"license": "MIT",
|