@doist/reactist 28.5.1 → 28.5.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.
@@ -577,7 +577,7 @@ var modules_afa80466 = {"banner":"e1b2ef74","image":"_8d3ff024","content":"_1705
577
577
  var modules_c7f5018f = {"svg":"_51539197","spinner":"_54fbe2b3","tint":"a0c466ed","fill":"_745b73d3"};
578
578
 
579
579
  function Spinner({
580
- size = 24
580
+ size = 18
581
581
  }) {
582
582
  return /*#__PURE__*/React__namespace.createElement("svg", {
583
583
  "aria-hidden": true,
@@ -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"]('reactist_progress_bar', className);
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: "inner",
3938
+ className: modules_a0e70af1.inner,
3937
3939
  style: {
3938
3940
  width: width + "%"
3939
3941
  }