-
Notifications
You must be signed in to change notification settings - Fork 14
MERGING feature/vite-migration into develop #119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
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 cb10b31
added the vite.config and removed react-scripts
anuj452005 9ee8d91
migrate from the material-ui to mui
anuj452005 43c518f
updated vite.config
anuj452005 1fa5d70
Refactor components to use styled components from MUI instead of with…
anuj452005 920a9c7
build: remove rollup config and clean up vite config
anuj452005 77536e1
chore: update mui
delcroip 30cdd42
fix(build): correct file extension
anuj452005 2c83ac1
fix: add optional chaining for benefit plan field checks
anuj452005 2322f76
refactor: remove unnecessary cleanup returns in useEffect hooks
anuj452005 a1933ca
feat(styles): improve form and picker styling
anuj452005 7b45af3
update vite config
anuj452005 8ff8433
chore: updatel lock
delcroip b53170c
chore: allign react version
delcroip c2e6998
chore: align react_intl
delcroip ff1fbf2
chore: package update
delcroip 29fea63
chore:align packages scripts
delcroip ad15d83
refactor(components): update Grid props and add exports for Material-…
delcroip a377a77
chore(deps): remove unused dev dependencies from package-lock.json
delcroip a980fc0
fix: theme optional chaining
olewandowski1 8feaa49
fix: benefit plan searcher, filters
olewandowski1 5384d84
fix: add package-lock json to the gitignore
olewandowski1 38e55b8
refactor: move MUI and Emotion to peerDependencies
olewandowski1 ce04e58
refactor: synchronize dependencies with host and move to peerDependen…
olewandowski1 8475da7
feat: make filters responsive
olewandowski1 d82f6e8
feat: make filters responsive
olewandowski1 d0174c1
Merge branch 'develop' into feature/vite-migration
olewandowski1 24c5bc1
feat: update material-table, migrate new files to use mui v7
olewandowski1 d8a4a92
fix: add missing import
olewandowski1 f8e1791
chore: downgrade material-table package
olewandowski1 f6d1843
chore: restore material table dep to use latest version
olewandowski1 e29ea01
fixes review 2
Blue-B-code ad49179
refactor(menus): simplify BenefitPlanMainMenu to use dynamic contribu…
delcroip f5c3c5a
refactor(components): replace direct MUI icon imports with GetIconCom…
delcroip c79c942
refactor(socialProtection): standardize menu and router configs with …
delcroip f889ca3
fix(icon): update main menu icon from Diversity2Icon to diversity_2
delcroip a03352e
fix(benefit-plan): fix schema validation and action button tooltips
delcroip f76c86f
Merge pull request #133 from Y-Note-SAS/feature-35266
zikani03 26d2619
Merge remote-tracking branch 'origin/develop' into feature/vite-migra…
weilu 87df423
fix: replace stale withStyles 'classes' usage
weilu 7ea62e2
ci: bump CI workflows to Node 20 + use npm
weilu be91df5
chore: migrate to ESLint 9 flat config
weilu 3106999
chore: regenerate package-lock for peer-dep restructure
weilu 5066e52
refactor: extract createFilterHelpers util addressing quality gate CI
weilu 6327e7c
Remove unncessary duplicate copy of component
weilu a5c9707
Fix tab selected state styling
weilu af77fe0
fix: missing save button for program
weilu 00abfc1
fix: individual program edit clicking
weilu ac38a1c
fix: header action buttons and tab styling
weilu d916b4b
Fix eligibility criteria panel styling
weilu c1433bd
Remove dead code that only causes resolve task crash
weilu 7346d57
fix: module entry point + cosmetic fixes
weilu a7a4478
fix: address Sonar reliability issues
weilu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,3 +22,5 @@ npm-debug.log* | |
| yarn-debug.log* | ||
| yarn-error.log* | ||
| yarn.lock | ||
|
|
||
| package-lock.json | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| { | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }], | ||
| }, | ||
| }, | ||
| ]; | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.