@xyo-network/react-embed 3.0.9 → 3.0.10

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/react-embed",
3
- "version": "3.0.9",
3
+ "version": "3.0.10",
4
4
  "description": "Common React library for all XYO projects that use React",
5
5
  "keywords": [
6
6
  "xyo",
@@ -27,7 +27,7 @@
27
27
  "type": "module",
28
28
  "exports": {
29
29
  ".": {
30
- "import": {
30
+ "browser": {
31
31
  "types": "./dist/browser/index.d.ts",
32
32
  "default": "./dist/browser/index.mjs"
33
33
  },
@@ -47,16 +47,16 @@
47
47
  "@mui/material": "^5.16.7",
48
48
  "@mui/styles": "^5.16.7",
49
49
  "@xylabs/delay": "^4.0.9",
50
- "@xylabs/react-async-effect": "^4.1.2",
51
- "@xylabs/react-flexbox": "^4.1.2",
52
- "@xylabs/react-select": "^4.1.2",
53
- "@xylabs/react-shared": "^4.1.2",
54
- "@xyo-network/huri": "^3.1.5",
55
- "@xyo-network/payload-model": "^3.1.5",
56
- "@xyo-network/react-error": "^3.0.9",
57
- "@xyo-network/react-payload-plugin": "^3.0.9",
58
- "@xyo-network/react-shared": "^3.0.9",
59
- "@xyo-network/schema-cache": "^3.1.5",
50
+ "@xylabs/react-async-effect": "^4.2.5",
51
+ "@xylabs/react-flexbox": "^4.2.5",
52
+ "@xylabs/react-select": "^4.2.5",
53
+ "@xylabs/react-shared": "^4.2.5",
54
+ "@xyo-network/huri": "^3.1.9",
55
+ "@xyo-network/payload-model": "^3.1.9",
56
+ "@xyo-network/react-error": "^3.0.10",
57
+ "@xyo-network/react-payload-plugin": "^3.0.10",
58
+ "@xyo-network/react-shared": "^3.0.10",
59
+ "@xyo-network/schema-cache": "^3.1.9",
60
60
  "react": "^18.3.1",
61
61
  "react-dom": "^18.3.1"
62
62
  },
@@ -66,8 +66,8 @@
66
66
  "@storybook/react": "^8.2.9",
67
67
  "@xylabs/ts-scripts-yarn3": "^4.0.7",
68
68
  "@xylabs/tsconfig-react": "^4.0.7",
69
- "@xyo-network/react-aggregate-price-plugin": "^3.0.9",
70
- "@xyo-network/react-crypto-market-uniswap-plugin": "^3.0.9",
69
+ "@xyo-network/react-aggregate-price-plugin": "^3.0.10",
70
+ "@xyo-network/react-crypto-market-uniswap-plugin": "^3.0.10",
71
71
  "react-router-dom": "^6.26.1",
72
72
  "storybook": "^8.2.9",
73
73
  "typescript": "^5.5.4"
@@ -2,7 +2,8 @@ import type { Meta } from '@storybook/react'
2
2
  import { CryptoAssetRenderPlugin } from '@xyo-network/react-aggregate-price-plugin'
3
3
  import { UniswapPairsRenderPlugin } from '@xyo-network/react-crypto-market-uniswap-plugin'
4
4
 
5
- import { Template, xyoEmbedStoryBase } from './storyShared.tsx'
5
+ import { Template } from './storyShared.tsx'
6
+ import { xyoEmbedStoryBase } from './xyoEmbedStoryBase.ts'
6
7
 
7
8
  const AggregatePricePointer = 'https://api.archivist.xyo.network/1948bf4eedf90ee2b8a1f63216b7c6b3b18d7bc2834330d85bcd6ab3d6428a20'
8
9
  const UniswapPairPointer = 'https://beta.api.archivist.xyo.network/e36602006239d86b6e08412f7879372b2c622d74f4d6bc508a08a46fa8ad6523'
@@ -4,7 +4,8 @@ import { UniswapPairsRenderPlugin } from '@xyo-network/react-crypto-market-unisw
4
4
  import { createPayloadRenderPlugin } from '@xyo-network/react-payload-plugin'
5
5
 
6
6
  import { payloadData } from './storyPayload.ts'
7
- import { Template, xyoEmbedStoryBase } from './storyShared.tsx'
7
+ import { Template } from './storyShared.tsx'
8
+ import { xyoEmbedStoryBase } from './xyoEmbedStoryBase.ts'
8
9
 
9
10
  const AggregatePricePointer = 'https://api.archivist.xyo.network/1948bf4eedf90ee2b8a1f63216b7c6b3b18d7bc2834330d85bcd6ab3d6428a20'
10
11