Skip to content

Commit 7588659

Browse files
committed
Run lint
1 parent 565de6c commit 7588659

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

packages/itwin/tree-widget/src/test/trees/models-tree/Utils.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import { concatMap, EMPTY, expand, firstValueFrom, from, toArray } from "rxjs";
77
import sinon from "sinon";
8-
import { Id64, Id64Arg, Id64Array, Id64String, type } from "@itwin/core-bentley";
8+
import { Id64 } from "@itwin/core-bentley";
99
import { createIModelHierarchyProvider } from "@itwin/presentation-hierarchies";
1010
import {
1111
CLASS_NAME_Element,
@@ -17,6 +17,7 @@ import { ModelsTreeIdsCache } from "../../../tree-widget-react/components/trees/
1717
import { defaultHierarchyConfiguration, ModelsTreeDefinition } from "../../../tree-widget-react/components/trees/models-tree/ModelsTreeDefinition.js";
1818
import { createIModelAccess } from "../Common.js";
1919

20+
import type { Id64Arg, Id64Array, Id64String } from "@itwin/core-bentley";
2021
import type { IModelConnection } from "@itwin/core-frontend";
2122
import type {
2223
ClassGroupingNodeKey,

packages/itwin/tree-widget/src/tree-widget-react/components/trees/categories-tree/internal/CategoriesTreeIdsCache.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
* See LICENSE.md in the project root for license terms and full copyright notice.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import { Id64, Id64Arg } from "@itwin/core-bentley";
6+
import { Id64 } from "@itwin/core-bentley";
77
import { CLASS_NAME_DefinitionContainer, CLASS_NAME_Model, CLASS_NAME_SubCategory } from "../../common/internal/ClassNameDefinitions.js";
88
import { ModelCategoryElementsCountCache } from "../../common/internal/ModelCategoryElementsCountCache.js";
99
import { getArrayFromId64Arg, getClassesByView, getDistinctMapValues } from "../../common/internal/Utils.js";
1010

11-
import type { Id64Array, Id64Set, Id64String } from "@itwin/core-bentley";
11+
import type { Id64Arg, Id64Array, Id64Set, Id64String } from "@itwin/core-bentley";
1212
import type { CategoryId, DefinitionContainerId, ElementId, ModelId, SubCategoryId } from "../../common/internal/Types.js";
1313
import type { LimitingECSqlQueryExecutor } from "@itwin/presentation-hierarchies";
1414
import type { InstanceKey } from "@itwin/presentation-shared";

packages/itwin/tree-widget/src/tree-widget-react/components/trees/categories-tree/internal/CategoriesTreeVisibilityHandler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ import type { CategoriesTreeHierarchyConfiguration } from "../CategoriesTreeDefi
6464
import type { CategoriesTreeIdsCache } from "./CategoriesTreeIdsCache.js";
6565
import type { FilteredTree } from "./FilteredTree.js";
6666
import type { IVisibilityChangeEventListener } from "../../common/internal/VisibilityChangeEventListener.js";
67-
import type { CategoryId, ElementId, ModelId } from "../../common/internal/Types.js";
67+
import type { ElementId, ModelId } from "../../common/internal/Types.js";
6868

6969
/** @alpha */
7070
interface GetCategoryVisibilityStatusProps {

packages/itwin/tree-widget/src/tree-widget-react/components/trees/models-tree/internal/UseFilteredPaths.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* See LICENSE.md in the project root for license terms and full copyright notice.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import type { Id64Array, Id64String } from "@itwin/core-bentley";
76
import { useEffect, useMemo, useState } from "react";
87
import { HierarchyFilteringPath, HierarchyNodeIdentifier, HierarchyNodeKey } from "@itwin/presentation-hierarchies";
98
import { useFocusedInstancesContext } from "../../common/FocusedInstancesContext.js";
@@ -13,6 +12,7 @@ import { useTelemetryContext } from "../../common/UseTelemetryContext.js";
1312
import { joinHierarchyFilteringPaths } from "../../common/Utils.js";
1413
import { ModelsTreeDefinition } from "../ModelsTreeDefinition.js";
1514

15+
import type { Id64Array, Id64String } from "@itwin/core-bentley";
1616
import type { GroupingHierarchyNode, HierarchyNodeIdentifiersPath, InstancesNodeKey } from "@itwin/presentation-hierarchies";
1717
import type { VisibilityTreeProps } from "../../common/components/VisibilityTree.js";
1818
import type { ECClassHierarchyInspector, InstanceKey } from "@itwin/presentation-shared";

0 commit comments

Comments
 (0)