@xyo-network/react-drawer 6.1.4 → 7.0.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.
@@ -1,13 +1,2 @@
1
- import { DrawerProps } from '@mui/material';
2
- import React, { PropsWithChildren } from 'react';
3
-
4
- interface DrawerExProps extends PropsWithChildren<DrawerProps> {
5
- heightVariant?: 'full' | 'auto';
6
- subTitle?: string;
7
- title?: string;
8
- widthVariant?: 'full' | 'partial';
9
- }
10
- declare const DrawerEx: React.FC<DrawerExProps>;
11
-
12
- export { DrawerEx };
13
- export type { DrawerExProps };
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-drawer",
3
- "version": "6.1.4",
3
+ "version": "7.0.0",
4
4
  "description": "Common React library for all XYO projects that use React",
5
5
  "keywords": [
6
6
  "xyo",
@@ -38,17 +38,21 @@
38
38
  },
39
39
  "module": "dist/browser/index.mjs",
40
40
  "types": "dist/browser/index.d.ts",
41
+ "files": [
42
+ "dist",
43
+ "src"
44
+ ],
41
45
  "dependencies": {
42
- "@xylabs/react-flexbox": "^6.3.13"
46
+ "@xylabs/react-flexbox": "^7.0.0"
43
47
  },
44
48
  "devDependencies": {
45
49
  "@mui/material": "^7.2.0",
46
50
  "@storybook/react-vite": "^9.0.18",
47
- "@types/react": "^19.1.8",
48
- "@xylabs/ts-scripts-yarn3": "next",
49
- "@xylabs/tsconfig-react": "next",
50
- "react": "^19.1.0",
51
- "react-dom": "^19.1.0",
51
+ "@types/react": "^19.1.9",
52
+ "@xylabs/ts-scripts-yarn3": "^7.0.2",
53
+ "@xylabs/tsconfig-react": "^7.0.2",
54
+ "react": "^19.1.1",
55
+ "react-dom": "^19.1.1",
52
56
  "storybook": "^9.0.18",
53
57
  "typescript": "^5.8.3"
54
58
  },
package/typedoc.json DELETED
@@ -1,5 +0,0 @@
1
- {
2
- "$schema": "https://typedoc.org/schema.json",
3
- "entryPoints": ["src/index.ts"],
4
- "tsconfig": "./tsconfig.typedoc.json"
5
- }
package/xy.config.ts DELETED
@@ -1,10 +0,0 @@
1
- import type { XyTsupConfig } from '@xylabs/ts-scripts-yarn3'
2
- const config: XyTsupConfig = {
3
- compile: {
4
- browser: { src: true },
5
- node: {},
6
- neutral: {},
7
- },
8
- }
9
-
10
- export default config