@xyo-network/os-react-runtime 5.0.6 → 5.0.7
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 +819 -299
- package/dist/browser/index.mjs.map +1 -1
- package/dist/types/modules/Dapp/Button/StyledDappIconBuilder.d.ts +1 -1
- package/dist/types/modules/Dapp/Button/lib/decomposeProps.d.ts +105 -105
- package/dist/types/modules/Dapp/index.d.ts +3 -0
- package/dist/types/modules/Dapp/index.d.ts.map +1 -1
- package/dist/types/modules/Dapp/modules/Window/components/menu/StyledListItems.d.ts +1 -1
- package/dist/types/modules/dapps/table/head/components/StyledTableRowHeader.d.ts +1 -1
- package/dist/types/modules/index.d.ts +1 -0
- package/dist/types/modules/index.d.ts.map +1 -1
- package/dist/types/modules/widgets/Types/Stat/Subtitle.d.ts +1 -1
- package/dist/types/modules/widgets/Types/Stat/Unit.d.ts +1 -1
- package/dist/types/modules/widgets/Types/Stat/Value.d.ts +1 -1
- package/dist/types/modules/widgets/Types/Tables/BooleanTable.d.ts +4 -4
- package/package.json +9 -9
- package/src/modules/Dapp/index.ts +3 -0
- package/src/modules/index.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/os-react-runtime",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.7",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -46,23 +46,23 @@
|
|
|
46
46
|
"@xylabs/react-promise": "^6.2.2",
|
|
47
47
|
"@xyo-network/archivist-indexeddb": "^3.12.5",
|
|
48
48
|
"@xyo-network/archivist-model": "^3.12.5",
|
|
49
|
-
"@xyo-network/bios-browser": "^5.0.
|
|
50
|
-
"@xyo-network/bios-model": "^5.0.
|
|
49
|
+
"@xyo-network/bios-browser": "^5.0.7",
|
|
50
|
+
"@xyo-network/bios-model": "^5.0.7",
|
|
51
51
|
"@xyo-network/diviner-boundwitness-indexeddb": "^3.12.5",
|
|
52
52
|
"@xyo-network/diviner-model": "^3.12.5",
|
|
53
53
|
"@xyo-network/diviner-payload-generic": "^3.12.5",
|
|
54
54
|
"@xyo-network/diviner-payload-indexeddb": "^3.12.5",
|
|
55
55
|
"@xyo-network/diviner-payload-model": "^3.12.5",
|
|
56
|
-
"@xyo-network/kernel": "^5.0.
|
|
57
|
-
"@xyo-network/kernel-model": "^5.0.
|
|
56
|
+
"@xyo-network/kernel": "^5.0.7",
|
|
57
|
+
"@xyo-network/kernel-model": "^5.0.7",
|
|
58
58
|
"@xyo-network/module-event-emitter": "^3.12.5",
|
|
59
59
|
"@xyo-network/module-events": "^3.12.5",
|
|
60
60
|
"@xyo-network/module-factory-locator": "^3.12.5",
|
|
61
61
|
"@xyo-network/node-model": "^3.12.5",
|
|
62
|
-
"@xyo-network/os-model": "^5.0.
|
|
63
|
-
"@xyo-network/os-react-debug": "^5.0.
|
|
64
|
-
"@xyo-network/os-react-model": "^5.0.
|
|
65
|
-
"@xyo-network/os-runtime": "^5.0.
|
|
62
|
+
"@xyo-network/os-model": "^5.0.7",
|
|
63
|
+
"@xyo-network/os-react-debug": "^5.0.7",
|
|
64
|
+
"@xyo-network/os-react-model": "^5.0.7",
|
|
65
|
+
"@xyo-network/os-runtime": "^5.0.7",
|
|
66
66
|
"@xyo-network/payload-model": "^3.12.5",
|
|
67
67
|
"@xyo-network/react-archivist": "^5.2.2",
|
|
68
68
|
"@xyo-network/react-card": "^5.2.2",
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
export * from './Alert/index.ts'
|
|
1
2
|
export * from './Container.js'
|
|
2
3
|
export * from './ContainerFlexbox.js'
|
|
3
4
|
export * from './Debug/index.ts'
|
|
4
5
|
export * from './modules/index.ts'
|
|
5
6
|
export * from './Page/index.ts'
|
|
7
|
+
export * from './RenderHtml.tsx'
|
|
8
|
+
export * from './useDappCaller.ts'
|