@egovernments/digit-ui-components 0.0.9-beta.1 → 0.1.0-rc-optim-01
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 +137 -139
- package/dist/main.js +385 -0
- package/dist/main.js.LICENSE.txt +49 -0
- package/dist/main.js.map +1 -0
- package/package.json +110 -94
- package/dist/index.js +0 -1
package/package.json
CHANGED
|
@@ -1,94 +1,110 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@egovernments/digit-ui-components",
|
|
3
|
-
"version": "0.0
|
|
4
|
-
"license": "MIT",
|
|
5
|
-
"main": "dist/
|
|
6
|
-
"module": "dist/
|
|
7
|
-
"source": "src/index.js",
|
|
8
|
-
"engines": {
|
|
9
|
-
"node": ">=
|
|
10
|
-
},
|
|
11
|
-
"homepage": "https://unified-dev.digit.org/storybook/",
|
|
12
|
-
"author": "Jagankumar <jagan.kumar@egov.org.in>",
|
|
13
|
-
"scripts": {
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
},
|
|
26
|
-
"
|
|
27
|
-
"react": "
|
|
28
|
-
"react-
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"@storybook/addon-
|
|
33
|
-
"@storybook/addon-
|
|
34
|
-
"@storybook/addon-links": "6.
|
|
35
|
-
"@storybook/
|
|
36
|
-
"@storybook/
|
|
37
|
-
"@
|
|
38
|
-
"babel-
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
"@
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"react-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
"
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
"
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
"
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
"
|
|
93
|
-
|
|
94
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@egovernments/digit-ui-components",
|
|
3
|
+
"version": "0.1.0-rc-optim-01",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"main": "dist/main.js",
|
|
6
|
+
"module": "dist/main.js",
|
|
7
|
+
"source": "src/index.js",
|
|
8
|
+
"engines": {
|
|
9
|
+
"node": ">=18"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://unified-dev.digit.org/storybook/",
|
|
12
|
+
"author": "Jagankumar <jagan.kumar@egov.org.in>",
|
|
13
|
+
"scripts": {
|
|
14
|
+
"start": "webpack serve --mode=development --open --hot",
|
|
15
|
+
"start:prod": "webpack serve --mode=production --open",
|
|
16
|
+
"example": "cd example && npm run start",
|
|
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",
|
|
20
|
+
"prepare": "yarn build",
|
|
21
|
+
"publish:components": "npm publish --tag core-webpack-v0.1",
|
|
22
|
+
"predeploy": "cd example && yarn install && yarn run build",
|
|
23
|
+
"storybook": "storybook dev -p 6006",
|
|
24
|
+
"build-storybook": "storybook build"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
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",
|
|
41
|
+
"@storybook/node-logger": "6.4.20",
|
|
42
|
+
"@storybook/preset-create-react-app": "3.2.0",
|
|
43
|
+
"@storybook/test": "8.6.14",
|
|
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",
|
|
50
|
+
"cross-env": "7.0.3",
|
|
51
|
+
"css-loader": "^7.1.2",
|
|
52
|
+
"lint-staged": "12.3.7",
|
|
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"
|
|
62
|
+
},
|
|
63
|
+
"files": [
|
|
64
|
+
"dist"
|
|
65
|
+
],
|
|
66
|
+
"dependencies": {
|
|
67
|
+
"@egovernments/digit-ui-svg-components": "0.1.0-rc-optim-01",
|
|
68
|
+
"@egovernments/digit-ui-libraries": "0.1.0-rc-optim-01",
|
|
69
|
+
"@egovernments/digit-ui-components-css":"0.2.0-beta.14",
|
|
70
|
+
"autoprefixer": "^10.4.15",
|
|
71
|
+
"date-fns": "3.6.0",
|
|
72
|
+
"lodash": "^4.17.21",
|
|
73
|
+
"postcss-flexbugs-fixes": "^5.0.2",
|
|
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",
|
|
79
|
+
"react-lottie": "1.2.4",
|
|
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"
|
|
90
|
+
},
|
|
91
|
+
"browserslist": {
|
|
92
|
+
"production": [
|
|
93
|
+
">0.2%",
|
|
94
|
+
"not dead",
|
|
95
|
+
"not op_mini all"
|
|
96
|
+
],
|
|
97
|
+
"development": [
|
|
98
|
+
"last 1 chrome version",
|
|
99
|
+
"last 1 firefox version",
|
|
100
|
+
"last 1 safari version"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
"keywords": [
|
|
104
|
+
"digit",
|
|
105
|
+
"core",
|
|
106
|
+
"components",
|
|
107
|
+
"dpg",
|
|
108
|
+
"webpack"
|
|
109
|
+
]
|
|
110
|
+
}
|