elseware-ui 2.12.6 → 2.13.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/README.md +1 -1
- package/build/components/index.d.ts +63 -0
- package/build/hooks/index.d.ts +6 -0
- package/build/index.d.ts +3 -67
- package/build/index.es.js +40 -6
- package/build/index.js +45 -5
- package/build/layouts/index.d.ts +6 -0
- package/package.json +54 -32
- package/build/layouts/DefaultLayout.d.ts +0 -5
- /package/build/{utils/hooks → hooks}/components/useDrawer.d.ts +0 -0
- /package/build/{utils/hooks → hooks}/components/useModal.d.ts +0 -0
- /package/build/{utils/hooks → hooks/theme}/useTheme.d.ts +0 -0
- /package/build/{utils/hooks → hooks}/useClickOutside.d.ts +0 -0
- /package/build/{utils/hooks → hooks}/useIsMobile.d.ts +0 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import GenericLayout from "./GenericLayout";
|
|
2
|
+
import DefaultLayout from "./primary/DefaultLayout";
|
|
3
|
+
import HomeLayout from "./primary/HomeLayout";
|
|
4
|
+
import SidebarLayout from "./primary/SidebarLayout";
|
|
5
|
+
import SidemenuLayout from "./secondary/SidemenuLayout";
|
|
6
|
+
export { GenericLayout, DefaultLayout, HomeLayout, SidebarLayout, SidemenuLayout, };
|
package/package.json
CHANGED
|
@@ -1,41 +1,42 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "elseware-ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.13.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A modern and customizable React UI component library by elseware Technology.",
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
"keywords": [
|
|
7
|
+
"react",
|
|
8
|
+
"ui-library",
|
|
9
|
+
"component-library",
|
|
10
|
+
"tailwind",
|
|
11
|
+
"design-system",
|
|
12
|
+
"elseware"
|
|
13
|
+
],
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/elsewaretechnologies/elseware-ui.git"
|
|
17
|
+
},
|
|
18
|
+
"author": "elseware Technology <elsewaretechnology@gmail.com>",
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"main": "./build/index.js",
|
|
21
|
+
"module": "./build/index.es.js",
|
|
22
|
+
"types": "./build/index.d.ts",
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"import": "./build/index.es.js",
|
|
26
|
+
"require": "./build/index.js",
|
|
27
|
+
"types": "./build/index.d.ts"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
10
30
|
"files": [
|
|
11
31
|
"build"
|
|
12
32
|
],
|
|
13
|
-
"dependencies": {
|
|
14
|
-
"@headlessui/react": "^2.1.8",
|
|
15
|
-
"@mdxeditor/editor": "^3.36.0",
|
|
16
|
-
"autoprefixer": "^10.4.16",
|
|
17
|
-
"chart.js": "^4.4.4",
|
|
18
|
-
"classnames": "^2.5.1",
|
|
19
|
-
"cloudinary-react": "^1.8.1",
|
|
20
|
-
"cssnano": "^6.0.3",
|
|
21
|
-
"emoji-flags": "^1.3.0",
|
|
22
|
-
"formik": "^2.4.5",
|
|
23
|
-
"postcss": "^8.4.33",
|
|
24
|
-
"react-beautiful-dnd": "^13.1.1",
|
|
25
|
-
"react-chartjs-2": "^5.2.0",
|
|
26
|
-
"react-icons": "^4.12.0",
|
|
27
|
-
"react-scripts": "5.0.1",
|
|
28
|
-
"react-toastify": "^10.0.5",
|
|
29
|
-
"react-world-flags": "^1.6.0",
|
|
30
|
-
"tailwindcss": "^3.4.1",
|
|
31
|
-
"typescript": "^4.9.5",
|
|
32
|
-
"yup": "^1.3.3"
|
|
33
|
-
},
|
|
34
33
|
"scripts": {
|
|
35
|
-
"
|
|
34
|
+
"dev": "storybook dev -p 6006",
|
|
35
|
+
"build": "rollup -c",
|
|
36
36
|
"build:storybook": "storybook build",
|
|
37
|
-
"
|
|
38
|
-
"
|
|
37
|
+
"clean": "rm -rf build dist node_modules/.cache",
|
|
38
|
+
"prepare": "npm run build",
|
|
39
|
+
"release": "npm version patch && npm publish --access public"
|
|
39
40
|
},
|
|
40
41
|
"eslintConfig": {
|
|
41
42
|
"extends": [
|
|
@@ -57,8 +58,24 @@
|
|
|
57
58
|
]
|
|
58
59
|
},
|
|
59
60
|
"peerDependencies": {
|
|
60
|
-
"react": "
|
|
61
|
-
"react-dom": "
|
|
61
|
+
"react": ">=18",
|
|
62
|
+
"react-dom": ">=18",
|
|
63
|
+
"tailwindcss": ">=3.0.0"
|
|
64
|
+
},
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"@headlessui/react": "^2.1.8",
|
|
67
|
+
"@mdxeditor/editor": "^3.36.0",
|
|
68
|
+
"chart.js": "^4.4.4",
|
|
69
|
+
"classnames": "^2.5.1",
|
|
70
|
+
"cloudinary-react": "^1.8.1",
|
|
71
|
+
"emoji-flags": "^1.3.0",
|
|
72
|
+
"formik": "^2.4.5",
|
|
73
|
+
"react-beautiful-dnd": "^13.1.1",
|
|
74
|
+
"react-chartjs-2": "^5.2.0",
|
|
75
|
+
"react-icons": "^4.12.0",
|
|
76
|
+
"react-toastify": "^10.0.5",
|
|
77
|
+
"react-world-flags": "^1.6.0",
|
|
78
|
+
"yup": "^1.3.3"
|
|
62
79
|
},
|
|
63
80
|
"devDependencies": {
|
|
64
81
|
"@rollup/plugin-commonjs": "^17.0.0",
|
|
@@ -91,6 +108,11 @@
|
|
|
91
108
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
92
109
|
"storybook": "^8.5.0",
|
|
93
110
|
"tslib": "^2.6.2",
|
|
94
|
-
"
|
|
111
|
+
"typescript": "^4.9.5",
|
|
112
|
+
"react-scripts": "5.0.1",
|
|
113
|
+
"autoprefixer": "^10.4.16",
|
|
114
|
+
"postcss": "^8.4.33",
|
|
115
|
+
"cssnano": "^6.0.3",
|
|
116
|
+
"tailwindcss": "^3.4.1"
|
|
95
117
|
}
|
|
96
118
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|