Skip to content

Commit

Permalink
Merge branch 'master' into mkrause/250105-overlays
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrause committed Jan 17, 2025
2 parents ce4dcfb + 336e1b7 commit c0d6dc6
Show file tree
Hide file tree
Showing 60 changed files with 6,828 additions and 345 deletions.
9 changes: 9 additions & 0 deletions app/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,15 @@ export { ToastProvider, notify } from '../src/components/overlays/ToastProvider/
export { Tooltip } from '../src/components/overlays/Tooltip/Tooltip.tsx';
export { TooltipProvider } from '../src/components/overlays/Tooltip/TooltipProvider.tsx';

// Tables
export { useCustomFilters } from '../src/components/tables/DataTable/plugins/useCustomFilters.tsx';
export { useRowSelectColumn } from '../src/components/tables/DataTable/plugins/useRowSelectColumn.tsx';
export * as DataTableContext from '../src/components/tables/DataTable/DataTableContext.tsx';
export * as DataTablePlaceholder from '../src/components/tables/DataTable/table/DataTablePlaceholder.tsx';
export * as DataTableEager from '../src/components/tables/DataTable/DataTableEager.tsx';
export * as DataTableLazy from '../src/components/tables/DataTable/DataTableLazy.tsx';
export * as DataTableStream from '../src/components/tables/DataTable/DataTableStream.tsx';

/**
* Layouts
*/
Expand Down
10 changes: 8 additions & 2 deletions biome.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@
"linter": {
"enabled": true,
"include": ["app/**/*", "src/**/*", "tests/**/*"],
"ignore": ["tests/installation/**/*"],

"ignore": [
"node_modules",
"src/components/tables/MultiSearch/MultiSearch.tsx", // Ignore for now (need to focus on type errors first)
"tests/installation/**/*"
],
"rules": {
"recommended": true,
"complexity": {
Expand All @@ -34,7 +39,8 @@
},
"style": {
"useImportType": "off",
"noUnusedTemplateLiteral": "off"
"noUnusedTemplateLiteral": "off",
"noUselessElse": "off"
}
}
}
Expand Down
Loading

0 comments on commit c0d6dc6

Please sign in to comment.