@xyo-network/react-chain-blockchain 1.3.3 → 1.3.5
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/browser/index.mjs +7 -7
- package/dist/browser/index.mjs.map +1 -1
- package/dist/types/components/payload/fields/BlockNumberTextField.d.ts.map +1 -1
- package/dist/types/components/payload/fields/XyoAddressTextField.d.ts.map +1 -1
- package/package.json +23 -23
- package/src/components/chain/controls/PulseSvgIcon.tsx +5 -5
- package/src/components/payload/fields/BlockNumberTextField.tsx +2 -2
- package/src/components/payload/fields/XyoAddressTextField.tsx +2 -2
- package/src/types/global.d.ts +1 -0
package/dist/browser/index.mjs
CHANGED
|
@@ -1368,7 +1368,7 @@ var ChainAnalyzerStatsDialogFromContext = /* @__PURE__ */ __name((props) => {
|
|
|
1368
1368
|
}, "ChainAnalyzerStatsDialogFromContext");
|
|
1369
1369
|
|
|
1370
1370
|
// src/components/chain/controls/PulseSvgIcon.tsx
|
|
1371
|
-
import {
|
|
1371
|
+
import { createSvgIcon, keyframes, styled as styled2 } from "@mui/material";
|
|
1372
1372
|
import React28 from "react";
|
|
1373
1373
|
var PulseSvgIcon = createSvgIcon(/* @__PURE__ */ React28.createElement("svg", {
|
|
1374
1374
|
viewBox: "0 0 80 80",
|
|
@@ -1422,20 +1422,20 @@ var StyledPulseSvgIcon = styled2(PulseSvgIcon)(({ theme }) => {
|
|
|
1422
1422
|
return {
|
|
1423
1423
|
"& .core": {
|
|
1424
1424
|
animation: `${pulse1} 1.25s ease-in-out infinite`,
|
|
1425
|
-
fill: theme.palette.success.main
|
|
1425
|
+
fill: theme.vars.palette.success.main
|
|
1426
1426
|
},
|
|
1427
1427
|
"&.paused .core": {
|
|
1428
1428
|
animation: "none",
|
|
1429
|
-
fill: theme.palette.divider,
|
|
1429
|
+
fill: theme.vars.palette.divider,
|
|
1430
1430
|
transform: "scale(2)"
|
|
1431
1431
|
},
|
|
1432
1432
|
"& .radar": {
|
|
1433
1433
|
animation: `${pulse2} 1.25s ease-in-out infinite`,
|
|
1434
|
-
fill:
|
|
1434
|
+
fill: `color-mix(in srgb, ${theme.vars.palette.success.main}, transparent 50%)`
|
|
1435
1435
|
},
|
|
1436
1436
|
"&.paused .radar": {
|
|
1437
1437
|
animation: "none",
|
|
1438
|
-
fill: theme.palette.divider,
|
|
1438
|
+
fill: theme.vars.palette.divider,
|
|
1439
1439
|
transform: "scale(6)"
|
|
1440
1440
|
}
|
|
1441
1441
|
};
|
|
@@ -1870,7 +1870,7 @@ var BlockNumberTextField = /* @__PURE__ */ __name(({ errorMessage, onBlockNumber
|
|
|
1870
1870
|
...props
|
|
1871
1871
|
}), errorMessage && /* @__PURE__ */ React39.createElement(FormHelperText2, {
|
|
1872
1872
|
sx: {
|
|
1873
|
-
color:
|
|
1873
|
+
color: "error.main"
|
|
1874
1874
|
}
|
|
1875
1875
|
}, errorMessage));
|
|
1876
1876
|
}, "BlockNumberTextField");
|
|
@@ -1912,7 +1912,7 @@ var XyoAddressTextField = /* @__PURE__ */ __name(({ onAddressChanged, onChange,
|
|
|
1912
1912
|
...props
|
|
1913
1913
|
}), addressError && /* @__PURE__ */ React40.createElement(FormHelperText3, {
|
|
1914
1914
|
sx: {
|
|
1915
|
-
color:
|
|
1915
|
+
color: "error.main"
|
|
1916
1916
|
}
|
|
1917
1917
|
}, addressError.message));
|
|
1918
1918
|
}, "XyoAddressTextField");
|