@egovernments/digit-ui-components 0.0.9-beta.1 → 0.2.0-beta.2
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 +456 -0
- package/README.md +137 -139
- package/dist/index.js +1 -1
- package/package.json +91 -94
package/package.json
CHANGED
|
@@ -1,94 +1,91 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@egovernments/digit-ui-components",
|
|
3
|
-
"version": "0.0
|
|
4
|
-
"license": "MIT",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"module": "dist/index.modern.js",
|
|
7
|
-
"source": "src/index.js",
|
|
8
|
-
"engines": {
|
|
9
|
-
"node": ">=14"
|
|
10
|
-
},
|
|
11
|
-
"homepage": "https://unified-dev.digit.org/storybook/",
|
|
12
|
-
"author": "Jagankumar <jagan.kumar@egov.org.in>",
|
|
13
|
-
"scripts": {
|
|
14
|
-
"example": "cd example && npm run start",
|
|
15
|
-
"build
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"storybook": "
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"react": "17.0.2",
|
|
28
|
-
"react-dom": "
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"@storybook/addon-
|
|
33
|
-
"@storybook/addon-
|
|
34
|
-
"@storybook/
|
|
35
|
-
"@storybook/
|
|
36
|
-
"@storybook/
|
|
37
|
-
"@storybook/
|
|
38
|
-
"babel-eslint": "10.1.0",
|
|
39
|
-
"cross-env": "7.0.3",
|
|
40
|
-
"gh-pages": "2.2.0",
|
|
41
|
-
"husky": "7.0.4",
|
|
42
|
-
"lint-staged": "12.3.7",
|
|
43
|
-
"microbundle-crl": "0.13.11",
|
|
44
|
-
"react": "17.0.2",
|
|
45
|
-
"react-dom": "17.0.2",
|
|
46
|
-
"react-query": "3.6.1",
|
|
47
|
-
"react-responsive": "9.0.2",
|
|
48
|
-
"react-router-dom": "5.3.0",
|
|
49
|
-
"react-scripts": "^4.0.1"
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"react-
|
|
68
|
-
"react-
|
|
69
|
-
"react-
|
|
70
|
-
"
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
"dpg"
|
|
93
|
-
]
|
|
94
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@egovernments/digit-ui-components",
|
|
3
|
+
"version": "0.2.0-beta.2",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.modern.js",
|
|
7
|
+
"source": "src/index.js",
|
|
8
|
+
"engines": {
|
|
9
|
+
"node": ">=14"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://unified-dev.digit.org/storybook/",
|
|
12
|
+
"author": "Jagankumar <jagan.kumar@egov.org.in>",
|
|
13
|
+
"scripts": {
|
|
14
|
+
"example": "cd example && npm run start",
|
|
15
|
+
"build": "microbundle-crl --compress --no-sourcemap --format cjs",
|
|
16
|
+
"start": "microbundle-crl watch --no-compress --format modern,cjs",
|
|
17
|
+
"prepare": "yarn build",
|
|
18
|
+
"publish:components": "npm publish --tag core-v0.1",
|
|
19
|
+
"predeploy": "cd example && yarn install && yarn run build",
|
|
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
|
+
"devDependencies": {
|
|
31
|
+
"@storybook/addon-actions": "6.4.20",
|
|
32
|
+
"@storybook/addon-essentials": "6.4.20",
|
|
33
|
+
"@storybook/addon-links": "6.4.20",
|
|
34
|
+
"@storybook/node-logger": "6.4.20",
|
|
35
|
+
"@storybook/preset-create-react-app": "3.2.0",
|
|
36
|
+
"@storybook/react": "6.4.20",
|
|
37
|
+
"@storybook/blocks":"8.3.5",
|
|
38
|
+
"babel-eslint": "10.1.0",
|
|
39
|
+
"cross-env": "7.0.3",
|
|
40
|
+
"gh-pages": "2.2.0",
|
|
41
|
+
"husky": "7.0.4",
|
|
42
|
+
"lint-staged": "12.3.7",
|
|
43
|
+
"microbundle-crl": "0.13.11",
|
|
44
|
+
"react": "17.0.2",
|
|
45
|
+
"react-dom": "17.0.2",
|
|
46
|
+
"react-query": "3.6.1",
|
|
47
|
+
"react-responsive": "9.0.2",
|
|
48
|
+
"react-router-dom": "5.3.0",
|
|
49
|
+
"react-scripts": "^4.0.1"
|
|
50
|
+
},
|
|
51
|
+
"files": [
|
|
52
|
+
"dist"
|
|
53
|
+
],
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"react-data-table-component": "7.6.2",
|
|
56
|
+
"@egovernments/digit-ui-components-css": "0.2.1",
|
|
57
|
+
"@egovernments/digit-ui-libraries": "1.8.10",
|
|
58
|
+
"@egovernments/digit-ui-svg-components": "1.0.14",
|
|
59
|
+
"@googlemaps/js-api-loader": "1.13.10",
|
|
60
|
+
"autoprefixer": "^10.4.15",
|
|
61
|
+
"postcss-flexbugs-fixes": "^5.0.2",
|
|
62
|
+
"react-date-range": "1.3.0",
|
|
63
|
+
"react-hook-form": "6.15.8",
|
|
64
|
+
"react-i18next": "11.16.2",
|
|
65
|
+
"react-table": "7.7.0",
|
|
66
|
+
"react-drag-drop-files": "2.3.10",
|
|
67
|
+
"@cyntler/react-doc-viewer": "1.10.3",
|
|
68
|
+
"react-webcam":"7.2.0",
|
|
69
|
+
"react-lottie":"1.2.4",
|
|
70
|
+
"styled-components":"5.0.0"
|
|
71
|
+
},
|
|
72
|
+
"browserslist": {
|
|
73
|
+
"production": [
|
|
74
|
+
">0.2%",
|
|
75
|
+
"not dead",
|
|
76
|
+
"not op_mini all"
|
|
77
|
+
],
|
|
78
|
+
"development": [
|
|
79
|
+
"last 1 chrome version",
|
|
80
|
+
"last 1 firefox version",
|
|
81
|
+
"last 1 safari version"
|
|
82
|
+
]
|
|
83
|
+
},
|
|
84
|
+
"keywords": [
|
|
85
|
+
"digit",
|
|
86
|
+
"core",
|
|
87
|
+
"components",
|
|
88
|
+
"dpg"
|
|
89
|
+
]
|
|
90
|
+
}
|
|
91
|
+
|