@das-fed/upf-ui 6.4.0-dev.127 → 6.4.0-dev.129
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/package.json +5 -5
- package/packages/components/cascader/index.js +180 -165
- package/packages/components/cascader/index.js.gz +0 -0
- package/packages/components/cascader/style.css +1 -1
- package/packages/components/cascader/style.css.gz +0 -0
- package/packages/components/checkbox/index.d.ts +12 -0
- package/packages/components/checkbox/index.js +99 -92
- package/packages/components/checkbox/index.js.gz +0 -0
- package/packages/components/checkbox/src/Index.vue.d.ts +7 -2
- package/packages/components/checkbox/style.css +1 -1
- package/packages/components/checkbox/style.css.gz +0 -0
- package/packages/components/image-viewer/index.d.ts +1 -0
- package/packages/components/image-viewer/index.js +938 -420
- package/packages/components/image-viewer/index.js.gz +0 -0
- package/packages/components/image-viewer/src/Index.vue.d.ts +1 -0
- package/packages/components/image-viewer/src/type.d.ts +3 -0
- package/packages/components/image-viewer/style.css +1 -1
- package/packages/components/image-viewer/style.css.gz +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import '@das-fed/upf-ui/packages/components/checkbox/style.css';
|
|
2
|
-
import { defineComponent as
|
|
2
|
+
import { defineComponent as Z, computed as m, reactive as _, toRefs as ee, watchEffect as ae, watch as le, useSlots as oe, ref as K, onMounted as se, createElementBlock as u, openBlock as o, createBlock as E, createCommentVNode as c, unref as r, mergeProps as P, isRef as U, withCtx as W, withDirectives as y, normalizeStyle as g, renderSlot as w, normalizeClass as n, Fragment as C, renderList as $, createElementVNode as A, createTextVNode as M, toDisplayString as p, createVNode as j } from "vue";
|
|
3
3
|
import { withInstall as te } from "@das-fed/upf-utils/with-install/index";
|
|
4
4
|
import { CheckboxGroup as ue } from "ant-design-vue/es";
|
|
5
5
|
import "ant-design-vue/es/checkbox/style/css";
|
|
6
|
-
import { Checkbox as
|
|
7
|
-
import { DasAutoRegisterIcon as
|
|
6
|
+
import { Checkbox as G } from "ant-design-vue";
|
|
7
|
+
import { DasAutoRegisterIcon as re, DasIcon as H } from "@das-fed/upf-ui/packages/components/icon/index";
|
|
8
8
|
import { vDasTooltip as x } from "@das-fed/upf-ui/packages/components/text-tooltip/index";
|
|
9
|
-
import { useModelValue as
|
|
10
|
-
import { setThemeRule as
|
|
9
|
+
import { useModelValue as J } from "@das-fed/upf-utils/vue";
|
|
10
|
+
import { setThemeRule as ie } from "@das-fed/upf-web/packages/theme/index";
|
|
11
11
|
const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick", "onBlur", "tabindex"], fe = {
|
|
12
12
|
key: 0,
|
|
13
13
|
class: "square-select-icon"
|
|
@@ -23,7 +23,7 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
23
23
|
}, ke = {
|
|
24
24
|
key: 7,
|
|
25
25
|
class: "das-checkbox-overlay-error-label-content"
|
|
26
|
-
}, me = { class: "label" }, ye = /* @__PURE__ */
|
|
26
|
+
}, me = { class: "label" }, ye = /* @__PURE__ */ Z({
|
|
27
27
|
__name: "Index",
|
|
28
28
|
props: {
|
|
29
29
|
modelValue: { default: null },
|
|
@@ -51,23 +51,23 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
51
51
|
},
|
|
52
52
|
emits: ["change", "update:modelValue", "update:indeterminate"],
|
|
53
53
|
setup(T, { emit: B }) {
|
|
54
|
-
|
|
54
|
+
re({
|
|
55
55
|
select: import("@das-fed/upf-ui/packages/icons/select")
|
|
56
56
|
});
|
|
57
|
-
const s = T,
|
|
57
|
+
const s = T, D = m(() => s.noSetDefaultVal ? "" : "-"), F = _({
|
|
58
58
|
checkboxValue: null,
|
|
59
59
|
isFocus: !1,
|
|
60
60
|
checkboxLayout: "",
|
|
61
61
|
checkboxIndeterminate: !1
|
|
62
62
|
});
|
|
63
|
-
let { checkboxValue: t, isFocus:
|
|
64
|
-
const
|
|
65
|
-
|
|
63
|
+
let { checkboxValue: t, isFocus: S, checkboxIndeterminate: v } = ee(F);
|
|
64
|
+
const z = s.layout, k = B;
|
|
65
|
+
ae(() => {
|
|
66
66
|
t.value = s.modelValue, v.value = s.indeterminate, s.checkboxType == "default" && s.optionType == "default" && s.modelValue && (v.value = !1);
|
|
67
|
-
}),
|
|
67
|
+
}), le(t, (e) => {
|
|
68
68
|
k("update:modelValue", e);
|
|
69
69
|
});
|
|
70
|
-
const f =
|
|
70
|
+
const f = J(s, "defaultProps"), V = J(s, "options"), b = m(() => V.value.length ? V.value.map((e) => {
|
|
71
71
|
var l;
|
|
72
72
|
return {
|
|
73
73
|
value: e[f.value.value],
|
|
@@ -79,19 +79,19 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
79
79
|
};
|
|
80
80
|
}) : []), N = () => {
|
|
81
81
|
v && (v.value = !1, k("update:indeterminate", v.value), k("update:modelValue", t.value)), k("change", t.value);
|
|
82
|
-
},
|
|
83
|
-
if (!
|
|
82
|
+
}, Q = s.disabled, X = b.value.some((e) => !!e.mutual), I = (e, l) => {
|
|
83
|
+
if (!Q)
|
|
84
84
|
if (e == "group") {
|
|
85
85
|
if (l.disabled) return;
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
}), l.checked = !0) : (l.checked = !l.checked, b.value.forEach((
|
|
89
|
-
|
|
90
|
-
})) : l.checked = !l.checked, l.isFocus = !0, t.value = b.value.filter((
|
|
86
|
+
X ? l.mutual ? (b.value.forEach((i) => {
|
|
87
|
+
i.checked = !1;
|
|
88
|
+
}), l.checked = !0) : (l.checked = !l.checked, b.value.forEach((i) => {
|
|
89
|
+
i.mutual && (i.checked = !b.value.some((a) => a.checked));
|
|
90
|
+
})) : l.checked = !l.checked, l.isFocus = !0, t.value = b.value.filter((i) => i.checked).map((i) => i.value), k("change", t.value);
|
|
91
91
|
} else
|
|
92
|
-
t.value = !t.value,
|
|
93
|
-
},
|
|
94
|
-
var e, l,
|
|
92
|
+
t.value = !t.value, S.value = !0, k("change", t.value);
|
|
93
|
+
}, L = m(() => {
|
|
94
|
+
var e, l, i;
|
|
95
95
|
if (!s.isView) return [];
|
|
96
96
|
if ((!((e = V.value) != null && e.length) || !((l = t.value) != null && l.length)) && s.checkboxType == "group") return [];
|
|
97
97
|
if (s.checkboxType == "group")
|
|
@@ -101,9 +101,9 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
101
101
|
});
|
|
102
102
|
{
|
|
103
103
|
if (!t.value) return [];
|
|
104
|
-
const a =
|
|
104
|
+
const a = oe();
|
|
105
105
|
let d = null;
|
|
106
|
-
return a && a.default && ((
|
|
106
|
+
return a && a.default && ((i = a.default()) == null ? void 0 : i.length) == 0 && (d = a.default()[0].children), [
|
|
107
107
|
{
|
|
108
108
|
value: t.value,
|
|
109
109
|
label: d
|
|
@@ -111,37 +111,37 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
111
111
|
];
|
|
112
112
|
}
|
|
113
113
|
}), O = (e, l) => {
|
|
114
|
-
e == "group" ? l.isFocus = !1 :
|
|
115
|
-
},
|
|
116
|
-
let e = `${Number(String(
|
|
114
|
+
e == "group" ? l.isFocus = !1 : S.value = !1;
|
|
115
|
+
}, Y = m(() => s.maxWidth ? s.maxWidth : s.width), h = m(() => {
|
|
116
|
+
let e = `${Number(String(Y.value).split("px")[0])}`;
|
|
117
117
|
if (s.maxWidth)
|
|
118
118
|
return `max-width:${e}px`;
|
|
119
119
|
if (s.width)
|
|
120
120
|
return Number(e) > 72 && s.maxWidth ? `width:${e};max-width:${e}px;` : `width:${e}px`;
|
|
121
|
-
}),
|
|
122
|
-
return
|
|
121
|
+
}), R = K(null);
|
|
122
|
+
return se(() => {
|
|
123
123
|
setTimeout(() => {
|
|
124
|
-
var l,
|
|
125
|
-
const e = (
|
|
124
|
+
var l, i;
|
|
125
|
+
const e = (i = (l = R.value) == null ? void 0 : l.$el) == null ? void 0 : i.querySelectorAll(".ant-checkbox-input");
|
|
126
126
|
e && e.length && e.forEach((a) => a.setAttribute("tabindex", "-1"));
|
|
127
127
|
}, 1e3);
|
|
128
128
|
}), (e, l) => {
|
|
129
|
-
const
|
|
129
|
+
const i = ue;
|
|
130
130
|
return o(), u("div", de, [
|
|
131
|
-
e.checkboxType == "default" && e.optionType == "default" && !e.isView ? (o(),
|
|
131
|
+
e.checkboxType == "default" && e.optionType == "default" && !e.isView ? (o(), E(r(G), P({
|
|
132
132
|
key: 0,
|
|
133
133
|
ref_key: "checkboxRef",
|
|
134
|
-
ref:
|
|
135
|
-
checked:
|
|
134
|
+
ref: R,
|
|
135
|
+
checked: r(t),
|
|
136
136
|
"onUpdate:checked": l[0] || (l[0] = (a) => U(t) ? t.value = a : t = a),
|
|
137
137
|
disabled: e.disabled
|
|
138
138
|
}, e.$attrs, {
|
|
139
139
|
optionType: e.optionType,
|
|
140
|
-
indeterminate:
|
|
140
|
+
indeterminate: r(v),
|
|
141
141
|
onChange: N,
|
|
142
142
|
class: [e.size, { nolabel: Object.keys(e.$slots).length == 0 }]
|
|
143
143
|
}), {
|
|
144
|
-
default:
|
|
144
|
+
default: W(() => [
|
|
145
145
|
y((o(), u(
|
|
146
146
|
"div",
|
|
147
147
|
{
|
|
@@ -149,12 +149,12 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
149
149
|
style: g([h.value, { color: "#666" }])
|
|
150
150
|
},
|
|
151
151
|
[
|
|
152
|
-
|
|
152
|
+
w(e.$slots, "default", {}, void 0, !0)
|
|
153
153
|
],
|
|
154
154
|
4
|
|
155
155
|
/* STYLE */
|
|
156
156
|
)), [
|
|
157
|
-
[
|
|
157
|
+
[r(x)]
|
|
158
158
|
])
|
|
159
159
|
]),
|
|
160
160
|
_: 3
|
|
@@ -169,66 +169,73 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
169
169
|
e.size,
|
|
170
170
|
{
|
|
171
171
|
"das-ui-checkbox-square--disabled": e.disabled,
|
|
172
|
-
"das-ui-checkbox-square--checked": !!
|
|
173
|
-
"das-ui-checkbox-square--focus":
|
|
172
|
+
"das-ui-checkbox-square--checked": !!r(t),
|
|
173
|
+
"das-ui-checkbox-square--focus": r(S),
|
|
174
174
|
"ellipsis-square-checkbox": !!h.value
|
|
175
175
|
}
|
|
176
176
|
]),
|
|
177
177
|
tabindex: "0",
|
|
178
|
-
onClick: l[1] || (l[1] = (a) =>
|
|
178
|
+
onClick: l[1] || (l[1] = (a) => I("default", "")),
|
|
179
179
|
onBlur: l[2] || (l[2] = (a) => O("default", "")),
|
|
180
180
|
style: g(h.value)
|
|
181
181
|
},
|
|
182
182
|
[
|
|
183
183
|
y((o(), u("div", ce, [
|
|
184
|
-
|
|
184
|
+
w(e.$slots, "default", {}, void 0, !0)
|
|
185
185
|
])), [
|
|
186
|
-
[
|
|
186
|
+
[r(x)]
|
|
187
187
|
])
|
|
188
188
|
],
|
|
189
189
|
38
|
|
190
190
|
/* CLASS, STYLE, NEED_HYDRATION */
|
|
191
191
|
)) : c("v-if", !0),
|
|
192
|
-
e.checkboxType == "group" && e.optionType == "default" && !e.isView ? (o(),
|
|
192
|
+
e.checkboxType == "group" && e.optionType == "default" && !e.isView ? (o(), E(i, P({
|
|
193
193
|
key: 2,
|
|
194
194
|
ref_key: "checkboxRef",
|
|
195
|
-
ref:
|
|
195
|
+
ref: R
|
|
196
196
|
}, e.$attrs, {
|
|
197
|
-
class: [e.size, { "das-ui-checkbox-vertical":
|
|
198
|
-
value:
|
|
197
|
+
class: [e.size, { "das-ui-checkbox-vertical": r(z) == "vertical" }],
|
|
198
|
+
value: r(t),
|
|
199
199
|
"onUpdate:value": l[3] || (l[3] = (a) => U(t) ? t.value = a : t = a),
|
|
200
200
|
name: e.name,
|
|
201
201
|
onChange: N
|
|
202
202
|
}), {
|
|
203
|
-
default:
|
|
203
|
+
default: W(() => [
|
|
204
204
|
(o(!0), u(
|
|
205
|
-
|
|
205
|
+
C,
|
|
206
206
|
null,
|
|
207
|
-
|
|
207
|
+
$(b.value, (a, d) => (o(), E(r(G), {
|
|
208
208
|
key: d,
|
|
209
209
|
value: a.value,
|
|
210
210
|
"onUpdate:value": (q) => a.value = q,
|
|
211
211
|
disabled: a.disabled || e.disabled
|
|
212
212
|
}, {
|
|
213
|
-
default:
|
|
214
|
-
|
|
213
|
+
default: W(() => [
|
|
214
|
+
A(
|
|
215
215
|
"div",
|
|
216
216
|
{
|
|
217
217
|
class: n(["label", { "label-min-width": !!h.value }]),
|
|
218
218
|
style: g([h.value, { color: "#666" }])
|
|
219
219
|
},
|
|
220
220
|
[
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
221
|
+
w(e.$slots, "content", {
|
|
222
|
+
item: a,
|
|
223
|
+
index: d
|
|
224
|
+
}, () => [
|
|
225
|
+
y((o(), u("div", null, [
|
|
226
|
+
M(
|
|
227
|
+
p(a.label),
|
|
228
|
+
1
|
|
229
|
+
/* TEXT */
|
|
230
|
+
)
|
|
231
|
+
])), [
|
|
232
|
+
[r(x)]
|
|
233
|
+
])
|
|
234
|
+
], !0)
|
|
226
235
|
],
|
|
227
236
|
6
|
|
228
237
|
/* CLASS, STYLE */
|
|
229
|
-
)
|
|
230
|
-
[i(x)]
|
|
231
|
-
])
|
|
238
|
+
)
|
|
232
239
|
]),
|
|
233
240
|
_: 2
|
|
234
241
|
/* DYNAMIC */
|
|
@@ -237,20 +244,20 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
237
244
|
/* KEYED_FRAGMENT */
|
|
238
245
|
))
|
|
239
246
|
]),
|
|
240
|
-
_:
|
|
241
|
-
/*
|
|
247
|
+
_: 3
|
|
248
|
+
/* FORWARDED */
|
|
242
249
|
}, 16, ["class", "value", "name"])) : c("v-if", !0),
|
|
243
250
|
e.checkboxType == "group" && e.optionType == "square" && !e.isView ? (o(), u(
|
|
244
251
|
"div",
|
|
245
252
|
{
|
|
246
253
|
key: 3,
|
|
247
|
-
class: n(["das-ui-checkbox-square-group", [e.size, { "das-ui-checkbox-vertical":
|
|
254
|
+
class: n(["das-ui-checkbox-square-group", [e.size, { "das-ui-checkbox-vertical": r(z) == "vertical" }]])
|
|
248
255
|
},
|
|
249
256
|
[
|
|
250
257
|
(o(!0), u(
|
|
251
|
-
|
|
258
|
+
C,
|
|
252
259
|
null,
|
|
253
|
-
|
|
260
|
+
$(b.value, (a, d) => (o(), u("div", {
|
|
254
261
|
class: n([
|
|
255
262
|
"das-ui-checkbox-square",
|
|
256
263
|
{
|
|
@@ -261,13 +268,13 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
261
268
|
}
|
|
262
269
|
]),
|
|
263
270
|
style: g(h.value),
|
|
264
|
-
onClick: (q) =>
|
|
271
|
+
onClick: (q) => I("group", a),
|
|
265
272
|
onBlur: (q) => O("group", a),
|
|
266
273
|
tabindex: d,
|
|
267
274
|
key: d
|
|
268
275
|
}, [
|
|
269
276
|
a.checked ? (o(), u("span", fe, [
|
|
270
|
-
|
|
277
|
+
j(r(H), {
|
|
271
278
|
size: "mini",
|
|
272
279
|
icon: "select",
|
|
273
280
|
iconColor: "#fff",
|
|
@@ -281,7 +288,7 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
281
288
|
/* TEXT */
|
|
282
289
|
)
|
|
283
290
|
])), [
|
|
284
|
-
[
|
|
291
|
+
[r(x)]
|
|
285
292
|
])
|
|
286
293
|
], 46, ne))),
|
|
287
294
|
128
|
|
@@ -296,26 +303,26 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
296
303
|
"div",
|
|
297
304
|
{
|
|
298
305
|
key: 4,
|
|
299
|
-
class: n(["das-ui-checkbox-view-group", { "flex-view":
|
|
306
|
+
class: n(["das-ui-checkbox-view-group", { "flex-view": L.value.length > 1 }])
|
|
300
307
|
},
|
|
301
308
|
[
|
|
302
|
-
|
|
303
|
-
|
|
309
|
+
L.value.length ? (o(!0), u(
|
|
310
|
+
C,
|
|
304
311
|
{ key: 0 },
|
|
305
|
-
|
|
312
|
+
$(L.value, (a, d) => (o(), u(
|
|
306
313
|
"div",
|
|
307
314
|
{
|
|
308
|
-
class: n(["das-checkbox-item-view", a[
|
|
315
|
+
class: n(["das-checkbox-item-view", a[r(f).label] && "nonelabel-item-view"]),
|
|
309
316
|
key: d
|
|
310
317
|
},
|
|
311
318
|
[
|
|
312
|
-
|
|
319
|
+
j(r(H), {
|
|
313
320
|
size: "mini",
|
|
314
321
|
icon: "select",
|
|
315
322
|
iconColor: "#666",
|
|
316
|
-
class: n(["view-icon", { "m-r-5": a[
|
|
323
|
+
class: n(["view-icon", { "m-r-5": a[r(f).label] || Object.keys(e.$slots).length > 0 }])
|
|
317
324
|
}, null, 8, ["class"]),
|
|
318
|
-
a[
|
|
325
|
+
a[r(f).label] ? y((o(), u(
|
|
319
326
|
"div",
|
|
320
327
|
{
|
|
321
328
|
key: 0,
|
|
@@ -324,7 +331,7 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
324
331
|
},
|
|
325
332
|
[
|
|
326
333
|
M(
|
|
327
|
-
p(a[
|
|
334
|
+
p(a[r(f).label]),
|
|
328
335
|
1
|
|
329
336
|
/* TEXT */
|
|
330
337
|
)
|
|
@@ -332,8 +339,8 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
332
339
|
6
|
|
333
340
|
/* CLASS, STYLE */
|
|
334
341
|
)), [
|
|
335
|
-
[
|
|
336
|
-
]) :
|
|
342
|
+
[r(x)]
|
|
343
|
+
]) : w(e.$slots, "default", { key: 1 }, void 0, !0)
|
|
337
344
|
],
|
|
338
345
|
2
|
|
339
346
|
/* CLASS */
|
|
@@ -343,7 +350,7 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
343
350
|
)) : (o(), u(
|
|
344
351
|
"span",
|
|
345
352
|
be,
|
|
346
|
-
p(
|
|
353
|
+
p(D.value),
|
|
347
354
|
1
|
|
348
355
|
/* TEXT */
|
|
349
356
|
))
|
|
@@ -356,13 +363,13 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
356
363
|
"div",
|
|
357
364
|
{
|
|
358
365
|
key: 5,
|
|
359
|
-
class: n(["das-ui-checkbox-square-group das-ui-checkbox-filter-square-group", { "das-ui-checkbox-vertical":
|
|
366
|
+
class: n(["das-ui-checkbox-square-group das-ui-checkbox-filter-square-group", { "das-ui-checkbox-vertical": r(z) == "vertical" }])
|
|
360
367
|
},
|
|
361
368
|
[
|
|
362
369
|
(o(!0), u(
|
|
363
|
-
|
|
370
|
+
C,
|
|
364
371
|
null,
|
|
365
|
-
|
|
372
|
+
$(b.value, (a, d) => (o(), u("div", {
|
|
366
373
|
class: n([
|
|
367
374
|
"das-ui-checkbox-square",
|
|
368
375
|
{
|
|
@@ -370,7 +377,7 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
370
377
|
"das-ui-checkbox-square--checked": a.checked
|
|
371
378
|
}
|
|
372
379
|
]),
|
|
373
|
-
onClick: (q) =>
|
|
380
|
+
onClick: (q) => I("group", a),
|
|
374
381
|
tabindex: d,
|
|
375
382
|
key: d
|
|
376
383
|
}, p(a.label), 11, he))),
|
|
@@ -391,7 +398,7 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
391
398
|
)) : c("v-if", !0)
|
|
392
399
|
])) : c("v-if", !0),
|
|
393
400
|
e.error && e.errorLabel && e.errorMode === "overlay" ? (o(), u("div", ke, [
|
|
394
|
-
|
|
401
|
+
A(
|
|
395
402
|
"span",
|
|
396
403
|
me,
|
|
397
404
|
p(e.errorLabel),
|
|
@@ -404,10 +411,10 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
404
411
|
}
|
|
405
412
|
}), ge = (T, B) => {
|
|
406
413
|
const s = T.__vccOpts || T;
|
|
407
|
-
for (const [
|
|
408
|
-
s[
|
|
414
|
+
for (const [D, F] of B)
|
|
415
|
+
s[D] = F;
|
|
409
416
|
return s;
|
|
410
|
-
}, xe = /* @__PURE__ */ ge(ye, [["__scopeId", "data-v-
|
|
417
|
+
}, xe = /* @__PURE__ */ ge(ye, [["__scopeId", "data-v-3e689530"]]), Te = {
|
|
411
418
|
"--demo-alert-bg": {
|
|
412
419
|
light: "#fff",
|
|
413
420
|
dark: "rgba(255,255,255,.2)"
|
|
@@ -420,8 +427,8 @@ const de = { class: "das-ui-checkbox" }, ce = { class: "label" }, ne = ["onClick
|
|
|
420
427
|
"--das-ui-radio-bgff": "#fff",
|
|
421
428
|
"--das-ui-radio-shadow": "rgba(85, 130, 243, 0.1)"
|
|
422
429
|
};
|
|
423
|
-
|
|
424
|
-
const Ie = () =>
|
|
430
|
+
ie(Te);
|
|
431
|
+
const Ie = () => K(null), Le = te(xe);
|
|
425
432
|
export {
|
|
426
433
|
Le as DasCheckbox,
|
|
427
434
|
Ie as DasCheckboxRef,
|
|
Binary file
|
|
@@ -14,13 +14,18 @@ declare const blurCheckboxSquare: (type: string, row: any) => void;
|
|
|
14
14
|
declare const textWidth: import("vue").ComputedRef<string | undefined>;
|
|
15
15
|
declare const checkboxRef: import("vue").Ref<any, any>;
|
|
16
16
|
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
17
|
-
declare var __VLS_11: {}, __VLS_13: {},
|
|
17
|
+
declare var __VLS_11: {}, __VLS_13: {}, __VLS_29: {
|
|
18
|
+
item: any;
|
|
19
|
+
index: number;
|
|
20
|
+
}, __VLS_39: {};
|
|
18
21
|
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
19
22
|
default?: (props: typeof __VLS_11) => any;
|
|
20
23
|
} & {
|
|
21
24
|
default?: (props: typeof __VLS_13) => any;
|
|
22
25
|
} & {
|
|
23
|
-
|
|
26
|
+
content?: (props: typeof __VLS_29) => any;
|
|
27
|
+
} & {
|
|
28
|
+
default?: (props: typeof __VLS_39) => any;
|
|
24
29
|
}>;
|
|
25
30
|
declare const __VLS_self: import("vue").DefineComponent<Props, {
|
|
26
31
|
ACheckbox: typeof ACheckbox;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.empty-text[data-v-6bd5a99c]{font-size:var(--das-ui-font-size-md);color:var(--das-ui-radio-font-normal)}.das-ui-checkbox[data-v-6bd5a99c]{position:relative}.das-ui-checkbox .label[data-v-6bd5a99c]{color:var(--das-ui-radio-font-normal)!important;font-size:var(--das-ui-font-size-sm)!important}.das-ui-checkbox .label.label-min-width[data-v-6bd5a99c]{min-width:72px;margin-left:5px}.das-ui-checkbox .das-ui-checkbox-square-group:not(.das-ui-checkbox-filter-square-group) .das-ui-checkbox-square[data-v-6bd5a99c]:not(.das-ui-checkbox-square--checked):not(.das-ui-checkbox-square--disabled):hover{border-color:var(--das-ui-radio-primary);color:var(--das-ui-radio-primary)}.das-ui-checkbox .das-ui-checkbox-square-group:not(.das-ui-checkbox-filter-square-group) .das-ui-checkbox-square.das-ui-checkbox-square--checked[data-v-6bd5a99c]:after{content:"";display:block;position:absolute;bottom:0;right:0;width:0;height:0;border-color:var(--das-ui-radio-primary) transparent;border-width:0 0 17px 17px;border-style:solid}.das-ui-checkbox .das-ui-checkbox-square-group:not(.das-ui-checkbox-filter-square-group) .das-ui-checkbox-square.das-ui-checkbox-square--disabled[data-v-6bd5a99c]{position:relative}.das-ui-checkbox .das-ui-checkbox-square-group:not(.das-ui-checkbox-filter-square-group) .das-ui-checkbox-square.das-ui-checkbox-square--disabled.das-ui-checkbox-square--checked[data-v-6bd5a99c]:after{content:"";display:block;position:absolute;bottom:0;right:0;width:0;height:0;border-color:var(--das-ui-radio-disabled) transparent;border-width:0 0 17px 17px;border-style:solid}.das-ui-checkbox .das-ui-checkbox-square-group:not(.das-ui-checkbox-filter-square-group) .ellipsis-square-checkbox[data-v-6bd5a99c]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.das-ui-checkbox .das-ui-checkbox-square[data-v-6bd5a99c]{cursor:pointer;height:32px;width:fit-content;line-height:32px;padding:0 12px;box-sizing:border-box;border:1px solid var(--das-ui-radio-border-normal);border-radius:2px;color:var(--das-ui-radio-font-normal);font-size:var(--das-ui-font-size-sm);font-weight:500;position:relative}.das-ui-checkbox .das-ui-checkbox-square.ellipsis-square-checkbox[data-v-6bd5a99c]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.das-ui-checkbox .das-ui-checkbox-square .square-select-icon[data-v-6bd5a99c]{position:absolute;bottom:0;right:0;z-index:10;display:flex}.das-ui-checkbox .das-ui-checkbox-square .square-select-icon .view-icon[data-v-6bd5a99c]{width:10px!important;height:10px!important}.das-ui-checkbox .das-ui-checkbox-square.das-ui-checkbox-square--checked[data-v-6bd5a99c]{position:relative}.das-ui-checkbox .das-ui-checkbox-square.das-ui-checkbox-square--checked .square-checked-icon[data-v-6bd5a99c]{position:absolute;bottom:0;right:2px}.das-ui-checkbox .das-ui-checkbox-square.das-ui-checkbox-square--checked.das-ui-checkbox-square--focus[data-v-6bd5a99c]{box-shadow:0 0 0 3px var(--das-ui-radio-shadow)}.das-ui-checkbox .das-ui-checkbox-square.das-ui-checkbox-square--checked[data-v-6bd5a99c]:not(.das-ui-checkbox-square--disabled){border-color:var(--das-ui-radio-primary)}.das-ui-checkbox .das-ui-checkbox-square.das-ui-checkbox-square--checked.das-ui-checkbox-square--disabled[data-v-6bd5a99c]{color:var(--das-ui-radio-font-normal)}.das-ui-checkbox .das-ui-checkbox-square.das-ui-checkbox-square--disabled[data-v-6bd5a99c]{cursor:not-allowed;background-color:var(--das-ui-radio-inner-disabled)}.das-ui-checkbox .das-ui-checkbox-square.das-ui-checkbox-square--disabled[data-v-6bd5a99c]:not([class*=" das-ui-checkbox-square--checked"]){color:var(--das-ui-radio-disabled)}.das-ui-checkbox .das-ui-checkbox-square-group.small .das-ui-checkbox-square[data-v-6bd5a99c]{font-size:var(--das-ui-font-size-sm)}.das-ui-checkbox .das-ui-checkbox-square-group.middle .das-ui-checkbox-square[data-v-6bd5a99c]{font-size:var(--das-ui-font-size-md)}.das-ui-checkbox .das-ui-checkbox-square-group.large .das-ui-checkbox-square[data-v-6bd5a99c]{font-size:var(--das-ui-font-size-lg)}.das-ui-checkbox .das-ui-checkbox-square.small[data-v-6bd5a99c]{font-size:var(--das-ui-font-size-sm)}.das-ui-checkbox .das-ui-checkbox-square.middle[data-v-6bd5a99c]{font-size:var(--das-ui-font-size-md)}.das-ui-checkbox .das-ui-checkbox-square.large[data-v-6bd5a99c]{font-size:var(--das-ui-font-size-lg)}.das-ui-checkbox .ant-checkbox-group.das-ui-checkbox-vertical[data-v-6bd5a99c]{display:flex;flex-direction:column;width:fit-content}.das-ui-checkbox .ant-checkbox-group.das-ui-checkbox-vertical .ant-checkbox-group-item+.ant-checkbox-group-item[data-v-6bd5a99c]{margin-top:10px}.das-ui-checkbox .das-ui-checkbox-square-group[data-v-6bd5a99c]{display:flex;align-items:center}.das-ui-checkbox .das-ui-checkbox-square-group:not(.das-ui-checkbox-vertical) .das-ui-checkbox-square+.das-ui-checkbox-square[data-v-6bd5a99c]{margin-left:10px}.das-ui-checkbox .das-ui-checkbox-square-group.das-ui-checkbox-vertical[data-v-6bd5a99c]{display:flex;flex-direction:column;align-items:flex-start}.das-ui-checkbox .das-ui-checkbox-square-group.das-ui-checkbox-vertical .das-ui-checkbox-square+.das-ui-checkbox-square[data-v-6bd5a99c]{margin-top:10px}.das-ui-checkbox .das-ui-checkbox-filter-square-group .das-ui-checkbox-square[data-v-6bd5a99c]{height:24px;line-height:24px}.das-ui-checkbox .das-ui-checkbox-filter-square-group .das-ui-checkbox-square--checked[data-v-6bd5a99c]{background-color:var(--das-ui-radio-filter-bgcolor);color:var(--das-ui-radio-primary);border-color:var(--das-ui-radio-primary);box-sizing:border-box}.das-ui-checkbox .das-ui-checkbox-filter-square-group .das-ui-checkbox-square[data-v-6bd5a99c]:not(.das-ui-checkbox-square--checked){border-color:transparent}.das-ui-checkbox .das-ui-checkbox-filter-square-group:not(.das-ui-checkbox-vertical) .das-ui-checkbox-square+.das-ui-checkbox-square[data-v-6bd5a99c]{margin-left:24px}.das-ui-checkbox .das-ui-checkbox-view-group[data-v-6bd5a99c]{display:inline-block;position:relative;color:var(--das-ui-radio-font-normal)!important;font-size:var(--das-ui-font-size-sm)!important}.das-ui-checkbox .das-ui-checkbox-view-group .view-icon.m-r-5[data-v-6bd5a99c]{margin-right:5px}.das-ui-checkbox .das-ui-checkbox-view-group.flex-view[data-v-6bd5a99c],.das-ui-checkbox .das-ui-checkbox-view-group .das-checkbox-item-view[data-v-6bd5a99c]{display:flex;align-items:center}.das-ui-checkbox .das-ui-checkbox-view-group .das-checkbox-item-view.label-min-width[data-v-6bd5a99c]{margin-right:4px}.das-ui-checkbox .das-ui-checkbox-view-group .das-checkbox-item-view .label[data-v-6bd5a99c]{max-width:72px;margin-right:16px;font-size:var(--das-ui-font-size-sm);display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;position:relative;color:var(--das-ui-radio-font-normal)!important}.das-ui-checkbox .das-ui-checkbox-view-group .das-checkbox-item-view .label.label-min-width[data-v-6bd5a99c]{min-width:72px;margin-left:5px}.das-ui-checkbox .das-ui-checkbox-view-group .das-checkbox-item-view .label.small[data-v-6bd5a99c]{font-size:var(--das-ui-font-size-sm)}.das-ui-checkbox .das-ui-checkbox-view-group .das-checkbox-item-view .label.middle[data-v-6bd5a99c]{font-size:var(--das-ui-font-size-md)}.das-ui-checkbox .das-ui-checkbox-view-group .das-checkbox-item-view .label.large[data-v-6bd5a99c]{font-size:var(--das-ui-font-size-lg)}.das-ui-checkbox .das-checkbox-error-label-content[data-v-6bd5a99c]{font-size:12px}.das-ui-checkbox .das-checkbox-error-label-content .das-input-success-label[data-v-6bd5a99c]{display:block;color:var(--das-ui-input-success-color);white-space:break-spaces}.das-ui-checkbox .das-checkbox-error-label-content .das-input-error-label[data-v-6bd5a99c]{display:block;color:var(--das-ui-input-error-color);white-space:break-spaces}.das-ui-checkbox .das-checkbox-error-label-content .error-label-overflow[data-v-6bd5a99c]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.das-ui-checkbox .das-checkbox-overlay-error-label-content[data-v-6bd5a99c]{width:100%;position:absolute;top:100%;left:0;background-color:var(--das-ui-color-overlay-error);box-shadow:0 4px 10px #0003;border-radius:1px;padding:2px 8px;box-sizing:border-box;z-index:99;transition:.2s}.das-ui-checkbox .das-checkbox-overlay-error-label-content .label[data-v-6bd5a99c]{font-size:12px;color:var(--das-ui-input-number-overlay-error-color)}.das-ui-checkbox .ant-checkbox-wrapper{font-weight:500}.das-ui-checkbox .ant-checkbox-wrapper.nolabel .ant-checkbox+span{display:none}.das-ui-checkbox .ant-checkbox-wrapper .ant-checkbox-inner{box-sizing:border-box;border-color:var(--das-ui-radio-border-normal)}.das-ui-checkbox .ant-checkbox-wrapper .ant-checkbox-checked:not(.ant-checkbox-disabled) .ant-checkbox-inner{border-color:var(--das-ui-radio-primary);background-color:var(--das-ui-radio-primary)}.das-ui-checkbox .ant-checkbox-wrapper .ant-checkbox:not(.ant-checkbox-indeterminate) .ant-checkbox-inner:after{width:3.5px!important;height:8px!important;top:47%!important;left:3px!important;border-width:1.5px}.das-ui-checkbox .ant-checkbox-wrapper .ant-checkbox-indeterminate.ant-checkbox-disabled .ant-checkbox-inner:after{background-color:var(--das-ui-radio-border-normal)!important}.das-ui-checkbox .ant-checkbox-wrapper .ant-checkbox-indeterminate .ant-checkbox-inner:after{background-color:var(--das-ui-radio-primary)!important}.das-ui-checkbox .ant-checkbox-wrapper .ant-checkbox-inner{width:14px!important;height:14px!important}.das-ui-checkbox .ant-checkbox-wrapper .ant-checkbox+span{color:var(--das-ui-radio-font-normal);padding-left:5px!important;padding-right:16px!important;font-size:var(--das-ui-font-size-sm)}.das-ui-checkbox .ant-checkbox-wrapper.ant-checkbox-wrapper-disabled{color:var(--das-ui-radio-disabled)}.das-ui-checkbox .ant-checkbox-wrapper.ant-checkbox-wrapper-disabled .ant-checkbox+*{color:var(--das-ui-radio-disabled)}.das-ui-checkbox .ant-checkbox-wrapper.ant-checkbox-wrapper-disabled .ant-checkbox-inner{background-color:var(--das-ui-radio-inner-disabled)}.das-ui-checkbox .ant-checkbox-wrapper.ant-checkbox-wrapper-disabled .ant-checkbox-disabled .ant-checkbox-inner:after{border-color:var(--das-ui-radio-border-normal)}.das-ui-checkbox .ant-checkbox-wrapper:not([class*=" ant-checkbox-wrapper-disabled"]):hover .ant-checkbox+*{color:var(--das-ui-radio-primary)}.das-ui-checkbox .ant-checkbox-wrapper:not([class*=" ant-checkbox-wrapper-disabled"]):hover .ant-checkbox-inner{border-color:var(--das-ui-radio-primary)}.das-ui-checkbox .ant-checkbox-group.das-ui-checkbox-vertical{display:flex;flex-direction:column}.das-ui-checkbox .ant-checkbox-group.das-ui-checkbox-vertical .ant-checkbox-group-item+.ant-checkbox-group-item{margin-top:10px}.das-ui-checkbox .ant-checkbox-wrapper{margin-left:0!important}.das-ui-checkbox .ant-checkbox-wrapper.small .ant-checkbox+span,.das-ui-checkbox .ant-checkbox-group.small .ant-checkbox+span{font-size:var(--das-ui-font-size-sm)}.das-ui-checkbox .ant-checkbox-wrapper.middle .ant-checkbox+span,.das-ui-checkbox .ant-checkbox-group.middle .ant-checkbox+span{font-size:var(--das-ui-font-size-md)}.das-ui-checkbox .ant-checkbox-wrapper.large .ant-checkbox+span,.das-ui-checkbox .ant-checkbox-group.large .ant-checkbox+span{font-size:var(--das-ui-font-size-lg)}.ant-checkbox-indeterminate.ant-checkbox-disabled .ant-checkbox-inner:after{background-color:var(--das-ui-radio-inner-disabled)!important}
|
|
1
|
+
.empty-text[data-v-3e689530]{font-size:var(--das-ui-font-size-md);color:var(--das-ui-radio-font-normal)}.das-ui-checkbox[data-v-3e689530]{position:relative}.das-ui-checkbox .label[data-v-3e689530]{color:var(--das-ui-radio-font-normal)!important;font-size:var(--das-ui-font-size-sm)!important}.das-ui-checkbox .label.label-min-width[data-v-3e689530]{min-width:72px;margin-left:5px}.das-ui-checkbox .das-ui-checkbox-square-group:not(.das-ui-checkbox-filter-square-group) .das-ui-checkbox-square[data-v-3e689530]:not(.das-ui-checkbox-square--checked):not(.das-ui-checkbox-square--disabled):hover{border-color:var(--das-ui-radio-primary);color:var(--das-ui-radio-primary)}.das-ui-checkbox .das-ui-checkbox-square-group:not(.das-ui-checkbox-filter-square-group) .das-ui-checkbox-square.das-ui-checkbox-square--checked[data-v-3e689530]:after{content:"";display:block;position:absolute;bottom:0;right:0;width:0;height:0;border-color:var(--das-ui-radio-primary) transparent;border-width:0 0 17px 17px;border-style:solid}.das-ui-checkbox .das-ui-checkbox-square-group:not(.das-ui-checkbox-filter-square-group) .das-ui-checkbox-square.das-ui-checkbox-square--disabled[data-v-3e689530]{position:relative}.das-ui-checkbox .das-ui-checkbox-square-group:not(.das-ui-checkbox-filter-square-group) .das-ui-checkbox-square.das-ui-checkbox-square--disabled.das-ui-checkbox-square--checked[data-v-3e689530]:after{content:"";display:block;position:absolute;bottom:0;right:0;width:0;height:0;border-color:var(--das-ui-radio-disabled) transparent;border-width:0 0 17px 17px;border-style:solid}.das-ui-checkbox .das-ui-checkbox-square-group:not(.das-ui-checkbox-filter-square-group) .ellipsis-square-checkbox[data-v-3e689530]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.das-ui-checkbox .das-ui-checkbox-square[data-v-3e689530]{cursor:pointer;height:32px;width:fit-content;line-height:32px;padding:0 12px;box-sizing:border-box;border:1px solid var(--das-ui-radio-border-normal);border-radius:2px;color:var(--das-ui-radio-font-normal);font-size:var(--das-ui-font-size-sm);font-weight:500;position:relative}.das-ui-checkbox .das-ui-checkbox-square.ellipsis-square-checkbox[data-v-3e689530]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.das-ui-checkbox .das-ui-checkbox-square .square-select-icon[data-v-3e689530]{position:absolute;bottom:0;right:0;z-index:10;display:flex}.das-ui-checkbox .das-ui-checkbox-square .square-select-icon .view-icon[data-v-3e689530]{width:10px!important;height:10px!important}.das-ui-checkbox .das-ui-checkbox-square.das-ui-checkbox-square--checked[data-v-3e689530]{position:relative}.das-ui-checkbox .das-ui-checkbox-square.das-ui-checkbox-square--checked .square-checked-icon[data-v-3e689530]{position:absolute;bottom:0;right:2px}.das-ui-checkbox .das-ui-checkbox-square.das-ui-checkbox-square--checked.das-ui-checkbox-square--focus[data-v-3e689530]{box-shadow:0 0 0 3px var(--das-ui-radio-shadow)}.das-ui-checkbox .das-ui-checkbox-square.das-ui-checkbox-square--checked[data-v-3e689530]:not(.das-ui-checkbox-square--disabled){border-color:var(--das-ui-radio-primary)}.das-ui-checkbox .das-ui-checkbox-square.das-ui-checkbox-square--checked.das-ui-checkbox-square--disabled[data-v-3e689530]{color:var(--das-ui-radio-font-normal)}.das-ui-checkbox .das-ui-checkbox-square.das-ui-checkbox-square--disabled[data-v-3e689530]{cursor:not-allowed;background-color:var(--das-ui-radio-inner-disabled)}.das-ui-checkbox .das-ui-checkbox-square.das-ui-checkbox-square--disabled[data-v-3e689530]:not([class*=" das-ui-checkbox-square--checked"]){color:var(--das-ui-radio-disabled)}.das-ui-checkbox .das-ui-checkbox-square-group.small .das-ui-checkbox-square[data-v-3e689530]{font-size:var(--das-ui-font-size-sm)}.das-ui-checkbox .das-ui-checkbox-square-group.middle .das-ui-checkbox-square[data-v-3e689530]{font-size:var(--das-ui-font-size-md)}.das-ui-checkbox .das-ui-checkbox-square-group.large .das-ui-checkbox-square[data-v-3e689530]{font-size:var(--das-ui-font-size-lg)}.das-ui-checkbox .das-ui-checkbox-square.small[data-v-3e689530]{font-size:var(--das-ui-font-size-sm)}.das-ui-checkbox .das-ui-checkbox-square.middle[data-v-3e689530]{font-size:var(--das-ui-font-size-md)}.das-ui-checkbox .das-ui-checkbox-square.large[data-v-3e689530]{font-size:var(--das-ui-font-size-lg)}.das-ui-checkbox .ant-checkbox-group.das-ui-checkbox-vertical[data-v-3e689530]{display:flex;flex-direction:column;width:fit-content}.das-ui-checkbox .ant-checkbox-group.das-ui-checkbox-vertical .ant-checkbox-group-item+.ant-checkbox-group-item[data-v-3e689530]{margin-top:10px}.das-ui-checkbox .das-ui-checkbox-square-group[data-v-3e689530]{display:flex;align-items:center}.das-ui-checkbox .das-ui-checkbox-square-group:not(.das-ui-checkbox-vertical) .das-ui-checkbox-square+.das-ui-checkbox-square[data-v-3e689530]{margin-left:10px}.das-ui-checkbox .das-ui-checkbox-square-group.das-ui-checkbox-vertical[data-v-3e689530]{display:flex;flex-direction:column;align-items:flex-start}.das-ui-checkbox .das-ui-checkbox-square-group.das-ui-checkbox-vertical .das-ui-checkbox-square+.das-ui-checkbox-square[data-v-3e689530]{margin-top:10px}.das-ui-checkbox .das-ui-checkbox-filter-square-group .das-ui-checkbox-square[data-v-3e689530]{height:24px;line-height:24px}.das-ui-checkbox .das-ui-checkbox-filter-square-group .das-ui-checkbox-square--checked[data-v-3e689530]{background-color:var(--das-ui-radio-filter-bgcolor);color:var(--das-ui-radio-primary);border-color:var(--das-ui-radio-primary);box-sizing:border-box}.das-ui-checkbox .das-ui-checkbox-filter-square-group .das-ui-checkbox-square[data-v-3e689530]:not(.das-ui-checkbox-square--checked){border-color:transparent}.das-ui-checkbox .das-ui-checkbox-filter-square-group:not(.das-ui-checkbox-vertical) .das-ui-checkbox-square+.das-ui-checkbox-square[data-v-3e689530]{margin-left:24px}.das-ui-checkbox .das-ui-checkbox-view-group[data-v-3e689530]{display:inline-block;position:relative;color:var(--das-ui-radio-font-normal)!important;font-size:var(--das-ui-font-size-sm)!important}.das-ui-checkbox .das-ui-checkbox-view-group .view-icon.m-r-5[data-v-3e689530]{margin-right:5px}.das-ui-checkbox .das-ui-checkbox-view-group.flex-view[data-v-3e689530],.das-ui-checkbox .das-ui-checkbox-view-group .das-checkbox-item-view[data-v-3e689530]{display:flex;align-items:center}.das-ui-checkbox .das-ui-checkbox-view-group .das-checkbox-item-view.label-min-width[data-v-3e689530]{margin-right:4px}.das-ui-checkbox .das-ui-checkbox-view-group .das-checkbox-item-view .label[data-v-3e689530]{max-width:72px;margin-right:16px;font-size:var(--das-ui-font-size-sm);display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;position:relative;color:var(--das-ui-radio-font-normal)!important}.das-ui-checkbox .das-ui-checkbox-view-group .das-checkbox-item-view .label.label-min-width[data-v-3e689530]{min-width:72px;margin-left:5px}.das-ui-checkbox .das-ui-checkbox-view-group .das-checkbox-item-view .label.small[data-v-3e689530]{font-size:var(--das-ui-font-size-sm)}.das-ui-checkbox .das-ui-checkbox-view-group .das-checkbox-item-view .label.middle[data-v-3e689530]{font-size:var(--das-ui-font-size-md)}.das-ui-checkbox .das-ui-checkbox-view-group .das-checkbox-item-view .label.large[data-v-3e689530]{font-size:var(--das-ui-font-size-lg)}.das-ui-checkbox .das-checkbox-error-label-content[data-v-3e689530]{font-size:12px}.das-ui-checkbox .das-checkbox-error-label-content .das-input-success-label[data-v-3e689530]{display:block;color:var(--das-ui-input-success-color);white-space:break-spaces}.das-ui-checkbox .das-checkbox-error-label-content .das-input-error-label[data-v-3e689530]{display:block;color:var(--das-ui-input-error-color);white-space:break-spaces}.das-ui-checkbox .das-checkbox-error-label-content .error-label-overflow[data-v-3e689530]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.das-ui-checkbox .das-checkbox-overlay-error-label-content[data-v-3e689530]{width:100%;position:absolute;top:100%;left:0;background-color:var(--das-ui-color-overlay-error);box-shadow:0 4px 10px #0003;border-radius:1px;padding:2px 8px;box-sizing:border-box;z-index:99;transition:.2s}.das-ui-checkbox .das-checkbox-overlay-error-label-content .label[data-v-3e689530]{font-size:12px;color:var(--das-ui-input-number-overlay-error-color)}.das-ui-checkbox .ant-checkbox-wrapper{font-weight:500}.das-ui-checkbox .ant-checkbox-wrapper.nolabel .ant-checkbox+span{display:none}.das-ui-checkbox .ant-checkbox-wrapper .ant-checkbox-inner{box-sizing:border-box;border-color:var(--das-ui-radio-border-normal)}.das-ui-checkbox .ant-checkbox-wrapper .ant-checkbox-checked:not(.ant-checkbox-disabled) .ant-checkbox-inner{border-color:var(--das-ui-radio-primary);background-color:var(--das-ui-radio-primary)}.das-ui-checkbox .ant-checkbox-wrapper .ant-checkbox:not(.ant-checkbox-indeterminate) .ant-checkbox-inner:after{width:3.5px!important;height:8px!important;top:47%!important;left:3px!important;border-width:1.5px}.das-ui-checkbox .ant-checkbox-wrapper .ant-checkbox-indeterminate.ant-checkbox-disabled .ant-checkbox-inner:after{background-color:var(--das-ui-radio-border-normal)!important}.das-ui-checkbox .ant-checkbox-wrapper .ant-checkbox-indeterminate .ant-checkbox-inner:after{background-color:var(--das-ui-radio-primary)!important}.das-ui-checkbox .ant-checkbox-wrapper .ant-checkbox-inner{width:14px!important;height:14px!important}.das-ui-checkbox .ant-checkbox-wrapper .ant-checkbox+span{color:var(--das-ui-radio-font-normal);padding-left:5px!important;padding-right:16px!important;font-size:var(--das-ui-font-size-sm)}.das-ui-checkbox .ant-checkbox-wrapper.ant-checkbox-wrapper-disabled{color:var(--das-ui-radio-disabled)}.das-ui-checkbox .ant-checkbox-wrapper.ant-checkbox-wrapper-disabled .ant-checkbox+*{color:var(--das-ui-radio-disabled)}.das-ui-checkbox .ant-checkbox-wrapper.ant-checkbox-wrapper-disabled .ant-checkbox-inner{background-color:var(--das-ui-radio-inner-disabled)}.das-ui-checkbox .ant-checkbox-wrapper.ant-checkbox-wrapper-disabled .ant-checkbox-disabled .ant-checkbox-inner:after{border-color:var(--das-ui-radio-border-normal)}.das-ui-checkbox .ant-checkbox-wrapper:not([class*=" ant-checkbox-wrapper-disabled"]):hover .ant-checkbox+*{color:var(--das-ui-radio-primary)}.das-ui-checkbox .ant-checkbox-wrapper:not([class*=" ant-checkbox-wrapper-disabled"]):hover .ant-checkbox-inner{border-color:var(--das-ui-radio-primary)}.das-ui-checkbox .ant-checkbox-group.das-ui-checkbox-vertical{display:flex;flex-direction:column}.das-ui-checkbox .ant-checkbox-group.das-ui-checkbox-vertical .ant-checkbox-group-item+.ant-checkbox-group-item{margin-top:10px}.das-ui-checkbox .ant-checkbox-wrapper{margin-left:0!important}.das-ui-checkbox .ant-checkbox-wrapper.small .ant-checkbox+span,.das-ui-checkbox .ant-checkbox-group.small .ant-checkbox+span{font-size:var(--das-ui-font-size-sm)}.das-ui-checkbox .ant-checkbox-wrapper.middle .ant-checkbox+span,.das-ui-checkbox .ant-checkbox-group.middle .ant-checkbox+span{font-size:var(--das-ui-font-size-md)}.das-ui-checkbox .ant-checkbox-wrapper.large .ant-checkbox+span,.das-ui-checkbox .ant-checkbox-group.large .ant-checkbox+span{font-size:var(--das-ui-font-size-lg)}.ant-checkbox-indeterminate.ant-checkbox-disabled .ant-checkbox-inner:after{background-color:var(--das-ui-radio-inner-disabled)!important}
|
|
Binary file
|