Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
2e37f96
added the vite.config.js , renamed all files to jsx and remove the vi…
anuj452005 Jun 28, 2025
cb10b31
added the vite.config and removed react-scripts
anuj452005 Jun 29, 2025
9ee8d91
migrate from the material-ui to mui
anuj452005 Jul 16, 2025
43c518f
updated vite.config
anuj452005 Jul 26, 2025
1fa5d70
Refactor components to use styled components from MUI instead of with…
anuj452005 Jul 30, 2025
920a9c7
build: remove rollup config and clean up vite config
anuj452005 Aug 11, 2025
77536e1
chore: update mui
delcroip Aug 13, 2025
30cdd42
fix(build): correct file extension
anuj452005 Aug 18, 2025
2c83ac1
fix: add optional chaining for benefit plan field checks
anuj452005 Aug 20, 2025
2322f76
refactor: remove unnecessary cleanup returns in useEffect hooks
anuj452005 Aug 20, 2025
a1933ca
feat(styles): improve form and picker styling
anuj452005 Aug 25, 2025
7b45af3
update vite config
anuj452005 Aug 30, 2025
8ff8433
chore: updatel lock
delcroip Jan 24, 2026
b53170c
chore: allign react version
delcroip Jan 25, 2026
c2e6998
chore: align react_intl
delcroip Jan 25, 2026
ff1fbf2
chore: package update
delcroip Jan 26, 2026
29fea63
chore:align packages scripts
delcroip Jan 28, 2026
ad15d83
refactor(components): update Grid props and add exports for Material-…
delcroip Jan 30, 2026
a377a77
chore(deps): remove unused dev dependencies from package-lock.json
delcroip Jan 30, 2026
a980fc0
fix: theme optional chaining
olewandowski1 Feb 4, 2026
8feaa49
fix: benefit plan searcher, filters
olewandowski1 Feb 4, 2026
5384d84
fix: add package-lock json to the gitignore
olewandowski1 Feb 5, 2026
38e55b8
refactor: move MUI and Emotion to peerDependencies
olewandowski1 Feb 6, 2026
ce04e58
refactor: synchronize dependencies with host and move to peerDependen…
olewandowski1 Feb 6, 2026
8475da7
feat: make filters responsive
olewandowski1 Feb 11, 2026
d82f6e8
feat: make filters responsive
olewandowski1 Feb 11, 2026
d0174c1
Merge branch 'develop' into feature/vite-migration
olewandowski1 Feb 12, 2026
24c5bc1
feat: update material-table, migrate new files to use mui v7
olewandowski1 Feb 12, 2026
d8a4a92
fix: add missing import
olewandowski1 Feb 13, 2026
f8e1791
chore: downgrade material-table package
olewandowski1 Feb 13, 2026
f6d1843
chore: restore material table dep to use latest version
olewandowski1 Feb 13, 2026
e29ea01
fixes review 2
Blue-B-code Mar 25, 2026
ad49179
refactor(menus): simplify BenefitPlanMainMenu to use dynamic contribu…
delcroip Mar 27, 2026
f5c3c5a
refactor(components): replace direct MUI icon imports with GetIconCom…
delcroip Apr 10, 2026
c79c942
refactor(socialProtection): standardize menu and router configs with …
delcroip Apr 16, 2026
f889ca3
fix(icon): update main menu icon from Diversity2Icon to diversity_2
delcroip Apr 23, 2026
a03352e
fix(benefit-plan): fix schema validation and action button tooltips
delcroip May 20, 2026
f76c86f
Merge pull request #133 from Y-Note-SAS/feature-35266
zikani03 May 28, 2026
26d2619
Merge remote-tracking branch 'origin/develop' into feature/vite-migra…
weilu Jun 8, 2026
87df423
fix: replace stale withStyles 'classes' usage
weilu Jun 8, 2026
7ea62e2
ci: bump CI workflows to Node 20 + use npm
weilu Jun 11, 2026
be91df5
chore: migrate to ESLint 9 flat config
weilu Jun 11, 2026
3106999
chore: regenerate package-lock for peer-dep restructure
weilu Jun 11, 2026
5066e52
refactor: extract createFilterHelpers util addressing quality gate CI
weilu Jun 11, 2026
6327e7c
Remove unncessary duplicate copy of component
weilu Jun 11, 2026
a5c9707
Fix tab selected state styling
weilu Jun 11, 2026
af77fe0
fix: missing save button for program
weilu Jun 11, 2026
00abfc1
fix: individual program edit clicking
weilu Jun 11, 2026
ac38a1c
fix: header action buttons and tab styling
weilu Jun 11, 2026
d916b4b
Fix eligibility criteria panel styling
weilu Jun 11, 2026
c1433bd
Remove dead code that only causes resolve task crash
weilu Jun 11, 2026
7346d57
fix: module entry point + cosmetic fixes
weilu Jun 16, 2026
a7a4478
fix: address Sonar reliability issues
weilu Jun 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 0 additions & 23 deletions .eslintrc

This file was deleted.

26 changes: 0 additions & 26 deletions .eslintrc.json

This file was deleted.

14 changes: 7 additions & 7 deletions .github/workflows/CI_and_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: ["20"]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run : yarn install
- name: build
run : yarn build
run: npm install --legacy-peer-deps
- name: Build
run: npm run build
- name: Check build status
run: |
if [ -d "dist" ]; then
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/eslint_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 14
node-version: "20"

- name: Install dependencies
run: yarn install
run: npm install --legacy-peer-deps

- name: Run ESLint
run: npx eslint src
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
yarn.lock

package-lock.json
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
34 changes: 34 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
// Flat config (ESLint v9+). Migrated from .eslintrc.json.
// Uses @eslint/eslintrc's FlatCompat to import airbnb's legacy-format config
// since airbnb has not yet shipped a native flat config.

import { FlatCompat } from "@eslint/eslintrc";
import js from "@eslint/js";
import globals from "globals";
import path from "node:path";
import { fileURLToPath } from "node:url";

const __dirname = path.dirname(fileURLToPath(import.meta.url));
const compat = new FlatCompat({ baseDirectory: __dirname });

export default [
js.configs.recommended,
...compat.extends("plugin:react/recommended", "airbnb"),
{
languageOptions: {
ecmaVersion: "latest",
sourceType: "module",
globals: {
...globals.browser,
...globals.es2021,
},
},
rules: {
"react/prop-types": "off",
"no-shadow": "off", // disabled due to use of bindActionCreators
"react/jsx-filename-extension": [1, { extensions: [".js", ".jsx"] }],
"import/no-unresolved": "off", // most cross-module refs unresolved by design
"max-len": ["error", { code: 120 }],
},
Comment thread
weilu marked this conversation as resolved.
},
];
Loading
Loading