knt-shared 1.3.0 → 1.4.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.
Files changed (33) hide show
  1. package/dist/components/Form/BasicForm.vue.d.ts +0 -2
  2. package/dist/components/Form/BasicForm.vue.d.ts.map +1 -1
  3. package/dist/components/Form/componentMap.d.ts +83 -0
  4. package/dist/components/Form/componentMap.d.ts.map +1 -1
  5. package/dist/components/Form/types.d.ts +0 -4
  6. package/dist/components/Form/types.d.ts.map +1 -1
  7. package/dist/components/Modal/BasicModal.vue.d.ts +1 -1
  8. package/dist/components/Table/BasicTable.vue.d.ts +29 -1
  9. package/dist/components/Table/BasicTable.vue.d.ts.map +1 -1
  10. package/dist/components/Table/components/componentMap.d.ts +83 -0
  11. package/dist/components/Table/components/componentMap.d.ts.map +1 -1
  12. package/dist/components/Upload/BasicUpload.vue.d.ts +26 -0
  13. package/dist/components/Upload/BasicUpload.vue.d.ts.map +1 -1
  14. package/dist/components/Upload/components/SortableFileItem.vue.d.ts +59 -0
  15. package/dist/components/Upload/components/SortableFileItem.vue.d.ts.map +1 -0
  16. package/dist/components/Upload/components/SortableFileList.vue.d.ts +52 -0
  17. package/dist/components/Upload/components/SortableFileList.vue.d.ts.map +1 -0
  18. package/dist/components/Upload/components/VideoPreview.vue.d.ts +66 -0
  19. package/dist/components/Upload/components/VideoPreview.vue.d.ts.map +1 -0
  20. package/dist/components/Upload/components/VideoPreviewModal.vue.d.ts +70 -0
  21. package/dist/components/Upload/components/VideoPreviewModal.vue.d.ts.map +1 -0
  22. package/dist/components/Upload/index.d.ts +3 -1
  23. package/dist/components/Upload/index.d.ts.map +1 -1
  24. package/dist/components/Upload/types.d.ts +42 -0
  25. package/dist/components/Upload/types.d.ts.map +1 -1
  26. package/dist/components/Upload/useUpload.d.ts +16 -0
  27. package/dist/components/Upload/useUpload.d.ts.map +1 -1
  28. package/dist/index.cjs.js +1471 -83
  29. package/dist/index.cjs.js.map +1 -1
  30. package/dist/index.esm.js +1472 -84
  31. package/dist/index.esm.js.map +1 -1
  32. package/dist/style.css +441 -24
  33. package/package.json +1 -1
package/dist/style.css CHANGED
@@ -1,8 +1,385 @@
1
1
 
