@nutui/nutui-react-taro 3.0.19-cpp.26-beta.2 → 3.0.19-cpp.26-beta.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/cjs/packages/configprovider/types.d.ts +1 -1
- package/dist/cjs/packages/dialog/style/dialog.scss +1 -1
- package/dist/cjs/packages/dialog/style/style.css +1 -1
- package/dist/cjs/packages/dialog/style/style.harmony.css +1 -1
- package/dist/cjs/packages/dialog/style-jmapp/dialog.scss +1 -1
- package/dist/cjs/packages/dialog/style-jmapp/style.css +1 -1
- package/dist/cjs/packages/dialog/style-jrkf/dialog.scss +1 -1
- package/dist/cjs/packages/dialog/style-jrkf/style.css +1 -1
- package/dist/cjs/packages/inputnumber/inputnumber.js +1 -1
- package/dist/cjs/packages/popup/popup.js +3 -1
- package/dist/cjs/packages/quickenter/style/quickenter.scss +2 -0
- package/dist/cjs/packages/quickenter/style/style.css +1 -0
- package/dist/cjs/packages/quickenter/style/style.harmony.css +1 -0
- package/dist/cjs/packages/quickenter/style-jmapp/quickenter.scss +2 -0
- package/dist/cjs/packages/quickenter/style-jmapp/style.css +1 -0
- package/dist/cjs/packages/quickenter/style-jrkf/quickenter.scss +2 -0
- package/dist/cjs/packages/quickenter/style-jrkf/style.css +1 -0
- package/dist/es/packages/configprovider/types.d.ts +1 -1
- package/dist/es/packages/dialog/style/dialog.scss +1 -1
- package/dist/es/packages/dialog/style/style.css +1 -1
- package/dist/es/packages/dialog/style/style.harmony.css +1 -1
- package/dist/es/packages/dialog/style-jmapp/dialog.scss +1 -1
- package/dist/es/packages/dialog/style-jmapp/style.css +1 -1
- package/dist/es/packages/dialog/style-jrkf/dialog.scss +1 -1
- package/dist/es/packages/dialog/style-jrkf/style.css +1 -1
- package/dist/es/packages/inputnumber/inputnumber.js +1 -1
- package/dist/es/packages/popup/popup.js +4 -1
- package/dist/es/packages/quickenter/style/quickenter.scss +2 -0
- package/dist/es/packages/quickenter/style/style.css +1 -0
- package/dist/es/packages/quickenter/style/style.harmony.css +1 -0
- package/dist/es/packages/quickenter/style-jmapp/quickenter.scss +2 -0
- package/dist/es/packages/quickenter/style-jmapp/style.css +1 -0
- package/dist/es/packages/quickenter/style-jrkf/quickenter.scss +2 -0
- package/dist/es/packages/quickenter/style-jrkf/style.css +1 -0
- package/dist/nutui.react.umd.js +7 -2
- package/dist/style-jmapp.css +1 -1
- package/dist/style-jmapp.scss +31 -31
- package/dist/style-jrkf.css +1 -1
- package/dist/style-jrkf.scss +24 -24
- package/dist/style.css +1 -1
- package/dist/style.scss +29 -29
- package/dist/styles/variables-daojia.scss +5 -0
- package/dist/styles/variables-jmapp.scss +5 -0
- package/dist/styles/variables-jrkf.scss +5 -0
- package/dist/styles/variables.scss +9 -0
- package/package.json +1 -1
|
@@ -412,6 +412,7 @@
|
|
|
412
412
|
box-sizing: border-box;
|
|
413
413
|
display: flex;
|
|
414
414
|
flex-direction: column;
|
|
415
|
+
box-shadow: var(--nutui-quickenter-box-shadow, 0px 8px 16px rgba(141, 153, 167, 0.2), 0px -0.5px 0px rgba(0, 0, 0, 0.05) inset);
|
|
415
416
|
}
|
|
416
417
|
.nut-quickenter-control {
|
|
417
418
|
display: flex;
|
package/dist/nutui.react.umd.js
CHANGED
|
@@ -4673,7 +4673,12 @@
|
|
|
4673
4673
|
onClick: handleCloseIconClick,
|
|
4674
4674
|
ariaRole: "button",
|
|
4675
4675
|
ariaLabel: closeAriaLabel || locale.close
|
|
4676
|
-
}, /* @__PURE__ */ React.isValidElement(closeIcon) ? closeIcon :
|
|
4676
|
+
}, /* @__PURE__ */ React.isValidElement(closeIcon) ? closeIcon : (
|
|
4677
|
+
// @ts-ignore
|
|
4678
|
+
/* @__PURE__ */ React.createElement(IconSVG$p, {
|
|
4679
|
+
ariaHidden: true
|
|
4680
|
+
})
|
|
4681
|
+
));
|
|
4677
4682
|
}, [
|
|
4678
4683
|
closeable,
|
|
4679
4684
|
closeIconPosition,
|
|
@@ -10566,7 +10571,7 @@
|
|
|
10566
10571
|
className: classNames("".concat(classPrefix$h, "-icon ").concat(classPrefix$h, "-icon-minus"), _define_property({}, "".concat(classPrefix$h, "-icon-disabled"), Number(shadowValue) <= Number(min) || disabled))
|
|
10567
10572
|
})), /* @__PURE__ */ React.createElement("input", {
|
|
10568
10573
|
className: classNames("".concat(classPrefix$h, "-input"), _define_property({}, "".concat(classPrefix$h, "-input-disabled"), disabled)),
|
|
10569
|
-
type: type2,
|
|
10574
|
+
type: formatter ? "text" : type2,
|
|
10570
10575
|
ref: inputRef,
|
|
10571
10576
|
inputMode: type2 === "digit" ? "decimal" : "numeric",
|
|
10572
10577
|
disabled,
|