Skip to content

Commit

Permalink
Merge branch 'infintescroll' into alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
mguellsegarra committed May 30, 2024
2 parents d4a48ea + 310b6ff commit 30d1d7f
Show file tree
Hide file tree
Showing 4 changed files with 1,583 additions and 4 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
},
"files": [
"dist",
"dist/style.css",
"src",
"README.md"
],
Expand All @@ -18,7 +19,8 @@
".": {
"import": "./dist/react-formiga-table.es.js",
"types": "./dist/index.d.ts"
}
},
"./style.css": "./dist/style.css"
},
"scripts": {
"build": "tsc --noEmit && vite build",
Expand Down
4 changes: 2 additions & 2 deletions src/components/InfiniteTable/HeaderCheckbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ const HeaderCheckboxComp = memo(
return (
<input
style={{
width: "16px",
height: "16px",
width: "15px",
height: "15px",
border: "1px solid grey",
cursor: "pointer",
}}
Expand Down
2 changes: 1 addition & 1 deletion src/components/InfiniteTable/InfiniteTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
} from "react";
import { AgGridReact } from "ag-grid-react";
import "ag-grid-community/styles/ag-grid.css";
import "ag-grid-community/styles/ag-theme-quartz.css";
import "@/styles/ag-theme-quartz.css";
import {
BodyScrollEvent,
ColDef,
Expand Down
Loading

0 comments on commit 30d1d7f

Please sign in to comment.