@doist/reactist 28.5.0 → 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.
@@ -572,7 +572,7 @@ function useId(providedId) {
572
572
  return ref.current;
573
573
  }
574
574
 
575
- var modules_afa80466 = {"banner":"a3c628a9","image":"b2cb529e","content":"_608df6ce","description":"_7d8d68de","title":"_05e2783a","secondary":"d5e077f5","icon":"dbf93d2e","closeButton":"_22f9ed25","copy":"_99ded674","inlineLink":"fe6dd094","staticContent":"e6ed6d9e","actions":"_51bd96a8"};
575
+ var modules_afa80466 = {"banner":"e1b2ef74","image":"_8d3ff024","content":"_1705b6ee","description":"_99daf106","title":"_9ad57971","secondary":"_59ea31f7","icon":"b1ae548b","closeButton":"c2e4ec08","copy":"cd270dad","inlineLink":"cbbd2929","staticContent":"d3bd2674","actions":"_1a63a5e1"};
576
576
 
577
577
  var modules_c7f5018f = {"svg":"_51539197","spinner":"_54fbe2b3","tint":"a0c466ed","fill":"_745b73d3"};
578
578
 
@@ -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
  }