Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
chuchee authored and Heron committed Jun 3, 2024
1 parent f0633e4 commit abbe7fe
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
3 changes: 2 additions & 1 deletion vuu-ui/packages/vuu-data-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"@finos/vuu-popups": "0.0.26",
"@finos/vuu-shell": "0.0.26",
"@finos/vuu-ui-controls": "0.0.26",
"@finos/vuu-utils": "0.0.26"
"@finos/vuu-utils": "0.0.26",
"@finos/vuu-table": "0.0.26"
},
"peerDependencies": {
"react": ">=17.0.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import {
} from "@finos/vuu-utils";
import { useCallback } from "react";
import { useCloseDialog, useShowDialog } from "@finos/vuu-popups";
import { BulkEditPanel } from "@finos/vuu-table/src";
import { BulkEditPanel } from "@finos/vuu-table";

export const addRowsFromInstruments = "addRowsFromInstruments";

Expand Down
4 changes: 3 additions & 1 deletion vuu-ui/packages/vuu-table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@
"@finos/vuu-layout": "0.0.26",
"@finos/vuu-popups": "0.0.26",
"@finos/vuu-ui-controls": "0.0.26",
"@finos/vuu-utils": "0.0.26"
"@finos/vuu-utils": "0.0.26",
"@finos/vuu-filters": "0.0.26",
"@finos/vuu-data-test": "0.0.26"
},
"peerDependencies": {
"clsx": "^2.0.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { DataSource, RpcResponse } from "@finos/vuu-data-types";
import { Table } from "@finos/vuu-table";
import { Table } from "../../Table";
import { Button } from "@salt-ds/core";
import { useComponentCssInjection } from "@salt-ds/styles";
import { useWindow } from "@salt-ds/window";
import { VuuTableName } from "@finos/vuu-data-test";
// import { VuuTableName } from "@finos/vuu-data-test";
import { useBulkEditPanel } from "./useBulkEditPanel";
import { FilterValueChangeHandler, InlineFilter } from "@finos/vuu-filters";
import { useMemo } from "react";
Expand All @@ -16,7 +16,7 @@ export interface BulkEditPanelProps {
className?: string;
dataSource: DataSource;
response: RpcResponse;
mainTableName?: VuuTableName;
mainTableName?: string;
setDialogClose?: any;
setDialogState?: any;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
getSchema,
simulModule,
} from "@finos/vuu-data-test";
import { applyDefaultColumnConfig } from "@finos/vuu-utils/src";
import { applyDefaultColumnConfig } from "@finos/vuu-utils";
import { useCallback } from "react";
import { ColumnDescriptor } from "@finos/vuu-table-types";
import { BulkEditPanelProps } from "./BulkEditPanel";
Expand Down

0 comments on commit abbe7fe

Please sign in to comment.