2
- .basic-upload[data-v-03d56780] {
2
+ .sortable-file-item[data-v-f3ec7e11] {
3
+ position: relative;
4
+ overflow: hidden;
5
+ border: 1px solid var(--color-border-2);
6
+ border-radius: 4px;
7
+ cursor: move;
8
+ transition: all 0.3s;
9
+ user-select: none;
10
+ background-color: var(--color-fill-1);
11
+ }
12
+
13
+ /* 禁用状态 */
14
+ .sortable-file-item.is-disabled[data-v-f3ec7e11] {
15
+ cursor: default;
16
+ opacity: 0.6;
17
+ }
18
+ .file-image[data-v-f3ec7e11] {
19
+ width: 100%;
20
+ height: 100%;
21
+ object-fit: cover;
22
+ display: block;
23
+ }
24
+
25
+ /* 视频文件样式 */
26
+ .sortable-file-item.is-video[data-v-f3ec7e11] {
27
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
28
+ }
29
+ .sortable-file-item.is-video .file-image[data-v-f3ec7e11] {
30
+ opacity: 0;
31
+ }
32
+ .sortable-file-item.is-video[data-v-f3ec7e11]::before {
33
+ content: '▶';
34
+ position: absolute;
35
+ top: 50%;
36
+ left: 50%;
37
+ transform: translate(-50%, -50%);
38
+ font-size: 32px;
39
+ color: rgba(255, 255, 255, 0.9);
40
+ z-index: 1;
41
+ pointer-events: none;
42
+ }
43
+
44
+ /* 拖拽中状态 */
45
+ .sortable-file-item.is-dragging[data-v-f3ec7e11] {
46
+ opacity: 0.5;
47
+ transform: scale(0.95);
48
+ border-color: rgb(var(--primary-6));
49
+ }
50
+
51
+ /* 拖拽目标状态 */
52
+ .sortable-file-item.is-over[data-v-f3ec7e11] {
53
+ border: 2px dashed rgb(var(--primary-6));
54
+ background-color: var(--color-primary-light-1);
55
+ }
56
+
57
+ /* 操作遮罩 */
58
+ .file-mask[data-v-f3ec7e11] {
59
+ position: absolute;
60
+ top: 0;
61
+ left: 0;
62
+ right: 0;
63
+ bottom: 0;
64
+ display: flex;
65
+ align-items: center;
66
+ justify-content: center;
67
+ background-color: rgba(0, 0, 0, 0.5);
68
+ opacity: 0;
69
+ transition: opacity 0.3s;
70
+ }
71
+ .sortable-file-item:hover .file-mask[data-v-f3ec7e11] {
72
+ opacity: 1;
73
+ }
74
+ .file-actions[data-v-f3ec7e11] {
75
+ display: flex;
76
+ gap: 12px;
77
+ }
78
+ .action-icon[data-v-f3ec7e11] {
79
+ color: white;
80
+ font-size: 18px;
81
+ cursor: pointer;
82
+ transition: transform 0.2s;
83
+ }
84
+ .action-icon[data-v-f3ec7e11]:hover {
85
+ transform: scale(1.2);
86
+ }
87
+
88
+ /* 上传进度 */
89
+ .upload-progress[data-v-f3ec7e11] {
90
+ position: absolute;
91
+ bottom: 0;
92
+ left: 0;
93
+ right: 0;
94
+ padding: 8px;
95
+ background-color: rgba(255, 255, 255, 0.95);
96
+ }
97
+
98
+ /* 上传中状态 */
99
+ .sortable-file-item.is-uploading[data-v-f3ec7e11] {
100
+ cursor: default;
101
+ }
102
+
103
+ /* 错误状态 */
104
+ .sortable-file-item.is-error[data-v-f3ec7e11] {
105
+ border-color: rgb(var(--danger-6));
106
+ }
107
+ .error-tip[data-v-f3ec7e11] {
108
+ position: absolute;
109
+ top: 50%;
110
+ left: 50%;
111
+ transform: translate(-50%, -50%);
112
+ color: rgb(var(--danger-6));
113
+ font-size: 26px;
114
+ }
115
+
116
+ .sortable-file-list[data-v-1ede8f45] {
117
+ display: flex;
118
+ flex-wrap: wrap;
119
+ gap: 8px;
120
+ }
121
+
122
+ .video-preview[data-v-4056caea] {
123
+ width: 100%;
124
+ max-width: 100%;
125
+ background: #000;
126
+ border-radius: 4px;
127
+ overflow: hidden;
128
+ position: relative;
129
+ }
130
+ .video-preview.fullscreen[data-v-4056caea] {
131
+ border-radius: 0;
132
+ }
133
+ .video-container[data-v-4056caea] {
134
+ position: relative;
135
+ width: 100%;
136
+ background: #000;
137
+ cursor: pointer;
138
+ }
139
+ video[data-v-4056caea] {
3
140
  width: 100%;
141
+ height: auto;
142
+ display: block;
143
+ max-height: 70vh;
144
+ }
145
+ .fullscreen video[data-v-4056caea] {
146
+ max-height: 100vh;
4
147
  }
5
- .upload-card-button[data-v-03d56780] {
148
+ .play-overlay[data-v-4056caea] {
149
+ position: absolute;
150
+ top: 0;
151
+ left: 0;
152
+ right: 0;
153
+ bottom: 0;
154
+ display: flex;
155
+ align-items: center;
156
+ justify-content: center;
157
+ background: rgba(0, 0, 0, 0.3);
158
+ transition: opacity 0.3s;
159
+ }
160
+ .play-button[data-v-4056caea] {
161
+ width: 80px;
162
+ height: 80px;
163
+ border-radius: 50%;
164
+ background: rgba(255, 255, 255, 0.9);
165
+ display: flex;
166
+ align-items: center;
167
+ justify-content: center;
168
+ color: #000;
169
+ transition: transform 0.2s;
170
+ }
171
+ .play-button[data-v-4056caea]:hover {
172
+ transform: scale(1.1);
173
+ }
174
+ .loading-overlay[data-v-4056caea] {
175
+ position: absolute;
176
+ top: 0;
177
+ left: 0;
178
+ right: 0;
179
+ bottom: 0;
180
+ display: flex;
181
+ align-items: center;
182
+ justify-content: center;
183
+ background: rgba(0, 0, 0, 0.5);
184
+ }
185
+ .video-controls[data-v-4056caea] {
186
+ background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
187
+ padding: 12px;
188
+ position: relative;
189
+ }
190
+ .progress-bar-container[data-v-4056caea] {
191
+ padding: 8px 0;
192
+ cursor: pointer;
193
+ margin-bottom: 8px;
194
+ }
195
+ .progress-bar[data-v-4056caea] {
196
+ height: 4px;
197
+ background: rgba(255, 255, 255, 0.3);
198
+ border-radius: 2px;
199
+ position: relative;
200
+ overflow: visible;
201
+ }
202
+ .progress-bar-loaded[data-v-4056caea] {
203
+ position: absolute;
204
+ top: 0;
205
+ left: 0;
206
+ height: 100%;
207
+ background: rgba(255, 255, 255, 0.5);
208
+ border-radius: 2px;
209
+ transition: width 0.2s;
210
+ }
211
+ .progress-bar-played[data-v-4056caea] {
212
+ position: absolute;
213
+ top: 0;
214
+ left: 0;
215
+ height: 100%;
216
+ background: var(--color-primary-light-4, #165dff);
217
+ border-radius: 2px;
218
+ transition: width 0.1s;
219
+ }
220
+ .progress-bar-handle[data-v-4056caea] {
221
+ position: absolute;
222
+ top: 50%;
223
+ width: 12px;
224
+ height: 12px;
225
+ background: #fff;
226
+ border-radius: 50%;
227
+ transform: translate(-50%, -50%);
228
+ cursor: pointer;
229
+ opacity: 0;
230
+ transition: opacity 0.2s;
231
+ }
232
+ .progress-bar-container:hover .progress-bar-handle[data-v-4056caea] {
233
+ opacity: 1;
234
+ }
235
+ .controls-bottom[data-v-4056caea] {
236
+ display: flex;
237
+ align-items: center;
238
+ justify-content: space-between;
239
+ }
240
+ .controls-left[data-v-4056caea],
241
+ .controls-right[data-v-4056caea] {
242
+ display: flex;
243
+ align-items: center;
244
+ gap: 8px;
245
+ }
246
+ .control-button[data-v-4056caea] {
247
+ background: transparent;
248
+ border: none;
249
+ color: #fff;
250
+ cursor: pointer;
251
+ padding: 4px;
252
+ display: flex;
253
+ align-items: center;
254
+ justify-content: center;
255
+ border-radius: 4px;
256
+ transition: background 0.2s;
257
+ font-size: 14px;
258
+ min-width: 32px;
259
+ height: 32px;
260
+ }
261
+ .control-button[data-v-4056caea]:hover {
262
+ background: rgba(255, 255, 255, 0.1);
263
+ }
264
+ .volume-control[data-v-4056caea] {
265
+ position: relative;
266
+ display: flex;
267
+ align-items: center;
268
+ }
269
+ .volume-slider-container[data-v-4056caea] {
270
+ position: absolute;
271
+ bottom: 100%;
272
+ left: 50%;
273
+ transform: translateX(-50%);
274
+ background: rgba(0, 0, 0, 0.9);
275
+ padding: 12px 8px;
276
+ border-radius: 4px;
277
+ margin-bottom: 8px;
278
+ }
279
+ .volume-slider[data-v-4056caea] {
280
+ writing-mode: bt-lr;
281
+ -webkit-appearance: slider-vertical;
282
+ width: 4px;
283
+ height: 80px;
284
+ padding: 0;
285
+ margin: 0;
286
+ }
287
+ .volume-slider[data-v-4056caea]::-webkit-slider-thumb {
288
+ -webkit-appearance: none;
289
+ appearance: none;
290
+ width: 12px;
291
+ height: 12px;
292
+ background: #fff;
293
+ border-radius: 50%;
294
+ cursor: pointer;
295
+ }
296
+ .volume-slider[data-v-4056caea]::-moz-range-thumb {
297
+ width: 12px;
298
+ height: 12px;
299
+ background: #fff;
300
+ border-radius: 50%;
301
+ cursor: pointer;
302
+ border: none;
303
+ }
304
+ .time-display[data-v-4056caea] {
305
+ color: #fff;
306
+ font-size: 13px;
307
+ font-variant-numeric: tabular-nums;
308
+ white-space: nowrap;
309
+ user-select: none;
310
+ }
311
+
312
+ /* 响应式 */
313
+ @media (max-width: 768px) {
314
+ .play-button[data-v-4056caea] {
315
+ width: 60px;
316
+ height: 60px;
317
+ }
318
+ .control-button[data-v-4056caea] {
319
+ min-width: 28px;
320
+ height: 28px;
321
+ }
322
+ .time-display[data-v-4056caea] {
323
+ font-size: 12px;
324
+ }
325
+ }
326
+
327
+ .video-preview-modal .arco-modal {
328
+ max-width: 90vw;
329
+ max-height: 90vh;
330
+ }
331
+ .video-preview-modal .arco-modal-header {
332
+ border-bottom: 1px solid var(--color-border-2);
333
+ padding: 16px 20px;
334
+ }
335
+ .video-preview-modal .arco-modal-body {
336
+ padding: 0;
337
+ max-height: calc(90vh - 60px);
338
+ overflow: hidden;
339
+ }
340
+
341
+ .video-modal-title[data-v-0ae4ec5c] {
342
+ display: flex;
343
+ align-items: center;
344
+ justify-content: space-between;
345
+ width: 100%;
346
+ }
347
+ .file-name[data-v-0ae4ec5c] {
348
+ font-size: 16px;
349
+ font-weight: 500;
350
+ color: var(--color-text-1);
351
+ overflow: hidden;
352
+ text-overflow: ellipsis;
353
+ white-space: nowrap;
354
+ max-width: 600px;
355
+ }
356
+ .video-modal-content[data-v-0ae4ec5c] {
357
+ width: 100%;
358
+ min-width: 400px;
359
+ max-width: 90vw;
360
+ background: #000;
361
+ }
362
+ @media (max-width: 768px) {
363
+ .video-modal-content[data-v-0ae4ec5c] {
364
+ min-width: auto;
365
+ }
366
+ .file-name[data-v-0ae4ec5c] {
367
+ font-size: 14px;
368
+ max-width: 250px;
369
+ }
370
+ }
371
+
372
+ .basic-upload[data-v-b2fe6ba6] {
373
+ width: 100%;
374
+ }
375
+ .sortable-upload-container[data-v-b2fe6ba6] {
376
+ width: 100%;
377
+ display: flex;
378
+ flex-wrap: wrap;
379
+ gap: 8px;
380
+ align-items: flex-start;
381
+ }
382
+ .upload-card-button[data-v-b2fe6ba6] {
6
383
  display: flex;
7
384
  flex-direction: column;
8
385
  align-items: center;
@@ -17,44 +394,84 @@
17
394
  border-color: #e5e7eb;
18
395
  border-radius: 6px;
19
396
  }
20
- .upload-card-button .arco-icon[data-v-03d56780] {
397
+ .upload-card-button .arco-icon[data-v-b2fe6ba6] {
21
398
  font-size: 24px;
22
399
  margin-bottom: 8px;
23
400
  }
24
- .upload-text[data-v-03d56780] {
401
+ .upload-text[data-v-b2fe6ba6] {
25
402
  margin-top: 8px;
26
403
  font-size: 12px;
27
404
  }
28
- .upload-tip[data-v-03d56780] {
405
+ .upload-tip[data-v-b2fe6ba6] {
29
406
  color: var(--color-text-3);
30
407
  font-size: 12px;
31
408
  line-height: 1.5;
32
409
  margin-top: 8px;
33
410
  }
34
- [data-v-03d56780] .arco-upload-list-picture {
35
- width: var(--f530bac6) !important;
36
- height: var(--f530bac6) !important;
37
- line-height: var(--f530bac6) !important;
411
+ .sortable-tip[data-v-b2fe6ba6] {
412
+ width: 100%;
413
+ margin-top: 0;
414
+ }
415
+ [data-v-b2fe6ba6] .arco-upload-list-picture {
416
+ width: var(--v1d2beb5a) !important;
417
+ height: var(--v1d2beb5a) !important;
418
+ line-height: var(--v1d2beb5a) !important;
38
419
  }
39
- [data-v-03d56780] .arco-upload-list-picture img {
420
+ [data-v-b2fe6ba6] .arco-upload-list-picture img {
40
421
  width: 100%;
41
422
  height: 100%;
42
423
  object-fit: cover;
43
424
  }
44
425
 
426
+ /* 视频文件占位处理 - 隐藏破损的图片 */
427
+ [data-v-b2fe6ba6] .arco-upload-list-picture img[src*=".mp4"],[data-v-b2fe6ba6] .arco-upload-list-picture img[src*=".avi"],[data-v-b2fe6ba6] .arco-upload-list-picture img[src*=".mov"],[data-v-b2fe6ba6] .arco-upload-list-picture img[src*=".wmv"],[data-v-b2fe6ba6] .arco-upload-list-picture img[src*=".flv"],[data-v-b2fe6ba6] .arco-upload-list-picture img[src*=".webm"],[data-v-b2fe6ba6] .arco-upload-list-picture img[src*=".mkv"],[data-v-b2fe6ba6] .arco-upload-list-picture img[src*=".m4v"] {
428
+ opacity: 0;
429
+ }
430
+
431
+ /* 视频文件容器添加背景和图标 - 使用 :has() 选择器(现代浏览器) */
432
+ [data-v-b2fe6ba6] .arco-upload-list-picture:has(img[src*=".mp4"]) .arco-upload-list-picture-img,[data-v-b2fe6ba6] .arco-upload-list-picture:has(img[src*=".avi"]) .arco-upload-list-picture-img,[data-v-b2fe6ba6] .arco-upload-list-picture:has(img[src*=".mov"]) .arco-upload-list-picture-img,[data-v-b2fe6ba6] .arco-upload-list-picture:has(img[src*=".wmv"]) .arco-upload-list-picture-img,[data-v-b2fe6ba6] .arco-upload-list-picture:has(img[src*=".flv"]) .arco-upload-list-picture-img,[data-v-b2fe6ba6] .arco-upload-list-picture:has(img[src*=".webm"]) .arco-upload-list-picture-img,[data-v-b2fe6ba6] .arco-upload-list-picture:has(img[src*=".mkv"]) .arco-upload-list-picture-img,[data-v-b2fe6ba6] .arco-upload-list-picture:has(img[src*=".m4v"]) .arco-upload-list-picture-img,[data-v-b2fe6ba6] .arco-upload-list-picture.is-video-file .arco-upload-list-picture-img {
433
+ position: relative;
434
+ display: flex;
435
+ align-items: center;
436
+ justify-content: center;
437
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
438
+ }
439
+
440
+ /* 视频图标 */
441
+ [data-v-b2fe6ba6] .arco-upload-list-picture:has(img[src*=".mp4"]) .arco-upload-list-picture-img::before,[data-v-b2fe6ba6] .arco-upload-list-picture:has(img[src*=".avi"]) .arco-upload-list-picture-img::before,[data-v-b2fe6ba6] .arco-upload-list-picture:has(img[src*=".mov"]) .arco-upload-list-picture-img::before,[data-v-b2fe6ba6] .arco-upload-list-picture:has(img[src*=".wmv"]) .arco-upload-list-picture-img::before,[data-v-b2fe6ba6] .arco-upload-list-picture:has(img[src*=".flv"]) .arco-upload-list-picture-img::before,[data-v-b2fe6ba6] .arco-upload-list-picture:has(img[src*=".webm"]) .arco-upload-list-picture-img::before,[data-v-b2fe6ba6] .arco-upload-list-picture:has(img[src*=".mkv"]) .arco-upload-list-picture-img::before,[data-v-b2fe6ba6] .arco-upload-list-picture:has(img[src*=".m4v"]) .arco-upload-list-picture-img::before,[data-v-b2fe6ba6] .arco-upload-list-picture.is-video-file .arco-upload-list-picture-img::before {
442
+ content: '▶';
443
+ position: absolute;
444
+ font-size: 32px;
445
+ color: rgba(255, 255, 255, 0.9);
446
+ z-index: 1;
447
+ pointer-events: none;
448
+ }
449
+
45
450
  /* 遮罩层 - 修复操作图标位置 */
46
- [data-v-03d56780] .arco-upload-list-picture-mask {
47
- line-height: var(--f530bac6) !important;
451
+ [data-v-b2fe6ba6] .arco-upload-list-picture-mask {
452
+ line-height: var(--v1d2beb5a) !important;
48
453
  }
49
454
 
50
455
  /* 操作按钮容器 - 根据尺寸调整图标大小 */
51
- [data-v-03d56780] .arco-upload-list-picture-operation {
52
- font-size: calc(var(--f530bac6) / 80 * 14px) !important;
456
+ [data-v-b2fe6ba6] .arco-upload-list-picture-operation {
457
+ font-size: calc(var(--v1d2beb5a) / 80 * 14px) !important;
53
458
  }
54
459
 
55
460
  /* 错误提示图标 - 根据尺寸调整图标大小 */
56
- [data-v-03d56780] .arco-upload-list-picture-error-tip .arco-upload-icon-error {
57
- font-size: calc(var(--f530bac6) / 80 * 26px) !important;
461
+ [data-v-b2fe6ba6] .arco-upload-list-picture-error-tip .arco-upload-icon-error {
462
+ font-size: calc(var(--v1d2beb5a) / 80 * 26px) !important;
463
+ }
464
+
465
+ /* 行内视频预览 */
466
+ .inline-video-preview[data-v-b2fe6ba6] {
467
+ margin-top: 16px;
468
+ border: 1px solid var(--color-border-2);
469
+ border-radius: 4px;
470
+ overflow: hidden;
471
+ }
472
+ .close-inline-preview[data-v-b2fe6ba6] {
473
+ width: 100%;
474
+ border-radius: 0;
58
475
  }
59
476
 
60
477
  .basic-text-ellipsis[data-v-05b93f77] {
@@ -78,44 +495,44 @@
78
495
  margin-top: 4px;
79
496
  }
80
497
 
81
- .basic-table-wrapper[data-v-42280842] {
498
+ .basic-table-wrapper[data-v-587bcc14] {
82
499
  background: var(--color-bg-2, #fff);
83
500
  border-radius: 4px;
84
501
  padding: 16px;
85
502
  }
86
- .basic-table-toolbar[data-v-42280842] {
503
+ .basic-table-toolbar[data-v-587bcc14] {
87
504
  display: flex;
88
505
  justify-content: space-between;
89
506
  align-items: center;
90
507
  /* padding: 12px 0; */
91
508
  margin-bottom: 12px;
92
509
  }
93
- .toolbar-left[data-v-42280842] {
510
+ .toolbar-left[data-v-587bcc14] {
94
511
  display: flex;
95
512
  align-items: center;
96
513
  }
97
- .toolbar-title[data-v-42280842] {
514
+ .toolbar-title[data-v-587bcc14] {
98
515
  font-size: 16px;
99
516
  font-weight: 600;
100
517
  color: var(--color-text-1, #1d2129);
101
518
  }
102
- .toolbar-right[data-v-42280842] {
519
+ .toolbar-right[data-v-587bcc14] {
103
520
  display: flex;
104
521
  align-items: center;
105
522
  }
106
- .basic-table-search[data-v-42280842] {
523
+ .basic-table-search[data-v-587bcc14] {
107
524
  /* margin-bottom: 16px; */
108
525
  /* padding: 16px; */
109
526
  background: var(--color-bg-1, #fff);
110
527
  border-radius: 4px;
111
528
  padding: 10px 0;
112
529
  }
113
- .column-setting[data-v-42280842] {
530
+ .column-setting[data-v-587bcc14] {
114
531
  width: 200px;
115
532
  max-height: 400px;
116
533
  overflow-y: auto;
117
534
  }
118
- .column-setting-item[data-v-42280842] {
535
+ .column-setting-item[data-v-587bcc14] {
119
536
  padding: 8px 0;
120
537
  }
121
538
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "knt-shared",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "description": "KNT共享组件库和工具函数",
5
5
  "author": "hss",
6
6
  "main": "dist/index.cjs.js",