@egovernments/digit-ui-components 0.2.0-rc-test-04 → 0.2.0-rc.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/CHANGELOG.md +829 -0
- package/README.md +380 -80
- package/dist/index.js +1 -0
- package/package.json +62 -64
- package/dist/main.js +0 -385
- package/dist/main.js.LICENSE.txt +0 -49
- package/dist/main.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,92 +1,91 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@egovernments/digit-ui-components",
|
|
3
|
-
"version": "0.2.0-rc
|
|
3
|
+
"version": "0.2.0-rc.1",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"main": "dist/
|
|
6
|
-
"module": "dist/
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.modern.js",
|
|
7
7
|
"source": "src/index.js",
|
|
8
8
|
"engines": {
|
|
9
|
-
"node": ">=
|
|
9
|
+
"node": ">=14"
|
|
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",
|
|
16
14
|
"example": "cd example && npm run start",
|
|
17
|
-
"build": "
|
|
18
|
-
"
|
|
19
|
-
"build:analyze": "NODE_OPTIONS='--openssl-legacy-provider' webpack --mode=production --analyze --config webpack.config.js",
|
|
15
|
+
"build": "microbundle-crl --compress --no-sourcemap --format cjs",
|
|
16
|
+
"start": "microbundle-crl watch --no-compress --format modern,cjs",
|
|
20
17
|
"prepare": "yarn build",
|
|
21
|
-
"publish:components": "npm publish --tag core-
|
|
18
|
+
"publish:components": "npm publish --tag core-v0.1",
|
|
22
19
|
"predeploy": "cd example && yarn install && yarn run build",
|
|
23
|
-
"
|
|
24
|
-
"
|
|
20
|
+
"deploy": "gh-pages -d example/build",
|
|
21
|
+
"storybook": "start-storybook -p 6006 -s public",
|
|
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"
|
|
29
|
+
},
|
|
30
|
+
"resolutions": {
|
|
31
|
+
"**/@babel/runtime": "7.20.1",
|
|
32
|
+
"**/babel-preset-react-app": "10.0.0",
|
|
33
|
+
"**/babel-loader": "8.2.2",
|
|
34
|
+
"**/@babel/core": "7.14.0",
|
|
35
|
+
"**/@babel/preset-env": "7.14.0",
|
|
36
|
+
"**/@babel/plugin-transform-modules-commonjs": "7.14.0",
|
|
37
|
+
"**/polished": "4.2.2",
|
|
38
|
+
"**/webpack": "4.44.2",
|
|
39
|
+
"**/styled-components": "5.0.0",
|
|
40
|
+
"**/minimatch": "7.4.6",
|
|
41
|
+
"**/glob": "7.2.3",
|
|
42
|
+
"minimatch": "7.4.6",
|
|
43
|
+
"glob": "7.2.3",
|
|
44
|
+
"react-draggable": "4.4.3"
|
|
25
45
|
},
|
|
26
46
|
"devDependencies": {
|
|
27
|
-
"@storybook/
|
|
28
|
-
"@storybook/
|
|
29
|
-
"@storybook/addon-
|
|
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",
|
|
47
|
+
"@storybook/addon-actions": "6.4.20",
|
|
48
|
+
"@storybook/addon-essentials": "6.4.20",
|
|
49
|
+
"@storybook/addon-links": "6.4.20",
|
|
41
50
|
"@storybook/node-logger": "6.4.20",
|
|
42
51
|
"@storybook/preset-create-react-app": "3.2.0",
|
|
43
|
-
"@storybook/
|
|
52
|
+
"@storybook/react": "6.4.20",
|
|
53
|
+
"@storybook/blocks": "8.3.5",
|
|
44
54
|
"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",
|
|
50
55
|
"cross-env": "7.0.3",
|
|
51
|
-
"
|
|
56
|
+
"gh-pages": "2.2.0",
|
|
57
|
+
"husky": "7.0.4",
|
|
52
58
|
"lint-staged": "12.3.7",
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"react": "
|
|
56
|
-
"react-
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"react-router-dom": "6.25.1",
|
|
61
|
-
"@tanstack/react-query": "^5.62.16"
|
|
59
|
+
"microbundle-crl": "0.13.11",
|
|
60
|
+
"react": "17.0.2",
|
|
61
|
+
"react-dom": "17.0.2",
|
|
62
|
+
"react-query": "3.6.1",
|
|
63
|
+
"react-responsive": "9.0.2",
|
|
64
|
+
"react-router-dom": "5.3.0",
|
|
65
|
+
"react-scripts": "^4.0.1"
|
|
62
66
|
},
|
|
63
67
|
"files": [
|
|
64
68
|
"dist"
|
|
65
69
|
],
|
|
66
70
|
"dependencies": {
|
|
67
|
-
"
|
|
68
|
-
"@egovernments/digit-ui-
|
|
69
|
-
"@
|
|
71
|
+
"react-data-table-component": "7.6.2",
|
|
72
|
+
"@egovernments/digit-ui-svg-components": "1.0.21",
|
|
73
|
+
"@googlemaps/js-api-loader": "1.13.10",
|
|
70
74
|
"autoprefixer": "^10.4.15",
|
|
71
|
-
"date-fns": "3.6.0",
|
|
72
|
-
"lodash": "^4.17.21",
|
|
73
75
|
"postcss-flexbugs-fixes": "^5.0.2",
|
|
74
|
-
"react-
|
|
75
|
-
"react-
|
|
76
|
-
"react-
|
|
77
|
-
"react-hook-form": "7.52.2",
|
|
78
|
-
"react-i18next": "15.0.0",
|
|
79
|
-
"react-lottie": "1.2.4",
|
|
80
|
-
"react-responsive": "10.0.0",
|
|
81
|
-
"react-webcam": "7.2.0",
|
|
76
|
+
"react-date-range": "1.3.0",
|
|
77
|
+
"react-hook-form": "6.15.8",
|
|
78
|
+
"react-i18next": "11.16.2",
|
|
82
79
|
"react-table": "7.7.0",
|
|
83
|
-
"react-drag-drop-files": "2.3.10"
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
"react": "
|
|
87
|
-
"
|
|
88
|
-
"react-
|
|
89
|
-
"
|
|
80
|
+
"react-drag-drop-files": "2.3.10",
|
|
81
|
+
"@cyntler/react-doc-viewer": "1.10.3",
|
|
82
|
+
"react-webcam": "7.2.0",
|
|
83
|
+
"react-lottie": "1.2.4",
|
|
84
|
+
"styled-components": "5.0.0",
|
|
85
|
+
"react-dnd-html5-backend": "16.0.1",
|
|
86
|
+
"react-dnd": "16.0.1",
|
|
87
|
+
"minimatch": "7.4.6",
|
|
88
|
+
"react-datepicker": "4.8.0"
|
|
90
89
|
},
|
|
91
90
|
"browserslist": {
|
|
92
91
|
"production": [
|
|
@@ -104,7 +103,6 @@
|
|
|
104
103
|
"digit",
|
|
105
104
|
"core",
|
|
106
105
|
"components",
|
|
107
|
-
"dpg"
|
|
108
|
-
"webpack"
|
|
106
|
+
"dpg"
|
|
109
107
|
]
|
|
110
108
|
}
|