Skip to content

Commit 6d843ba

Browse files
authored
refactor(client): Replace common-utils with core-utils and client-utils (#16871)
In #16856 we copied some functions out of common-utils. This PR updates the client release group to use the new client-only packages instead of common-utils. **common-utils is no longer used in the client release group.**
1 parent 3f17cf4 commit 6d843ba

File tree

556 files changed

+944
-815
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

556 files changed

+944
-815
lines changed

PACKAGES.md

+13-13
Large diffs are not rendered by default.

api-report/agent-scheduler.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions';
1111
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
1212
import { IFluidLoadable } from '@fluidframework/core-interfaces';
1313
import { NamedFluidDataStoreRegistryEntry } from '@fluidframework/runtime-definitions';
14-
import { TypedEventEmitter } from '@fluidframework/common-utils';
14+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
1515

1616
// @public (undocumented)
1717
export class AgentSchedulerFactory implements IFluidDataStoreFactory {

api-report/aqueduct.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import { AsyncFluidObjectProvider } from '@fluidframework/synthesize';
88
import { ContainerRuntime } from '@fluidframework/container-runtime';
99
import type { EventEmitter } from 'events';
10-
import { EventForwarder } from '@fluidframework/common-utils';
10+
import { EventForwarder } from '@fluid-internal/client-utils';
1111
import { FluidDataStoreRuntime } from '@fluidframework/datastore';
1212
import { FluidObject } from '@fluidframework/core-interfaces';
1313
import { FluidObjectSymbolProvider } from '@fluidframework/synthesize';

api-report/container-runtime.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ import { ITelemetryLoggerExt } from '@fluidframework/telemetry-utils';
4949
import { MessageType } from '@fluidframework/protocol-definitions';
5050
import { NamedFluidDataStoreRegistryEntries } from '@fluidframework/runtime-definitions';
5151
import { StableId } from '@fluidframework/runtime-definitions';
52-
import { TypedEventEmitter } from '@fluidframework/common-utils';
52+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
5353

5454
// @public
5555
export const agentSchedulerId = "_scheduler";

api-report/container-utils.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import { DataCorruptionError } from '@fluidframework/telemetry-utils';
88
import { DataProcessingError } from '@fluidframework/telemetry-utils';
9-
import { EventForwarder } from '@fluidframework/common-utils';
9+
import { EventForwarder } from '@fluid-internal/client-utils';
1010
import { extractSafePropertiesFromMessage } from '@fluidframework/telemetry-utils';
1111
import { GenericError } from '@fluidframework/telemetry-utils';
1212
import { IClientConfiguration } from '@fluidframework/protocol-definitions';

api-report/data-object-base.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
```ts
66

77
import { ContainerRuntime } from '@fluidframework/container-runtime';
8-
import { EventForwarder } from '@fluidframework/common-utils';
8+
import { EventForwarder } from '@fluid-internal/client-utils';
99
import { FluidDataStoreRuntime } from '@fluidframework/datastore';
1010
import { FluidObject } from '@fluidframework/core-interfaces';
1111
import { IChannelFactory } from '@fluidframework/datastore-definitions';

api-report/datastore.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions'
2929
import { ISummaryTreeWithStats } from '@fluidframework/runtime-definitions';
3030
import { ITelemetryContext } from '@fluidframework/runtime-definitions';
3131
import { ITelemetryLoggerExt } from '@fluidframework/telemetry-utils';
32-
import { TypedEventEmitter } from '@fluidframework/common-utils';
32+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
3333
import { VisibilityState as VisibilityState_2 } from '@fluidframework/runtime-definitions';
3434

3535
// @public (undocumented)

api-report/debugger.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
```ts
66

7-
import { Deferred } from '@fluidframework/common-utils';
7+
import { Deferred } from '@fluidframework/core-utils';
88
import { IDocumentService } from '@fluidframework/driver-definitions';
99
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions';
1010
import { IDocumentStorageService } from '@fluidframework/driver-definitions';

api-report/experimental-tree.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { ITelemetryLoggerExt } from '@fluidframework/telemetry-utils';
2121
import { ITelemetryProperties } from '@fluidframework/core-interfaces';
2222
import type { Serializable } from '@fluidframework/datastore-definitions';
2323
import { SharedObject } from '@fluidframework/shared-object-base';
24-
import { TypedEventEmitter } from '@fluidframework/common-utils';
24+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
2525

2626
// @public
2727
export function areRevisionViewsSemanticallyEqual(treeViewA: TreeView, idConverterA: NodeIdConverter, treeViewB: TreeView, idConverterB: NodeIdConverter): boolean;

api-report/file-driver.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { ISummaryTree } from '@fluidframework/protocol-definitions';
2828
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
2929
import { ITokenClaims } from '@fluidframework/protocol-definitions';
3030
import { ReadDocumentStorageServiceBase } from '@fluidframework/replay-driver';
31-
import { TypedEventEmitter } from '@fluidframework/common-utils';
31+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
3232

3333
// @public
3434
export class FileDeltaStorageService implements IDocumentDeltaStorageService {

api-report/fluid-static.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { IEvent } from '@fluidframework/core-interfaces';
1717
import { IEventProvider } from '@fluidframework/core-interfaces';
1818
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
1919
import { IFluidLoadable } from '@fluidframework/core-interfaces';
20-
import { TypedEventEmitter } from '@fluidframework/common-utils';
20+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
2121

2222
// @public
2323
export interface ContainerSchema {

api-report/merge-tree.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { IFluidSerializer } from '@fluidframework/shared-object-base';
1313
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
1414
import { ISummaryTreeWithStats } from '@fluidframework/runtime-definitions';
1515
import { ITelemetryLoggerExt } from '@fluidframework/telemetry-utils';
16-
import { TypedEventEmitter } from '@fluidframework/common-utils';
16+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
1717

1818
// @public (undocumented)
1919
export function addProperties(oldProps: PropertySet | undefined, newProps: PropertySet, op?: ICombiningOp, seq?: number): PropertySet;

api-report/oldest-client-observer.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { AttachState } from '@fluidframework/container-definitions';
88
import { IEvent } from '@fluidframework/core-interfaces';
99
import { IEventProvider } from '@fluidframework/core-interfaces';
1010
import { IQuorumClients } from '@fluidframework/protocol-definitions';
11-
import { TypedEventEmitter } from '@fluidframework/common-utils';
11+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
1212

1313
// @public
1414
export interface IOldestClientObservable extends IEventProvider<IOldestClientObservableEvents> {

api-report/sequence.api.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import { BaseSegment } from '@fluidframework/merge-tree';
88
import { Client } from '@fluidframework/merge-tree';
9-
import { Deferred } from '@fluidframework/common-utils';
9+
import { Deferred } from '@fluidframework/core-utils';
1010
import { IChannelAttributes } from '@fluidframework/datastore-definitions';
1111
import { IChannelFactory } from '@fluidframework/datastore-definitions';
1212
import { IChannelServices } from '@fluidframework/datastore-definitions';
@@ -48,7 +48,7 @@ import { SharedObject } from '@fluidframework/shared-object-base';
4848
import { SlidingPreference } from '@fluidframework/merge-tree';
4949
import { SummarySerializer } from '@fluidframework/shared-object-base';
5050
import { TextSegment } from '@fluidframework/merge-tree';
51-
import { TypedEventEmitter } from '@fluidframework/common-utils';
51+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
5252

5353
// @alpha
5454
export function appendAddIntervalToRevertibles(interval: SequenceInterval, revertibles: SharedStringRevertible[]): SharedStringRevertible[];

api-report/shared-object-base.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
```ts
66

7-
import { EventEmitterEventType } from '@fluidframework/common-utils';
7+
import { EventEmitterEventType } from '@fluid-internal/client-utils';
88
import { EventEmitterWithErrorHandling } from '@fluidframework/telemetry-utils';
99
import { IChannel } from '@fluidframework/datastore-definitions';
1010
import { IChannelAttributes } from '@fluidframework/datastore-definitions';

api-report/telemetry-utils.api.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
```ts
66

77
import { EventEmitter } from 'events';
8-
import { EventEmitterEventType } from '@fluidframework/common-utils';
8+
import { EventEmitterEventType } from '@fluid-internal/client-utils';
99
import { IDisposable } from '@fluidframework/core-interfaces';
1010
import { IErrorBase } from '@fluidframework/core-interfaces';
1111
import { IEvent } from '@fluidframework/core-interfaces';
@@ -24,7 +24,7 @@ import { Lazy } from '@fluidframework/core-utils';
2424
import { LogLevel } from '@fluidframework/core-interfaces';
2525
import { TelemetryEventCategory } from '@fluidframework/core-interfaces';
2626
import { TelemetryEventPropertyType } from '@fluidframework/core-interfaces';
27-
import { TypedEventEmitter } from '@fluidframework/common-utils';
27+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
2828

2929
// @public (undocumented)
3030
export type ConfigTypes = string | number | boolean | number[] | string[] | boolean[] | undefined;

api-report/test-runtime-utils.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ import { IUser } from '@fluidframework/protocol-definitions';
5656
import { MessageType } from '@fluidframework/protocol-definitions';
5757
import { ReadOnlyInfo } from '@fluidframework/container-definitions';
5858
import { ScopeType } from '@fluidframework/protocol-definitions';
59-
import { TypedEventEmitter } from '@fluidframework/common-utils';
59+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
6060
import { VisibilityState as VisibilityState_2 } from '@fluidframework/runtime-definitions';
6161

6262
// @public

api-report/tree2.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { IChannelFactory } from '@fluidframework/datastore-definitions';
99
import { IChannelServices } from '@fluidframework/datastore-definitions';
1010
import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions';
1111
import { ISharedObject } from '@fluidframework/shared-object-base';
12-
import { IsoBuffer } from '@fluidframework/common-utils';
12+
import { IsoBuffer } from '@fluid-internal/client-utils';
1313
import { Serializable } from '@fluidframework/datastore-definitions';
1414
import { SessionSpaceCompressedId } from '@fluidframework/runtime-definitions';
1515
import { StableId } from '@fluidframework/runtime-definitions';

azure/packages/azure-client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@
4040
"typetests:prepare": "flub typetests --dir . --reset --previous --normalize"
4141
},
4242
"dependencies": {
43-
"@fluidframework/common-utils": "^1.1.1",
4443
"@fluidframework/container-definitions": "workspace:~",
4544
"@fluidframework/container-loader": "workspace:~",
4645
"@fluidframework/core-interfaces": "workspace:~",
46+
"@fluidframework/core-utils": "workspace:~",
4747
"@fluidframework/driver-definitions": "workspace:~",
4848
"@fluidframework/driver-utils": "workspace:~",
4949
"@fluidframework/fluid-static": "workspace:~",

azure/packages/azure-client/src/AzureAudience.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
33
* Licensed under the MIT License.
44
*/
5-
import { assert } from "@fluidframework/common-utils";
5+
import { assert } from "@fluidframework/core-utils";
66
import { ServiceAudience } from "@fluidframework/fluid-static";
77
import { IClient } from "@fluidframework/protocol-definitions";
88

azure/packages/test/scenario-runner/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@
6161
"temp-directory": "nyc/.nyc_output"
6262
},
6363
"dependencies": {
64+
"@fluid-internal/client-utils": "workspace:~",
6465
"@fluidframework/aqueduct": "workspace:~",
6566
"@fluidframework/azure-client": "workspace:~",
66-
"@fluidframework/common-utils": "^1.1.1",
6767
"@fluidframework/container-definitions": "workspace:~",
6868
"@fluidframework/container-loader": "workspace:~",
6969
"@fluidframework/core-interfaces": "workspace:~",

azure/packages/test/scenario-runner/src/AzureClientRunner.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Licensed under the MIT License.
44
*/
55
import { AzureClient } from "@fluidframework/azure-client";
6-
import { TypedEventEmitter } from "@fluidframework/common-utils";
6+
import { TypedEventEmitter } from "@fluid-internal/client-utils";
77

88
import { IRunConfig, IRunner, IRunnerEvents, IRunnerStatus, RunnerStatus } from "./interface";
99
import {

azure/packages/test/scenario-runner/src/ScenarioRunner.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
* Licensed under the MIT License.
44
*/
55
import { ChildProcess } from "child_process";
6-
import { TypedEventEmitter, delay } from "@fluidframework/common-utils";
6+
import { delay } from "@fluidframework/core-utils";
7+
import { TypedEventEmitter } from "@fluid-internal/client-utils";
78
import {
89
IRunConfig,
910
IRunner,

azure/packages/test/scenario-runner/src/logger.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
import crypto from "crypto";
66
import fs from "fs";
77

8-
import { TypedEventEmitter, assert } from "@fluidframework/common-utils";
98
import { IEvent, ITelemetryBaseEvent, ITelemetryLogger } from "@fluidframework/core-interfaces";
10-
import { LazyPromise } from "@fluidframework/core-utils";
9+
import { TypedEventEmitter } from "@fluid-internal/client-utils";
10+
import { assert, LazyPromise } from "@fluidframework/core-utils";
1111
import { createChildLogger } from "@fluidframework/telemetry-utils";
1212
import { ITelemetryBufferedLogger } from "@fluidframework/test-driver-definitions";
1313

examples/apps/presence-tracker/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"dependencies": {
3939
"@fluid-example/example-utils": "workspace:~",
4040
"@fluid-experimental/data-objects": "workspace:~",
41-
"@fluidframework/common-utils": "^1.1.1",
41+
"@fluid-internal/client-utils": "workspace:~",
4242
"@fluidframework/container-definitions": "workspace:~",
4343
"@fluidframework/container-runtime-definitions": "workspace:~",
4444
"@fluidframework/core-interfaces": "workspace:~",

examples/apps/presence-tracker/src/FocusTracker.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import { Signaler } from "@fluid-experimental/data-objects";
77
import { IEvent } from "@fluidframework/core-interfaces";
8-
import { TypedEventEmitter } from "@fluidframework/common-utils";
8+
import { TypedEventEmitter } from "@fluid-internal/client-utils";
99
import { IContainer } from "@fluidframework/container-definitions";
1010
import { ITinyliciousAudience } from "@fluidframework/tinylicious-client";
1111
import { IMember } from "fluid-framework";

examples/apps/presence-tracker/src/MouseTracker.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import { Signaler } from "@fluid-experimental/data-objects";
77
import { IEvent } from "@fluidframework/core-interfaces";
8-
import { TypedEventEmitter } from "@fluidframework/common-utils";
8+
import { TypedEventEmitter } from "@fluid-internal/client-utils";
99
import { IMember, IServiceAudience } from "fluid-framework";
1010

1111
export interface IMouseTrackerEvents extends IEvent {

examples/apps/task-selection/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@
3939
"@fluid-example/example-utils": "workspace:~",
4040
"@fluid-experimental/oldest-client-observer": "workspace:~",
4141
"@fluidframework/aqueduct": "workspace:~",
42-
"@fluidframework/common-utils": "^1.1.1",
4342
"@fluidframework/container-definitions": "workspace:~",
4443
"@fluidframework/container-runtime-definitions": "workspace:~",
4544
"@fluidframework/core-interfaces": "workspace:~",
45+
"@fluidframework/core-utils": "workspace:~",
4646
"@fluidframework/request-handler": "workspace:~",
4747
"@fluidframework/runtime-utils": "workspace:~",
4848
"@fluidframework/task-manager": "workspace:~",

examples/apps/task-selection/src/oldestClientDiceRoller.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import { OldestClientObserver } from "@fluid-experimental/oldest-client-observer";
77
import { DataObject, DataObjectFactory } from "@fluidframework/aqueduct";
8-
import { assert } from "@fluidframework/common-utils";
8+
import { assert } from "@fluidframework/core-utils";
99

1010
import { IDiceRoller } from "./interface";
1111

examples/apps/task-selection/src/taskManagerDiceRoller.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import { TaskManager } from "@fluidframework/task-manager";
77
import { DataObject, DataObjectFactory } from "@fluidframework/aqueduct";
8-
import { assert } from "@fluidframework/common-utils";
8+
import { assert } from "@fluidframework/core-utils";
99
import { IFluidHandle } from "@fluidframework/core-interfaces";
1010

1111
import { IDiceRoller } from "./interface";

examples/benchmarks/odspsnapshotfetch-perftestapp/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
},
3636
"dependencies": {
3737
"@fluid-tools/fluidapp-odsp-urlresolver": "workspace:~",
38-
"@fluidframework/common-utils": "^1.1.1",
38+
"@fluidframework/core-utils": "workspace:~",
3939
"@fluidframework/odsp-doclib-utils": "workspace:~",
4040
"@fluidframework/odsp-driver": "workspace:~",
4141
"@fluidframework/odsp-driver-definitions": "workspace:~",

examples/benchmarks/odspsnapshotfetch-perftestapp/src/expressApp.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
OdspTokenConfig,
1515
} from "@fluidframework/tool-utils";
1616
import { getServer, IOdspTokens } from "@fluidframework/odsp-doclib-utils";
17-
import { assert } from "@fluidframework/common-utils";
17+
import { assert } from "@fluidframework/core-utils";
1818
import config from "../webpack.config.js";
1919

2020
const getThisOrigin = (port: number): string => `http://localhost:${port}`;

examples/benchmarks/odspsnapshotfetch-perftestapp/src/fetchApp.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66
import { FluidAppOdspUrlResolver } from "@fluid-tools/fluidapp-odsp-urlresolver";
7-
import { assert } from "@fluidframework/common-utils";
7+
import { assert } from "@fluidframework/core-utils";
88
import { prefetchLatestSnapshot } from "@fluidframework/odsp-driver";
99
import { MockLogger } from "@fluidframework/telemetry-utils";
1010
import { OdspSampleCache } from "./odspPersistantCache";

examples/data-objects/prosemirror/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@
4040
},
4141
"dependencies": {
4242
"@fluidframework/aqueduct": "workspace:~",
43-
"@fluidframework/common-utils": "^1.1.1",
4443
"@fluidframework/container-definitions": "workspace:~",
4544
"@fluidframework/container-runtime": "workspace:~",
4645
"@fluidframework/container-runtime-definitions": "workspace:~",
4746
"@fluidframework/core-interfaces": "workspace:~",
47+
"@fluidframework/core-utils": "workspace:~",
4848
"@fluidframework/datastore": "workspace:~",
4949
"@fluidframework/datastore-definitions": "workspace:~",
5050
"@fluidframework/map": "workspace:~",

examples/data-objects/prosemirror/src/fluidBridge.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
/* eslint-disable @typescript-eslint/no-non-null-assertion */
77

8-
import { assert } from "@fluidframework/common-utils";
8+
import { assert } from "@fluidframework/core-utils";
99
import {
1010
createInsertSegmentOp,
1111
Marker,

examples/data-objects/prosemirror/src/fluidCollabManager.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/* eslint-disable @typescript-eslint/no-non-null-assertion */
77

88
import { EventEmitter } from "events";
9-
import { assert } from "@fluidframework/common-utils";
9+
import { assert } from "@fluidframework/core-utils";
1010
import { ILoader } from "@fluidframework/container-definitions";
1111
import {
1212
// eslint-disable-next-line import/no-deprecated

examples/data-objects/shared-text/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,12 @@
4141
},
4242
"dependencies": {
4343
"@fluid-example/example-utils": "workspace:~",
44+
"@fluid-internal/client-utils": "workspace:~",
4445
"@fluidframework/aqueduct": "workspace:~",
45-
"@fluidframework/common-utils": "^1.1.1",
4646
"@fluidframework/container-definitions": "workspace:~",
4747
"@fluidframework/container-runtime": "workspace:~",
4848
"@fluidframework/core-interfaces": "workspace:~",
49+
"@fluidframework/core-utils": "workspace:~",
4950
"@fluidframework/datastore": "workspace:~",
5051
"@fluidframework/datastore-definitions": "workspace:~",
5152
"@fluidframework/map": "workspace:~",

examples/data-objects/shared-text/src/client-ui-lib/controls/flowView.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/* eslint-disable @typescript-eslint/strict-boolean-expressions */
99
/* eslint-disable no-bitwise */
1010

11-
import { performance } from "@fluidframework/common-utils";
11+
import { performance } from "@fluid-internal/client-utils";
1212
import { IFluidDataStoreRuntime } from "@fluidframework/datastore-definitions";
1313
import * as types from "@fluidframework/map";
1414
import * as MergeTree from "@fluidframework/merge-tree";

examples/data-objects/shared-text/src/client-ui-lib/text/table.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/* eslint-disable @typescript-eslint/consistent-type-assertions */
88
/* eslint-disable @typescript-eslint/strict-boolean-expressions */
99

10-
import { assert } from "@fluidframework/common-utils";
10+
import { assert } from "@fluidframework/core-utils";
1111
import * as MergeTree from "@fluidframework/merge-tree";
1212
import {
1313
refGetRangeLabels,

examples/data-objects/shared-text/src/view.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66
import registerDebug from "debug";
7-
import { performance } from "@fluidframework/common-utils";
7+
import { performance } from "@fluid-internal/client-utils";
88

99
import React, { useEffect, useRef } from "react";
1010

0 commit comments

Comments
 (0)