@xyo-network/react-schema 2.25.37 → 2.25.40

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/docs.json CHANGED
@@ -380,7 +380,7 @@
380
380
  }
381
381
  ],
382
382
  "qualifiedName": "SelectExProps",
383
- "package": "@xylabs/sdk-react",
383
+ "package": "@xylabs/react-common",
384
384
  "name": "SelectExProps"
385
385
  }
386
386
  },
@@ -451,7 +451,7 @@
451
451
  }
452
452
  ],
453
453
  "qualifiedName": "WithChildren",
454
- "package": "@xylabs/sdk-react",
454
+ "package": "@xylabs/react-shared",
455
455
  "name": "WithChildren"
456
456
  }
457
457
  ],
@@ -519,7 +519,7 @@
519
519
  }
520
520
  ],
521
521
  "qualifiedName": "WithChildren",
522
- "package": "@xylabs/sdk-react",
522
+ "package": "@xylabs/react-shared",
523
523
  "name": "WithChildren"
524
524
  }
525
525
  ],
package/package.json CHANGED
@@ -12,15 +12,15 @@
12
12
  "dependencies": {
13
13
  "@emotion/react": "^11.9.0",
14
14
  "@emotion/styled": "^11.8.1",
15
- "@mui/material": "^5.8.2",
16
- "@xylabs/sdk-react": "^2.12.10",
17
- "@xyo-network/api": "^2.20.41",
18
- "@xyo-network/core": "^2.20.41",
19
- "@xyo-network/react-archive": "^2.25.37",
20
- "@xyo-network/react-archivist-api": "^2.25.37",
21
- "@xyo-network/react-shared": "^2.25.37",
22
- "@xyo-network/react-theme": "^2.25.37",
23
- "@xyo-network/utils": "^2.20.41",
15
+ "@mui/material": "^5.8.3",
16
+ "@xylabs/sdk-react": "^2.13.7",
17
+ "@xyo-network/api": "^2.20.43",
18
+ "@xyo-network/core": "^2.20.43",
19
+ "@xyo-network/react-archive": "^2.25.40",
20
+ "@xyo-network/react-archivist-api": "^2.25.40",
21
+ "@xyo-network/react-shared": "^2.25.40",
22
+ "@xyo-network/react-theme": "^2.25.40",
23
+ "@xyo-network/utils": "^2.20.43",
24
24
  "lodash": "^4.17.21",
25
25
  "react": "^18.1.0",
26
26
  "react-dom": "^18.1.0",
@@ -32,19 +32,19 @@
32
32
  "devDependencies": {
33
33
  "@babel/core": "^7.18.2",
34
34
  "@babel/preset-env": "^7.18.2",
35
- "@storybook/addons": "^6.5.6",
36
- "@storybook/api": "^6.5.6",
37
- "@storybook/components": "^6.5.6",
38
- "@storybook/core-events": "^6.5.6",
39
- "@storybook/react": "^6.5.6",
40
- "@storybook/theming": "^6.5.6",
35
+ "@storybook/addons": "^6.5.7",
36
+ "@storybook/api": "^6.5.7",
37
+ "@storybook/components": "^6.5.7",
38
+ "@storybook/core-events": "^6.5.7",
39
+ "@storybook/react": "^6.5.7",
40
+ "@storybook/theming": "^6.5.7",
41
41
  "@types/lodash": "^4.14.182",
42
- "@xylabs/sdk-react": "^2.12.10",
42
+ "@xylabs/sdk-react": "^2.13.7",
43
43
  "@xylabs/ts-scripts": "^1.0.66",
44
44
  "@xylabs/tsconfig": "^1.0.13",
45
45
  "axios": "^0.27.2",
46
46
  "storybook-dark-mode": "^1.1.0",
47
- "typescript": "^4.7.2"
47
+ "typescript": "^4.7.3"
48
48
  },
49
49
  "browser": "dist/esm/index.js",
50
50
  "docs": "dist/docs.json",
@@ -104,6 +104,6 @@
104
104
  },
105
105
  "sideEffects": false,
106
106
  "types": "dist/esm/index.d.ts",
107
- "version": "2.25.37",
107
+ "version": "2.25.40",
108
108
  "packageManager": "yarn@3.1.1"
109
109
  }
@@ -2,21 +2,13 @@
2
2
  import { ComponentMeta, ComponentStory } from '@storybook/react'
3
3
  import { SelectExProps } from '@xylabs/sdk-react'
4
4
 
5
- import { authDecorator, authServiceList, WrappedArgs } from '../../../../../.storybook'
5
+ import { authDecorator, WrappedArgs } from '../../../../../.storybook'
6
6
  import { ArchivistApiProvider } from '../../../../archivist-api/src'
7
7
  import { SchemaMemoryProvider } from '../../contexts'
8
8
  import { SchemaSelectEx } from './SchemaSelectEx'
9
9
 
10
10
  const StorybookEntry = {
11
- argTypes: {
12
- authState: {
13
- defaultValue: {
14
- authServiceList,
15
- jwtToken: 'badToken',
16
- loggedInAccount: 'none@none.com',
17
- },
18
- },
19
- },
11
+ argTypes: {},
20
12
  component: SchemaSelectEx,
21
13
  decorators: [authDecorator],
22
14
  parameters: {