Skip to content

Commit

Permalink
fix(react-components): Fix type import error (#4845)
Browse files Browse the repository at this point in the history
* Update index.ts

* Update package.json
  • Loading branch information
nilscognite authored Nov 5, 2024
1 parent d58dd99 commit af85c21
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion react-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cognite/reveal-react-components",
"version": "0.65.0",
"version": "0.65.1",
"exports": {
".": {
"import": "./dist/index.js",
Expand Down
4 changes: 2 additions & 2 deletions react-components/src/architecture/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ export { getGlobalMatrix } from './concrete/annotations/helpers/getMatrixUtils';

// New architecture: tree view nodes
export type { ITreeNode } from './base/treeView/ITreeNode';
export type { TreeNode } from './base/treeView/TreeNode';
export type { CheckBoxState } from './base/treeView/types';
export type { IconColor } from './base/treeView/types';
export type { TreeNodeAction } from './base/treeView/types';
export { TreeNode } from './base/treeView/TreeNode';
export { CheckBoxState } from './base/treeView/types';
export { onSingleSelectNode } from './base/treeView/TreeNodeFunctions';
export { onMultiSelectNode } from './base/treeView/TreeNodeFunctions';
export { onIndependentCheckNode } from './base/treeView/TreeNodeFunctions';
Expand Down

0 comments on commit af85c21

Please sign in to comment.