@sinco/react 1.1.2-rc.56 → 1.1.2-rc.58
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 +4 -2
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -14662,6 +14662,9 @@ const PageHeader = ({
|
|
|
14662
14662
|
|
|
14663
14663
|
var spinnerSinco = "6b9c10915ea2b5ed.gif";
|
|
14664
14664
|
|
|
14665
|
+
const progressGif = {
|
|
14666
|
+
gif: spinnerSinco
|
|
14667
|
+
};
|
|
14665
14668
|
const ProgressSinco = ({
|
|
14666
14669
|
time,
|
|
14667
14670
|
variant: _variant = 'indeterminate',
|
|
@@ -14677,7 +14680,6 @@ const ProgressSinco = ({
|
|
|
14677
14680
|
const {
|
|
14678
14681
|
progressToast
|
|
14679
14682
|
} = useProgress(0, timeProgress, false, _lote);
|
|
14680
|
-
const gifProgress = spinnerSinco;
|
|
14681
14683
|
useEffect(() => {
|
|
14682
14684
|
if (progressToast >= 100) {
|
|
14683
14685
|
setShowToast(false);
|
|
@@ -14700,7 +14702,7 @@ const ProgressSinco = ({
|
|
|
14700
14702
|
height: 60,
|
|
14701
14703
|
justifyContent: 'center'
|
|
14702
14704
|
}, /*#__PURE__*/React__default.createElement("img", {
|
|
14703
|
-
src:
|
|
14705
|
+
src: progressGif.gif,
|
|
14704
14706
|
alt: "logo"
|
|
14705
14707
|
}))), _text && ( /*#__PURE__*/React__default.createElement(Typography$1, {
|
|
14706
14708
|
variant: "body2",
|