@egovernments/digit-ui-module-core 1.8.2 → 1.8.3-beta.3

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.
Files changed (3) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +5 -12
  3. package/README.md +0 -114
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@egovernments/digit-ui-module-core",
3
- "version": "1.8.2",
3
+ "version": "1.8.3-beta.3",
4
4
  "license": "MIT",
5
+ "description": "Digit App Core Module contains all core components",
5
6
  "main": "dist/index.js",
6
7
  "module": "dist/index.modern.js",
7
8
  "source": "src/Module.js",
@@ -14,7 +15,7 @@
14
15
  "prepublish": "yarn build"
15
16
  },
16
17
  "dependencies": {
17
- "@egovernments/digit-ui-react-components": "1.8.1",
18
+ "@egovernments/digit-ui-react-components": "^1.7.0-beta.2",
18
19
  "react": "17.0.2",
19
20
  "react-dom": "17.0.2",
20
21
  "react-i18next": "11.16.2",
@@ -24,13 +25,5 @@
24
25
  "react-tooltip": "4.1.2",
25
26
  "redux": "4.1.2",
26
27
  "redux-thunk": "2.4.1"
27
- },
28
- "author": "JaganKumar <jagan.kumar@egov.org.in>",
29
- "keywords": [
30
- "digit",
31
- "egov",
32
- "dpg",
33
- "digit-ui",
34
- "core"
35
- ]
36
- }
28
+ }
29
+ }
package/README.md DELETED
@@ -1,114 +0,0 @@
1
- <!-- TODO: update this -->
2
-
3
- # digit-ui-module-core
4
-
5
- ## Install
6
-
7
- ```bash
8
- npm install --save @egovernments/digit-ui-module-core
9
- ```
10
-
11
- ## Limitation
12
-
13
- ```bash
14
- This Package is more specific to DIGIT-UI's can be used across mission's
15
- ```
16
-
17
- ## Usage
18
-
19
- After adding the dependency make sure you have this dependency in
20
-
21
- ```bash
22
- frontend/micro-ui/web/package.json
23
- ```
24
-
25
- ```json
26
- "@egovernments/digit-ui-module-core":"^1.5.0",
27
- ```
28
-
29
- then navigate to App.js
30
-
31
- ```bash
32
- frontend/micro-ui/web/src/App.js
33
- ```
34
-
35
- ```jsx
36
- /** add this import **/
37
-
38
- import { DigitUI } from "@egovernments/digit-ui-module-core";
39
-
40
-
41
- /** inside render Function add the import for the component **/
42
-
43
- ReactDOM.render(<DigitUI stateCode={stateCode} enabledModules={enabledModules} moduleReducers={moduleReducers} />, document.getElementById("root"));
44
-
45
- ```
46
-
47
- # Mandatory changes to use following version
48
-
49
- ```
50
- from 1.5.38 add the following utility method in micro-ui-internals/packages/libraries/src/utils/index.js
51
-
52
- const createFunction = (functionAsString) => {
53
- return Function("return " + functionAsString)();
54
- };
55
-
56
- export as createFunction;
57
-
58
- similarly update line 76 of react-components/src/molecules/CustomDropdown.js
59
-
60
- with
61
- .filter((opt) => (opt?.hasOwnProperty("active") ? opt.active : true))
62
-
63
- ```
64
-
65
- ### Changelog
66
-
67
- ```bash
68
- 1.8.2 build issue fix due to ajv library
69
- 1.8.1 sidebar null check fixes
70
- 1.8.0 workbench v1.0
71
- 1.8.0-beta.5 fix for login screen alignments
72
- 1.8.0-beta.4 made the default localisation in globalconfig
73
- 1.8.0-beta workbench base version beta release
74
- 1.7.0 urban 2.9
75
- 1.6.0 urban 2.8
76
- 1.5.43 redirection issue fix incase of no roles in selected city
77
- 1.5.46 added classname for topbar options dropdown.
78
- 1.5.45 aligment issue in edit and logout
79
- 1.5.44 updated login scss and alignment issues
80
- 1.5.42 fixed the mdms call in login component for dynamic updating
81
- 1.5.41 updated the readme content
82
- 1.5.40 Updated the login componenet to handle mdms config, which can be accessed from master - commonUiConfig and module - LoginConfig
83
- 1.5.39 Show the Toast when password changed and need to logout from profile page
84
- 1.5.38 enabled the admin mode for employee login which can be accessed through route employee/user/login?mode=admin and updated to use formcomposerv2
85
- 1.5.37 fixed hiding upload drawer icons.
86
- 1.5.36 fixed after clicking on change password and then try to save profile without changing password showing error.
87
- 1.5.35 fixed user profile email was prefilled when clicking on change password
88
- 1.5.34 fixed module not found redirection issue
89
- 1.5.33 fixed payment not throwing error page for sanitation
90
- 1.5.32 fixed the localisation issue by adding translation to the keys and fixed payment response issue for sanitation UI
91
- 1.5.31 fixed the allservices screen back button for sanitation UI
92
- 1.5.30 fixed the home routing issue in error screen
93
- 1.5.29 added the readme file
94
- 1.5.28 fixed the route issue for profile screen
95
- ```
96
-
97
- ### Contributors
98
-
99
- [jagankumar-egov] [nipunarora-eGov] [Tulika-eGov] [Ramkrishna-egov] [nabeelmd-eGov] [anil-egov] [vamshikrishnakole-wtt-egov]
100
-
101
- ## Documentation
102
-
103
- Documentation Site (https://core.digit.org/guides/developer-guide/ui-developer-guide/digit-ui)
104
-
105
- ## Maintainer
106
-
107
- - [jagankumar-egov](https://www.github.com/jagankumar-egov)
108
-
109
-
110
- ### Published from DIGIT Frontend
111
- DIGIT Frontend Repo (https://github.com/egovernments/Digit-Frontend/tree/master)
112
-
113
-
114
- ![Logo](https://s3.ap-south-1.amazonaws.com/works-dev-asset/mseva-white-logo.png)