elseware-ui 3.0.14 → 3.1.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/dist/index.css +216 -50
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +274 -26
- package/dist/index.d.ts +274 -26
- package/dist/index.js +885 -700
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +877 -701
- package/dist/index.mjs.map +1 -1
- package/dist/index.native.js +17 -2
- package/dist/index.native.js.map +1 -1
- package/dist/index.native.mjs +17 -2
- package/dist/index.native.mjs.map +1 -1
- package/package.json +173 -173
package/package.json
CHANGED
|
@@ -1,173 +1,173 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "elseware-ui",
|
|
3
|
-
"version": "3.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
|
-
"elsewaretechnology"
|
|
14
|
-
],
|
|
15
|
-
"repository": {
|
|
16
|
-
"type": "git",
|
|
17
|
-
"url": "https://github.com/elsewaretechnology/elseware-ui.git"
|
|
18
|
-
},
|
|
19
|
-
"author": "elseware Technology",
|
|
20
|
-
"license": "MIT",
|
|
21
|
-
"main": "./dist/index.js",
|
|
22
|
-
"module": "./dist/index.mjs",
|
|
23
|
-
"react-native": "./dist/index.native.js",
|
|
24
|
-
"types": "./dist/index.d.ts",
|
|
25
|
-
"exports": {
|
|
26
|
-
".": {
|
|
27
|
-
"react-native": {
|
|
28
|
-
"types": "./dist/index.native.d.ts",
|
|
29
|
-
"import": "./dist/index.native.mjs",
|
|
30
|
-
"require": "./dist/index.native.js"
|
|
31
|
-
},
|
|
32
|
-
"types": "./dist/index.d.ts",
|
|
33
|
-
"import": "./dist/index.mjs",
|
|
34
|
-
"require": "./dist/index.js"
|
|
35
|
-
},
|
|
36
|
-
"./native": {
|
|
37
|
-
"types": "./dist/index.native.d.ts",
|
|
38
|
-
"import": "./dist/index.native.mjs",
|
|
39
|
-
"require": "./dist/index.native.js"
|
|
40
|
-
},
|
|
41
|
-
"./tailwind": "./tailwind.preset.js",
|
|
42
|
-
"./styles.css": "./dist/index.css"
|
|
43
|
-
},
|
|
44
|
-
"files": [
|
|
45
|
-
"dist",
|
|
46
|
-
"tailwind.preset.js"
|
|
47
|
-
],
|
|
48
|
-
"sideEffects": [
|
|
49
|
-
"**/*.css"
|
|
50
|
-
],
|
|
51
|
-
"publishConfig": {
|
|
52
|
-
"access": "public"
|
|
53
|
-
},
|
|
54
|
-
"scripts": {
|
|
55
|
-
"dev": "storybook dev -p 6006",
|
|
56
|
-
"build": "tsup",
|
|
57
|
-
"build:storybook": "storybook build",
|
|
58
|
-
"clean": "rimraf dist node_modules/.cache storybook-static coverage",
|
|
59
|
-
"typecheck": "tsc --noEmit",
|
|
60
|
-
"lint": "eslint .",
|
|
61
|
-
"lint:fix": "eslint . --fix",
|
|
62
|
-
"format": "prettier . --write",
|
|
63
|
-
"format:check": "prettier . --check",
|
|
64
|
-
"deadcode": "knip",
|
|
65
|
-
"validate": "npm run typecheck && npm run lint && npm run format:check && npm run build",
|
|
66
|
-
"prepare": "npm run build",
|
|
67
|
-
"prepare:husky": "husky",
|
|
68
|
-
"release": "npm publish --access public",
|
|
69
|
-
"full": "npm run lint:fix && npm run format && npm run validate"
|
|
70
|
-
},
|
|
71
|
-
"peerDependencies": {
|
|
72
|
-
"formik": ">=2.4.0 <3",
|
|
73
|
-
"yup": ">=1.3.0 <2",
|
|
74
|
-
"react": ">=18.3.1 <20",
|
|
75
|
-
"react-dom": ">=18.3.1 <20",
|
|
76
|
-
"react-native": "*",
|
|
77
|
-
"nativewind": ">=4.0.0 <5",
|
|
78
|
-
"tailwindcss": ">=3.0.0"
|
|
79
|
-
},
|
|
80
|
-
"peerDependenciesMeta": {
|
|
81
|
-
"nativewind": {
|
|
82
|
-
"optional": true
|
|
83
|
-
},
|
|
84
|
-
"react-native": {
|
|
85
|
-
"optional": true
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
"dependencies": {
|
|
89
|
-
"@codemirror/lang-markdown": "^6.5.0",
|
|
90
|
-
"@codemirror/theme-one-dark": "^6.1.3",
|
|
91
|
-
"@mdxeditor/editor": "^4.0.4",
|
|
92
|
-
"@uiw/react-codemirror": "^4.25.10",
|
|
93
|
-
"classnames": "^2.5.1",
|
|
94
|
-
"cloudinary-react": "^1.8.1",
|
|
95
|
-
"d3": "^7.9.0",
|
|
96
|
-
"d3-force": "^3.0.0",
|
|
97
|
-
"emoji-flags": "^1.3.0",
|
|
98
|
-
"framer-motion": "^12.23.24",
|
|
99
|
-
"react-beautiful-dnd": "^13.1.1",
|
|
100
|
-
"react-icons": "^4.12.0",
|
|
101
|
-
"react-markdown": "^10.1.0",
|
|
102
|
-
"react-simple-maps": "^3.0.0",
|
|
103
|
-
"react-syntax-highlighter": "^16.1.1",
|
|
104
|
-
"react-world-flags": "^1.6.0",
|
|
105
|
-
"recharts": "^3.8.1",
|
|
106
|
-
"rehype-raw": "^7.0.0",
|
|
107
|
-
"rehype-sanitize": "^6.0.0",
|
|
108
|
-
"remark-gfm": "^4.0.1",
|
|
109
|
-
"tailwind-merge": "^3.5.0"
|
|
110
|
-
},
|
|
111
|
-
"devDependencies": {
|
|
112
|
-
"@eslint/js": "^9.39.4",
|
|
113
|
-
"@storybook/addon-essentials": "^8.5.0",
|
|
114
|
-
"@storybook/addon-interactions": "^8.5.0",
|
|
115
|
-
"@storybook/addon-links": "^8.5.0",
|
|
116
|
-
"@storybook/addon-onboarding": "^8.5.0",
|
|
117
|
-
"@storybook/blocks": "^8.5.0",
|
|
118
|
-
"@storybook/react": "^8.5.0",
|
|
119
|
-
"@storybook/react-vite": "^8.5.0",
|
|
120
|
-
"@storybook/test": "^8.5.0",
|
|
121
|
-
"@types/d3": "^7.4.3",
|
|
122
|
-
"@types/d3-force": "^3.0.10",
|
|
123
|
-
"@types/emoji-flags": "^1.3.3",
|
|
124
|
-
"@types/jest": "^30.0.0",
|
|
125
|
-
"@types/node": "^24.0.3",
|
|
126
|
-
"@types/react": "^18.3.12",
|
|
127
|
-
"@types/react-beautiful-dnd": "^13.1.8",
|
|
128
|
-
"@types/react-dom": "^18.3.1",
|
|
129
|
-
"@types/react-simple-maps": "^3.0.6",
|
|
130
|
-
"@types/react-syntax-highlighter": "^15.5.13",
|
|
131
|
-
"@types/react-world-flags": "^1.6.0",
|
|
132
|
-
"autoprefixer": "^10.4.16",
|
|
133
|
-
"cssnano": "^6.0.3",
|
|
134
|
-
"eslint": "^9.39.4",
|
|
135
|
-
"eslint-config-prettier": "^10.1.8",
|
|
136
|
-
"eslint-plugin-react": "^7.37.5",
|
|
137
|
-
"eslint-plugin-react-hooks": "^7.1.1",
|
|
138
|
-
"eslint-plugin-storybook": "^0.11.6",
|
|
139
|
-
"formik": "^2.4.9",
|
|
140
|
-
"globals": "^16.5.0",
|
|
141
|
-
"husky": "^9.1.7",
|
|
142
|
-
"knip": "^6.15.0",
|
|
143
|
-
"lint-staged": "^17.0.7",
|
|
144
|
-
"nativewind": "^4.2.6",
|
|
145
|
-
"path": "^0.12.7",
|
|
146
|
-
"postcss": "^8.4.33",
|
|
147
|
-
"prettier": "^3.8.3",
|
|
148
|
-
"prop-types": "^15.8.1",
|
|
149
|
-
"react": "^18.3.1",
|
|
150
|
-
"react-dom": "^18.3.1",
|
|
151
|
-
"react-native": "0.75.2",
|
|
152
|
-
"react-native-css-interop": "0.2.6",
|
|
153
|
-
"react-native-reanimated": "3.10.1",
|
|
154
|
-
"react-native-web": "^0.21.2",
|
|
155
|
-
"rimraf": "^6.0.1",
|
|
156
|
-
"storybook": "^8.5.0",
|
|
157
|
-
"tailwindcss": "^3.4.1",
|
|
158
|
-
"tslib": "^2.8.1",
|
|
159
|
-
"tsup": "^8.5.1",
|
|
160
|
-
"typescript": "^5.9.3",
|
|
161
|
-
"typescript-eslint": "^8.61.1",
|
|
162
|
-
"yup": "^1.7.1"
|
|
163
|
-
},
|
|
164
|
-
"lint-staged": {
|
|
165
|
-
"*.{js,jsx,ts,tsx,mjs,cjs}": [
|
|
166
|
-
"eslint --fix",
|
|
167
|
-
"prettier --write"
|
|
168
|
-
],
|
|
169
|
-
"*.{json,md,css,yml,yaml}": [
|
|
170
|
-
"prettier --write"
|
|
171
|
-
]
|
|
172
|
-
}
|
|
173
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "elseware-ui",
|
|
3
|
+
"version": "3.1.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
|
+
"elsewaretechnology"
|
|
14
|
+
],
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/elsewaretechnology/elseware-ui.git"
|
|
18
|
+
},
|
|
19
|
+
"author": "elseware Technology",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"main": "./dist/index.js",
|
|
22
|
+
"module": "./dist/index.mjs",
|
|
23
|
+
"react-native": "./dist/index.native.js",
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"exports": {
|
|
26
|
+
".": {
|
|
27
|
+
"react-native": {
|
|
28
|
+
"types": "./dist/index.native.d.ts",
|
|
29
|
+
"import": "./dist/index.native.mjs",
|
|
30
|
+
"require": "./dist/index.native.js"
|
|
31
|
+
},
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"import": "./dist/index.mjs",
|
|
34
|
+
"require": "./dist/index.js"
|
|
35
|
+
},
|
|
36
|
+
"./native": {
|
|
37
|
+
"types": "./dist/index.native.d.ts",
|
|
38
|
+
"import": "./dist/index.native.mjs",
|
|
39
|
+
"require": "./dist/index.native.js"
|
|
40
|
+
},
|
|
41
|
+
"./tailwind": "./tailwind.preset.js",
|
|
42
|
+
"./styles.css": "./dist/index.css"
|
|
43
|
+
},
|
|
44
|
+
"files": [
|
|
45
|
+
"dist",
|
|
46
|
+
"tailwind.preset.js"
|
|
47
|
+
],
|
|
48
|
+
"sideEffects": [
|
|
49
|
+
"**/*.css"
|
|
50
|
+
],
|
|
51
|
+
"publishConfig": {
|
|
52
|
+
"access": "public"
|
|
53
|
+
},
|
|
54
|
+
"scripts": {
|
|
55
|
+
"dev": "storybook dev -p 6006",
|
|
56
|
+
"build": "tsup",
|
|
57
|
+
"build:storybook": "storybook build",
|
|
58
|
+
"clean": "rimraf dist node_modules/.cache storybook-static coverage",
|
|
59
|
+
"typecheck": "tsc --noEmit",
|
|
60
|
+
"lint": "eslint .",
|
|
61
|
+
"lint:fix": "eslint . --fix",
|
|
62
|
+
"format": "prettier . --write",
|
|
63
|
+
"format:check": "prettier . --check",
|
|
64
|
+
"deadcode": "knip",
|
|
65
|
+
"validate": "npm run typecheck && npm run lint && npm run format:check && npm run build",
|
|
66
|
+
"prepare": "npm run build",
|
|
67
|
+
"prepare:husky": "husky",
|
|
68
|
+
"release": "npm publish --access public",
|
|
69
|
+
"full": "npm run lint:fix && npm run format && npm run validate"
|
|
70
|
+
},
|
|
71
|
+
"peerDependencies": {
|
|
72
|
+
"formik": ">=2.4.0 <3",
|
|
73
|
+
"yup": ">=1.3.0 <2",
|
|
74
|
+
"react": ">=18.3.1 <20",
|
|
75
|
+
"react-dom": ">=18.3.1 <20",
|
|
76
|
+
"react-native": "*",
|
|
77
|
+
"nativewind": ">=4.0.0 <5",
|
|
78
|
+
"tailwindcss": ">=3.0.0"
|
|
79
|
+
},
|
|
80
|
+
"peerDependenciesMeta": {
|
|
81
|
+
"nativewind": {
|
|
82
|
+
"optional": true
|
|
83
|
+
},
|
|
84
|
+
"react-native": {
|
|
85
|
+
"optional": true
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"dependencies": {
|
|
89
|
+
"@codemirror/lang-markdown": "^6.5.0",
|
|
90
|
+
"@codemirror/theme-one-dark": "^6.1.3",
|
|
91
|
+
"@mdxeditor/editor": "^4.0.4",
|
|
92
|
+
"@uiw/react-codemirror": "^4.25.10",
|
|
93
|
+
"classnames": "^2.5.1",
|
|
94
|
+
"cloudinary-react": "^1.8.1",
|
|
95
|
+
"d3": "^7.9.0",
|
|
96
|
+
"d3-force": "^3.0.0",
|
|
97
|
+
"emoji-flags": "^1.3.0",
|
|
98
|
+
"framer-motion": "^12.23.24",
|
|
99
|
+
"react-beautiful-dnd": "^13.1.1",
|
|
100
|
+
"react-icons": "^4.12.0",
|
|
101
|
+
"react-markdown": "^10.1.0",
|
|
102
|
+
"react-simple-maps": "^3.0.0",
|
|
103
|
+
"react-syntax-highlighter": "^16.1.1",
|
|
104
|
+
"react-world-flags": "^1.6.0",
|
|
105
|
+
"recharts": "^3.8.1",
|
|
106
|
+
"rehype-raw": "^7.0.0",
|
|
107
|
+
"rehype-sanitize": "^6.0.0",
|
|
108
|
+
"remark-gfm": "^4.0.1",
|
|
109
|
+
"tailwind-merge": "^3.5.0"
|
|
110
|
+
},
|
|
111
|
+
"devDependencies": {
|
|
112
|
+
"@eslint/js": "^9.39.4",
|
|
113
|
+
"@storybook/addon-essentials": "^8.5.0",
|
|
114
|
+
"@storybook/addon-interactions": "^8.5.0",
|
|
115
|
+
"@storybook/addon-links": "^8.5.0",
|
|
116
|
+
"@storybook/addon-onboarding": "^8.5.0",
|
|
117
|
+
"@storybook/blocks": "^8.5.0",
|
|
118
|
+
"@storybook/react": "^8.5.0",
|
|
119
|
+
"@storybook/react-vite": "^8.5.0",
|
|
120
|
+
"@storybook/test": "^8.5.0",
|
|
121
|
+
"@types/d3": "^7.4.3",
|
|
122
|
+
"@types/d3-force": "^3.0.10",
|
|
123
|
+
"@types/emoji-flags": "^1.3.3",
|
|
124
|
+
"@types/jest": "^30.0.0",
|
|
125
|
+
"@types/node": "^24.0.3",
|
|
126
|
+
"@types/react": "^18.3.12",
|
|
127
|
+
"@types/react-beautiful-dnd": "^13.1.8",
|
|
128
|
+
"@types/react-dom": "^18.3.1",
|
|
129
|
+
"@types/react-simple-maps": "^3.0.6",
|
|
130
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
131
|
+
"@types/react-world-flags": "^1.6.0",
|
|
132
|
+
"autoprefixer": "^10.4.16",
|
|
133
|
+
"cssnano": "^6.0.3",
|
|
134
|
+
"eslint": "^9.39.4",
|
|
135
|
+
"eslint-config-prettier": "^10.1.8",
|
|
136
|
+
"eslint-plugin-react": "^7.37.5",
|
|
137
|
+
"eslint-plugin-react-hooks": "^7.1.1",
|
|
138
|
+
"eslint-plugin-storybook": "^0.11.6",
|
|
139
|
+
"formik": "^2.4.9",
|
|
140
|
+
"globals": "^16.5.0",
|
|
141
|
+
"husky": "^9.1.7",
|
|
142
|
+
"knip": "^6.15.0",
|
|
143
|
+
"lint-staged": "^17.0.7",
|
|
144
|
+
"nativewind": "^4.2.6",
|
|
145
|
+
"path": "^0.12.7",
|
|
146
|
+
"postcss": "^8.4.33",
|
|
147
|
+
"prettier": "^3.8.3",
|
|
148
|
+
"prop-types": "^15.8.1",
|
|
149
|
+
"react": "^18.3.1",
|
|
150
|
+
"react-dom": "^18.3.1",
|
|
151
|
+
"react-native": "0.75.2",
|
|
152
|
+
"react-native-css-interop": "0.2.6",
|
|
153
|
+
"react-native-reanimated": "3.10.1",
|
|
154
|
+
"react-native-web": "^0.21.2",
|
|
155
|
+
"rimraf": "^6.0.1",
|
|
156
|
+
"storybook": "^8.5.0",
|
|
157
|
+
"tailwindcss": "^3.4.1",
|
|
158
|
+
"tslib": "^2.8.1",
|
|
159
|
+
"tsup": "^8.5.1",
|
|
160
|
+
"typescript": "^5.9.3",
|
|
161
|
+
"typescript-eslint": "^8.61.1",
|
|
162
|
+
"yup": "^1.7.1"
|
|
163
|
+
},
|
|
164
|
+
"lint-staged": {
|
|
165
|
+
"*.{js,jsx,ts,tsx,mjs,cjs}": [
|
|
166
|
+
"eslint --fix",
|
|
167
|
+
"prettier --write"
|
|
168
|
+
],
|
|
169
|
+
"*.{json,md,css,yml,yaml}": [
|
|
170
|
+
"prettier --write"
|
|
171
|
+
]
|
|
172
|
+
}
|
|
173
|
+
}
|