@xyo-network/react-payload-details 6.1.3 → 6.2.0
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 +2 -41
- package/package.json +21 -21
- package/src/global.d.ts +1 -1
package/dist/browser/index.d.ts
CHANGED
@@ -1,41 +1,2 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
import { SizeProp } from '@xyo-network/react-shared';
|
4
|
-
import React from 'react';
|
5
|
-
import { FlexBoxProps } from '@xylabs/react-flexbox';
|
6
|
-
import { JsonViewerExProps } from '@xyo-network/react-payload-raw-info';
|
7
|
-
|
8
|
-
type PayloadDataDetailsProps = PropertyProps & {
|
9
|
-
badge?: boolean;
|
10
|
-
payload?: Payload;
|
11
|
-
size?: SizeProp;
|
12
|
-
};
|
13
|
-
declare const PayloadDataDetails: React.FC<PayloadDataDetailsProps>;
|
14
|
-
|
15
|
-
type WithPaper<T> = T & {
|
16
|
-
paper: true;
|
17
|
-
};
|
18
|
-
type WithoutPaper<T> = T & {
|
19
|
-
paper?: false;
|
20
|
-
};
|
21
|
-
type PayloadDetailsProps = FlexBoxProps & {
|
22
|
-
paper?: boolean;
|
23
|
-
payload?: Payload;
|
24
|
-
};
|
25
|
-
declare const PayloadDetails: React.FC<PayloadDetailsProps>;
|
26
|
-
|
27
|
-
type PayloadJsonDetailsProps = PropertyGroupProps & {
|
28
|
-
jsonViewProps?: JsonViewerExProps;
|
29
|
-
payload?: Payload;
|
30
|
-
};
|
31
|
-
declare const PayloadJsonDetails: React.FC<PayloadJsonDetailsProps>;
|
32
|
-
|
33
|
-
type PayloadValidationDetailsProps = PropertyGroupProps & {
|
34
|
-
skipBody?: boolean;
|
35
|
-
value?: Payload;
|
36
|
-
};
|
37
|
-
|
38
|
-
declare const PayloadValidationDetails: React.FC<PayloadValidationDetailsProps>;
|
39
|
-
|
40
|
-
export { PayloadDataDetails, PayloadDetails, PayloadJsonDetails, PayloadValidationDetails };
|
41
|
-
export type { PayloadDataDetailsProps, PayloadDetailsProps, PayloadJsonDetailsProps, PayloadValidationDetailsProps, WithPaper, WithoutPaper };
|
1
|
+
export * from './components/index.ts';
|
2
|
+
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@xyo-network/react-payload-details",
|
3
|
-
"version": "6.
|
3
|
+
"version": "6.2.0",
|
4
4
|
"description": "Common React library for all XYO projects that use React",
|
5
5
|
"keywords": [
|
6
6
|
"xyo",
|
@@ -39,33 +39,33 @@
|
|
39
39
|
"module": "dist/browser/index.mjs",
|
40
40
|
"types": "dist/browser/index.d.ts",
|
41
41
|
"dependencies": {
|
42
|
-
"@xylabs/forget": "^4.
|
43
|
-
"@xylabs/react-button": "^6.
|
44
|
-
"@xylabs/react-flexbox": "^6.
|
45
|
-
"@xylabs/react-promise": "^6.
|
46
|
-
"@xylabs/react-quick-tip-button": "^6.
|
47
|
-
"@xyo-network/payload-builder": "^4.
|
48
|
-
"@xyo-network/payload-model": "^4.
|
49
|
-
"@xyo-network/payload-validator": "^4.
|
50
|
-
"@xyo-network/react-payload-raw-info": "^6.
|
51
|
-
"@xyo-network/react-property": "^6.
|
52
|
-
"@xyo-network/react-schema": "^6.
|
53
|
-
"@xyo-network/react-shared": "^6.
|
42
|
+
"@xylabs/forget": "^4.15.0",
|
43
|
+
"@xylabs/react-button": "^6.4.0",
|
44
|
+
"@xylabs/react-flexbox": "^6.4.0",
|
45
|
+
"@xylabs/react-promise": "^6.4.0",
|
46
|
+
"@xylabs/react-quick-tip-button": "^6.4.0",
|
47
|
+
"@xyo-network/payload-builder": "^4.3.0",
|
48
|
+
"@xyo-network/payload-model": "^4.3.0",
|
49
|
+
"@xyo-network/payload-validator": "^4.3.0",
|
50
|
+
"@xyo-network/react-payload-raw-info": "^6.2.0",
|
51
|
+
"@xyo-network/react-property": "^6.2.0",
|
52
|
+
"@xyo-network/react-schema": "^6.2.0",
|
53
|
+
"@xyo-network/react-shared": "^6.2.0"
|
54
54
|
},
|
55
55
|
"devDependencies": {
|
56
56
|
"@emotion/react": "^11.14.0",
|
57
57
|
"@emotion/styled": "^11.14.1",
|
58
58
|
"@mui/icons-material": "^7.2.0",
|
59
59
|
"@mui/material": "^7.2.0",
|
60
|
-
"@storybook/react-vite": "^9.0.
|
60
|
+
"@storybook/react-vite": "^9.0.18",
|
61
61
|
"@types/react": "^19.1.8",
|
62
|
-
"@xylabs/ts-scripts-yarn3": "
|
63
|
-
"@xylabs/tsconfig-react": "
|
64
|
-
"@xyo-network/react-storybook": "^6.
|
65
|
-
"react": "^19.1.
|
66
|
-
"react-dom": "^19.1.
|
67
|
-
"react-router-dom": "^7.7.
|
68
|
-
"storybook": "^9.0.
|
62
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.1",
|
63
|
+
"@xylabs/tsconfig-react": "^7.0.1",
|
64
|
+
"@xyo-network/react-storybook": "^6.2.0",
|
65
|
+
"react": "^19.1.1",
|
66
|
+
"react-dom": "^19.1.1",
|
67
|
+
"react-router-dom": "^7.7.1",
|
68
|
+
"storybook": "^9.0.18",
|
69
69
|
"typescript": "^5.8.3"
|
70
70
|
},
|
71
71
|
"peerDependencies": {
|
package/src/global.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
import
|
1
|
+
import '@mui/material/themeCssVarsAugmentation'
|