@egovernments/digit-ui-components 0.2.0-beta.41 → 0.2.0-beta.41-rc-test-03
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/main.js +385 -0
- package/dist/main.js.LICENSE.txt +49 -0
- package/dist/main.js.map +1 -0
- package/package.json +64 -44
- package/CHANGELOG.md +0 -594
- package/dist/index.css +0 -1
- package/dist/index.js +0 -1
package/package.json
CHANGED
|
@@ -1,73 +1,92 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@egovernments/digit-ui-components",
|
|
3
|
-
"version": "0.2.0-beta.41",
|
|
3
|
+
"version": "0.2.0-beta.41-rc-test-03",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"main": "dist/
|
|
6
|
-
"module": "dist/
|
|
5
|
+
"main": "dist/main.js",
|
|
6
|
+
"module": "dist/main.js",
|
|
7
7
|
"source": "src/index.js",
|
|
8
8
|
"engines": {
|
|
9
|
-
"node": ">=
|
|
9
|
+
"node": ">=18"
|
|
10
10
|
},
|
|
11
11
|
"homepage": "https://unified-dev.digit.org/storybook/",
|
|
12
12
|
"author": "Jagankumar <jagan.kumar@egov.org.in>",
|
|
13
13
|
"scripts": {
|
|
14
|
+
"start": "webpack serve --mode=development --open --hot",
|
|
15
|
+
"start:prod": "webpack serve --mode=production --open",
|
|
14
16
|
"example": "cd example && npm run start",
|
|
15
|
-
"build": "
|
|
16
|
-
"
|
|
17
|
+
"build": "NODE_OPTIONS='--openssl-legacy-provider' webpack --mode=production --config webpack.config.js",
|
|
18
|
+
"build:dev": "NODE_OPTIONS='--openssl-legacy-provider' webpack --mode=development --config webpack.config.js",
|
|
19
|
+
"build:analyze": "NODE_OPTIONS='--openssl-legacy-provider' webpack --mode=production --analyze --config webpack.config.js",
|
|
17
20
|
"prepare": "yarn build",
|
|
18
|
-
"publish:components": "npm publish --tag core-v0.1",
|
|
21
|
+
"publish:components": "npm publish --tag core-webpack-v0.1",
|
|
19
22
|
"predeploy": "cd example && yarn install && yarn run build",
|
|
20
|
-
"
|
|
21
|
-
"storybook": "
|
|
22
|
-
"build-storybook": "build-storybook -s public -o dist-storybook",
|
|
23
|
-
"deploy-storybook": "npm run build-storybook && surge --project dist-storybook --domain svg-components-$npm_package_version.surge.sh"
|
|
24
|
-
},
|
|
25
|
-
"peerDependencies": {
|
|
26
|
-
"react": "17.0.2",
|
|
27
|
-
"react-dom": "17.0.2",
|
|
28
|
-
"react-router-dom": "5.3.0"
|
|
23
|
+
"storybook": "storybook dev -p 6006",
|
|
24
|
+
"build-storybook": "storybook build"
|
|
29
25
|
},
|
|
30
26
|
"devDependencies": {
|
|
31
|
-
"@storybook/
|
|
32
|
-
"@storybook/
|
|
33
|
-
"@storybook/addon-
|
|
27
|
+
"@storybook/react": "8.6.14",
|
|
28
|
+
"@storybook/react-webpack5": "8.6.14",
|
|
29
|
+
"@storybook/addon-docs": "8.6.14",
|
|
30
|
+
"@storybook/addon-essentials": "8.6.14",
|
|
31
|
+
"@storybook/addon-interactions": "8.6.14",
|
|
32
|
+
"@storybook/addon-a11y": "8.6.14",
|
|
33
|
+
"@storybook/addon-actions": "8.6.14",
|
|
34
|
+
"@storybook/addon-links": "8.6.14",
|
|
35
|
+
"@storybook/addon-onboarding": "8.6.14",
|
|
36
|
+
"@storybook/addon-webpack5-compiler-swc": "3.0.0",
|
|
37
|
+
"@babel/core": "^7.23.3",
|
|
38
|
+
"@babel/preset-env": "^7.23.3",
|
|
39
|
+
"@babel/preset-react": "^7.23.3",
|
|
40
|
+
"@storybook/blocks": "8.6.14",
|
|
34
41
|
"@storybook/node-logger": "6.4.20",
|
|
35
42
|
"@storybook/preset-create-react-app": "3.2.0",
|
|
36
|
-
"@storybook/
|
|
37
|
-
"@storybook/blocks": "8.3.5",
|
|
43
|
+
"@storybook/test": "8.6.14",
|
|
38
44
|
"babel-eslint": "10.1.0",
|
|
45
|
+
"@babel/plugin-transform-optional-chaining": "^7.23.4",
|
|
46
|
+
"@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4",
|
|
47
|
+
"babel-plugin-transform-remove-console": "^6.9.4",
|
|
48
|
+
"babel-loader": "8.0.0",
|
|
49
|
+
"core-js": "^3.38.1",
|
|
39
50
|
"cross-env": "7.0.3",
|
|
40
|
-
"
|
|
41
|
-
"husky": "7.0.4",
|
|
51
|
+
"css-loader": "^7.1.2",
|
|
42
52
|
"lint-staged": "12.3.7",
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"react
|
|
46
|
-
"react-
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
53
|
+
"prop-types": "15.8.1",
|
|
54
|
+
"storybook": "8.6.14",
|
|
55
|
+
"react": "19.0.0",
|
|
56
|
+
"react-dom": "19.0.0",
|
|
57
|
+
"style-loader": "^4.0.0",
|
|
58
|
+
"webpack": "^5.97.1",
|
|
59
|
+
"webpack-cli": "^4.10.0",
|
|
60
|
+
"react-router-dom": "6.25.1",
|
|
61
|
+
"@tanstack/react-query": "^5.62.16"
|
|
50
62
|
},
|
|
51
63
|
"files": [
|
|
52
64
|
"dist"
|
|
53
65
|
],
|
|
54
66
|
"dependencies": {
|
|
55
|
-
"
|
|
56
|
-
"@egovernments/digit-ui-
|
|
57
|
-
"@egovernments/digit-ui-
|
|
58
|
-
"@egovernments/digit-ui-svg-components": "1.0.21",
|
|
59
|
-
"@googlemaps/js-api-loader": "1.13.10",
|
|
67
|
+
"@egovernments/digit-ui-svg-components": "1.0.21-rc19.01",
|
|
68
|
+
"@egovernments/digit-ui-libraries": "1.8.17-rc19.01",
|
|
69
|
+
"@egovernments/digit-ui-components-css":"0.2.0-beta.14",
|
|
60
70
|
"autoprefixer": "^10.4.15",
|
|
71
|
+
"date-fns": "3.6.0",
|
|
72
|
+
"lodash": "^4.17.21",
|
|
61
73
|
"postcss-flexbugs-fixes": "^5.0.2",
|
|
62
|
-
"react-
|
|
63
|
-
"react-
|
|
64
|
-
"react-
|
|
65
|
-
"react-
|
|
66
|
-
"react-
|
|
67
|
-
"@cyntler/react-doc-viewer": "1.10.3",
|
|
68
|
-
"react-webcam": "7.2.0",
|
|
74
|
+
"react-data-table-component": "7.6.2",
|
|
75
|
+
"react-date-range": "2.0.1",
|
|
76
|
+
"react-datepicker": "^8.4.0",
|
|
77
|
+
"react-hook-form": "7.52.2",
|
|
78
|
+
"react-i18next": "15.0.0",
|
|
69
79
|
"react-lottie": "1.2.4",
|
|
70
|
-
"
|
|
80
|
+
"react-responsive": "10.0.0",
|
|
81
|
+
"react-webcam": "7.2.0",
|
|
82
|
+
"react-table": "7.7.0",
|
|
83
|
+
"react-drag-drop-files": "2.3.10"
|
|
84
|
+
},
|
|
85
|
+
"peerDependencies": {
|
|
86
|
+
"react": "19.0.0",
|
|
87
|
+
"react-dom": "19.0.0",
|
|
88
|
+
"react-router-dom": "6.25.1",
|
|
89
|
+
"@tanstack/react-query": "^5.62.16"
|
|
71
90
|
},
|
|
72
91
|
"browserslist": {
|
|
73
92
|
"production": [
|
|
@@ -85,6 +104,7 @@
|
|
|
85
104
|
"digit",
|
|
86
105
|
"core",
|
|
87
106
|
"components",
|
|
88
|
-
"dpg"
|
|
107
|
+
"dpg",
|
|
108
|
+
"webpack"
|
|
89
109
|
]
|
|
90
110
|
}
|