knt-shared 1.2.3 → 1.2.4
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/components/Form/componentMap.d.ts +7 -0
- package/dist/components/Form/componentMap.d.ts.map +1 -1
- package/dist/components/Form/useForm.d.ts.map +1 -1
- package/dist/components/Modal/BasicModal.vue.d.ts.map +1 -1
- package/dist/components/Upload/BasicUpload.vue.d.ts.map +1 -1
- package/dist/index.cjs.js +33 -23
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +34 -24
- package/dist/index.esm.js.map +1 -1
- package/dist/style.css +52 -27
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
|
-
.basic-upload[data-v-
|
|
2
|
+
.basic-upload[data-v-c83c45f0] {
|
|
3
3
|
width: 100%;
|
|
4
4
|
}
|
|
5
|
-
.upload-card-button[data-v-
|
|
5
|
+
.upload-card-button[data-v-c83c45f0] {
|
|
6
6
|
display: flex;
|
|
7
7
|
flex-direction: column;
|
|
8
8
|
align-items: center;
|
|
@@ -17,20 +17,45 @@
|
|
|
17
17
|
border-color: #e5e7eb;
|
|
18
18
|
border-radius: 6px;
|
|
19
19
|
}
|
|
20
|
-
.upload-card-button .arco-icon[data-v-
|
|
20
|
+
.upload-card-button .arco-icon[data-v-c83c45f0] {
|
|
21
21
|
font-size: 24px;
|
|
22
22
|
margin-bottom: 8px;
|
|
23
23
|
}
|
|
24
|
-
.upload-text[data-v-
|
|
24
|
+
.upload-text[data-v-c83c45f0] {
|
|
25
25
|
margin-top: 8px;
|
|
26
26
|
font-size: 12px;
|
|
27
27
|
}
|
|
28
|
-
.upload-tip[data-v-
|
|
28
|
+
.upload-tip[data-v-c83c45f0] {
|
|
29
29
|
color: var(--color-text-3);
|
|
30
30
|
font-size: 12px;
|
|
31
31
|
line-height: 1.5;
|
|
32
32
|
margin-top: 8px;
|
|
33
33
|
}
|
|
34
|
+
[data-v-c83c45f0] .arco-upload-list-picture {
|
|
35
|
+
width: var(--v439946ba) !important;
|
|
36
|
+
height: var(--v439946ba) !important;
|
|
37
|
+
line-height: var(--v439946ba) !important;
|
|
38
|
+
}
|
|
39
|
+
[data-v-c83c45f0] .arco-upload-list-picture img {
|
|
40
|
+
width: 100%;
|
|
41
|
+
height: 100%;
|
|
42
|
+
object-fit: cover;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/* 遮罩层 - 修复操作图标位置 */
|
|
46
|
+
[data-v-c83c45f0] .arco-upload-list-picture-mask {
|
|
47
|
+
line-height: var(--v439946ba) !important;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/* 操作按钮容器 - 根据尺寸调整图标大小 */
|
|
51
|
+
[data-v-c83c45f0] .arco-upload-list-picture-operation {
|
|
52
|
+
font-size: calc(var(--v439946ba) / 80 * 14px) !important;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/* 错误提示图标 - 根据尺寸调整图标大小 */
|
|
56
|
+
[data-v-c83c45f0] .arco-upload-list-picture-error-tip .arco-upload-icon-error {
|
|
57
|
+
font-size: calc(var(--v439946ba) / 80 * 26px) !important;
|
|
58
|
+
}
|
|
34
59
|
|
|
35
60
|
.basic-table-wrapper[data-v-04667d35] {
|
|
36
61
|
background: var(--color-bg-2, #fff);
|
|
@@ -75,33 +100,33 @@
|
|
|
75
100
|
padding: 8px 0;
|
|
76
101
|
}
|
|
77
102
|
|
|
78
|
-
.modal-wrapper[data-v-
|
|
79
|
-
|
|
80
|
-
}
|
|
81
|
-
.modal-title-actions[data-v-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
103
|
+
.modal-wrapper[data-v-860bd3ac] {
|
|
104
|
+
padding: 0;
|
|
105
|
+
}
|
|
106
|
+
.modal-title-actions[data-v-860bd3ac] {
|
|
107
|
+
position: absolute;
|
|
108
|
+
right: 0;
|
|
109
|
+
top: 50%;
|
|
110
|
+
transform: translateY(-50%);
|
|
111
|
+
display: flex;
|
|
112
|
+
align-items: center;
|
|
113
|
+
gap: 0.5rem;
|
|
114
|
+
pointer-events: auto;
|
|
90
115
|
}
|
|
91
|
-
.modal-title-actions.has-close[data-v-
|
|
92
|
-
|
|
116
|
+
.modal-title-actions.has-close[data-v-860bd3ac] {
|
|
117
|
+
right: 1.5rem;
|
|
93
118
|
}
|
|
94
|
-
.cursor-help[data-v-
|
|
95
|
-
|
|
119
|
+
.cursor-help[data-v-860bd3ac] {
|
|
120
|
+
cursor: help;
|
|
96
121
|
}
|
|
97
|
-
.cursor-pointer[data-v-
|
|
98
|
-
|
|
122
|
+
.cursor-pointer[data-v-860bd3ac] {
|
|
123
|
+
cursor: pointer;
|
|
99
124
|
}
|
|
100
|
-
.text-gray-400[data-v-
|
|
101
|
-
|
|
125
|
+
.text-gray-400[data-v-860bd3ac] {
|
|
126
|
+
color: #9ca3af;
|
|
102
127
|
}
|
|
103
|
-
.w-full[data-v-
|
|
104
|
-
|
|
128
|
+
.w-full[data-v-860bd3ac] {
|
|
129
|
+
width: 100%;
|
|
105
130
|
}
|
|
106
131
|
|
|
107
132
|
.basic-description[data-v-7c27763b] {
|