elseware-ui 2.34.1 → 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/README.md +289 -98
- package/dist/index.css +1167 -59
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +2745 -2558
- package/dist/index.d.ts +2745 -2558
- package/dist/index.js +3592 -2552
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4276 -3263
- package/dist/index.mjs.map +1 -1
- package/package.json +137 -111
package/package.json
CHANGED
|
@@ -1,111 +1,137 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "elseware-ui",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "A modern and customizable React UI component library by elseware Technology.",
|
|
6
|
-
"keywords": [
|
|
7
|
-
"react",
|
|
8
|
-
"ui-library",
|
|
9
|
-
"component-library",
|
|
10
|
-
"tailwind",
|
|
11
|
-
"design-system",
|
|
12
|
-
"elseware"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
"build
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
"react
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"react
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
"@
|
|
83
|
-
"@storybook/
|
|
84
|
-
"@
|
|
85
|
-
"@
|
|
86
|
-
"@
|
|
87
|
-
"@
|
|
88
|
-
"@
|
|
89
|
-
"@
|
|
90
|
-
"@
|
|
91
|
-
"@
|
|
92
|
-
"@types/
|
|
93
|
-
"@types/
|
|
94
|
-
"@types/
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"react": "^
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
|
|
111
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "elseware-ui",
|
|
3
|
+
"version": "2.36.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "A modern and customizable React UI component library by elseware Technology.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"react",
|
|
8
|
+
"ui-library",
|
|
9
|
+
"component-library",
|
|
10
|
+
"tailwind",
|
|
11
|
+
"design-system",
|
|
12
|
+
"elseware",
|
|
13
|
+
"elseware-technology"
|
|
14
|
+
],
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/elseware-technology/elseware-ui.git"
|
|
18
|
+
},
|
|
19
|
+
"author": "elseware Technology",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"main": "./dist/index.cjs",
|
|
22
|
+
"module": "./dist/index.js",
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"import": "./dist/index.js",
|
|
28
|
+
"require": "./dist/index.cjs"
|
|
29
|
+
},
|
|
30
|
+
"./styles.css": "./dist/index.css"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist"
|
|
34
|
+
],
|
|
35
|
+
"sideEffects": [
|
|
36
|
+
"**/*.css"
|
|
37
|
+
],
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"dev": "storybook dev -p 6006",
|
|
43
|
+
"build": "tsup",
|
|
44
|
+
"build:storybook": "storybook build",
|
|
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",
|
|
53
|
+
"prepare": "npm run build",
|
|
54
|
+
"prepare:husky": "husky",
|
|
55
|
+
"release": "npm publish --access public",
|
|
56
|
+
"full": "npm run lint:fix && npm run format && npm run validate"
|
|
57
|
+
},
|
|
58
|
+
"peerDependencies": {
|
|
59
|
+
"react": "^18.3.1",
|
|
60
|
+
"react-dom": "^18.3.1",
|
|
61
|
+
"tailwindcss": ">=3.0.0"
|
|
62
|
+
},
|
|
63
|
+
"dependencies": {
|
|
64
|
+
"@headlessui/react": "^2.1.8",
|
|
65
|
+
"@mdxeditor/editor": "^3.36.0",
|
|
66
|
+
"classnames": "^2.5.1",
|
|
67
|
+
"cloudinary-react": "^1.8.1",
|
|
68
|
+
"d3": "^7.9.0",
|
|
69
|
+
"d3-force": "^3.0.0",
|
|
70
|
+
"emoji-flags": "^1.3.0",
|
|
71
|
+
"formik": "^2.4.5",
|
|
72
|
+
"framer-motion": "^12.23.24",
|
|
73
|
+
"react-beautiful-dnd": "^13.1.1",
|
|
74
|
+
"react-icons": "^4.12.0",
|
|
75
|
+
"react-simple-maps": "^3.0.0",
|
|
76
|
+
"react-world-flags": "^1.6.0",
|
|
77
|
+
"recharts": "^3.8.1",
|
|
78
|
+
"tailwind-merge": "^3.5.0",
|
|
79
|
+
"yup": "^1.3.3"
|
|
80
|
+
},
|
|
81
|
+
"devDependencies": {
|
|
82
|
+
"@eslint/js": "^9.39.4",
|
|
83
|
+
"@storybook/addon-essentials": "^8.5.0",
|
|
84
|
+
"@storybook/addon-interactions": "^8.5.0",
|
|
85
|
+
"@storybook/addon-links": "^8.5.0",
|
|
86
|
+
"@storybook/addon-onboarding": "^8.5.0",
|
|
87
|
+
"@storybook/blocks": "^8.5.0",
|
|
88
|
+
"@storybook/preset-create-react-app": "^8.5.0",
|
|
89
|
+
"@storybook/react": "^8.5.0",
|
|
90
|
+
"@storybook/react-webpack5": "^8.5.0",
|
|
91
|
+
"@storybook/test": "^8.5.0",
|
|
92
|
+
"@types/d3": "^7.4.3",
|
|
93
|
+
"@types/d3-force": "^3.0.10",
|
|
94
|
+
"@types/emoji-flags": "^1.3.3",
|
|
95
|
+
"@types/jest": "^30.0.0",
|
|
96
|
+
"@types/node": "^24.0.3",
|
|
97
|
+
"@types/react": "^18.3.12",
|
|
98
|
+
"@types/react-beautiful-dnd": "^13.1.8",
|
|
99
|
+
"@types/react-dom": "^18.3.1",
|
|
100
|
+
"@types/react-simple-maps": "^3.0.6",
|
|
101
|
+
"@types/react-world-flags": "^1.6.0",
|
|
102
|
+
"autoprefixer": "^10.4.16",
|
|
103
|
+
"cssnano": "^6.0.3",
|
|
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",
|
|
113
|
+
"path": "^0.12.7",
|
|
114
|
+
"postcss": "^8.4.33",
|
|
115
|
+
"prettier": "^3.8.3",
|
|
116
|
+
"prop-types": "^15.8.1",
|
|
117
|
+
"react": "^18.3.1",
|
|
118
|
+
"react-dom": "^18.3.1",
|
|
119
|
+
"react-scripts": "5.0.1",
|
|
120
|
+
"rimraf": "^6.0.1",
|
|
121
|
+
"storybook": "^8.5.0",
|
|
122
|
+
"tailwindcss": "^3.4.1",
|
|
123
|
+
"tslib": "^2.8.1",
|
|
124
|
+
"tsup": "^8.5.1",
|
|
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
|
+
]
|
|
136
|
+
}
|
|
137
|
+
}
|