@egovernments/digit-ui-module-cms 0.0.1 → 1.0.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/CHANGELOG.md +6 -0
- package/README.md +3 -3
- package/dist/index.js +1 -1
- package/package.json +25 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this module will be documented in this file.
|
|
3
3
|
|
|
4
|
+
## [1.0.1] - 2026-02-18
|
|
5
|
+
### Fixed
|
|
6
|
+
- CCSD-1616: Citizen header logo override — rewrote script with persistent dual-observer approach to survive React re-renders; added citizen-route guard so override only applies on `/citizen` pages - Header Removed
|
|
7
|
+
|
|
8
|
+
- Core version Updated in to 1.9.12
|
|
9
|
+
|
|
4
10
|
## 0.0.1 - 2025-02-13
|
|
5
11
|
### Intial Commit
|
|
6
12
|
1. Initial commit with pgr module
|
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
## Install
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npm install --save egovernments/digit-ui-module-
|
|
6
|
+
npm install --save egovernments/digit-ui-module-cms
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
## Limitation
|
|
@@ -21,7 +21,7 @@ frontend/micro-ui/web/package.json
|
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
```json
|
|
24
|
-
"@egovernments/digit-ui-module-
|
|
24
|
+
"@egovernments/digit-ui-module-cms" :"0.0.1",
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
then navigate to App.js
|
|
@@ -33,7 +33,7 @@ then navigate to App.js
|
|
|
33
33
|
```jsx
|
|
34
34
|
/** add this import **/
|
|
35
35
|
|
|
36
|
-
import { initPGRComponents } from "egovernments/digit-ui-module-
|
|
36
|
+
import { initPGRComponents } from "egovernments/digit-ui-module-cms"
|
|
37
37
|
|
|
38
38
|
/** inside enabledModules add this new module key **/
|
|
39
39
|
|