@sinco/react 1.1.2-rc.84 → 1.1.2-rc.85

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/index.esm.js CHANGED
@@ -10705,7 +10705,7 @@ function useModal(parameters) {
10705
10705
  }
10706
10706
 
10707
10707
  const _excluded$8 = ["addEndListener", "appear", "children", "easing", "in", "onEnter", "onEntered", "onEntering", "onExit", "onExited", "onExiting", "style", "timeout", "TransitionComponent"];
10708
- const styles$1 = {
10708
+ const styles = {
10709
10709
  entering: {
10710
10710
  opacity: 1
10711
10711
  },
@@ -10814,7 +10814,7 @@ const Fade = /*#__PURE__*/React.forwardRef(function Fade(props, ref) {
10814
10814
  style: _extends({
10815
10815
  opacity: 0,
10816
10816
  visibility: state === 'exited' && !inProp ? 'hidden' : undefined
10817
- }, styles$1[state], style, children.props.style),
10817
+ }, styles[state], style, children.props.style),
10818
10818
  ref: handleRef
10819
10819
  }, childProps));
10820
10820
  }
@@ -13604,8 +13604,6 @@ var PageHeader = function PageHeader(_ref2) {
13604
13604
  }, actions)));
13605
13605
  };
13606
13606
 
13607
- var styles = {"path1":"react-module_path1__lkcOa","spin":"react-module_spin__OwXny","path2":"react-module_path2__2EGp6","path3":"react-module_path3__ten1m","path4":"react-module_path4__Hbv4b"};
13608
-
13609
13607
  var ProgressSinco = function ProgressSinco(_ref) {
13610
13608
  var time = _ref.time,
13611
13609
  _ref$variant = _ref.variant,
@@ -13646,26 +13644,26 @@ var ProgressSinco = function ProgressSinco(_ref) {
13646
13644
  height: "60",
13647
13645
  viewBox: "0 0 100 100"
13648
13646
  }, React__default.createElement("symbol", {
13649
- className: styles['spinner'],
13647
+ id: 'spinner',
13650
13648
  viewBox: "0 0 91 60"
13651
13649
  }, React__default.createElement("path", {
13652
- id: styles['path1'],
13650
+ id: 'path1',
13653
13651
  d: "M16.8395 59.9966L34.0333 41.8759L23.6316 19.7821L0.100342 19.845L16.8395 59.9966Z",
13654
13652
  fill: "#0C4271"
13655
13653
  }), React__default.createElement("path", {
13656
- id: styles['path2'],
13654
+ id: 'path2',
13657
13655
  d: "M0 18.1417H54.2501L69.5867 0L13.9796 0.160958L0 18.1417Z",
13658
13656
  fill: "#3872A9"
13659
13657
  }), React__default.createElement("path", {
13660
- id: styles['path3'],
13658
+ id: 'path3',
13661
13659
  d: "M90.177 41.0402L71.8396 0.0457764L55.4082 19.2962L65.6909 41.0332L90.177 41.0402Z",
13662
13660
  fill: "#2063A0"
13663
13661
  }), React__default.createElement("path", {
13664
- id: styles['path4'],
13662
+ id: 'path4',
13665
13663
  d: "M35.4515 42.6838L19.1216 59.9965L76.425 60L90.1772 42.6838H35.4515Z",
13666
13664
  fill: "#4E91C3"
13667
13665
  })), React__default.createElement("use", {
13668
- xlinkHref: ".spinner"
13666
+ xlinkHref: "#spinner"
13669
13667
  }))), React__default.createElement(Typography$1, {
13670
13668
  variant: "body2",
13671
13669
  color: 'text.secondary'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.1.2-rc.84",
3
+ "version": "1.1.2-rc.85",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -1,4 +1,5 @@
1
1
  import { FC } from 'react';
2
+ import '../../react.module.css';
2
3
  type Variant = 'buffer' | 'determinate' | 'indeterminate' | 'query' | 'lote';
3
4
  interface ProgressProps {
4
5
  time?: number;