antd-mobile 5.32.2 → 5.32.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/2x/bundle/antd-mobile.cjs.development.js +4 -2
- package/2x/bundle/antd-mobile.cjs.js +2 -2
- package/2x/bundle/antd-mobile.es.development.js +4 -2
- package/2x/bundle/antd-mobile.es.js +4 -2
- package/2x/bundle/antd-mobile.umd.development.js +4 -2
- package/2x/bundle/antd-mobile.umd.js +2 -2
- package/2x/bundle/style.css +7 -1
- package/2x/cjs/components/center-popup/center-popup.js +3 -1
- package/2x/cjs/components/result-page/result-page.css +1 -0
- package/2x/cjs/components/toast/toast.css +1 -0
- package/2x/cjs/components/water-mark/water-mark.js +2 -1
- package/2x/cjs/global/global.css +5 -1
- package/2x/cjs/global/theme-dark.css +1 -0
- package/2x/es/components/center-popup/center-popup.js +3 -1
- package/2x/es/components/result-page/result-page.css +1 -0
- package/2x/es/components/toast/toast.css +1 -0
- package/2x/es/components/water-mark/water-mark.js +2 -1
- package/2x/es/global/global.css +5 -1
- package/2x/es/global/theme-dark.css +1 -0
- package/2x/package.json +1 -1
- package/bundle/antd-mobile.cjs.development.js +4 -2
- package/bundle/antd-mobile.cjs.js +2 -2
- package/bundle/antd-mobile.compatible.umd.js +1 -1
- package/bundle/antd-mobile.es.development.js +4 -2
- package/bundle/antd-mobile.es.js +4 -2
- package/bundle/antd-mobile.umd.development.js +4 -2
- package/bundle/antd-mobile.umd.js +2 -2
- package/bundle/style.css +1 -1
- package/cjs/components/center-popup/center-popup.js +3 -1
- package/cjs/components/result-page/result-page.css +1 -0
- package/cjs/components/toast/toast.css +1 -0
- package/cjs/components/water-mark/water-mark.js +2 -1
- package/cjs/global/global.css +4 -1
- package/cjs/global/theme-dark.css +1 -0
- package/es/components/center-popup/center-popup.js +3 -1
- package/es/components/result-page/result-page.css +1 -0
- package/es/components/toast/toast.css +1 -0
- package/es/components/water-mark/water-mark.js +2 -1
- package/es/global/global.css +4 -1
- package/es/global/theme-dark.css +1 -0
- package/package.json +1 -1
- package/umd/antd-mobile.js +1 -1
|
@@ -12462,7 +12462,9 @@ const CenterPopup$1 = (p) => {
|
|
|
12462
12462
|
role: props.role,
|
|
12463
12463
|
"aria-label": props["aria-label"]
|
|
12464
12464
|
}, React__default.createElement(animated.div, {
|
|
12465
|
-
style,
|
|
12465
|
+
style: Object.assign(Object.assign({}, style), {
|
|
12466
|
+
pointerEvents: style.opacity.to((v) => v === 1 ? "unset" : "none")
|
|
12467
|
+
}),
|
|
12466
12468
|
ref
|
|
12467
12469
|
}, props.showCloseButton && React__default.createElement("a", {
|
|
12468
12470
|
className: classNames(`${classPrefix$Z}-close`, "adm-plain-anchor"),
|
|
@@ -26321,7 +26323,7 @@ const WaterMark$1 = (p) => {
|
|
|
26321
26323
|
style: {
|
|
26322
26324
|
zIndex,
|
|
26323
26325
|
backgroundSize: `${gapX + width}px`,
|
|
26324
|
-
backgroundImage: `url('${base64Url}')`
|
|
26326
|
+
backgroundImage: base64Url === "" ? void 0 : `url('${base64Url}')`
|
|
26325
26327
|
}
|
|
26326
26328
|
}));
|
|
26327
26329
|
};
|
|
@@ -8593,7 +8593,9 @@ const Vr = "adm-center-popup", q9 = Object.assign(Object.assign({}, Ml), {
|
|
|
8593
8593
|
role: t.role,
|
|
8594
8594
|
"aria-label": t["aria-label"]
|
|
8595
8595
|
}, l.createElement(fe.div, {
|
|
8596
|
-
style: r,
|
|
8596
|
+
style: Object.assign(Object.assign({}, r), {
|
|
8597
|
+
pointerEvents: r.opacity.to((d) => d === 1 ? "unset" : "none")
|
|
8598
|
+
}),
|
|
8597
8599
|
ref: o
|
|
8598
8600
|
}, t.showCloseButton && l.createElement("a", {
|
|
8599
8601
|
className: j(`${Vr}-close`, "adm-plain-anchor"),
|
|
@@ -18684,7 +18686,7 @@ const td = "adm-water-mark", gk = {
|
|
|
18684
18686
|
style: {
|
|
18685
18687
|
zIndex: n,
|
|
18686
18688
|
backgroundSize: `${r + a}px`,
|
|
18687
|
-
backgroundImage: `url('${w}')`
|
|
18689
|
+
backgroundImage: w === "" ? void 0 : `url('${w}')`
|
|
18688
18690
|
}
|
|
18689
18691
|
}));
|
|
18690
18692
|
}, xS = yk;
|
|
@@ -12484,7 +12484,9 @@ Please add \`${key}Action\` when creating your handler.`);
|
|
|
12484
12484
|
role: props.role,
|
|
12485
12485
|
"aria-label": props["aria-label"]
|
|
12486
12486
|
}, React__default.default.createElement(animated.div, {
|
|
12487
|
-
style,
|
|
12487
|
+
style: Object.assign(Object.assign({}, style), {
|
|
12488
|
+
pointerEvents: style.opacity.to((v) => v === 1 ? "unset" : "none")
|
|
12489
|
+
}),
|
|
12488
12490
|
ref
|
|
12489
12491
|
}, props.showCloseButton && React__default.default.createElement("a", {
|
|
12490
12492
|
className: classNames(`${classPrefix$Z}-close`, "adm-plain-anchor"),
|
|
@@ -26343,7 +26345,7 @@ Please add \`${key}Action\` when creating your handler.`);
|
|
|
26343
26345
|
style: {
|
|
26344
26346
|
zIndex,
|
|
26345
26347
|
backgroundSize: `${gapX + width}px`,
|
|
26346
|
-
backgroundImage: `url('${base64Url}')`
|
|
26348
|
+
backgroundImage: base64Url === "" ? void 0 : `url('${base64Url}')`
|
|
26347
26349
|
}
|
|
26348
26350
|
}));
|
|
26349
26351
|
};
|