@aplus-frontend/ui 6.29.2 → 6.29.3
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/es/src/ap-field/checkbox/index.vue.mjs +20 -20
- package/es/src/ap-field/radio/index.vue.mjs +24 -24
- package/es/src/ap-form/search-form/hooks/use-count-per-row.mjs +27 -26
- package/es/src/version.d.ts +1 -1
- package/es/src/version.mjs +1 -1
- package/lib/src/ap-field/checkbox/index.vue.js +1 -1
- package/lib/src/ap-field/radio/index.vue.js +1 -1
- package/lib/src/ap-form/search-form/hooks/use-count-per-row.js +1 -1
- package/lib/src/version.d.ts +1 -1
- package/lib/src/version.js +1 -1
- package/package.json +1 -1
- package/theme/ag-grid/index.css +6 -0
- package/theme/ap-field/checkbox.css +3 -0
- package/theme/ap-field/checkbox.less +3 -0
- package/theme/ap-field/index.css +6 -0
- package/theme/ap-field/radio.css +3 -0
- package/theme/ap-field/radio.less +3 -0
- package/theme/ap-grid/index.css +6 -0
- package/theme/ap-table/ap-table.css +6 -0
- package/theme/ap-table-modal/index.css +6 -0
- package/theme/batch-input-group/index.css +6 -0
- package/theme/editable-table/index.css +6 -0
- package/theme/index.css +6 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { defineComponent as g, ref as h, onMounted as
|
|
2
|
-
import { isFunction as
|
|
3
|
-
import { Spin as
|
|
1
|
+
import { defineComponent as g, ref as h, onMounted as C, createElementBlock as l, openBlock as o, Fragment as n, unref as e, createTextVNode as u, toDisplayString as m, createBlock as d, mergeProps as V } from "vue";
|
|
2
|
+
import { isFunction as B, isNil as O, omit as q } from "lodash-unified";
|
|
3
|
+
import { Spin as T, CheckboxGroup as U } from "@aplus-frontend/antdv";
|
|
4
4
|
import "../../hooks/index.mjs";
|
|
5
|
-
import { getOptionValue as
|
|
5
|
+
import { getOptionValue as _, getOptionLabel as F } from "./helper.mjs";
|
|
6
6
|
import "../../config-provider/index.mjs";
|
|
7
|
-
import
|
|
8
|
-
import { useNamespace as
|
|
9
|
-
import { useControllableValue as
|
|
10
|
-
const
|
|
7
|
+
import N from "../hooks/use-options.mjs";
|
|
8
|
+
import { useNamespace as A } from "../../config-provider/hooks/use-namespace.mjs";
|
|
9
|
+
import { useControllableValue as S } from "../../hooks/useControllableValue.mjs";
|
|
10
|
+
const I = /* @__PURE__ */ g({
|
|
11
11
|
name: "ApFieldCheckbox",
|
|
12
12
|
inheritAttrs: !1,
|
|
13
13
|
__name: "index",
|
|
@@ -30,38 +30,38 @@ const H = /* @__PURE__ */ g({
|
|
|
30
30
|
},
|
|
31
31
|
emits: ["update:value"],
|
|
32
32
|
setup(c, { emit: f }) {
|
|
33
|
-
const v = f, t = c, { options: p, updateOptions: y } =
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
const v = f, t = c, { options: p, updateOptions: y } = N(t), { b: k, m: x } = A("field-checkbox"), i = h(!1);
|
|
34
|
+
C(() => {
|
|
35
|
+
B(t.request) && (i.value = !0, t.request().then((a) => y(a)).finally(() => {
|
|
36
36
|
i.value = !1;
|
|
37
37
|
}));
|
|
38
38
|
});
|
|
39
|
-
const { value: r, updateValue:
|
|
39
|
+
const { value: r, updateValue: b } = S(
|
|
40
40
|
t,
|
|
41
41
|
v,
|
|
42
42
|
{
|
|
43
43
|
defaultValue: []
|
|
44
44
|
}
|
|
45
45
|
);
|
|
46
|
-
return (a,
|
|
47
|
-
e(
|
|
46
|
+
return (a, j) => a.mode === "read" ? (o(), l(n, { key: 0 }, [
|
|
47
|
+
e(O)(e(r)) ? (o(), l(n, { key: 0 }, [
|
|
48
48
|
u(m(t.emptyText), 1)
|
|
49
49
|
], 64)) : (o(), l(n, { key: 1 }, [
|
|
50
|
-
u(m(e(p)?.filter((s) => e(r).indexOf(e(
|
|
50
|
+
u(m(e(p)?.filter((s) => e(r).indexOf(e(_)(s)) > -1).map((s) => e(F)(s)).join("、") || t.emptyText), 1)
|
|
51
51
|
], 64))
|
|
52
52
|
], 64)) : (o(), l(n, { key: 1 }, [
|
|
53
|
-
i.value ? (o(), d(e(
|
|
53
|
+
i.value ? (o(), d(e(T), {
|
|
54
54
|
key: 0,
|
|
55
55
|
size: "small"
|
|
56
|
-
})) : (o(), d(e(
|
|
56
|
+
})) : (o(), d(e(U), V({ key: 1 }, e(q)(t, ["onUpdate:value", "value", "request", "vertical"]), {
|
|
57
57
|
options: e(p),
|
|
58
58
|
value: e(r),
|
|
59
|
-
class: a.vertical ? e(
|
|
60
|
-
"onUpdate:value": e(
|
|
59
|
+
class: [e(k)(), a.vertical ? e(x)("vertical") : null],
|
|
60
|
+
"onUpdate:value": e(b)
|
|
61
61
|
}), null, 16, ["options", "value", "class", "onUpdate:value"]))
|
|
62
62
|
], 64));
|
|
63
63
|
}
|
|
64
64
|
});
|
|
65
65
|
export {
|
|
66
|
-
|
|
66
|
+
I as default
|
|
67
67
|
};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { Spin as
|
|
1
|
+
import { defineComponent as q, ref as s, onMounted as C, computed as O, unref as e, createElementBlock as p, openBlock as a, Fragment as m, createTextVNode as R, toDisplayString as U, createBlock as d, mergeProps as h } from "vue";
|
|
2
|
+
import { Spin as G, RadioGroup as N } from "@aplus-frontend/antdv";
|
|
3
3
|
import "../../hooks/index.mjs";
|
|
4
|
-
import { isNil as
|
|
5
|
-
import { getOptionValue as
|
|
4
|
+
import { isNil as S, omit as z } from "lodash-unified";
|
|
5
|
+
import { getOptionValue as F, getOptionLabel as A } from "./helper.mjs";
|
|
6
6
|
import "../../config-provider/index.mjs";
|
|
7
|
-
import
|
|
8
|
-
import { useControllableValue as
|
|
9
|
-
import { useNamespace as
|
|
10
|
-
const
|
|
7
|
+
import D from "../hooks/use-options.mjs";
|
|
8
|
+
import { useControllableValue as E } from "../../hooks/useControllableValue.mjs";
|
|
9
|
+
import { useNamespace as L } from "../../config-provider/hooks/use-namespace.mjs";
|
|
10
|
+
const W = /* @__PURE__ */ q({
|
|
11
11
|
name: "ApFieldRadio",
|
|
12
12
|
__name: "index",
|
|
13
13
|
props: {
|
|
@@ -31,39 +31,39 @@ const Q = /* @__PURE__ */ _({
|
|
|
31
31
|
},
|
|
32
32
|
emits: ["update:value"],
|
|
33
33
|
setup(f, { expose: c, emit: v }) {
|
|
34
|
-
const t = f, y = v, l = s(), { options: r, updateOptions: g } =
|
|
35
|
-
|
|
34
|
+
const t = f, y = v, l = s(), { options: r, updateOptions: g } = D(t), { value: u, updateValue: k } = E(t, y), { b: x, m: b } = L("field-radio"), n = s(!1);
|
|
35
|
+
C(() => {
|
|
36
36
|
t.request && (n.value = !0, t.request?.().then((o) => g(o)).finally(() => {
|
|
37
37
|
n.value = !1;
|
|
38
38
|
}));
|
|
39
39
|
});
|
|
40
|
-
const
|
|
40
|
+
const T = O(() => {
|
|
41
41
|
const o = e(u);
|
|
42
|
-
if (
|
|
42
|
+
if (S(o))
|
|
43
43
|
return t.emptyText;
|
|
44
44
|
const i = r.value?.find(
|
|
45
|
-
(
|
|
45
|
+
(_) => o === F(_)
|
|
46
46
|
);
|
|
47
|
-
return
|
|
47
|
+
return A(i) || t.emptyText;
|
|
48
48
|
});
|
|
49
|
-
function
|
|
49
|
+
function B() {
|
|
50
50
|
l.value?.focus();
|
|
51
51
|
}
|
|
52
|
-
function
|
|
52
|
+
function V() {
|
|
53
53
|
l.value?.blur();
|
|
54
54
|
}
|
|
55
55
|
return c({
|
|
56
|
-
focus:
|
|
57
|
-
blur:
|
|
56
|
+
focus: B,
|
|
57
|
+
blur: V
|
|
58
58
|
}), (o, i) => o.mode === "read" ? (a(), p(m, { key: 0 }, [
|
|
59
|
-
|
|
59
|
+
R(U(T.value), 1)
|
|
60
60
|
], 64)) : (a(), p(m, { key: 1 }, [
|
|
61
|
-
n.value ? (a(), d(e(
|
|
61
|
+
n.value ? (a(), d(e(G), {
|
|
62
62
|
key: 0,
|
|
63
63
|
size: "small"
|
|
64
|
-
})) : (a(), d(e(
|
|
64
|
+
})) : (a(), d(e(N), h(
|
|
65
65
|
{ key: 1 },
|
|
66
|
-
e(
|
|
66
|
+
e(z)(t, [
|
|
67
67
|
"value",
|
|
68
68
|
"onUpdate:value",
|
|
69
69
|
"options",
|
|
@@ -75,7 +75,7 @@ const Q = /* @__PURE__ */ _({
|
|
|
75
75
|
ref: l,
|
|
76
76
|
value: e(u),
|
|
77
77
|
options: e(r),
|
|
78
|
-
class: o.vertical ? e(
|
|
78
|
+
class: [e(x)(), o.vertical ? e(b)("vertical") : null],
|
|
79
79
|
"onUpdate:value": e(k)
|
|
80
80
|
}
|
|
81
81
|
), null, 16, ["value", "options", "class", "onUpdate:value"]))
|
|
@@ -83,5 +83,5 @@ const Q = /* @__PURE__ */ _({
|
|
|
83
83
|
}
|
|
84
84
|
});
|
|
85
85
|
export {
|
|
86
|
-
|
|
86
|
+
W as default
|
|
87
87
|
};
|
|
@@ -1,38 +1,39 @@
|
|
|
1
|
-
import { ref as
|
|
2
|
-
import { useResizeObserver as
|
|
1
|
+
import { ref as f, watch as w, computed as n, unref as z } from "vue";
|
|
2
|
+
import { useResizeObserver as g } from "@vueuse/core";
|
|
3
3
|
import { isUndefined as h } from "lodash-unified";
|
|
4
|
-
const l = { xs: 0, sm: 768, md: 1280, lg: 1728 },
|
|
5
|
-
(
|
|
6
|
-
),
|
|
7
|
-
const
|
|
8
|
-
|
|
9
|
-
(
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
4
|
+
const l = { xs: 0, sm: 768, md: 1280, lg: 1728 }, P = Object.entries(l).sort(
|
|
5
|
+
(t, o) => o[1] - t[1]
|
|
6
|
+
), T = (t) => {
|
|
7
|
+
const o = f(0);
|
|
8
|
+
w(
|
|
9
|
+
() => t.resizeTarget,
|
|
10
|
+
(e, r, c) => {
|
|
11
|
+
const i = h(t.resizeTarget) ? document.documentElement : t.resizeTarget, { stop: m } = g(i, (u) => {
|
|
12
|
+
const a = u[0], { width: d } = a.contentRect;
|
|
13
|
+
o.value = d;
|
|
13
14
|
});
|
|
14
|
-
|
|
15
|
-
|
|
15
|
+
c(() => {
|
|
16
|
+
m();
|
|
16
17
|
});
|
|
17
18
|
},
|
|
18
|
-
{ flush: "post" }
|
|
19
|
+
{ flush: "post", immediate: !0 }
|
|
19
20
|
);
|
|
20
|
-
const s =
|
|
21
|
-
for (const [
|
|
22
|
-
if (
|
|
23
|
-
return
|
|
21
|
+
const s = n(() => {
|
|
22
|
+
for (const [e, r] of P)
|
|
23
|
+
if (z(o) > r)
|
|
24
|
+
return e;
|
|
24
25
|
return "md";
|
|
25
26
|
});
|
|
26
|
-
return
|
|
27
|
-
const
|
|
28
|
-
xs:
|
|
29
|
-
sm:
|
|
30
|
-
md:
|
|
31
|
-
lg:
|
|
27
|
+
return n(() => {
|
|
28
|
+
const e = t.countPerRow, r = {
|
|
29
|
+
xs: e - 2,
|
|
30
|
+
sm: e - 1,
|
|
31
|
+
md: e,
|
|
32
|
+
lg: e + 1
|
|
32
33
|
};
|
|
33
|
-
return Math.max(1,
|
|
34
|
+
return Math.max(1, r[s.value]);
|
|
34
35
|
});
|
|
35
36
|
};
|
|
36
37
|
export {
|
|
37
|
-
|
|
38
|
+
T as useCountPerRow
|
|
38
39
|
};
|
package/es/src/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "6.29.
|
|
1
|
+
declare const _default: "6.29.3";
|
|
2
2
|
export default _default;
|
package/es/src/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),r=require("lodash-unified"),s=require("@aplus-frontend/antdv");require("../../hooks/index.js");const i=require("./helper.js");require("../../config-provider/index.js");const
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),r=require("lodash-unified"),s=require("@aplus-frontend/antdv");require("../../hooks/index.js");const i=require("./helper.js");require("../../config-provider/index.js");const y=require("../hooks/use-options.js"),B=require("../../config-provider/hooks/use-namespace.js"),g=require("../../hooks/useControllableValue.js"),q=e.defineComponent({name:"ApFieldCheckbox",inheritAttrs:!1,__name:"index",props:{mode:{default:"edit"},class:{},style:{},defaultValue:{},value:{},onChange:{},"onUpdate:value":{},name:{},prefixCls:{},options:{default:()=>[]},disabled:{type:Boolean,default:void 0},id:{},emptyText:{default:"--"},request:{},vertical:{type:Boolean}},emits:["update:value"],setup(c,{emit:p}){const d=p,t=c,{options:u,updateOptions:f}=y.default(t),{b:m,m:v}=B.useNamespace("field-checkbox"),l=e.ref(!1);e.onMounted(()=>{r.isFunction(t.request)&&(l.value=!0,t.request().then(n=>f(n)).finally(()=>{l.value=!1}))});const{value:o,updateValue:k}=g.useControllableValue(t,d,{defaultValue:[]});return(n,b)=>n.mode==="read"?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.unref(r.isNil)(e.unref(o))?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(e.toDisplayString(t.emptyText),1)],64)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(e.unref(u)?.filter(a=>e.unref(o).indexOf(e.unref(i.getOptionValue)(a))>-1).map(a=>e.unref(i.getOptionLabel)(a)).join("、")||t.emptyText),1)],64))],64)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[l.value?(e.openBlock(),e.createBlock(e.unref(s.Spin),{key:0,size:"small"})):(e.openBlock(),e.createBlock(e.unref(s.CheckboxGroup),e.mergeProps({key:1},e.unref(r.omit)(t,["onUpdate:value","value","request","vertical"]),{options:e.unref(u),value:e.unref(o),class:[e.unref(m)(),n.vertical?e.unref(v)("vertical"):null],"onUpdate:value":e.unref(k)}),null,16,["options","value","class","onUpdate:value"]))],64))}});exports.default=q;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),s=require("@aplus-frontend/antdv");require("../../hooks/index.js");const i=require("lodash-unified"),c=require("./helper.js");require("../../config-provider/index.js");const
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),s=require("@aplus-frontend/antdv");require("../../hooks/index.js");const i=require("lodash-unified"),c=require("./helper.js");require("../../config-provider/index.js");const T=require("../hooks/use-options.js"),_=require("../../hooks/useControllableValue.js"),V=require("../../config-provider/hooks/use-namespace.js"),h=e.defineComponent({name:"ApFieldRadio",__name:"index",props:{mode:{default:"edit"},class:{},style:{},prefixCls:{},value:{},size:{},options:{},disabled:{type:Boolean,default:void 0},name:{},buttonStyle:{},id:{},optionType:{},onChange:{},"onUpdate:value":{},emptyText:{default:"--"},request:{},vertical:{type:Boolean,default:!1}},emits:["update:value"],setup(p,{expose:d,emit:f}){const t=p,v=f,n=e.ref(),{options:a,updateOptions:m}=T.default(t),{value:l,updateValue:y}=_.useControllableValue(t,v),{b:k,m:q}=V.useNamespace("field-radio"),u=e.ref(!1);e.onMounted(()=>{t.request&&(u.value=!0,t.request?.().then(o=>m(o)).finally(()=>{u.value=!1}))});const g=e.computed(()=>{const o=e.unref(l);if(i.isNil(o))return t.emptyText;const r=a.value?.find(x=>o===c.getOptionValue(x));return c.getOptionLabel(r)||t.emptyText});function b(){n.value?.focus()}function B(){n.value?.blur()}return d({focus:b,blur:B}),(o,r)=>o.mode==="read"?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(e.toDisplayString(g.value),1)],64)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[u.value?(e.openBlock(),e.createBlock(e.unref(s.Spin),{key:0,size:"small"})):(e.openBlock(),e.createBlock(e.unref(s.RadioGroup),e.mergeProps({key:1},e.unref(i.omit)(t,["value","onUpdate:value","options","request","vertical"]),{ref_key:"radioGroupRef",ref:n,value:e.unref(l),options:e.unref(a),class:[e.unref(k)(),o.vertical?e.unref(q)("vertical"):null],"onUpdate:value":e.unref(y)}),null,16,["value","options","class","onUpdate:value"]))],64))}});exports.default=h;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("vue"),l=require("@vueuse/core"),f=require("lodash-unified"),g={xs:0,sm:768,md:1280,lg:1728},w=Object.entries(g).sort((t,n)=>n[1]-t[1]),h=t=>{const n=o.ref(0);o.watch(()=>t.resizeTarget,(e,r,c)=>{const u=f.isUndefined(t.resizeTarget)?document.documentElement:t.resizeTarget,{stop:i}=l.useResizeObserver(u,a=>{const d=a[0],{width:m}=d.contentRect;n.value=m});c(()=>{i()})},{flush:"post",immediate:!0});const s=o.computed(()=>{for(const[e,r]of w)if(o.unref(n)>r)return e;return"md"});return o.computed(()=>{const e=t.countPerRow,r={xs:e-2,sm:e-1,md:e,lg:e+1};return Math.max(1,r[s.value])})};exports.useCountPerRow=h;
|
package/lib/src/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "6.29.
|
|
1
|
+
declare const _default: "6.29.3";
|
|
2
2
|
export default _default;
|
package/lib/src/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="6.29.
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="6.29.3";exports.default=e;
|
package/package.json
CHANGED
package/theme/ag-grid/index.css
CHANGED
|
@@ -455,6 +455,9 @@
|
|
|
455
455
|
display: flex;
|
|
456
456
|
margin-block-end: 12px;
|
|
457
457
|
}
|
|
458
|
+
.aplus-field-checkbox .ant-checkbox-disabled + span {
|
|
459
|
+
color: unset;
|
|
460
|
+
}
|
|
458
461
|
.aplus-field-number-label-left {
|
|
459
462
|
padding-right: 4px;
|
|
460
463
|
}
|
|
@@ -465,6 +468,9 @@
|
|
|
465
468
|
display: flex;
|
|
466
469
|
margin-block-end: 12px;
|
|
467
470
|
}
|
|
471
|
+
.aplus-field-radio .ant-radio-wrapper-disabled {
|
|
472
|
+
color: unset;
|
|
473
|
+
}
|
|
468
474
|
.aplus-field-text-area {
|
|
469
475
|
white-space: pre-wrap;
|
|
470
476
|
word-wrap: break-word;
|
package/theme/ap-field/index.css
CHANGED
|
@@ -51,6 +51,9 @@
|
|
|
51
51
|
display: flex;
|
|
52
52
|
margin-block-end: 12px;
|
|
53
53
|
}
|
|
54
|
+
.aplus-field-checkbox .ant-checkbox-disabled + span {
|
|
55
|
+
color: unset;
|
|
56
|
+
}
|
|
54
57
|
.aplus-field-number-label-left {
|
|
55
58
|
padding-right: 4px;
|
|
56
59
|
}
|
|
@@ -61,6 +64,9 @@
|
|
|
61
64
|
display: flex;
|
|
62
65
|
margin-block-end: 12px;
|
|
63
66
|
}
|
|
67
|
+
.aplus-field-radio .ant-radio-wrapper-disabled {
|
|
68
|
+
color: unset;
|
|
69
|
+
}
|
|
64
70
|
.aplus-field-text-area {
|
|
65
71
|
white-space: pre-wrap;
|
|
66
72
|
word-wrap: break-word;
|
package/theme/ap-field/radio.css
CHANGED
package/theme/ap-grid/index.css
CHANGED
|
@@ -419,6 +419,9 @@
|
|
|
419
419
|
display: flex;
|
|
420
420
|
margin-block-end: 12px;
|
|
421
421
|
}
|
|
422
|
+
.aplus-field-checkbox .ant-checkbox-disabled + span {
|
|
423
|
+
color: unset;
|
|
424
|
+
}
|
|
422
425
|
.aplus-field-number-label-left {
|
|
423
426
|
padding-right: 4px;
|
|
424
427
|
}
|
|
@@ -429,6 +432,9 @@
|
|
|
429
432
|
display: flex;
|
|
430
433
|
margin-block-end: 12px;
|
|
431
434
|
}
|
|
435
|
+
.aplus-field-radio .ant-radio-wrapper-disabled {
|
|
436
|
+
color: unset;
|
|
437
|
+
}
|
|
432
438
|
.aplus-field-text-area {
|
|
433
439
|
white-space: pre-wrap;
|
|
434
440
|
word-wrap: break-word;
|
|
@@ -612,6 +612,9 @@
|
|
|
612
612
|
display: flex;
|
|
613
613
|
margin-block-end: 12px;
|
|
614
614
|
}
|
|
615
|
+
.aplus-field-checkbox .ant-checkbox-disabled + span {
|
|
616
|
+
color: unset;
|
|
617
|
+
}
|
|
615
618
|
.aplus-field-number-label-left {
|
|
616
619
|
padding-right: 4px;
|
|
617
620
|
}
|
|
@@ -622,6 +625,9 @@
|
|
|
622
625
|
display: flex;
|
|
623
626
|
margin-block-end: 12px;
|
|
624
627
|
}
|
|
628
|
+
.aplus-field-radio .ant-radio-wrapper-disabled {
|
|
629
|
+
color: unset;
|
|
630
|
+
}
|
|
625
631
|
.aplus-field-text-area {
|
|
626
632
|
white-space: pre-wrap;
|
|
627
633
|
word-wrap: break-word;
|
|
@@ -612,6 +612,9 @@
|
|
|
612
612
|
display: flex;
|
|
613
613
|
margin-block-end: 12px;
|
|
614
614
|
}
|
|
615
|
+
.aplus-field-checkbox .ant-checkbox-disabled + span {
|
|
616
|
+
color: unset;
|
|
617
|
+
}
|
|
615
618
|
.aplus-field-number-label-left {
|
|
616
619
|
padding-right: 4px;
|
|
617
620
|
}
|
|
@@ -622,6 +625,9 @@
|
|
|
622
625
|
display: flex;
|
|
623
626
|
margin-block-end: 12px;
|
|
624
627
|
}
|
|
628
|
+
.aplus-field-radio .ant-radio-wrapper-disabled {
|
|
629
|
+
color: unset;
|
|
630
|
+
}
|
|
625
631
|
.aplus-field-text-area {
|
|
626
632
|
white-space: pre-wrap;
|
|
627
633
|
word-wrap: break-word;
|
|
@@ -51,6 +51,9 @@
|
|
|
51
51
|
display: flex;
|
|
52
52
|
margin-block-end: 12px;
|
|
53
53
|
}
|
|
54
|
+
.aplus-field-checkbox .ant-checkbox-disabled + span {
|
|
55
|
+
color: unset;
|
|
56
|
+
}
|
|
54
57
|
.aplus-field-number-label-left {
|
|
55
58
|
padding-right: 4px;
|
|
56
59
|
}
|
|
@@ -61,6 +64,9 @@
|
|
|
61
64
|
display: flex;
|
|
62
65
|
margin-block-end: 12px;
|
|
63
66
|
}
|
|
67
|
+
.aplus-field-radio .ant-radio-wrapper-disabled {
|
|
68
|
+
color: unset;
|
|
69
|
+
}
|
|
64
70
|
.aplus-field-text-area {
|
|
65
71
|
white-space: pre-wrap;
|
|
66
72
|
word-wrap: break-word;
|
|
@@ -419,6 +419,9 @@
|
|
|
419
419
|
display: flex;
|
|
420
420
|
margin-block-end: 12px;
|
|
421
421
|
}
|
|
422
|
+
.aplus-field-checkbox .ant-checkbox-disabled + span {
|
|
423
|
+
color: unset;
|
|
424
|
+
}
|
|
422
425
|
.aplus-field-number-label-left {
|
|
423
426
|
padding-right: 4px;
|
|
424
427
|
}
|
|
@@ -429,6 +432,9 @@
|
|
|
429
432
|
display: flex;
|
|
430
433
|
margin-block-end: 12px;
|
|
431
434
|
}
|
|
435
|
+
.aplus-field-radio .ant-radio-wrapper-disabled {
|
|
436
|
+
color: unset;
|
|
437
|
+
}
|
|
432
438
|
.aplus-field-text-area {
|
|
433
439
|
white-space: pre-wrap;
|
|
434
440
|
word-wrap: break-word;
|
package/theme/index.css
CHANGED
|
@@ -1065,6 +1065,9 @@
|
|
|
1065
1065
|
display: flex;
|
|
1066
1066
|
margin-block-end: 12px;
|
|
1067
1067
|
}
|
|
1068
|
+
.aplus-field-checkbox .ant-checkbox-disabled + span {
|
|
1069
|
+
color: unset;
|
|
1070
|
+
}
|
|
1068
1071
|
.aplus-field-number-label-left {
|
|
1069
1072
|
padding-right: 4px;
|
|
1070
1073
|
}
|
|
@@ -1075,6 +1078,9 @@
|
|
|
1075
1078
|
display: flex;
|
|
1076
1079
|
margin-block-end: 12px;
|
|
1077
1080
|
}
|
|
1081
|
+
.aplus-field-radio .ant-radio-wrapper-disabled {
|
|
1082
|
+
color: unset;
|
|
1083
|
+
}
|
|
1078
1084
|
.aplus-field-text-area {
|
|
1079
1085
|
white-space: pre-wrap;
|
|
1080
1086
|
word-wrap: break-word;
|