@xyo-network/react-node 4.4.5 → 4.4.6
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.d.ts +7 -75
- package/package.json +18 -18
package/dist/browser/index.d.ts
CHANGED
|
@@ -2,13 +2,11 @@ import { FlexBoxProps } from '@xylabs/react-flexbox';
|
|
|
2
2
|
import { NodeInstance } from '@xyo-network/node-model';
|
|
3
3
|
import React, { PropsWithChildren } from 'react';
|
|
4
4
|
import { DrawerProps } from '@mui/material';
|
|
5
|
-
import * as _xylabs_logger from '@xylabs/logger';
|
|
6
|
-
import { Logger } from '@xylabs/logger';
|
|
7
|
-
import * as _xyo_network_payload_model from '@xyo-network/payload-model';
|
|
8
5
|
import * as _xyo_network_account_model from '@xyo-network/account-model';
|
|
9
6
|
import * as _xylabs_object from '@xylabs/object';
|
|
10
7
|
import * as _xyo_network_module_model from '@xyo-network/module-model';
|
|
11
8
|
import { ModuleInstance, ModuleFilterOptions, ModuleIdentifier, ModuleDescription } from '@xyo-network/module-model';
|
|
9
|
+
import { Logger } from '@xylabs/logger';
|
|
12
10
|
export * from '@xyo-network/react-node-context';
|
|
13
11
|
export * from '@xyo-network/react-node-provider';
|
|
14
12
|
|
|
@@ -35,44 +33,11 @@ declare const getModuleFilterOptions: (config?: ModuleFromNodeConfig) => {
|
|
|
35
33
|
addToResolvers?: boolean;
|
|
36
34
|
additionalSigners?: _xyo_network_account_model.AccountInstance[];
|
|
37
35
|
allowNameResolution?: boolean;
|
|
38
|
-
config:
|
|
39
|
-
schema: _xyo_network_payload_model.Schema;
|
|
40
|
-
readonly archiving?: {
|
|
41
|
-
readonly archivists?: string[] | undefined;
|
|
42
|
-
readonly queries?: string[] | undefined;
|
|
43
|
-
} | undefined;
|
|
44
|
-
readonly allowedQueries?: string[] | undefined;
|
|
45
|
-
readonly archivist?: _xyo_network_module_model.ModuleIdentifier | undefined;
|
|
46
|
-
readonly consoleLogger?: _xylabs_logger.LogLevel | undefined;
|
|
47
|
-
readonly labels?: {
|
|
48
|
-
[x: string]: string | undefined;
|
|
49
|
-
} | undefined;
|
|
50
|
-
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
51
|
-
readonly paging?: {
|
|
52
|
-
[x: string]: {
|
|
53
|
-
size?: number | undefined;
|
|
54
|
-
};
|
|
55
|
-
} | undefined;
|
|
56
|
-
readonly retry?: {
|
|
57
|
-
backoff?: number | undefined;
|
|
58
|
-
interval?: number | undefined;
|
|
59
|
-
retries?: number | undefined;
|
|
60
|
-
} | undefined;
|
|
61
|
-
readonly security?: {
|
|
62
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
63
|
-
readonly allowed?: {
|
|
64
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
65
|
-
} | undefined;
|
|
66
|
-
readonly disallowed?: {
|
|
67
|
-
[x: string]: Lowercase<string>[];
|
|
68
|
-
} | undefined;
|
|
69
|
-
} | undefined;
|
|
70
|
-
readonly sign?: boolean | undefined;
|
|
71
|
-
readonly storeQueries?: boolean | undefined;
|
|
72
|
-
readonly timestamp?: boolean | undefined;
|
|
73
|
-
}>;
|
|
36
|
+
config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
74
37
|
ephemeralQueryAccountEnabled?: boolean;
|
|
75
38
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
39
|
+
privateChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
40
|
+
publicChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
76
41
|
}, _xyo_network_module_model.ModuleEventData<object>>> | undefined;
|
|
77
42
|
maxDepth: number | undefined;
|
|
78
43
|
};
|
|
@@ -90,44 +55,11 @@ declare const getWeakModuleFilterOptions: (config?: WeakModuleFromNodeConfig) =>
|
|
|
90
55
|
addToResolvers?: boolean;
|
|
91
56
|
additionalSigners?: _xyo_network_account_model.AccountInstance[];
|
|
92
57
|
allowNameResolution?: boolean;
|
|
93
|
-
config:
|
|
94
|
-
schema: _xyo_network_payload_model.Schema;
|
|
95
|
-
readonly archiving?: {
|
|
96
|
-
readonly archivists?: string[] | undefined;
|
|
97
|
-
readonly queries?: string[] | undefined;
|
|
98
|
-
} | undefined;
|
|
99
|
-
readonly allowedQueries?: string[] | undefined;
|
|
100
|
-
readonly archivist?: _xyo_network_module_model.ModuleIdentifier | undefined;
|
|
101
|
-
readonly consoleLogger?: _xylabs_logger.LogLevel | undefined;
|
|
102
|
-
readonly labels?: {
|
|
103
|
-
[x: string]: string | undefined;
|
|
104
|
-
} | undefined;
|
|
105
|
-
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
106
|
-
readonly paging?: {
|
|
107
|
-
[x: string]: {
|
|
108
|
-
size?: number | undefined;
|
|
109
|
-
};
|
|
110
|
-
} | undefined;
|
|
111
|
-
readonly retry?: {
|
|
112
|
-
backoff?: number | undefined;
|
|
113
|
-
interval?: number | undefined;
|
|
114
|
-
retries?: number | undefined;
|
|
115
|
-
} | undefined;
|
|
116
|
-
readonly security?: {
|
|
117
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
118
|
-
readonly allowed?: {
|
|
119
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
120
|
-
} | undefined;
|
|
121
|
-
readonly disallowed?: {
|
|
122
|
-
[x: string]: Lowercase<string>[];
|
|
123
|
-
} | undefined;
|
|
124
|
-
} | undefined;
|
|
125
|
-
readonly sign?: boolean | undefined;
|
|
126
|
-
readonly storeQueries?: boolean | undefined;
|
|
127
|
-
readonly timestamp?: boolean | undefined;
|
|
128
|
-
}>;
|
|
58
|
+
config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
129
59
|
ephemeralQueryAccountEnabled?: boolean;
|
|
130
60
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
61
|
+
privateChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
62
|
+
publicChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
131
63
|
}, _xyo_network_module_model.ModuleEventData<object>>> | undefined;
|
|
132
64
|
maxDepth: number | undefined;
|
|
133
65
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/react-node",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.6",
|
|
4
4
|
"description": "Common React library for all XYO projects that use React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"xyo",
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@emotion/react": "^11.14.0",
|
|
47
47
|
"@emotion/styled": "^11.14.0",
|
|
48
|
-
"@mui/icons-material": "^6.4.
|
|
49
|
-
"@mui/material": "^6.4.
|
|
50
|
-
"@mui/styles": "^6.4.
|
|
48
|
+
"@mui/icons-material": "^6.4.5",
|
|
49
|
+
"@mui/material": "^6.4.5",
|
|
50
|
+
"@mui/styles": "^6.4.5",
|
|
51
51
|
"@mui/system": "^6.4.3",
|
|
52
52
|
"@mui/x-tree-view": "^7.26.0",
|
|
53
53
|
"@xylabs/exists": "^4.5.1",
|
|
@@ -56,24 +56,24 @@
|
|
|
56
56
|
"@xylabs/react-async-effect": "^5.3.23",
|
|
57
57
|
"@xylabs/react-flexbox": "^5.3.23",
|
|
58
58
|
"@xylabs/react-promise": "^5.3.23",
|
|
59
|
-
"@xyo-network/module-abstract": "^3.9.
|
|
60
|
-
"@xyo-network/module-model": "^3.9.
|
|
61
|
-
"@xyo-network/node-model": "^3.9.
|
|
62
|
-
"@xyo-network/payload-model": "^3.9.
|
|
63
|
-
"@xyo-network/react-node-context": "^4.4.
|
|
64
|
-
"@xyo-network/react-node-provider": "^4.4.
|
|
59
|
+
"@xyo-network/module-abstract": "^3.9.17",
|
|
60
|
+
"@xyo-network/module-model": "^3.9.17",
|
|
61
|
+
"@xyo-network/node-model": "^3.9.17",
|
|
62
|
+
"@xyo-network/payload-model": "^3.9.17",
|
|
63
|
+
"@xyo-network/react-node-context": "^4.4.6",
|
|
64
|
+
"@xyo-network/react-node-provider": "^4.4.6"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@storybook/react": "^8.
|
|
68
|
-
"@xylabs/ts-scripts-yarn3": "^5.0.
|
|
69
|
-
"@xylabs/tsconfig-react": "^5.0.
|
|
70
|
-
"@xyo-network/node-memory": "^3.9.
|
|
71
|
-
"@xyo-network/payload-model": "^3.9.
|
|
72
|
-
"@xyo-network/react-storybook": "^4.4.
|
|
73
|
-
"@xyo-network/react-wallet": "^4.4.
|
|
67
|
+
"@storybook/react": "^8.6.0",
|
|
68
|
+
"@xylabs/ts-scripts-yarn3": "^5.0.25",
|
|
69
|
+
"@xylabs/tsconfig-react": "^5.0.25",
|
|
70
|
+
"@xyo-network/node-memory": "^3.9.17",
|
|
71
|
+
"@xyo-network/payload-model": "^3.9.17",
|
|
72
|
+
"@xyo-network/react-storybook": "^4.4.6",
|
|
73
|
+
"@xyo-network/react-wallet": "^4.4.6",
|
|
74
74
|
"react": "^18.3.1",
|
|
75
75
|
"react-dom": "^18.3.1",
|
|
76
|
-
"storybook": "^8.
|
|
76
|
+
"storybook": "^8.6.0",
|
|
77
77
|
"typescript": "^5.7.3"
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|