@xyo-network/xl1-react-client-sdk 4.0.7 → 4.0.9
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/client/components/connected/AutoSignChainPanel.d.ts.map +1 -1
- package/dist/browser/client/components/connected/ConnectAccountsStack.d.ts +1 -1
- package/dist/browser/client/components/connected/ConnectAccountsStack.d.ts.map +1 -1
- package/dist/browser/client/components/connected/DataLakeAddToChainPanel.d.ts +1 -1
- package/dist/browser/client/components/connected/DataLakeAddToChainPanel.d.ts.map +1 -1
- package/dist/browser/client/components/connected/DataLakeGetButton.d.ts.map +1 -1
- package/dist/browser/client/components/connected/DataLakeInsertButton.d.ts.map +1 -1
- package/dist/browser/client/components/connected/DataLakeListButton.d.ts.map +1 -1
- package/dist/browser/client/components/connected/DataLakeRequestAccessButton.d.ts.map +1 -1
- package/dist/browser/client/components/connected/RequestPermissionsButton.d.ts.map +1 -1
- package/dist/browser/client/components/connected/SignTransactionButton.d.ts +1 -1
- package/dist/browser/client/components/connected/SignTransactionButton.d.ts.map +1 -1
- package/dist/browser/client/context/GatewayContext.d.ts +1 -1
- package/dist/browser/client/context/GatewayContext.d.ts.map +1 -1
- package/dist/browser/client/context/GatewayProviderState.d.ts +1 -1
- package/dist/browser/client/context/GatewayProviderState.d.ts.map +1 -1
- package/dist/browser/client/context/in-page/InPageGatewaysContext.d.ts +1 -1
- package/dist/browser/client/context/in-page/InPageGatewaysContext.d.ts.map +1 -1
- package/dist/browser/client/context/in-page/InPageGatewaysState.d.ts +1 -1
- package/dist/browser/client/context/in-page/InPageGatewaysState.d.ts.map +1 -1
- package/dist/browser/client/context/in-page/useProvidedInPageGateways.d.ts +1 -1
- package/dist/browser/client/context/in-page/useProvidedInPageGateways.d.ts.map +1 -1
- package/dist/browser/client/context/useProvidedGateway.d.ts +1 -1
- package/dist/browser/client/context/useProvidedGateway.d.ts.map +1 -1
- package/dist/browser/client/hooks/client/permissions/usePermissionsAccounts.d.ts +1 -1
- package/dist/browser/client/hooks/client/permissions/usePermissionsAccounts.d.ts.map +1 -1
- package/dist/browser/client/index.mjs +21 -21
- package/dist/browser/client/index.mjs.map +3 -3
- package/dist/browser/client/shim/reactError.d.ts +1 -1
- package/dist/browser/client/shim/reactError.d.ts.map +1 -1
- package/dist/browser/index.mjs +22 -22
- package/dist/browser/index.mjs.map +3 -3
- package/dist/browser/shared/index.mjs +1 -1
- package/dist/browser/shared/index.mjs.map +1 -1
- package/package.json +82 -80
|
@@ -111,7 +111,7 @@ import {
|
|
|
111
111
|
Typography as Typography2,
|
|
112
112
|
useTheme as useTheme3
|
|
113
113
|
} from "@mui/material";
|
|
114
|
-
import { isXyoAddress } from "@xyo-network/sdk
|
|
114
|
+
import { isXyoAddress } from "@xyo-network/sdk";
|
|
115
115
|
import { jsx as jsx3, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
116
116
|
var LabelValueStack = ({
|
|
117
117
|
labels,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/shared/components/menu-item/ActiveMenuItem.tsx", "../../../src/shared/components/stack/DetailsStack.tsx", "../../../src/shared/components/stack/LabelValueStack.tsx"],
|
|
4
|
-
"sourcesContent": ["import type { MenuItemProps } from '@mui/material'\nimport { MenuItem, useTheme } from '@mui/material'\nimport React from 'react'\n\nexport const ActiveMenuItem: React.FC<MenuItemProps & { active?: boolean }> = ({\n active, children, sx, ...props\n}) => {\n const theme = useTheme()\n return (\n <MenuItem\n disableRipple\n sx={{\n 'display': 'flex-inline',\n 'flexDirection': 'row',\n 'gap': 1,\n 'padding': 0,\n 'paddingLeft': 1,\n 'marginBottom': 1,\n // left border color and background color for active state\n 'borderLeft': `5px solid ${active === true ? theme.vars.palette.secondary.light : 'transparent'}`,\n 'backgroundColor': active === true ? theme.vars.palette.secondary.dark : 'transparent',\n // force white text color for active state for improved readability with background color\n 'color': active === true ? 'white' : 'unset',\n '&:hover': {\n // overriding default hover color and backgroundColor since active state conflicts visually with\n // default styles of MenuItem hover\n ...(active === true && { backgroundColor: theme.vars.palette.secondary.dark }),\n color: active === true ? 'white' : 'unset',\n },\n ...sx,\n }}\n {...props}\n >\n {children}\n </MenuItem>\n )\n}\n", "import { isDefined } from '@ariestools/sdk'\nimport type { StackProps } from '@mui/material'\nimport {\n Stack, Tooltip, Typography, useTheme,\n} from '@mui/material'\nimport type {\n ComponentType, ReactNode, SVGAttributes,\n} from 'react'\nimport React, { useMemo } from 'react'\n\nconst isComponentType = (value: unknown): value is ComponentType<SVGAttributes<SVGElement>> =>\n typeof value === 'function'\n || (typeof value === 'object' && value !== null && ('$$typeof' in value || 'render' in value))\n\nexport interface DetailsStackProps extends StackProps {\n IconComponent?: ComponentType<SVGAttributes<SVGElement>> | ReactNode\n heading?: string\n tooltipTitle?: string\n}\n\nexport const DetailsStack: React.FC<DetailsStackProps> = ({\n IconComponent, heading, children, tooltipTitle, ...props\n}) => {\n const theme = useTheme()\n\n const hasTooltip = isDefined(tooltipTitle)\n const resolvedIconComponent = useMemo(() => {\n return isComponentType(IconComponent)\n ? (\n <IconComponent\n style={{\n /** height and marginTop adjusted to account for font not filling container with line-height: 1 */\n height: '0.85rem',\n marginTop: 0.5,\n marginLeft: theme.spacing(1),\n }}\n />\n )\n : IconComponent ?? null\n }, [IconComponent, theme])\n\n return (\n <Stack\n direction=\"column\"\n {...props}\n sx={{\n flexGrow: 1,\n flexWrap: 'wrap',\n minWidth: '1px',\n ...props.sx,\n }}\n >\n <Typography\n sx={{\n display: 'flex',\n fontFamily: 'monospace',\n lineHeight: 1,\n marginBottom: 1.5,\n }}\n >\n {heading}\n {hasTooltip\n ? (\n <Tooltip title={tooltipTitle}>\n <span>{resolvedIconComponent}</span>\n </Tooltip>\n )\n : resolvedIconComponent}\n </Typography>\n {children}\n </Stack>\n )\n}\n", "import { ellipsize } from '@ariestools/sdk'\nimport type { StackProps } from '@mui/material'\nimport {\n Stack, Typography, useTheme,\n} from '@mui/material'\nimport { isXyoAddress } from '@xyo-network/sdk
|
|
4
|
+
"sourcesContent": ["import type { MenuItemProps } from '@mui/material'\nimport { MenuItem, useTheme } from '@mui/material'\nimport React from 'react'\n\nexport const ActiveMenuItem: React.FC<MenuItemProps & { active?: boolean }> = ({\n active, children, sx, ...props\n}) => {\n const theme = useTheme()\n return (\n <MenuItem\n disableRipple\n sx={{\n 'display': 'flex-inline',\n 'flexDirection': 'row',\n 'gap': 1,\n 'padding': 0,\n 'paddingLeft': 1,\n 'marginBottom': 1,\n // left border color and background color for active state\n 'borderLeft': `5px solid ${active === true ? theme.vars.palette.secondary.light : 'transparent'}`,\n 'backgroundColor': active === true ? theme.vars.palette.secondary.dark : 'transparent',\n // force white text color for active state for improved readability with background color\n 'color': active === true ? 'white' : 'unset',\n '&:hover': {\n // overriding default hover color and backgroundColor since active state conflicts visually with\n // default styles of MenuItem hover\n ...(active === true && { backgroundColor: theme.vars.palette.secondary.dark }),\n color: active === true ? 'white' : 'unset',\n },\n ...sx,\n }}\n {...props}\n >\n {children}\n </MenuItem>\n )\n}\n", "import { isDefined } from '@ariestools/sdk'\nimport type { StackProps } from '@mui/material'\nimport {\n Stack, Tooltip, Typography, useTheme,\n} from '@mui/material'\nimport type {\n ComponentType, ReactNode, SVGAttributes,\n} from 'react'\nimport React, { useMemo } from 'react'\n\nconst isComponentType = (value: unknown): value is ComponentType<SVGAttributes<SVGElement>> =>\n typeof value === 'function'\n || (typeof value === 'object' && value !== null && ('$$typeof' in value || 'render' in value))\n\nexport interface DetailsStackProps extends StackProps {\n IconComponent?: ComponentType<SVGAttributes<SVGElement>> | ReactNode\n heading?: string\n tooltipTitle?: string\n}\n\nexport const DetailsStack: React.FC<DetailsStackProps> = ({\n IconComponent, heading, children, tooltipTitle, ...props\n}) => {\n const theme = useTheme()\n\n const hasTooltip = isDefined(tooltipTitle)\n const resolvedIconComponent = useMemo(() => {\n return isComponentType(IconComponent)\n ? (\n <IconComponent\n style={{\n /** height and marginTop adjusted to account for font not filling container with line-height: 1 */\n height: '0.85rem',\n marginTop: 0.5,\n marginLeft: theme.spacing(1),\n }}\n />\n )\n : IconComponent ?? null\n }, [IconComponent, theme])\n\n return (\n <Stack\n direction=\"column\"\n {...props}\n sx={{\n flexGrow: 1,\n flexWrap: 'wrap',\n minWidth: '1px',\n ...props.sx,\n }}\n >\n <Typography\n sx={{\n display: 'flex',\n fontFamily: 'monospace',\n lineHeight: 1,\n marginBottom: 1.5,\n }}\n >\n {heading}\n {hasTooltip\n ? (\n <Tooltip title={tooltipTitle}>\n <span>{resolvedIconComponent}</span>\n </Tooltip>\n )\n : resolvedIconComponent}\n </Typography>\n {children}\n </Stack>\n )\n}\n", "import { ellipsize } from '@ariestools/sdk'\nimport type { StackProps } from '@mui/material'\nimport {\n Stack, Typography, useTheme,\n} from '@mui/material'\nimport { isXyoAddress } from '@xyo-network/sdk'\nimport React from 'react'\n\nexport interface LabelValueStackProps extends StackProps {\n labels: string[]\n values: (string | undefined)[]\n}\n\nexport const LabelValueStack: React.FC<LabelValueStackProps> = ({\n labels, values, ...props\n}) => {\n const theme = useTheme()\n const formattedValue = (value: string | undefined): string | undefined => {\n if (isXyoAddress(value)) {\n return ellipsize(value, 8)\n }\n return value\n }\n return (\n <Stack\n {...props}\n sx={{\n flexDirection: 'row',\n flexGrow: 1,\n ...props.sx,\n }}\n >\n <Stack>\n {labels.map(label => (\n <Typography\n key={label}\n variant=\"body2\"\n sx={{\n fontWeight: '300',\n borderBottom: `1px solid ${theme.vars?.palette.divider}`,\n opacity: 0.7,\n }}\n >\n {label}\n :\n </Typography>\n ))}\n </Stack>\n <Stack\n sx={{\n alignItems: 'end',\n flexGrow: 1,\n }}\n >\n {values.map((value, index) => (\n <Typography\n title={value}\n variant=\"body2\"\n // Use matching label as key since values might be the same\n key={labels[index]}\n sx={{\n fontFamily: 'monospace',\n width: '100%',\n display: 'flex',\n justifyContent: 'end',\n borderBottom: `1px solid ${theme.vars?.palette.divider}`,\n }}\n >\n {formattedValue(value)}\n </Typography>\n ))}\n </Stack>\n </Stack>\n )\n}\n"],
|
|
5
5
|
"mappings": "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",
|
|
6
6
|
"names": ["useTheme", "jsx", "Stack", "Typography", "useTheme", "jsx", "jsxs"]
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@xyo-network/xl1-react-client-sdk",
|
|
4
|
-
"version": "4.0.
|
|
4
|
+
"version": "4.0.9",
|
|
5
5
|
"description": "XL1 React Client/Wallet SDK",
|
|
6
6
|
"homepage": "https://xylabs.com",
|
|
7
7
|
"bugs": {
|
|
@@ -63,106 +63,108 @@
|
|
|
63
63
|
"README.md"
|
|
64
64
|
],
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@xyo-network/xl1-protocol-lib": "~4.0.
|
|
67
|
-
"@xyo-network/xl1-
|
|
68
|
-
"@xyo-network/xl1-
|
|
66
|
+
"@xyo-network/xl1-protocol-lib": "~4.0.9",
|
|
67
|
+
"@xyo-network/xl1-sdk": "~4.0.9",
|
|
68
|
+
"@xyo-network/xl1-blockies": "~4.0.9"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@ariestools/sdk": "
|
|
71
|
+
"@ariestools/sdk": "~7.0.8",
|
|
72
|
+
"@ariestools/sdk-react": "~10.0.5",
|
|
72
73
|
"@bitauth/libauth": "~3.0.0",
|
|
73
|
-
"@metamask/json-rpc-engine": "
|
|
74
|
-
"@metamask/
|
|
75
|
-
"@
|
|
76
|
-
"@mui/material": "
|
|
74
|
+
"@metamask/json-rpc-engine": "~10.5.0",
|
|
75
|
+
"@metamask/providers": "~22.1.1",
|
|
76
|
+
"@metamask/utils": "~11.11.0",
|
|
77
|
+
"@mui/icons-material": "~9.2.0",
|
|
78
|
+
"@mui/material": "~9.2.0",
|
|
77
79
|
"@noble/post-quantum": "~0.6.1",
|
|
78
|
-
"@opentelemetry/api": "
|
|
79
|
-
"@opentelemetry/sdk-trace-base": "
|
|
80
|
+
"@opentelemetry/api": "~1.9.1",
|
|
81
|
+
"@opentelemetry/sdk-trace-base": "~2.9.0",
|
|
80
82
|
"@react-spring/web": "~10.1.2",
|
|
81
83
|
"@scure/base": "~2.2.0",
|
|
82
84
|
"@scure/bip39": "~2.2.0",
|
|
83
|
-
"@storybook/react-vite": "
|
|
84
|
-
"@types/react": "
|
|
85
|
-
"@xylabs/eth-address": "
|
|
86
|
-
"@xylabs/geo": "
|
|
87
|
-
"@xylabs/pixel": "
|
|
88
|
-
"@xylabs/
|
|
89
|
-
"@xylabs/
|
|
90
|
-
"@xylabs/
|
|
91
|
-
"@xylabs/
|
|
92
|
-
"@xylabs/
|
|
93
|
-
"@
|
|
94
|
-
"@
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
85
|
+
"@storybook/react-vite": "~10.4.6",
|
|
86
|
+
"@types/react": "~19.2.17",
|
|
87
|
+
"@xylabs/eth-address": "~7.0.8",
|
|
88
|
+
"@xylabs/geo": "~7.0.8",
|
|
89
|
+
"@xylabs/pixel": "~7.0.8",
|
|
90
|
+
"@xylabs/threads": "~7.0.8",
|
|
91
|
+
"@xylabs/toolchain": "~8.6.2",
|
|
92
|
+
"@xylabs/tsconfig": "~8.6.2",
|
|
93
|
+
"@xylabs/tsconfig-dom": "~8.6.2",
|
|
94
|
+
"@xylabs/tsconfig-react": "~8.6.2",
|
|
95
|
+
"@xyo-network/sdk": "~7.0.8",
|
|
96
|
+
"@xyo-network/sdk-protocol": "~7.0.13",
|
|
97
|
+
"ajv": "~8.20.0",
|
|
98
|
+
"async-mutex": "~0.5.0",
|
|
99
|
+
"clsx": "~2.1.1",
|
|
100
|
+
"cosmiconfig": "~9.0.2",
|
|
101
|
+
"debug": "~4.4.3",
|
|
102
|
+
"eslint": "~10.6.0",
|
|
103
|
+
"ethers": "~6.17.0",
|
|
104
|
+
"hash-wasm": "~4.12.0",
|
|
105
|
+
"idb": "~8.0.3",
|
|
106
|
+
"lru-cache": "~11.5.1",
|
|
107
|
+
"md5": "~2.3.0",
|
|
108
|
+
"numeral": "~2.0.6",
|
|
109
|
+
"observable-fns": "~0.6.1",
|
|
110
|
+
"query-string": "~9.4.1",
|
|
111
|
+
"react": "~19.2.7",
|
|
112
|
+
"react-dom": "~19.2.7",
|
|
113
|
+
"react-router-dom": "~7.18.1",
|
|
114
|
+
"rollbar": "~3.1.0",
|
|
115
|
+
"storybook": "~10.4.6",
|
|
116
|
+
"typescript": "~6.0.3",
|
|
117
|
+
"uuid": "~14.0.1",
|
|
118
|
+
"viem": "~2.54.3",
|
|
119
|
+
"vite": "~8.1.3",
|
|
120
|
+
"webextension-polyfill": "~0.12.0",
|
|
121
|
+
"zod": "~4.4.3",
|
|
122
|
+
"zustand": "~5.0.14"
|
|
123
|
+
},
|
|
124
|
+
"peerDependencies": {
|
|
125
|
+
"@ariestools/sdk": "^7.0.8",
|
|
126
|
+
"@ariestools/sdk-react": "^10.0.5",
|
|
127
|
+
"@bitauth/libauth": "^3.0.0",
|
|
128
|
+
"@metamask/json-rpc-engine": "^10.5.0",
|
|
129
|
+
"@metamask/providers": "^22.1.1",
|
|
130
|
+
"@metamask/utils": "^11.11.0",
|
|
131
|
+
"@mui/icons-material": "^9.2.0",
|
|
132
|
+
"@mui/material": "^9.2.0",
|
|
133
|
+
"@noble/post-quantum": "^0.6.1",
|
|
134
|
+
"@opentelemetry/api": "^1.9.1",
|
|
135
|
+
"@opentelemetry/sdk-trace-base": "^2.9.0",
|
|
136
|
+
"@react-spring/web": "^10.1.2",
|
|
137
|
+
"@scure/base": "^2.2.0",
|
|
138
|
+
"@scure/bip39": "^2.2.0",
|
|
139
|
+
"@xylabs/eth-address": "^7.0.8",
|
|
140
|
+
"@xylabs/geo": "^7.0.8",
|
|
141
|
+
"@xylabs/pixel": "^7.0.8",
|
|
142
|
+
"@xylabs/threads": "^7.0.8",
|
|
143
|
+
"@xyo-network/sdk": "^7.0.8",
|
|
144
|
+
"@xyo-network/sdk-protocol": "^7.0.13",
|
|
98
145
|
"ajv": "^8.20.0",
|
|
99
146
|
"async-mutex": "^0.5.0",
|
|
100
147
|
"clsx": "^2.1.1",
|
|
101
148
|
"cosmiconfig": "^9.0.2",
|
|
102
|
-
"debug": "
|
|
103
|
-
"eslint": "^10.6.0",
|
|
149
|
+
"debug": "^4.4.3",
|
|
104
150
|
"ethers": "^6.17.0",
|
|
105
|
-
"hash-wasm": "
|
|
151
|
+
"hash-wasm": "^4.12.0",
|
|
106
152
|
"idb": "^8.0.3",
|
|
107
153
|
"lru-cache": "^11.5.1",
|
|
108
|
-
"md5": "^2.3",
|
|
154
|
+
"md5": "^2.3.0",
|
|
109
155
|
"numeral": "^2.0.6",
|
|
110
|
-
"observable-fns": "
|
|
156
|
+
"observable-fns": "^0.6.1",
|
|
111
157
|
"query-string": "^9.4.1",
|
|
112
158
|
"react": "^19.2.7",
|
|
113
159
|
"react-dom": "^19.2.7",
|
|
114
160
|
"react-router-dom": "^7.18.1",
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"zod": "~4.4.3",
|
|
161
|
+
"rollbar": "^3.1.0",
|
|
162
|
+
"uuid": "^14.0.1",
|
|
163
|
+
"viem": "^2.54.3",
|
|
164
|
+
"webextension-polyfill": "^0.12.0",
|
|
165
|
+
"zod": "^4.4.3",
|
|
121
166
|
"zustand": "^5.0.14"
|
|
122
167
|
},
|
|
123
|
-
"peerDependencies": {
|
|
124
|
-
"@ariestools/sdk": "^7.0",
|
|
125
|
-
"@bitauth/libauth": "~3.0",
|
|
126
|
-
"@metamask/json-rpc-engine": "^10.3",
|
|
127
|
-
"@metamask/utils": "^11.11",
|
|
128
|
-
"@mui/icons-material": "^9.0",
|
|
129
|
-
"@mui/material": "^9.0",
|
|
130
|
-
"@noble/post-quantum": "~0.6.1",
|
|
131
|
-
"@opentelemetry/api": "^1.9",
|
|
132
|
-
"@opentelemetry/sdk-trace-base": "^2.7",
|
|
133
|
-
"@react-spring/web": "~10.1",
|
|
134
|
-
"@scure/base": "~2.2",
|
|
135
|
-
"@scure/bip39": "~2.2",
|
|
136
|
-
"@xylabs/eth-address": "^7.0",
|
|
137
|
-
"@xylabs/geo": "^7.0",
|
|
138
|
-
"@xylabs/pixel": "^7.0",
|
|
139
|
-
"@xylabs/react-error": "~10.0",
|
|
140
|
-
"@xylabs/sdk": "^7.0",
|
|
141
|
-
"@xylabs/sdk-react": "^10.0",
|
|
142
|
-
"@xylabs/threads": "^7.0",
|
|
143
|
-
"@xyo-network/sdk-js": "^7.0",
|
|
144
|
-
"@xyo-network/sdk-protocol": "~7.0.4",
|
|
145
|
-
"ajv": "^8.20",
|
|
146
|
-
"async-mutex": "^0.5",
|
|
147
|
-
"clsx": "^2.1",
|
|
148
|
-
"cosmiconfig": "^9.0",
|
|
149
|
-
"debug": "~4.4",
|
|
150
|
-
"ethers": "^6.16",
|
|
151
|
-
"hash-wasm": "~4.12",
|
|
152
|
-
"idb": "^8.0",
|
|
153
|
-
"lru-cache": "^11.3",
|
|
154
|
-
"md5": "^2.3",
|
|
155
|
-
"numeral": "^2.0",
|
|
156
|
-
"observable-fns": "~0.6",
|
|
157
|
-
"query-string": "^9.4",
|
|
158
|
-
"react": "^19.2",
|
|
159
|
-
"react-dom": "^19.2",
|
|
160
|
-
"react-router-dom": "^7.15",
|
|
161
|
-
"uuid": "~14.0",
|
|
162
|
-
"viem": "^2.48",
|
|
163
|
-
"zod": "~4.4",
|
|
164
|
-
"zustand": "^5.0"
|
|
165
|
-
},
|
|
166
168
|
"engines": {
|
|
167
169
|
"node": ">=22.3"
|
|
168
170
|
},
|