@egovernments/digit-ui-module-core 1.8.0 → 1.8.1-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/README.md +25 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -61,10 +61,34 @@ with
|
|
|
61
61
|
.filter((opt) => (opt?.hasOwnProperty("active") ? opt.active : true))
|
|
62
62
|
|
|
63
63
|
```
|
|
64
|
+
* Digit.Hooks.Utils.getDefaultLanguage()
|
|
65
|
+
|
|
66
|
+
```
|
|
67
|
+
from 1.8.0 beta version add the following utility method in micro-ui/web/micro-ui-internals/packages/libraries/src/utils/index.js
|
|
68
|
+
|
|
69
|
+
const getDefaultLanguage = () => {
|
|
70
|
+
return `${getLocaleDefault()}_${getLocaleRegion()}`;
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
and add its related functions
|
|
74
|
+
|
|
75
|
+
```
|
|
76
|
+
|
|
64
77
|
|
|
65
78
|
### Changelog
|
|
66
79
|
|
|
67
80
|
```bash
|
|
81
|
+
1.8.1-beta.1 Republished after merging with Master due to version issues.
|
|
82
|
+
1.8.0-beta.16 fixed the hardcoded logout message
|
|
83
|
+
1.8.0-beta.15 fixed the sidebar sort order issue
|
|
84
|
+
1.8.0-beta.14
|
|
85
|
+
1.8.0-beta.13
|
|
86
|
+
1.8.0-beta.12
|
|
87
|
+
1.8.0-beta.11 republished due to some version issues
|
|
88
|
+
1.8.0-beta.10 Constants updated for mgramsewa
|
|
89
|
+
1.8.0-beta.9 Updated How It works screen to take header from mdms config and show pdf card only when required
|
|
90
|
+
1.8.0-beta.8 redefine addtional component to render only under employee home page
|
|
91
|
+
1.8.0-beta.6 added addtional component render for tqm modules
|
|
68
92
|
1.8.0 workbench v1.0
|
|
69
93
|
1.8.0-beta.5 fix for login screen alignments
|
|
70
94
|
1.8.0-beta.4 made the default localisation in globalconfig
|
|
@@ -106,7 +130,7 @@ Documentation Site (https://core.digit.org/guides/developer-guide/ui-developer-g
|
|
|
106
130
|
|
|
107
131
|
|
|
108
132
|
### Published from DIGIT Frontend
|
|
109
|
-
DIGIT Frontend Repo (https://github.com/egovernments/Digit-Frontend/tree/
|
|
133
|
+
DIGIT Frontend Repo (https://github.com/egovernments/Digit-Frontend/tree/develop)
|
|
110
134
|
|
|
111
135
|
|
|
112
136
|

|