@xyo-network/react-property 2.70.0-rc.1 → 2.70.1
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/package.json
CHANGED
|
@@ -10,12 +10,12 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-react-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xylabs/react-button": "^3.1.
|
|
14
|
-
"@xylabs/react-flexbox": "^3.1.
|
|
15
|
-
"@xylabs/react-identicon": "^3.1.
|
|
16
|
-
"@xylabs/react-quick-tip-button": "^3.1.
|
|
17
|
-
"@xyo-network/react-shared": "~2.70.
|
|
18
|
-
"@xyo-network/typeof": "^2.92.0
|
|
13
|
+
"@xylabs/react-button": "^3.1.4",
|
|
14
|
+
"@xylabs/react-flexbox": "^3.1.4",
|
|
15
|
+
"@xylabs/react-identicon": "^3.1.4",
|
|
16
|
+
"@xylabs/react-quick-tip-button": "^3.1.4",
|
|
17
|
+
"@xyo-network/react-shared": "~2.70.1",
|
|
18
|
+
"@xyo-network/typeof": "^2.92.0"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"@mui/icons-material": "^5",
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"@storybook/react": "^7.6.17",
|
|
29
29
|
"@xylabs/ts-scripts-yarn3": "^3.4.1",
|
|
30
30
|
"@xylabs/tsconfig-react": "^3.4.1",
|
|
31
|
-
"@xyo-network/payload-builder": "^2.92.0
|
|
32
|
-
"@xyo-network/react-storybook": "~2.70.
|
|
33
|
-
"typescript": "^5.
|
|
31
|
+
"@xyo-network/payload-builder": "^2.92.0",
|
|
32
|
+
"@xyo-network/react-storybook": "~2.70.1",
|
|
33
|
+
"typescript": "^5.4.2"
|
|
34
34
|
},
|
|
35
35
|
"description": "Common React library for all XYO projects that use React",
|
|
36
36
|
"docs": "dist/docs.json",
|
|
@@ -83,7 +83,6 @@
|
|
|
83
83
|
},
|
|
84
84
|
"sideEffects": false,
|
|
85
85
|
"types": "dist/browser/index.d.ts",
|
|
86
|
-
"version": "2.70.
|
|
87
|
-
"type": "module"
|
|
88
|
-
"stableVersion": "2.69.2"
|
|
86
|
+
"version": "2.70.1",
|
|
87
|
+
"type": "module"
|
|
89
88
|
}
|
|
@@ -19,9 +19,9 @@ const StorybookEntry = {
|
|
|
19
19
|
title: 'property/PropertyBox',
|
|
20
20
|
} as Meta<typeof Property>
|
|
21
21
|
|
|
22
|
-
const Template: StoryFn
|
|
22
|
+
const Template: StoryFn = (args: PropertyProps) => <Property {...args} paper={false}></Property>
|
|
23
23
|
|
|
24
|
-
const TemplateWithCompare: StoryFn
|
|
24
|
+
const TemplateWithCompare: StoryFn = (args: PropertyProps) => (
|
|
25
25
|
<FlexCol gap={1} alignItems="stretch">
|
|
26
26
|
<FlexRow gap={1}>
|
|
27
27
|
<TextField size="small" value="Sample text Field" />
|
|
@@ -19,9 +19,9 @@ const StorybookEntry = {
|
|
|
19
19
|
title: 'property/PropertyPaper',
|
|
20
20
|
} as Meta<typeof Property>
|
|
21
21
|
|
|
22
|
-
const Template: StoryFn
|
|
22
|
+
const Template: StoryFn = (args: PropertyProps) => <Property {...(args as PropertyPaperProps)} paper={true}></Property>
|
|
23
23
|
|
|
24
|
-
const TemplateWithCompare: StoryFn
|
|
24
|
+
const TemplateWithCompare: StoryFn = (args: PropertyProps) => (
|
|
25
25
|
<FlexCol gap={1} alignItems="stretch">
|
|
26
26
|
<FlexRow gap={1}>
|
|
27
27
|
<TextField size="small" value="Sample text Field" />
|