@doist/reactist 28.5.1 → 28.5.2
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/reactist.cjs.development.js +4 -2
- package/dist/reactist.cjs.development.js.map +1 -1
- package/dist/reactist.cjs.production.min.js +1 -1
- package/dist/reactist.cjs.production.min.js.map +1 -1
- package/es/components/progress-bar/progress-bar.js +3 -2
- package/es/components/progress-bar/progress-bar.js.map +1 -1
- package/es/components/progress-bar/progress-bar.module.css.js +4 -0
- package/es/components/progress-bar/progress-bar.module.css.js.map +1 -0
- package/lib/components/progress-bar/progress-bar.d.ts +0 -1
- package/lib/components/progress-bar/progress-bar.js +1 -1
- package/lib/components/progress-bar/progress-bar.js.map +1 -1
- package/lib/components/progress-bar/progress-bar.module.css.js +2 -0
- package/lib/components/progress-bar/progress-bar.module.css.js.map +1 -0
- package/package.json +1 -1
- package/styles/progress-bar.module.css.css +1 -0
- package/styles/reactist.css +1 -1
|
@@ -3923,17 +3923,19 @@ function KeyCapturer(props) {
|
|
|
3923
3923
|
}, composingEventHandlers));
|
|
3924
3924
|
}
|
|
3925
3925
|
|
|
3926
|
+
var modules_a0e70af1 = {"progressBar":"_2661b3dc","inner":"_0ca877fd"};
|
|
3927
|
+
|
|
3926
3928
|
function ProgressBar({
|
|
3927
3929
|
fillPercentage = 0,
|
|
3928
3930
|
className,
|
|
3929
3931
|
'aria-valuetext': ariaValuetext
|
|
3930
3932
|
}) {
|
|
3931
|
-
const finalClassName = classNames__default["default"](
|
|
3933
|
+
const finalClassName = classNames__default["default"](modules_a0e70af1.progressBar, className);
|
|
3932
3934
|
const width = fillPercentage < 0 ? 0 : fillPercentage > 100 ? 100 : fillPercentage;
|
|
3933
3935
|
return /*#__PURE__*/React__namespace.createElement("div", {
|
|
3934
3936
|
className: finalClassName
|
|
3935
3937
|
}, /*#__PURE__*/React__namespace.createElement("div", {
|
|
3936
|
-
className:
|
|
3938
|
+
className: modules_a0e70af1.inner,
|
|
3937
3939
|
style: {
|
|
3938
3940
|
width: width + "%"
|
|
3939
3941
|
}
|