elseware-ui 2.35.0 → 2.36.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.
- package/LICENSE +20 -20
- package/README.md +215 -24
- package/dist/index.css +588 -49
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +578 -450
- package/dist/index.d.ts +578 -450
- package/dist/index.js +3217 -2457
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3707 -2973
- package/dist/index.mjs.map +1 -1
- package/package.json +37 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "elseware-ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.36.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A modern and customizable React UI component library by elseware Technology.",
|
|
6
6
|
"keywords": [
|
|
@@ -9,11 +9,12 @@
|
|
|
9
9
|
"component-library",
|
|
10
10
|
"tailwind",
|
|
11
11
|
"design-system",
|
|
12
|
-
"elseware"
|
|
12
|
+
"elseware",
|
|
13
|
+
"elseware-technology"
|
|
13
14
|
],
|
|
14
15
|
"repository": {
|
|
15
16
|
"type": "git",
|
|
16
|
-
"url": "https://github.com/
|
|
17
|
+
"url": "https://github.com/elseware-technology/elseware-ui.git"
|
|
17
18
|
},
|
|
18
19
|
"author": "elseware Technology",
|
|
19
20
|
"license": "MIT",
|
|
@@ -41,9 +42,18 @@
|
|
|
41
42
|
"dev": "storybook dev -p 6006",
|
|
42
43
|
"build": "tsup",
|
|
43
44
|
"build:storybook": "storybook build",
|
|
44
|
-
"clean": "rimraf dist node_modules/.cache",
|
|
45
|
+
"clean": "rimraf dist node_modules/.cache storybook-static coverage",
|
|
46
|
+
"typecheck": "tsc --noEmit",
|
|
47
|
+
"lint": "eslint .",
|
|
48
|
+
"lint:fix": "eslint . --fix",
|
|
49
|
+
"format": "prettier . --write",
|
|
50
|
+
"format:check": "prettier . --check",
|
|
51
|
+
"deadcode": "knip",
|
|
52
|
+
"validate": "npm run typecheck && npm run lint && npm run format:check && npm run build",
|
|
45
53
|
"prepare": "npm run build",
|
|
46
|
-
"
|
|
54
|
+
"prepare:husky": "husky",
|
|
55
|
+
"release": "npm publish --access public",
|
|
56
|
+
"full": "npm run lint:fix && npm run format && npm run validate"
|
|
47
57
|
},
|
|
48
58
|
"peerDependencies": {
|
|
49
59
|
"react": "^18.3.1",
|
|
@@ -53,7 +63,6 @@
|
|
|
53
63
|
"dependencies": {
|
|
54
64
|
"@headlessui/react": "^2.1.8",
|
|
55
65
|
"@mdxeditor/editor": "^3.36.0",
|
|
56
|
-
"chart.js": "^4.4.4",
|
|
57
66
|
"classnames": "^2.5.1",
|
|
58
67
|
"cloudinary-react": "^1.8.1",
|
|
59
68
|
"d3": "^7.9.0",
|
|
@@ -62,16 +71,15 @@
|
|
|
62
71
|
"formik": "^2.4.5",
|
|
63
72
|
"framer-motion": "^12.23.24",
|
|
64
73
|
"react-beautiful-dnd": "^13.1.1",
|
|
65
|
-
"react-chartjs-2": "^5.2.0",
|
|
66
74
|
"react-icons": "^4.12.0",
|
|
67
75
|
"react-simple-maps": "^3.0.0",
|
|
68
|
-
"react-toastify": "^10.0.5",
|
|
69
76
|
"react-world-flags": "^1.6.0",
|
|
70
77
|
"recharts": "^3.8.1",
|
|
71
78
|
"tailwind-merge": "^3.5.0",
|
|
72
79
|
"yup": "^1.3.3"
|
|
73
80
|
},
|
|
74
81
|
"devDependencies": {
|
|
82
|
+
"@eslint/js": "^9.39.4",
|
|
75
83
|
"@storybook/addon-essentials": "^8.5.0",
|
|
76
84
|
"@storybook/addon-interactions": "^8.5.0",
|
|
77
85
|
"@storybook/addon-links": "^8.5.0",
|
|
@@ -88,15 +96,23 @@
|
|
|
88
96
|
"@types/node": "^24.0.3",
|
|
89
97
|
"@types/react": "^18.3.12",
|
|
90
98
|
"@types/react-beautiful-dnd": "^13.1.8",
|
|
91
|
-
"@types/react-chartjs-2": "^2.5.7",
|
|
92
99
|
"@types/react-dom": "^18.3.1",
|
|
93
100
|
"@types/react-simple-maps": "^3.0.6",
|
|
94
101
|
"@types/react-world-flags": "^1.6.0",
|
|
95
102
|
"autoprefixer": "^10.4.16",
|
|
96
103
|
"cssnano": "^6.0.3",
|
|
97
|
-
"eslint
|
|
104
|
+
"eslint": "^9.39.4",
|
|
105
|
+
"eslint-config-prettier": "^10.1.8",
|
|
106
|
+
"eslint-plugin-react": "^7.37.5",
|
|
107
|
+
"eslint-plugin-react-hooks": "^7.1.1",
|
|
108
|
+
"eslint-plugin-storybook": "^0.11.6",
|
|
109
|
+
"globals": "^16.5.0",
|
|
110
|
+
"husky": "^9.1.7",
|
|
111
|
+
"knip": "^6.15.0",
|
|
112
|
+
"lint-staged": "^17.0.7",
|
|
98
113
|
"path": "^0.12.7",
|
|
99
114
|
"postcss": "^8.4.33",
|
|
115
|
+
"prettier": "^3.8.3",
|
|
100
116
|
"prop-types": "^15.8.1",
|
|
101
117
|
"react": "^18.3.1",
|
|
102
118
|
"react-dom": "^18.3.1",
|
|
@@ -106,6 +122,16 @@
|
|
|
106
122
|
"tailwindcss": "^3.4.1",
|
|
107
123
|
"tslib": "^2.8.1",
|
|
108
124
|
"tsup": "^8.5.1",
|
|
109
|
-
"typescript": "^
|
|
125
|
+
"typescript": "^5.9.3",
|
|
126
|
+
"typescript-eslint": "^8.61.1"
|
|
127
|
+
},
|
|
128
|
+
"lint-staged": {
|
|
129
|
+
"*.{js,jsx,ts,tsx,mjs,cjs}": [
|
|
130
|
+
"eslint --fix",
|
|
131
|
+
"prettier --write"
|
|
132
|
+
],
|
|
133
|
+
"*.{json,md,css,yml,yaml}": [
|
|
134
|
+
"prettier --write"
|
|
135
|
+
]
|
|
110
136
|
}
|
|
111
137
|
}
|