Skip to content

Commit

Permalink
linaria@5 (#3348)
Browse files Browse the repository at this point in the history
* linaria@5

* linaria@5.0.3

* fix circular dependency
  • Loading branch information
nstepien authored Sep 28, 2023
1 parent 17a0345 commit c609bcb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@
"@biomejs/biome": "1.2.2",
"@faker-js/faker": "^8.0.0",
"@ianvs/prettier-plugin-sort-imports": "^4.0.2",
"@linaria/rollup": "^4.5.2",
"@linaria/vite": "^4.5.2",
"@linaria/rollup": "^5.0.3",
"@linaria/vite": "^5.0.3",
"@microsoft/api-extractor": "^7.23.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
Expand Down
3 changes: 2 additions & 1 deletion src/TreeDataGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ import type {
RowHeightArgs,
RowsChangeData
} from './types';
import { renderToggleGroup, SELECT_COLUMN_KEY } from '.';
import { renderToggleGroup } from './cellRenderers';
import { SELECT_COLUMN_KEY } from './Columns';
import DataGrid from './DataGrid';
import type { DataGridHandle, DataGridProps } from './DataGrid';
import { useDefaultRenderers } from './DataGridDefaultRenderersProvider';
Expand Down
2 changes: 1 addition & 1 deletion src/style/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const lightTheme = `
--rdg-summary-border-color: #aaa;
--rdg-background-color: hsl(0deg 0% 100%);
--rdg-header-background-color: hsl(0deg 0% 97.5%);
--rdg-header-draggable-background-color: hsl(0deg 0% 90.5%);
--rdg-header-draggable-background-color: hsl(0deg 0% 90.5%);
--rdg-row-hover-background-color: hsl(0deg 0% 96%);
--rdg-row-selected-background-color: hsl(207deg 76% 92%);
--rdg-row-selected-hover-background-color: hsl(207deg 76% 88%);
Expand Down

0 comments on commit c609bcb

Please sign in to comment.