@xyo-network/react-shared 2.27.10 → 2.27.11
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/cjs/components/TokenSummary/TokenSummary.d.ts +2 -1
- package/dist/cjs/components/TokenSummary/TokenSummary.d.ts.map +1 -1
- package/dist/cjs/components/TokenSummary/TokenSummary.js +2 -3
- package/dist/cjs/components/TokenSummary/TokenSummary.js.map +1 -1
- package/dist/cjs/components/TokenSummary/variantOverrides.d.ts +7 -0
- package/dist/cjs/components/TokenSummary/variantOverrides.d.ts.map +1 -0
- package/dist/cjs/components/TokenSummary/variantOverrides.js +4 -0
- package/dist/cjs/components/TokenSummary/variantOverrides.js.map +1 -0
- package/dist/cjs/contexts/contextEx/create.d.ts +0 -1
- package/dist/cjs/contexts/contextEx/create.d.ts.map +1 -1
- package/dist/docs.json +1449 -1431
- package/dist/esm/components/TokenSummary/TokenSummary.d.ts +2 -1
- package/dist/esm/components/TokenSummary/TokenSummary.d.ts.map +1 -1
- package/dist/esm/components/TokenSummary/TokenSummary.js +3 -4
- package/dist/esm/components/TokenSummary/TokenSummary.js.map +1 -1
- package/dist/esm/components/TokenSummary/variantOverrides.d.ts +7 -0
- package/dist/esm/components/TokenSummary/variantOverrides.d.ts.map +1 -0
- package/dist/esm/components/TokenSummary/variantOverrides.js +2 -0
- package/dist/esm/components/TokenSummary/variantOverrides.js.map +1 -0
- package/dist/esm/contexts/contextEx/create.d.ts +0 -1
- package/dist/esm/contexts/contextEx/create.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/components/TokenSummary/TokenSummary.tsx +5 -13
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
import { PaperProps } from '@mui/material';
|
|
2
3
|
import { FlexBoxProps } from '@xylabs/react-flexbox';
|
|
3
4
|
export interface TokenSummaryProps extends FlexBoxProps {
|
|
4
5
|
icon?: string;
|
|
5
6
|
symbol?: string;
|
|
6
|
-
|
|
7
|
+
imgBgProps?: PaperProps;
|
|
7
8
|
}
|
|
8
9
|
export declare const TokenSummary: React.FC<TokenSummaryProps>;
|
|
9
10
|
//# sourceMappingURL=TokenSummary.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TokenSummary.d.ts","sourceRoot":"","sources":["../../../../src/components/TokenSummary/TokenSummary.tsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"TokenSummary.d.ts","sourceRoot":"","sources":["../../../../src/components/TokenSummary/TokenSummary.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAS,UAAU,EAAc,MAAM,eAAe,CAAA;AAC7D,OAAO,EAAE,YAAY,EAAoB,MAAM,uBAAuB,CAAA;AAEtE,MAAM,WAAW,iBAAkB,SAAQ,YAAY;IACrD,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,UAAU,CAAC,EAAE,UAAU,CAAA;CACxB;AAED,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAcpD,CAAA"}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
2
|
-
import {
|
|
2
|
+
import { Paper, Typography } from '@mui/material';
|
|
3
3
|
import { FlexCol, FlexRow } from '@xylabs/react-flexbox';
|
|
4
|
-
export const TokenSummary = ({
|
|
5
|
-
|
|
6
|
-
return (_jsxs(_Fragment, { children: [_jsxs(FlexRow, { className: "TokenSummary-root", paddingBottom: 3, width: "100%", justifyContent: "flex-start", ...props, children: [_jsx(FlexCol, { borderRadius: "50%", padding: 1, className: "token-logo-bg", bgcolor: imgBgColor ? imgBgColor : theme.palette.text.primary, height: "40px", width: "40px", children: _jsx("img", { src: icon, height: "25px" }) }), _jsx(Typography, { variant: "h6", fontWeight: 300, textTransform: "uppercase", paddingLeft: 1, children: symbol })] }), children] }));
|
|
4
|
+
export const TokenSummary = ({ imgBgProps, icon, symbol, children, ...props }) => {
|
|
5
|
+
return (_jsxs(_Fragment, { children: [_jsxs(FlexRow, { className: "TokenSummary-root", paddingBottom: 3, width: "100%", justifyContent: "flex-start", ...props, children: [_jsx(Paper, { component: FlexCol, padding: 1, className: "token-logo-bg", height: "40px", width: "40px", sx: { borderRadius: '50%' }, ...imgBgProps, children: _jsx("img", { src: icon, height: "25px" }) }), _jsx(Typography, { variant: "h6", fontWeight: 300, textTransform: "uppercase", paddingLeft: 1, children: symbol })] }), children] }));
|
|
7
6
|
};
|
|
8
7
|
//# sourceMappingURL=TokenSummary.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TokenSummary.js","sourceRoot":"","sources":["../../../../src/components/TokenSummary/TokenSummary.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"TokenSummary.js","sourceRoot":"","sources":["../../../../src/components/TokenSummary/TokenSummary.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,KAAK,EAAc,UAAU,EAAE,MAAM,eAAe,CAAA;AAC7D,OAAO,EAAgB,OAAO,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAA;AAQtE,MAAM,CAAC,MAAM,YAAY,GAAgC,CAAC,EAAE,UAAU,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,GAAG,KAAK,EAAE,EAAE,EAAE;IAC5G,OAAO,CACL,8BACE,MAAC,OAAO,IAAC,SAAS,EAAC,mBAAmB,EAAC,aAAa,EAAE,CAAC,EAAE,KAAK,EAAC,MAAM,EAAC,cAAc,EAAC,YAAY,KAAK,KAAK,aACzG,KAAC,KAAK,IAAC,SAAS,EAAE,OAAO,EAAE,OAAO,EAAE,CAAC,EAAE,SAAS,EAAC,eAAe,EAAC,MAAM,EAAC,MAAM,EAAC,KAAK,EAAC,MAAM,EAAC,EAAE,EAAE,EAAE,YAAY,EAAE,KAAK,EAAE,KAAM,UAAU,YACrI,cAAK,GAAG,EAAE,IAAI,EAAE,MAAM,EAAC,MAAM,GAAG,GAC1B,EACR,KAAC,UAAU,IAAC,OAAO,EAAC,IAAI,EAAC,UAAU,EAAE,GAAG,EAAE,aAAa,EAAC,WAAW,EAAC,WAAW,EAAE,CAAC,YAC/E,MAAM,GACI,IACL,EACT,QAAQ,IACR,CACJ,CAAA;AACH,CAAC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"variantOverrides.d.ts","sourceRoot":"","sources":["../../../../src/components/TokenSummary/variantOverrides.ts"],"names":[],"mappings":"AAAA,OAAO,sBAAsB,CAAA;AAE7B,OAAO,QAAQ,sBAAsB,CAAC;IACpC,UAAU,0BAA0B;QAClC,QAAQ,EAAE,IAAI,CAAA;KACf;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"variantOverrides.js","sourceRoot":"","sources":["../../../../src/components/TokenSummary/variantOverrides.ts"],"names":[],"mappings":"AAAA,OAAO,sBAAsB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../../src/contexts/contextEx/create.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../../src/contexts/contextEx/create.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAExC,eAAO,MAAM,eAAe,sDAAwF,CAAA"}
|
package/package.json
CHANGED
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@storybook/react": "^6.5.10",
|
|
36
36
|
"@xylabs/pixel": "^1.4.5",
|
|
37
|
-
"@xylabs/tsconfig-dom": "^2.5.
|
|
37
|
+
"@xylabs/tsconfig-dom": "^2.5.87",
|
|
38
38
|
"@xyo-network/api": "^2.24.12",
|
|
39
|
-
"@xyo-network/react-storybook": "^2.27.
|
|
39
|
+
"@xyo-network/react-storybook": "^2.27.11"
|
|
40
40
|
},
|
|
41
41
|
"browser": "dist/esm/index.js",
|
|
42
42
|
"docs": "dist/docs.json",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
},
|
|
81
81
|
"sideEffects": false,
|
|
82
82
|
"types": "dist/esm/index.d.ts",
|
|
83
|
-
"version": "2.27.
|
|
83
|
+
"version": "2.27.11"
|
|
84
84
|
}
|
|
@@ -1,27 +1,19 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Paper, PaperProps, Typography } from '@mui/material'
|
|
2
2
|
import { FlexBoxProps, FlexCol, FlexRow } from '@xylabs/react-flexbox'
|
|
3
3
|
|
|
4
4
|
export interface TokenSummaryProps extends FlexBoxProps {
|
|
5
5
|
icon?: string
|
|
6
6
|
symbol?: string
|
|
7
|
-
|
|
7
|
+
imgBgProps?: PaperProps
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
export const TokenSummary: React.FC<TokenSummaryProps> = ({
|
|
11
|
-
const theme = useTheme()
|
|
10
|
+
export const TokenSummary: React.FC<TokenSummaryProps> = ({ imgBgProps, icon, symbol, children, ...props }) => {
|
|
12
11
|
return (
|
|
13
12
|
<>
|
|
14
13
|
<FlexRow className="TokenSummary-root" paddingBottom={3} width="100%" justifyContent="flex-start" {...props}>
|
|
15
|
-
<FlexCol
|
|
16
|
-
borderRadius="50%"
|
|
17
|
-
padding={1}
|
|
18
|
-
className="token-logo-bg"
|
|
19
|
-
bgcolor={imgBgColor ? imgBgColor : theme.palette.text.primary}
|
|
20
|
-
height="40px"
|
|
21
|
-
width="40px"
|
|
22
|
-
>
|
|
14
|
+
<Paper component={FlexCol} padding={1} className="token-logo-bg" height="40px" width="40px" sx={{ borderRadius: '50%' }} {...imgBgProps}>
|
|
23
15
|
<img src={icon} height="25px" />
|
|
24
|
-
</
|
|
16
|
+
</Paper>
|
|
25
17
|
<Typography variant="h6" fontWeight={300} textTransform="uppercase" paddingLeft={1}>
|
|
26
18
|
{symbol}
|
|
27
19
|
</Typography>
|