@archbase/components 3.0.12 → 3.0.13
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/dist/index.js +475 -475
- package/package.json +4 -4
- package/src/datagrid/main/archbase-data-grid.tsx +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@archbase/components",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.13",
|
|
4
4
|
"description": "UI Components for Archbase React v3 - Form editors, data visualization, and business components",
|
|
5
5
|
"author": "Edson Martins <edsonmartins2005@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"react-dom": "^18.3.0 || ^19.2.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@archbase/core": "3.0.
|
|
42
|
-
"@archbase/data": "3.0.
|
|
43
|
-
"@archbase/layout": "3.0.
|
|
41
|
+
"@archbase/core": "3.0.13",
|
|
42
|
+
"@archbase/data": "3.0.13",
|
|
43
|
+
"@archbase/layout": "3.0.13",
|
|
44
44
|
"@gfazioli/mantine-list-view-table": "^1.1.9",
|
|
45
45
|
"@gfazioli/mantine-onboarding-tour": "^2.6.5",
|
|
46
46
|
"@mui/x-data-grid": "^7.28.3",
|
|
@@ -807,13 +807,13 @@ function ArchbaseDataGrid<T extends object = any, ID = any>(props: ArchbaseDataG
|
|
|
807
807
|
// Estilos dos cabeçalhos - com !important para sobrescrever MUI
|
|
808
808
|
'& .MuiDataGrid-columnHeaders': {
|
|
809
809
|
backgroundColor: `${colorScheme === 'dark' ? theme.colors.dark[7] : theme.white} !important`,
|
|
810
|
-
color: `${colorScheme === 'dark' ? theme.colors.gray[0] : theme.colors
|
|
810
|
+
color: `${colorScheme === 'dark' ? theme.colors.gray[0] : theme.colors.dark[9]} !important`,
|
|
811
811
|
fontWeight: 600,
|
|
812
812
|
borderBottom: `1px solid ${colorScheme === 'dark' ? theme.colors.dark[4] : theme.colors.gray[3]} !important`
|
|
813
813
|
},
|
|
814
814
|
'& .MuiDataGrid-columnHeader': {
|
|
815
815
|
backgroundColor: `${colorScheme === 'dark' ? theme.colors.dark[7] : theme.white} !important`,
|
|
816
|
-
color: `${colorScheme === 'dark' ? theme.colors.gray[0] : theme.colors
|
|
816
|
+
color: `${colorScheme === 'dark' ? theme.colors.gray[0] : theme.colors.dark[9]} !important`,
|
|
817
817
|
'&:focus, &:focus-within': {
|
|
818
818
|
outline: 'none !important'
|
|
819
819
|
}
|
|
@@ -822,14 +822,14 @@ function ArchbaseDataGrid<T extends object = any, ID = any>(props: ArchbaseDataG
|
|
|
822
822
|
backgroundColor: `${colorScheme === 'dark' ? theme.colors.dark[7] : theme.white} !important`,
|
|
823
823
|
},
|
|
824
824
|
'& .MuiDataGrid-columnHeaderTitle': {
|
|
825
|
-
color: `${colorScheme === 'dark' ? theme.colors.gray[0] : theme.colors
|
|
825
|
+
color: `${colorScheme === 'dark' ? theme.colors.gray[0] : theme.colors.dark[9]} !important`,
|
|
826
826
|
fontWeight: '600 !important'
|
|
827
827
|
},
|
|
828
828
|
'& .MuiDataGrid-columnHeaderTitleContainer': {
|
|
829
|
-
color: `${colorScheme === 'dark' ? theme.colors.gray[0] : theme.colors
|
|
829
|
+
color: `${colorScheme === 'dark' ? theme.colors.gray[0] : theme.colors.dark[9]} !important`,
|
|
830
830
|
},
|
|
831
831
|
'& .MuiDataGrid-columnHeaderTitleContainerContent': {
|
|
832
|
-
color: `${colorScheme === 'dark' ? theme.colors.gray[0] : theme.colors
|
|
832
|
+
color: `${colorScheme === 'dark' ? theme.colors.gray[0] : theme.colors.dark[9]} !important`,
|
|
833
833
|
},
|
|
834
834
|
// Container geral do header
|
|
835
835
|
'& .MuiDataGrid-columnHeadersInner': {
|