Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.

Commit e03ec9d

Browse files
jagankumar-egovsaurabh-egovAyan Majumderabhinav-egovnikesh2812
authored
RAIN-3253 : DIGIT-2.5 Release changes and sem version incremented to 1.3.0 (#28)
* added paymentconfig to componentRegistryService * fixed build failure * Add quick pay links in the enabledModules * changed source branch to bug/fsm-hotfixes-3 * reverted back to development branch as source * added DSS module * added dss initializations * imported PT components * Added and enabled Mcollect module * Digit UI Added , enabled HRMS and TL Modules * RAIN-2725 : Digit UI Added Receipts Module * Initial commit for develop branch * Create CODEOWNERS * Revert the deletion of yarnlock file (#26) * Revert the deletion of yarnlock file This reverts commit aa221d2. * modified branch name to develop from dev * RAIN-3253 : DIGIT-2.5 Release sem version incremented to 1.3.0 * Updated the branch to build as Main for master branch Co-authored-by: ssaurabh <[email protected]> Co-authored-by: Ayan Majumder <[email protected]> Co-authored-by: abhinav-egov <[email protected]> Co-authored-by: saurabh-egov <[email protected]> Co-authored-by: nikesh-eGov <[email protected]>
1 parent 55a8861 commit e03ec9d

File tree

5 files changed

+46
-26
lines changed

5 files changed

+46
-26
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"name": "digit-ui",
3-
"version": "1.2.0"
3+
"version": "1.3.0"
44
}

web/install-deps.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ BRANCH="$(git branch --show-current)"
44

55
echo "Main Branch: $BRANCH"
66

7-
if [ "$BRANCH" != "dev" ] || [ "$BRANCH" != "master" ]; then
7+
if [ "$BRANCH" != "develop" ] || [ "$BRANCH" != "master" ]; then
88

99
INTERNALS="digit-ui-internals"
1010
rm -rf $INTERNALS
11-
git clone -b development https://github.com/egovernments/digit-ui-internals.git $INTERNALS
11+
git clone -b main https://github.com/egovernments/digit-ui-internals.git $INTERNALS
1212
cd $INTERNALS && echo "Branch: $(git branch --show-current)" && echo "$(git log -1 --pretty=%B)" && yarn && yarn build && find . -name "node_modules" -type d -prune -print -exec rm -rf '{}' \;
1313
cd ..
1414

web/package.json

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "digit-ui",
3-
"version": "1.1.0",
3+
"version": "1.3.0",
44
"private": true,
55
"workspaces": [
66
"digit-ui-internals/packages/*",
@@ -9,13 +9,17 @@
99
"homepage": "/digit-ui",
1010
"dependencies": {
1111
"@egovernments/digit-ui-css": "^1.0.0",
12-
"@egovernments/digit-ui-libraries": "^1.0.0",
13-
"@egovernments/digit-ui-module-common": "^1.0.0",
14-
"@egovernments/digit-ui-module-core": "^1.0.0",
15-
"@egovernments/digit-ui-module-fsm": "^1.0.0",
16-
"@egovernments/digit-ui-module-pgr": "^1.0.0",
17-
"@egovernments/digit-ui-module-pt": "^1.0.0",
18-
"@egovernments/digit-ui-react-components": "^1.0.0",
12+
"@egovernments/digit-ui-libraries": "^1.3.0",
13+
"@egovernments/digit-ui-module-common": "^1.3.0",
14+
"@egovernments/digit-ui-module-core": "^1.3.0",
15+
"@egovernments/digit-ui-module-fsm": "^1.3.0",
16+
"@egovernments/digit-ui-module-pgr": "^1.3.0",
17+
"@egovernments/digit-ui-module-pt": "^1.3.0",
18+
"@egovernments/digit-ui-module-mcollect": "^1.3.0",
19+
"@egovernments/digit-ui-module-tl": "^1.3.0",
20+
"@egovernments/digit-ui-module-hrms": "^1.3.0",
21+
"@egovernments/digit-ui-module-receipts": "^1.3.0",
22+
"@egovernments/digit-ui-react-components": "^1.3.0",
1923
"babel-loader": "8.1.0",
2024
"react": "^17.0.1",
2125
"react-dom": "^17.0.1",

web/src/App.js

+19-3
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,40 @@ import React from 'react';
33
import { initPGRComponents, PGRReducers } from "@egovernments/digit-ui-module-pgr";
44
import { initFSMComponents } from "@egovernments/digit-ui-module-fsm";
55
import { PTModule, PTLinks, PTComponents } from "@egovernments/digit-ui-module-pt";
6+
import { MCollectModule, MCollectLinks, initMCollectComponents } from "@egovernments/digit-ui-module-mcollect";
7+
import { initDSSComponents } from "@egovernments/digit-ui-module-dss";
68
import { PaymentModule, PaymentLinks, paymentConfigs } from "@egovernments/digit-ui-module-common";
79
import { DigitUI } from "@egovernments/digit-ui-module-core";
810
import { initLibraries } from "@egovernments/digit-ui-libraries";
11+
import { HRMSModule ,initHRMSComponents } from "@egovernments/digit-ui-module-hrms";
12+
import { TLModule, TLLinks,initTLComponents } from "@egovernments/digit-ui-module-tl";
13+
import { initReceiptsComponents, ReceiptsModule } from "@egovernments/digit-ui-module-receipts";
914

1015
initLibraries();
1116

12-
const enabledModules = ["PGR", "FSM", "Payment","PT", "QuickPayLinks"];
17+
const enabledModules = ["PGR", "FSM", "Payment", "PT", "QuickPayLinks", "DSS", "MCollect","HRMS", "TL","Receipts"];
1318
window.Digit.ComponentRegistryService.setupRegistry({
14-
PaymentModule,
15-
PaymentLinks,
1619
...paymentConfigs,
1720
PTModule,
1821
PTLinks,
22+
PaymentModule,
23+
PaymentLinks,
1924
...PTComponents,
25+
MCollectLinks,
26+
MCollectModule,
27+
HRMSModule,
28+
TLModule,
29+
TLLinks,
30+
ReceiptsModule
2031
});
2132

2233
initPGRComponents();
2334
initFSMComponents();
35+
initDSSComponents();
36+
initMCollectComponents();
37+
initHRMSComponents()
38+
initTLComponents();
39+
initReceiptsComponents();
2440

2541
const moduleReducers = (initData) => ({
2642
pgr: PGRReducers(initData),

web/yarn.lock

+12-12
Original file line numberDiff line numberDiff line change
@@ -3417,9 +3417,9 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.2, ajv@^6.12.3, ajv@^6.12.4, ajv
34173417
uri-js "^4.2.2"
34183418

34193419
ajv@^8.0.1:
3420-
version "8.0.1"
3421-
resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.0.1.tgz#dac101898a87f8ebb57fea69617e8096523c628c"
3422-
integrity sha512-46ZA4TalFcLLqX1dEU3dhdY38wAtDydJ4e7QQTVekLUTzXkb1LfqU6VOBXC/a9wiv4T094WURqJH6ZitF92Kqw==
3420+
version "8.0.2"
3421+
resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.0.2.tgz#1396e27f208ed56dd5638ab5a251edeb1c91d402"
3422+
integrity sha512-V0HGxJd0PiDF0ecHYIesTOqfd1gJguwQUOYfMfAWnRsWQEXfc5ifbUFhD3Wjc+O+y7VAqL+g07prq9gHQ/JOZQ==
34233423
dependencies:
34243424
fast-deep-equal "^3.1.1"
34253425
json-schema-traverse "^1.0.0"
@@ -5501,27 +5501,27 @@ copy-to-clipboard@^3.3.1:
55015501
toggle-selection "^1.0.6"
55025502

55035503
core-js-compat@^3.6.2, core-js-compat@^3.8.1, core-js-compat@^3.9.0:
5504-
version "3.9.1"
5505-
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.9.1.tgz#4e572acfe90aff69d76d8c37759d21a5c59bb455"
5506-
integrity sha512-jXAirMQxrkbiiLsCx9bQPJFA6llDadKMpYrBJQJ3/c4/vsPP/fAf29h24tviRlvwUL6AmY5CHLu2GvjuYviQqA==
5504+
version "3.10.0"
5505+
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.10.0.tgz#3600dc72869673c110215ee7a005a8609dea0fe1"
5506+
integrity sha512-9yVewub2MXNYyGvuLnMHcN1k9RkvB7/ofktpeKTIaASyB88YYqGzUnu0ywMMhJrDHOMiTjSHWGzR+i7Wb9Z1kQ==
55075507
dependencies:
55085508
browserslist "^4.16.3"
55095509
semver "7.0.0"
55105510

55115511
core-js-pure@^3.0.0, core-js-pure@^3.8.2:
5512-
version "3.9.1"
5513-
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.9.1.tgz#677b322267172bd490e4464696f790cbc355bec5"
5514-
integrity sha512-laz3Zx0avrw9a4QEIdmIblnVuJz8W51leY9iLThatCsFawWxC3sE4guASC78JbCin+DkwMpCdp1AVAuzL/GN7A==
5512+
version "3.10.0"
5513+
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.10.0.tgz#dab9d6b141779b622b40567e7a536d2276646c15"
5514+
integrity sha512-CC582enhrFZStO4F8lGI7QL3SYx7/AIRc+IdSi3btrQGrVsTawo5K/crmKbRrQ+MOMhNX4v+PATn0k2NN6wI7A==
55155515

55165516
core-js@^2.4.0:
55175517
version "2.6.12"
55185518
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec"
55195519
integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==
55205520

55215521
core-js@^3.0.4, core-js@^3.6.5, core-js@^3.8.2:
5522-
version "3.9.1"
5523-
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.9.1.tgz#cec8de593db8eb2a85ffb0dbdeb312cb6e5460ae"
5524-
integrity sha512-gSjRvzkxQc1zjM/5paAmL4idJBFzuJoo+jDjF1tStYFMV2ERfD02HhahhCGXUyHxQRG4yFKVSdO6g62eoRMcDg==
5522+
version "3.10.0"
5523+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.10.0.tgz#9a020547c8b6879f929306949e31496bbe2ae9b3"
5524+
integrity sha512-MQx/7TLgmmDVamSyfE+O+5BHvG1aUGj/gHhLn1wVtm2B5u1eVIPvh7vkfjwWKNCjrTJB8+He99IntSQ1qP+vYQ==
55255525

55265526
[email protected], core-util-is@~1.0.0:
55275527
version "1.0.2"

0 commit comments

Comments
 (0)