Skip to content

Commit

Permalink
build(client): fix internal tree imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-ha committed Feb 9, 2024
1 parent 3bc2c4c commit ccd598b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
FlexTreeNodeSchema as TreeNodeSchema,
LazyTreeNodeSchema,
leaf,
} from "@fluidframework/tree";
} from "@fluidframework/tree/internal";
import { PropertyFactory } from "@fluid-experimental/property-properties";
import { TypeIdHelper } from "@fluid-experimental/property-changeset";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
FlexMapNodeSchema,
LeafNodeSchema,
FlexFieldNodeSchema,
} from "@fluidframework/tree";
} from "@fluidframework/tree/internal";
import { PropertyFactory } from "@fluid-experimental/property-properties";
import {
convertPropertyToSharedTreeSchema as convertSchema,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
FlexObjectNodeSchema,
FlexMapNodeSchema,
FlexFieldNodeSchema,
} from "@fluidframework/tree";
} from "@fluidframework/tree/internal";
import { convertPropertyToSharedTreeSchema as convertSchema } from "../schemaConverter";

const tableTypeName: TreeNodeSchemaIdentifier = brand("Test:Table-1.0.0");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ import { SharedCounter } from "@fluidframework/counter";
import { type IDirectory, SharedDirectory, SharedMap } from "@fluidframework/map";
import { SharedMatrix } from "@fluidframework/matrix";
import { SharedString } from "@fluidframework/sequence";
import { SharedTree, type ISharedTree, encodeTreeSchema } from "@fluidframework/tree";
import type { ISharedTree } from "@fluidframework/tree/internal";
import { SharedTree, encodeTreeSchema } from "@fluidframework/tree/internal";
import { type ISharedObject } from "@fluidframework/shared-object-base";
import { EditType } from "../CommonInterfaces";
import { type VisualizeChildData, type VisualizeSharedObject } from "./DataVisualization";
Expand Down

0 comments on commit ccd598b

Please sign in to comment.