elseware-ui 2.35.0 → 2.36.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/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 +39 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "elseware-ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.36.1",
|
|
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,19 +42,28 @@
|
|
|
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",
|
|
50
60
|
"react-dom": "^18.3.1",
|
|
51
|
-
"tailwindcss": ">=3.0.0"
|
|
61
|
+
"tailwindcss": ">=3.0.0",
|
|
62
|
+
"@headlessui/react": "^2.0.0"
|
|
52
63
|
},
|
|
53
64
|
"dependencies": {
|
|
54
65
|
"@headlessui/react": "^2.1.8",
|
|
55
66
|
"@mdxeditor/editor": "^3.36.0",
|
|
56
|
-
"chart.js": "^4.4.4",
|
|
57
67
|
"classnames": "^2.5.1",
|
|
58
68
|
"cloudinary-react": "^1.8.1",
|
|
59
69
|
"d3": "^7.9.0",
|
|
@@ -62,16 +72,15 @@
|
|
|
62
72
|
"formik": "^2.4.5",
|
|
63
73
|
"framer-motion": "^12.23.24",
|
|
64
74
|
"react-beautiful-dnd": "^13.1.1",
|
|
65
|
-
"react-chartjs-2": "^5.2.0",
|
|
66
75
|
"react-icons": "^4.12.0",
|
|
67
76
|
"react-simple-maps": "^3.0.0",
|
|
68
|
-
"react-toastify": "^10.0.5",
|
|
69
77
|
"react-world-flags": "^1.6.0",
|
|
70
78
|
"recharts": "^3.8.1",
|
|
71
79
|
"tailwind-merge": "^3.5.0",
|
|
72
80
|
"yup": "^1.3.3"
|
|
73
81
|
},
|
|
74
82
|
"devDependencies": {
|
|
83
|
+
"@eslint/js": "^9.39.4",
|
|
75
84
|
"@storybook/addon-essentials": "^8.5.0",
|
|
76
85
|
"@storybook/addon-interactions": "^8.5.0",
|
|
77
86
|
"@storybook/addon-links": "^8.5.0",
|
|
@@ -88,15 +97,23 @@
|
|
|
88
97
|
"@types/node": "^24.0.3",
|
|
89
98
|
"@types/react": "^18.3.12",
|
|
90
99
|
"@types/react-beautiful-dnd": "^13.1.8",
|
|
91
|
-
"@types/react-chartjs-2": "^2.5.7",
|
|
92
100
|
"@types/react-dom": "^18.3.1",
|
|
93
101
|
"@types/react-simple-maps": "^3.0.6",
|
|
94
102
|
"@types/react-world-flags": "^1.6.0",
|
|
95
103
|
"autoprefixer": "^10.4.16",
|
|
96
104
|
"cssnano": "^6.0.3",
|
|
97
|
-
"eslint
|
|
105
|
+
"eslint": "^9.39.4",
|
|
106
|
+
"eslint-config-prettier": "^10.1.8",
|
|
107
|
+
"eslint-plugin-react": "^7.37.5",
|
|
108
|
+
"eslint-plugin-react-hooks": "^7.1.1",
|
|
109
|
+
"eslint-plugin-storybook": "^0.11.6",
|
|
110
|
+
"globals": "^16.5.0",
|
|
111
|
+
"husky": "^9.1.7",
|
|
112
|
+
"knip": "^6.15.0",
|
|
113
|
+
"lint-staged": "^17.0.7",
|
|
98
114
|
"path": "^0.12.7",
|
|
99
115
|
"postcss": "^8.4.33",
|
|
116
|
+
"prettier": "^3.8.3",
|
|
100
117
|
"prop-types": "^15.8.1",
|
|
101
118
|
"react": "^18.3.1",
|
|
102
119
|
"react-dom": "^18.3.1",
|
|
@@ -106,6 +123,16 @@
|
|
|
106
123
|
"tailwindcss": "^3.4.1",
|
|
107
124
|
"tslib": "^2.8.1",
|
|
108
125
|
"tsup": "^8.5.1",
|
|
109
|
-
"typescript": "^
|
|
126
|
+
"typescript": "^5.9.3",
|
|
127
|
+
"typescript-eslint": "^8.61.1"
|
|
128
|
+
},
|
|
129
|
+
"lint-staged": {
|
|
130
|
+
"*.{js,jsx,ts,tsx,mjs,cjs}": [
|
|
131
|
+
"eslint --fix",
|
|
132
|
+
"prettier --write"
|
|
133
|
+
],
|
|
134
|
+
"*.{json,md,css,yml,yaml}": [
|
|
135
|
+
"prettier --write"
|
|
136
|
+
]
|
|
110
137
|
}
|
|
111
138
|
}
|