@egovernments/digit-ui-components 0.0.2-beta.8 → 0.0.9-beta.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/README.md +139 -138
- package/dist/index.js +1 -1
- package/package.json +94 -87
- package/CHANGELOG.md +0 -189
package/package.json
CHANGED
|
@@ -1,87 +1,94 @@
|
|
|
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
|
-
"
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"react
|
|
28
|
-
"react-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"@storybook/addon-
|
|
33
|
-
"@storybook/addon-
|
|
34
|
-
"@storybook/
|
|
35
|
-
"@storybook/
|
|
36
|
-
"@storybook/react": "
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"react
|
|
45
|
-
"react-
|
|
46
|
-
"react-
|
|
47
|
-
"react-
|
|
48
|
-
"react-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"@
|
|
55
|
-
"@
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"react-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
"
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
"
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@egovernments/digit-ui-components",
|
|
3
|
+
"version": "0.0.9-beta.1",
|
|
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:webpack": "webpack --config webpack.config.js",
|
|
16
|
+
"build": "microbundle-crl --compress --no-sourcemap --format cjs",
|
|
17
|
+
"start": "microbundle-crl watch --no-compress --format modern,cjs",
|
|
18
|
+
"prepare": "yarn build",
|
|
19
|
+
"publish:components": "npm publish --tag core-v0.1",
|
|
20
|
+
"predeploy": "cd example && yarn install && yarn run build",
|
|
21
|
+
"deploy": "gh-pages -d example/build",
|
|
22
|
+
"storybook": "start-storybook -p 6006 -s public",
|
|
23
|
+
"build-storybook": "build-storybook -s public -o dist-storybook",
|
|
24
|
+
"deploy-storybook": "npm run build-storybook && surge --project dist-storybook --domain svg-components-$npm_package_version.surge.sh"
|
|
25
|
+
},
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"react": "17.0.2",
|
|
28
|
+
"react-dom": "17.0.2",
|
|
29
|
+
"react-router-dom": "5.3.0"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@storybook/addon-actions": "6.4.20",
|
|
33
|
+
"@storybook/addon-essentials": "6.4.20",
|
|
34
|
+
"@storybook/addon-links": "6.4.20",
|
|
35
|
+
"@storybook/node-logger": "6.4.20",
|
|
36
|
+
"@storybook/preset-create-react-app": "3.2.0",
|
|
37
|
+
"@storybook/react": "6.4.20",
|
|
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
|
+
"webpack": "^5.89.0",
|
|
51
|
+
"webpack-cli": "^4.10.0",
|
|
52
|
+
"babel-loader": "^8.0.0",
|
|
53
|
+
"@babel/core": "^7.23.3",
|
|
54
|
+
"@babel/preset-env": "^7.23.3",
|
|
55
|
+
"@babel/preset-react": "^7.23.3"
|
|
56
|
+
},
|
|
57
|
+
"files": [
|
|
58
|
+
"dist"
|
|
59
|
+
],
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"@egovernments/digit-ui-components-css": "0.0.2-beta.19",
|
|
62
|
+
"@egovernments/digit-ui-libraries": "1.8.1-beta.1",
|
|
63
|
+
"@egovernments/digit-ui-svg-components": "1.0.4",
|
|
64
|
+
"@googlemaps/js-api-loader": "1.13.10",
|
|
65
|
+
"autoprefixer": "^10.4.15",
|
|
66
|
+
"postcss-flexbugs-fixes": "^5.0.2",
|
|
67
|
+
"react-date-range": "1.3.0",
|
|
68
|
+
"react-hook-form": "6.15.8",
|
|
69
|
+
"react-i18next": "11.16.2",
|
|
70
|
+
"react-table": "7.7.0",
|
|
71
|
+
"react-drag-drop-files": "2.3.10",
|
|
72
|
+
"@cyntler/react-doc-viewer": "1.10.3",
|
|
73
|
+
"react-webcam":"7.2.0",
|
|
74
|
+
"react-lottie":"1.2.4"
|
|
75
|
+
},
|
|
76
|
+
"browserslist": {
|
|
77
|
+
"production": [
|
|
78
|
+
">0.2%",
|
|
79
|
+
"not dead",
|
|
80
|
+
"not op_mini all"
|
|
81
|
+
],
|
|
82
|
+
"development": [
|
|
83
|
+
"last 1 chrome version",
|
|
84
|
+
"last 1 firefox version",
|
|
85
|
+
"last 1 safari version"
|
|
86
|
+
]
|
|
87
|
+
},
|
|
88
|
+
"keywords": [
|
|
89
|
+
"digit",
|
|
90
|
+
"core",
|
|
91
|
+
"components",
|
|
92
|
+
"dpg"
|
|
93
|
+
]
|
|
94
|
+
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,189 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
|
|
5
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
-
|
|
7
|
-
## [0.0.2-beta.8] - 2024-06-24
|
|
8
|
-
### New Changes
|
|
9
|
-
- Added Title prop for Button
|
|
10
|
-
|
|
11
|
-
## [0.0.2-beta.7] - 2024-06-24
|
|
12
|
-
### New Changes
|
|
13
|
-
- Added ViewMore button for Timeline Molecule.
|
|
14
|
-
|
|
15
|
-
## [0.0.2-beta.6] - 2024-06-19
|
|
16
|
-
### New Changes
|
|
17
|
-
- Added BreadCrumb Component.
|
|
18
|
-
|
|
19
|
-
## [0.0.2-beta.5] - 2024-06-17
|
|
20
|
-
### New Changes
|
|
21
|
-
- Added Timeline Molecule.
|
|
22
|
-
|
|
23
|
-
## [0.0.2-beta.4] - 2024-06-15
|
|
24
|
-
### Changed
|
|
25
|
-
- fix: Fixed prop for the document upload.
|
|
26
|
-
|
|
27
|
-
## [0.0.2-beta.3] - 2024-06-14
|
|
28
|
-
### Changed
|
|
29
|
-
- Updated Storybook
|
|
30
|
-
- Modified BackButton as BackLink
|
|
31
|
-
|
|
32
|
-
## [0.0.2-beta.1] - 2024-06-04
|
|
33
|
-
### Changed
|
|
34
|
-
- Updated Popup Classname
|
|
35
|
-
- Added InfoCard Header Classname
|
|
36
|
-
|
|
37
|
-
## [0.0.2] - 2024-06-03
|
|
38
|
-
- New components and enhancements for old components
|
|
39
|
-
|
|
40
|
-
### New Changes
|
|
41
|
-
|
|
42
|
-
- Added Error Message Component.
|
|
43
|
-
- Added Info Button Component.
|
|
44
|
-
- Added Panels Component.
|
|
45
|
-
- Added Popup Component With Two Variants defualt and alert.
|
|
46
|
-
- Added RemoveableTag Component.
|
|
47
|
-
- Added Stepper Component.
|
|
48
|
-
- Added TextBlock Component.
|
|
49
|
-
- Added Timeline Component.
|
|
50
|
-
- Added Uploader Component With Three Varinats UploadFile,UploadPopup and UploadImage.
|
|
51
|
-
- Added PanelCard Molecule.
|
|
52
|
-
|
|
53
|
-
### Enhancements
|
|
54
|
-
|
|
55
|
-
- Updated Button Component Styles.
|
|
56
|
-
- Updated Dropdown Component Styles and Added SelectAll Option.
|
|
57
|
-
- Updated InfoCard Component Styles.
|
|
58
|
-
- Added Animation for Toast.
|
|
59
|
-
- Added new prop named type for Toast replacing the separate props for `info`, `warning`, and `error`.
|
|
60
|
-
- Updated Typography with lineHeight
|
|
61
|
-
- Updated Color Typography
|
|
62
|
-
|
|
63
|
-
## [0.0.1-beta.32] - YYYY-MM-DD
|
|
64
|
-
### Changed
|
|
65
|
-
- Updated Panel Success Animation
|
|
66
|
-
|
|
67
|
-
## [0.0.1-beta.31] - YYYY-MM-DD
|
|
68
|
-
### Added
|
|
69
|
-
- New prop named `activeSteps` in Stepper
|
|
70
|
-
|
|
71
|
-
## [0.0.1-beta.30] - YYYY-MM-DD
|
|
72
|
-
### Changed
|
|
73
|
-
- Updated Panel Animation Styles
|
|
74
|
-
|
|
75
|
-
## [0.0.1-beta.29] - YYYY-MM-DD
|
|
76
|
-
### Added
|
|
77
|
-
- PopUp, Panels, and Panel Cards
|
|
78
|
-
|
|
79
|
-
## [0.0.1-beta.28] - YYYY-MM-DD
|
|
80
|
-
### Added
|
|
81
|
-
- `restrictSelection` prop in MultiSelectDropdown
|
|
82
|
-
|
|
83
|
-
## [0.0.1-beta.27] - YYYY-MM-DD
|
|
84
|
-
### Added
|
|
85
|
-
- Uploader variants and its CSS
|
|
86
|
-
|
|
87
|
-
## [0.0.1-beta.26] - YYYY-MM-DD
|
|
88
|
-
### Changed
|
|
89
|
-
- Updated Toast Usage
|
|
90
|
-
|
|
91
|
-
## [0.0.1-beta.25] - YYYY-MM-DD
|
|
92
|
-
### Changed
|
|
93
|
-
- Updated RemoveableTag component to have error
|
|
94
|
-
|
|
95
|
-
## [0.0.1-beta.24] - YYYY-MM-DD
|
|
96
|
-
### Changed
|
|
97
|
-
- Updated numeric type to disable input and use only buttons
|
|
98
|
-
- Made date and time fields clickable
|
|
99
|
-
|
|
100
|
-
## [0.0.1-beta.23] - YYYY-MM-DD
|
|
101
|
-
### Added
|
|
102
|
-
- New props `showIcon`, `truncateMessage`, and `maxLength` to ErrorMessage component
|
|
103
|
-
|
|
104
|
-
## [0.0.1-beta.22] - YYYY-MM-DD
|
|
105
|
-
### Changed
|
|
106
|
-
- `Toast` component now has a new prop `type`, replacing the separate props for `info`, `warning`, and `error`
|
|
107
|
-
|
|
108
|
-
## [0.0.1-beta.21] - YYYY-MM-DD
|
|
109
|
-
### Added
|
|
110
|
-
- `categorySelectAllState` in the nestedmultiselect variant of MultiSelectDropdown
|
|
111
|
-
|
|
112
|
-
## [0.0.1-beta.20] - YYYY-MM-DD
|
|
113
|
-
### Changed
|
|
114
|
-
- Updated MultiSelectDropdown `categoryselectall` functionality
|
|
115
|
-
- Added key navigation for dropdown options
|
|
116
|
-
|
|
117
|
-
## [0.0.1-beta.19] - YYYY-MM-DD
|
|
118
|
-
### Changed
|
|
119
|
-
- Made CheckBox more customizable
|
|
120
|
-
- Added custom color for Button
|
|
121
|
-
|
|
122
|
-
## [0.0.1-beta.18] - YYYY-MM-DD
|
|
123
|
-
### Changed
|
|
124
|
-
- Updated dropdown option labels
|
|
125
|
-
|
|
126
|
-
## [0.0.1-beta.17] - YYYY-MM-DD
|
|
127
|
-
### Changed
|
|
128
|
-
- Updated Toast info variant CSS
|
|
129
|
-
- Updated category option CSS
|
|
130
|
-
|
|
131
|
-
## [0.0.1-beta.16] - YYYY-MM-DD
|
|
132
|
-
### Added
|
|
133
|
-
- Error boundary atom
|
|
134
|
-
|
|
135
|
-
## [0.0.1-beta.15] - YYYY-MM-DD
|
|
136
|
-
### Added
|
|
137
|
-
- Info variant for Toast
|
|
138
|
-
|
|
139
|
-
## [0.0.1-beta.14] - YYYY-MM-DD
|
|
140
|
-
### Changed
|
|
141
|
-
- Updated dropdown options label to use `optionsKey`
|
|
142
|
-
|
|
143
|
-
## [0.0.1-beta.13] - YYYY-MM-DD
|
|
144
|
-
### Changed
|
|
145
|
-
- Updated nested and tree dropdown variant
|
|
146
|
-
|
|
147
|
-
## [0.0.1-beta.12] - YYYY-MM-DD
|
|
148
|
-
### Changed
|
|
149
|
-
- Enhancements of components
|
|
150
|
-
|
|
151
|
-
## [0.0.1-beta.11] - YYYY-MM-DD
|
|
152
|
-
### Changed
|
|
153
|
-
- Updated `mobilenumber` classname
|
|
154
|
-
|
|
155
|
-
## [0.0.1-beta.10] - YYYY-MM-DD
|
|
156
|
-
### Changed
|
|
157
|
-
- Updated header and textinput classnames
|
|
158
|
-
|
|
159
|
-
## [0.0.1-beta.9] - YYYY-MM-DD
|
|
160
|
-
### Changed
|
|
161
|
-
- Updated key to `IS_STRING_MANIPULATED`
|
|
162
|
-
|
|
163
|
-
## [0.0.1-beta.8] - YYYY-MM-DD
|
|
164
|
-
### Changed
|
|
165
|
-
- Updated the string manipulation based on `globalConfig` flag `isStringManipulated`
|
|
166
|
-
|
|
167
|
-
## [0.0.1-beta.7] - YYYY-MM-DD
|
|
168
|
-
### Changed
|
|
169
|
-
- Updated classnames
|
|
170
|
-
|
|
171
|
-
## [0.0.1-beta.6] - YYYY-MM-DD
|
|
172
|
-
### Changed
|
|
173
|
-
- Updated version
|
|
174
|
-
|
|
175
|
-
## [0.0.1-beta.5] - YYYY-MM-DD
|
|
176
|
-
### Changed
|
|
177
|
-
- Modified classnames
|
|
178
|
-
|
|
179
|
-
## [0.0.1-beta.4] - YYYY-MM-DD
|
|
180
|
-
### Fixed
|
|
181
|
-
- Fixed some date issues
|
|
182
|
-
|
|
183
|
-
## [0.0.1] - 2024-03-22
|
|
184
|
-
### Added Base version
|
|
185
|
-
- Button Component.
|
|
186
|
-
- Dropdown Component.
|
|
187
|
-
- InfoCard Component.
|
|
188
|
-
- Toast.
|
|
189
|
-
- Input fields.
|