Skip to content
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
c7cac76
Migrate directory content to ag grid
May 7, 2024
b295715
Fix content toolbar and date renderer
May 13, 2024
73b9a65
Simplify selection logic
May 14, 2024
c193c36
Styling
May 14, 2024
f5dd1f6
Copyrights
May 14, 2024
9415b33
Remove unused prop
May 14, 2024
caaa98e
Fix selection handler
May 14, 2024
ec69422
Revert commons ui version
May 14, 2024
4b554e0
Revert lock changes
May 14, 2024
2d49e39
Fix console error
May 15, 2024
778739b
Merge main
May 24, 2024
73590e9
Lint
May 24, 2024
16d182a
PR remarks
May 24, 2024
3014f34
PR remarks
May 24, 2024
e1d3388
PR remarks
May 24, 2024
2de40b3
Merge main
May 30, 2024
ec56cce
PR remarks
May 30, 2024
71d5eb4
Merge main
May 30, 2024
adf71b0
PR remarks
May 30, 2024
9d364c6
Remove altername theme
May 30, 2024
1f3474b
Remove alternate theme
May 30, 2024
be4f69d
PR remarks
May 30, 2024
d992f41
Remove unnecessary function
May 30, 2024
0bb92d4
Lint
May 30, 2024
d429ad9
PR remarks
Jun 3, 2024
2eac05f
PR remarks
Jun 5, 2024
a6e22f7
PR remarks
Jun 5, 2024
31c5d71
PR remarks
Jun 5, 2024
1c3d437
Change context menu handling
Jun 5, 2024
0de76d4
Set custom class
Jun 6, 2024
69116c9
Set custom class const
Jun 6, 2024
965bf13
Lint
Jun 6, 2024
0dede22
Restore type tooltip
Jun 6, 2024
a0daaf3
Add comment
Jun 6, 2024
a0d1eb8
Lint
Jun 7, 2024
0f3ab3c
Merge main
Jun 7, 2024
3a5b7be
Fix typing
Jun 7, 2024
b679a20
Typo
Jun 7, 2024
f76ced2
Comment
Jun 7, 2024
24c3b9f
Fix
Jun 7, 2024
a720152
Tweaks
Jun 7, 2024
074130a
Tweaks
Jun 7, 2024
5bad6bf
Tweaks
Jun 7, 2024
d126aab
Rollback changes
Jun 7, 2024
4b72287
Tweaks
Jun 7, 2024
05ec371
Tweaks
Jun 7, 2024
ab775c9
Generalize ElementAttributes
Jun 7, 2024
99d3759
Remove not needed typing
Jun 7, 2024
ddeb037
Tweak
Jun 10, 2024
f627de5
Update commons ui
Jun 10, 2024
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
6 changes: 6 additions & 0 deletions src/components/app-wrapper.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ let lightTheme = createTheme({
hover: '#8E9C9B',
},
aggrid: 'ag-theme-alpine',
alternateTheme: 'ag-theme-material',
agGridBackground: {
color: 'white',
},
Expand All @@ -94,6 +95,8 @@ let lightTheme = createTheme({
textTransform: 'none',
},
},
aggridMaterialColor: '#90caf9 !important',
aggridHiglightColor: '#8e9c9b !important',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

where does those color codes come from ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Those were extracted from the current implementation

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do you mean we have the same code in gridstudy ?

});

lightTheme = createTheme(lightTheme, {
Expand Down Expand Up @@ -140,6 +143,7 @@ let darkTheme = createTheme({
hover: '#545C5B',
},
aggrid: 'ag-theme-alpine-dark',
alternateTheme: 'ag-theme-material-dark',
agGridBackground: {
color: '#383838',
},
Expand All @@ -148,6 +152,8 @@ let darkTheme = createTheme({
textTransform: 'none',
},
},
aggridMaterialColor: '#1976d2 !important',
aggridHiglightColor: '#545c5b !important',
});

darkTheme = createTheme(darkTheme, {
Expand Down
Loading