@asaleh37/ui-base 1.2.4 → 1.2.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/index.d.ts +2 -1
- package/dist/index.js +5 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +12 -6
- package/src/components/index.ts +1 -0
- package/src/index.ts +1 -0
- package/src/routes/index.ts +0 -1
- package/src/types/index.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@asaleh37/ui-base",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.6",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": "Ahmed Saleh Mohamed",
|
|
@@ -67,7 +67,13 @@
|
|
|
67
67
|
"typescript": "~5.7.2",
|
|
68
68
|
"typescript-eslint": "^8.22.0",
|
|
69
69
|
"vite": "^6.1.0",
|
|
70
|
-
"zod": "^3.24.2"
|
|
70
|
+
"zod": "^3.24.2",
|
|
71
|
+
"@mui/lab": "^7.0.0-beta.13",
|
|
72
|
+
"draft-js": "^0.11.7",
|
|
73
|
+
"draft-js-import-html": "^1.4.1",
|
|
74
|
+
"draftjs-to-html": "^0.9.1",
|
|
75
|
+
"react-draft-wysiwyg": "^1.15.0",
|
|
76
|
+
"rollup-plugin-polyfill-node": "^0.13.0"
|
|
71
77
|
},
|
|
72
78
|
"peerDependencies": {
|
|
73
79
|
"@emotion/cache": "^11.14.0",
|
|
@@ -105,15 +111,15 @@
|
|
|
105
111
|
"rollup-plugin-postcss": "^4.0.2",
|
|
106
112
|
"stylis": "^4.3.6",
|
|
107
113
|
"stylis-plugin-rtl": "^2.1.1",
|
|
108
|
-
"zod": "^3.24.2"
|
|
109
|
-
},
|
|
110
|
-
"dependencies": {
|
|
114
|
+
"zod": "^3.24.2",
|
|
111
115
|
"@mui/lab": "^7.0.0-beta.13",
|
|
112
|
-
"@rollup/plugin-json": "^6.1.0",
|
|
113
116
|
"draft-js": "^0.11.7",
|
|
114
117
|
"draft-js-import-html": "^1.4.1",
|
|
115
118
|
"draftjs-to-html": "^0.9.1",
|
|
116
119
|
"react-draft-wysiwyg": "^1.15.0",
|
|
117
120
|
"rollup-plugin-polyfill-node": "^0.13.0"
|
|
121
|
+
},
|
|
122
|
+
"dependencies": {
|
|
123
|
+
"@rollup/plugin-json": "^6.1.0"
|
|
118
124
|
}
|
|
119
125
|
}
|
package/src/components/index.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./BaseApp";
|
|
2
2
|
export * from "@mui/material";
|
|
3
3
|
export * from "zod";
|
|
4
|
+
export * from "@mui/lab";
|
|
4
5
|
export { toast } from "react-toastify";
|
|
5
6
|
export { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
6
7
|
export type { FontAwesomeIconProps } from "@fortawesome/react-fontawesome";
|
package/src/index.ts
CHANGED
package/src/routes/index.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { ExtendedTreeItemProps } from "../navigationItems/index";
|