Merge remote-tracking branch 'origin/next' into main-next-85bbcceb9809ae0c8e6678dfe5be7830ba8331a0
This commit is contained in:
Коммит
d79201c208
|
@ -73,7 +73,6 @@ api-report/experimental-tree.api.md @micro
|
|||
api-report/file-driver.api.md @microsoft/fluid-cr-drivers
|
||||
api-report/fluid-static.api.md @microsoft/fluid-cr-framework
|
||||
api-report/garbage-collector.api.md @microsoft/fluid-cr-runtime
|
||||
api-report/iframe-driver.api.md @microsoft/fluid-cr-drivers
|
||||
api-report/ink.api.md @microsoft/fluid-cr-dds
|
||||
api-report/location-redirection-utils.api.md @microsoft/fluid-cr-loader
|
||||
api-report/map.api.md @microsoft/fluid-cr-dds
|
||||
|
|
61
BREAKING.md
61
BREAKING.md
|
@ -15,6 +15,67 @@ It's important to communicate breaking changes to our stakeholders. To write a g
|
|||
- Avoid using code formatting in the title (it's fine to use in the body).
|
||||
- To explain the benefit of your change, use the [What's New](https://fluidframework.com/docs/updates/v1.0.0/) section on FluidFramework.com.
|
||||
|
||||
# 2.0.0-internal.3.0.0
|
||||
|
||||
## 2.0.0-internal.3.0.0 Upcoming changes
|
||||
- [Deprecated IPendingFlush](#Deprecated-IPendingFlush)
|
||||
|
||||
### Deprecated IPendingFlush
|
||||
`IPendingFlush` has been deprecated. Use batch metadata on `IPendingMessage` instead to indicate the end of a batch.
|
||||
|
||||
## 2.0.0-internal.3.0.0 Breaking changes
|
||||
- [Existing flag is now required in IRuntimeFactory](#existing-parameter-is-now-required-in-iruntimefactory)
|
||||
- [Remove iframe-driver](#remove-iframe-driver)
|
||||
- [Remove Deprecated Fields from ISummaryRuntimeOptions](#Remove-Deprecated-Fields-from-ISummaryRuntimeOptions)
|
||||
- [Op reentry will no longer be supported](#op-reentry-will-no-longer-be-supported)
|
||||
- [Remove ISummarizerRuntime batchEnd listener](#Remove-ISummarizerRuntime-batchEnd-listener)
|
||||
- [Remove ISummaryBaseConfiguration.summarizerClientElection](#Remove-ISummaryBaseConfigurationsummarizerClientElection)
|
||||
### existing parameter is now required in IRuntimeFactory::instantiateRuntime
|
||||
The `existing` flag was added as optional in client version 0.44 and has been updated to be expected
|
||||
and required in the `IRuntimeFactory.instantiateRuntime` function. This flag is used to determine whether the runtime should
|
||||
be created for the first time or from an existing context. Similarly, the `load` function in containerRuntime
|
||||
is being deprecated and replaced with `loadRuntime`, in which `existing` is a required parameter.
|
||||
|
||||
### Remove iframe-driver
|
||||
The iframe-driver package was deprecated in 2.0.0-internal.1.3.0 and has now been removed.
|
||||
|
||||
### Remove Deprecated Fields from ISummaryRuntimeOptions
|
||||
The following fields are being removed from `ISummaryRuntimeOptions` as they became properties from `ISummaryConfiguration`:
|
||||
|
||||
`ISummaryRuntimeOptions.disableSummaries`
|
||||
`ISummaryRuntimeOptions.maxOpsSinceLastSummary`
|
||||
`ISummaryRuntimeOptions.summarizerClientElection`
|
||||
`ISummaryRuntimeOptions.summarizerOptions`
|
||||
|
||||
### Op reentry will no longer be supported
|
||||
Submitting an op while processing an op will no longer be supported as it can lead to inconsistencies in the document and to DDS change events observing out-of-order changes. An example scenario is changing a DDS inside the handler for the `valueChanged` event of a DDS.
|
||||
|
||||
The functionality is currently disabled but it can be enabled using the `IContainerRuntimeOptions.enableOpReentryCheck` property, which will eventually become the default. If the option is enabled, the functionality can be disabled at runtime using the `Fluid.ContainerRuntime.DisableOpReentryCheck` feature gate.
|
||||
|
||||
With the feature enabled, If the runtime detects an op which was submitted in this manner, an error will be thrown and the current container will close.
|
||||
|
||||
```ts
|
||||
sharedMap.on("valueChanged", (changed) => {
|
||||
if (changed.key !== "key2") {
|
||||
sharedMap.set("key2", "2");
|
||||
}
|
||||
});
|
||||
|
||||
sharedMap.set("key1", "1"); // executing this statement will cause an exception to be thrown
|
||||
```
|
||||
|
||||
Other clients will not be affected.
|
||||
|
||||
**As we are planning to enable this feature by default, we are advising our partners to use the `IContainerRuntimeOptions.enableOpReentryCheck` option to identify existing code using this pattern and to let us know in case the proposed API behavior is problematic.**
|
||||
|
||||
### Remove ISummarizerRuntime batchEnd listener
|
||||
The `"batchEnd"` listener in `ISummarizerRuntime` has been removed. Please remove all usage and implementations of `ISummarizerRuntime.on("batchEnd", ...)` and `ISummarizerRuntime.removeListener("batchEnd", ...)`.
|
||||
If these methods are needed, please refer to the `IContainerRuntimeBase` interface.
|
||||
|
||||
### Remove-ISummaryBaseConfigurationsummarizerClientElection
|
||||
`ISummaryBaseConfiguration.summarizerClientElection` was deprecated and is now being removed.
|
||||
There will be no replacement for this property.'
|
||||
|
||||
# 2.0.0-internal.2.1.0
|
||||
|
||||
## 2.0.0-internal.2.1.0 Upcoming changes
|
||||
|
|
|
@ -81,7 +81,7 @@ The dependencies between layers are enforced by the layer-check command._
|
|||
|
||||
| Packages | Layer Dependencies |
|
||||
| --- | --- |
|
||||
| - [@fluidframework/debugger](/packages/drivers/debugger)</br>- [@fluidframework/driver-base](/packages/drivers/driver-base)</br>- [@fluidframework/driver-web-cache](/packages/drivers/driver-web-cache)</br>- [@fluidframework/file-driver](/packages/drivers/file-driver)</br>- [@fluid-tools/fluidapp-odsp-urlresolver](/packages/drivers/fluidapp-odsp-urlResolver)</br>- [@fluidframework/iframe-driver](/packages/drivers/iframe-driver)</br>- [@fluidframework/odsp-driver](/packages/drivers/odsp-driver)</br>- [@fluidframework/odsp-urlresolver](/packages/drivers/odsp-urlResolver)</br>- [@fluidframework/replay-driver](/packages/drivers/replay-driver) | - [Base-Definitions](#Base-Definitions)</br>- [Protocol-Definitions](#Protocol-Definitions)</br>- [Driver-Definitions](#Driver-Definitions)</br>- [Base-Utils](#Base-Utils)</br>- [Protocol-Utils](#Protocol-Utils)</br>- [Telemetry-Utils](#Telemetry-Utils)</br>- [Driver-Utils](#Driver-Utils)</br>- [Other-Utils](#Other-Utils)</br> |
|
||||
| - [@fluidframework/debugger](/packages/drivers/debugger)</br>- [@fluidframework/driver-base](/packages/drivers/driver-base)</br>- [@fluidframework/driver-web-cache](/packages/drivers/driver-web-cache)</br>- [@fluidframework/file-driver](/packages/drivers/file-driver)</br>- [@fluid-tools/fluidapp-odsp-urlresolver](/packages/drivers/fluidapp-odsp-urlResolver)</br>- [@fluidframework/odsp-driver](/packages/drivers/odsp-driver)</br>- [@fluidframework/odsp-urlresolver](/packages/drivers/odsp-urlResolver)</br>- [@fluidframework/replay-driver](/packages/drivers/replay-driver) | - [Base-Definitions](#Base-Definitions)</br>- [Protocol-Definitions](#Protocol-Definitions)</br>- [Driver-Definitions](#Driver-Definitions)</br>- [Base-Utils](#Base-Utils)</br>- [Protocol-Utils](#Protocol-Utils)</br>- [Telemetry-Utils](#Telemetry-Utils)</br>- [Driver-Utils](#Driver-Utils)</br>- [Other-Utils](#Other-Utils) |
|
||||
|
||||
### Loader
|
||||
|
||||
|
@ -99,7 +99,7 @@ The dependencies between layers are enforced by the layer-check command._
|
|||
|
||||
| Packages | Layer Dependencies |
|
||||
| --- | --- |
|
||||
| - [@fluid-experimental/data-objects](/experimental/framework/data-objects)</br>- [@fluidframework/fluid-static](/packages/framework/fluid-static)</br>- [@fluid-experimental/property-binder](/experimental/PropertyDDS/packages/property-binder)</br>- [@fluid-experimental/property-changeset](/experimental/PropertyDDS/packages/property-changeset)</br>- [@fluid-experimental/property-common](/experimental/PropertyDDS/packages/property-common)</br>- [@fluid-experimental/property-dds](/experimental/PropertyDDS/packages/property-dds)</br>- [@fluid-experimental/property-inspector-table](/experimental/PropertyDDS/packages/property-inspector-table)</br>- [@fluid-experimental/property-properties](/experimental/PropertyDDS/packages/property-properties)</br>- [@fluid-experimental/property-proxy](/experimental/PropertyDDS/packages/property-proxy)</br>- [@fluid-experimental/property-query](/experimental/PropertyDDS/packages/property-query)</br>- [@fluid-experimental/last-edited](/experimental/framework/last-edited)</br>- [@fluid-experimental/react-inputs](/experimental/framework/react-inputs)</br>- [@fluidframework/agent-scheduler](/packages/framework/agent-scheduler)</br>- [@fluidframework/aqueduct](/packages/framework/aqueduct)</br>- [@fluid-internal/attributor](/packages/framework/attributor) (private)</br>- [@fluidframework/data-object-base](/packages/framework/data-object-base)</br>- [@fluidframework/dds-interceptions](/packages/framework/dds-interceptions)</br>- [@fluid-experimental/oldest-client-observer](/packages/framework/oldest-client-observer)</br>- [@fluidframework/request-handler](/packages/framework/request-handler)</br>- [@fluidframework/synthesize](/packages/framework/synthesize)</br>- [@fluidframework/undo-redo](/packages/framework/undo-redo) | - [Base-Definitions](#Base-Definitions)</br>- [Protocol-Definitions](#Protocol-Definitions)</br>- [Container-Definitions](#Container-Definitions)</br>- [Base-Utils](#Base-Utils)</br>- [Framework-Utils](#Framework-Utils)</br>- [Container-Utils](#Container-Utils)</br>- [Loader](#Loader)</br>- [Runtime](#Runtime)</br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> |
|
||||
| - [@fluid-experimental/data-objects](/experimental/framework/data-objects)</br>- [@fluidframework/fluid-static](/packages/framework/fluid-static)</br>- [@fluid-experimental/last-edited](/experimental/framework/last-edited)</br>- [@fluid-experimental/react-inputs](/experimental/framework/react-inputs)</br>- [@fluid-experimental/property-binder](/experimental/PropertyDDS/packages/property-binder)</br>- [@fluid-experimental/property-changeset](/experimental/PropertyDDS/packages/property-changeset)</br>- [@fluid-experimental/property-common](/experimental/PropertyDDS/packages/property-common)</br>- [@fluid-experimental/property-dds](/experimental/PropertyDDS/packages/property-dds)</br>- [@fluid-experimental/property-inspector-table](/experimental/PropertyDDS/packages/property-inspector-table)</br>- [@fluid-experimental/property-properties](/experimental/PropertyDDS/packages/property-properties)</br>- [@fluid-experimental/property-proxy](/experimental/PropertyDDS/packages/property-proxy)</br>- [@fluid-experimental/property-query](/experimental/PropertyDDS/packages/property-query)</br>- [@fluidframework/agent-scheduler](/packages/framework/agent-scheduler)</br>- [@fluidframework/aqueduct](/packages/framework/aqueduct)</br>- [@fluid-internal/attributor](/packages/framework/attributor) (private)</br>- [@fluidframework/data-object-base](/packages/framework/data-object-base)</br>- [@fluidframework/dds-interceptions](/packages/framework/dds-interceptions)</br>- [@fluid-experimental/oldest-client-observer](/packages/framework/oldest-client-observer)</br>- [@fluidframework/request-handler](/packages/framework/request-handler)</br>- [@fluidframework/synthesize](/packages/framework/synthesize)</br>- [@fluidframework/undo-redo](/packages/framework/undo-redo) | - [Base-Definitions](#Base-Definitions)</br>- [Protocol-Definitions](#Protocol-Definitions)</br>- [Container-Definitions](#Container-Definitions)</br>- [Base-Utils](#Base-Utils)</br>- [Framework-Utils](#Framework-Utils)</br>- [Container-Utils](#Container-Utils)</br>- [Loader](#Loader)</br>- [Runtime](#Runtime)</br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> |
|
||||
|
||||
### Build
|
||||
|
||||
|
@ -171,7 +171,7 @@ The dependencies between layers are enforced by the layer-check command._
|
|||
|
||||
| Packages | Layer Dependencies |
|
||||
| --- | --- |
|
||||
| - [@fluid-example/collaborative-textarea](/examples/apps/collaborative-textarea) (private)</br>- [@fluid-example/contact-collection](/examples/apps/contact-collection) (private)</br>- [@fluid-example/data-object-grid](/examples/apps/data-object-grid) (private)</br>- [@fluid-example/view-framework-sampler](/examples/apps/view-framework-sampler) (private)</br>- [@fluid-example/canvas](/examples/data-objects/canvas) (private)</br>- [@fluid-example/clicker](/examples/data-objects/clicker) (private)</br>- [@fluid-example/codemirror](/examples/data-objects/codemirror) (private)</br>- [@fluid-example/diceroller](/examples/data-objects/diceroller) (private)</br>- [@fluid-example/monaco](/examples/data-objects/monaco) (private)</br>- [@fluid-example/multiview-constellation-model](/examples/data-objects/multiview/constellation-model) (private)</br>- [@fluid-example/multiview-constellation-view](/examples/data-objects/multiview/constellation-view) (private)</br>- [@fluid-example/multiview-container](/examples/data-objects/multiview/container) (private)</br>- [@fluid-example/multiview-coordinate-model](/examples/data-objects/multiview/coordinate-model) (private)</br>- [@fluid-example/multiview-coordinate-interface](/examples/data-objects/multiview/interface) (private)</br>- [@fluid-example/multiview-plot-coordinate-view](/examples/data-objects/multiview/plot-coordinate-view) (private)</br>- [@fluid-example/multiview-slider-coordinate-view](/examples/data-objects/multiview/slider-coordinate-view) (private)</br>- [@fluid-example/multiview-triangle-view](/examples/data-objects/multiview/triangle-view) (private)</br>- [@fluid-example/prosemirror](/examples/data-objects/prosemirror) (private)</br>- [@fluid-example/shared-text](/examples/data-objects/shared-text) (private)</br>- [@fluid-example/smde](/examples/data-objects/smde) (private)</br>- [@fluid-example/table-document](/examples/data-objects/table-document)</br>- [@fluid-example/table-view](/examples/data-objects/table-view) (private)</br>- [@fluid-example/task-selection](/examples/data-objects/task-selection) (private)</br>- [@fluid-example/todo](/examples/data-objects/todo) (private)</br>- [@fluid-example/webflow](/examples/data-objects/webflow) (private)</br>- [@fluid-example/app-integration-container-views](/examples/hosts/app-integration/container-views) (private)</br>- [@fluid-example/app-integration-external-views](/examples/hosts/app-integration/external-views) (private)</br>- [@fluid-example/app-integration-schema-upgrade](/examples/hosts/app-integration/schema-upgrade) (private)</br>- [@fluid-internal/hosts-sample](/examples/hosts/hosts-sample) (private)</br>- [@fluid-example/bundle-size-tests](/examples/utils/bundle-size-tests) (private)</br>- [@fluid-example/example-utils](/examples/utils/example-utils) (private)</br>- [@fluid-experimental/partial-checkout](/experimental/PropertyDDS/examples/partial-checkout)</br>- [@fluid-experimental/property-inspector](/experimental/PropertyDDS/examples/property-inspector)</br>- [@fluid-experimental/schemas](/experimental/PropertyDDS/examples/schemas)</br>- [@fluid-experimental/property-query-service](/experimental/PropertyDDS/services/property-query-service) (private)</br>- [@fluid-example/bubblebench-baseline](/experimental/examples/bubblebench/baseline) (private)</br>- [@fluid-example/bubblebench-common](/experimental/examples/bubblebench/common) (private)</br>- [@fluid-example/bubblebench-ot](/experimental/examples/bubblebench/ot) (private)</br>- [@fluid-example/bubblebench-sharedtree](/experimental/examples/bubblebench/sharedtree) (private) | - [Base-Definitions](#Base-Definitions)</br>- [Protocol-Definitions](#Protocol-Definitions)</br>- [Driver-Definitions](#Driver-Definitions)</br>- [Container-Definitions](#Container-Definitions)</br>- [Base-Utils](#Base-Utils)</br>- [Framework-Utils](#Framework-Utils)</br>- [Telemetry-Utils](#Telemetry-Utils)</br>- [Driver-Utils](#Driver-Utils)</br>- [Driver](#Driver)</br>- [Loader](#Loader)</br>- [Runtime](#Runtime)</br>- [Framework](#Framework)</br>- [Server-Libs](#Server-Libs)</br>- [Routerlicious-Driver](#Routerlicious-Driver)</br>- [Test-Utils](#Test-Utils)</br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> |
|
||||
| - [@fluid-example/collaborative-textarea](/examples/apps/collaborative-textarea) (private)</br>- [@fluid-example/contact-collection](/examples/apps/contact-collection) (private)</br>- [@fluid-example/data-object-grid](/examples/apps/data-object-grid) (private)</br>- [@fluid-example/view-framework-sampler](/examples/apps/view-framework-sampler) (private)</br>- [@fluid-example/canvas](/examples/data-objects/canvas) (private)</br>- [@fluid-example/clicker](/examples/data-objects/clicker) (private)</br>- [@fluid-example/codemirror](/examples/data-objects/codemirror) (private)</br>- [@fluid-example/diceroller](/examples/data-objects/diceroller) (private)</br>- [@fluid-example/monaco](/examples/data-objects/monaco) (private)</br>- [@fluid-example/multiview-constellation-model](/examples/data-objects/multiview/constellation-model) (private)</br>- [@fluid-example/multiview-constellation-view](/examples/data-objects/multiview/constellation-view) (private)</br>- [@fluid-example/multiview-container](/examples/data-objects/multiview/container) (private)</br>- [@fluid-example/multiview-coordinate-model](/examples/data-objects/multiview/coordinate-model) (private)</br>- [@fluid-example/multiview-coordinate-interface](/examples/data-objects/multiview/interface) (private)</br>- [@fluid-example/multiview-plot-coordinate-view](/examples/data-objects/multiview/plot-coordinate-view) (private)</br>- [@fluid-example/multiview-slider-coordinate-view](/examples/data-objects/multiview/slider-coordinate-view) (private)</br>- [@fluid-example/multiview-triangle-view](/examples/data-objects/multiview/triangle-view) (private)</br>- [@fluid-example/prosemirror](/examples/data-objects/prosemirror) (private)</br>- [@fluid-example/shared-text](/examples/data-objects/shared-text) (private)</br>- [@fluid-example/smde](/examples/data-objects/smde) (private)</br>- [@fluid-example/table-document](/examples/data-objects/table-document)</br>- [@fluid-example/table-view](/examples/data-objects/table-view) (private)</br>- [@fluid-example/task-selection](/examples/data-objects/task-selection) (private)</br>- [@fluid-example/todo](/examples/data-objects/todo) (private)</br>- [@fluid-example/webflow](/examples/data-objects/webflow) (private)</br>- [@fluid-example/app-integration-container-views](/examples/hosts/app-integration/container-views) (private)</br>- [@fluid-example/app-integration-external-views](/examples/hosts/app-integration/external-views) (private)</br>- [@fluid-example/app-integration-schema-upgrade](/examples/hosts/app-integration/schema-upgrade) (private)</br>- [@fluid-internal/hosts-sample](/examples/hosts/hosts-sample) (private)</br>- [@fluid-example/bundle-size-tests](/examples/utils/bundle-size-tests) (private)</br>- [@fluid-example/example-utils](/examples/utils/example-utils) (private)</br>- [@fluid-example/bubblebench-baseline](/experimental/examples/bubblebench/baseline) (private)</br>- [@fluid-example/bubblebench-common](/experimental/examples/bubblebench/common) (private)</br>- [@fluid-example/bubblebench-ot](/experimental/examples/bubblebench/ot) (private)</br>- [@fluid-example/bubblebench-sharedtree](/experimental/examples/bubblebench/sharedtree) (private)</br>- [@fluid-experimental/partial-checkout](/experimental/PropertyDDS/examples/partial-checkout)</br>- [@fluid-experimental/property-inspector](/experimental/PropertyDDS/examples/property-inspector)</br>- [@fluid-experimental/schemas](/experimental/PropertyDDS/examples/schemas)</br>- [@fluid-experimental/property-query-service](/experimental/PropertyDDS/services/property-query-service) (private) | - [Base-Definitions](#Base-Definitions)</br>- [Protocol-Definitions](#Protocol-Definitions)</br>- [Driver-Definitions](#Driver-Definitions)</br>- [Container-Definitions](#Container-Definitions)</br>- [Base-Utils](#Base-Utils)</br>- [Framework-Utils](#Framework-Utils)</br>- [Telemetry-Utils](#Telemetry-Utils)</br>- [Driver-Utils](#Driver-Utils)</br>- [Driver](#Driver)</br>- [Loader](#Loader)</br>- [Runtime](#Runtime)</br>- [Framework](#Framework)</br>- [Server-Libs](#Server-Libs)</br>- [Routerlicious-Driver](#Routerlicious-Driver)</br>- [Test-Utils](#Test-Utils)</br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> </br> |
|
||||
|
||||
### Tools
|
||||
|
||||
|
|
|
@ -500,7 +500,7 @@ export const IRuntimeFactory: keyof IProvideRuntimeFactory;
|
|||
|
||||
// @public
|
||||
export interface IRuntimeFactory extends IProvideRuntimeFactory {
|
||||
instantiateRuntime(context: IContainerContext, existing?: boolean): Promise<IRuntime>;
|
||||
instantiateRuntime(context: IContainerContext, existing: boolean): Promise<IRuntime>;
|
||||
}
|
||||
|
||||
// @public
|
||||
|
|
|
@ -124,6 +124,7 @@ export class ContainerRuntime extends TypedEventEmitter<IContainerRuntimeEvents>
|
|||
get disposed(): boolean;
|
||||
// (undocumented)
|
||||
readonly enqueueSummarize: ISummarizer["enqueueSummarize"];
|
||||
ensureNoDataModelChanges<T>(callback: () => T): T;
|
||||
// (undocumented)
|
||||
get flushMode(): FlushMode;
|
||||
// (undocumented)
|
||||
|
@ -152,7 +153,17 @@ export class ContainerRuntime extends TypedEventEmitter<IContainerRuntimeEvents>
|
|||
// (undocumented)
|
||||
get IFluidTokenProvider(): IFluidTokenProvider | undefined;
|
||||
get isDirty(): boolean;
|
||||
// @deprecated (undocumented)
|
||||
static load(context: IContainerContext, registryEntries: NamedFluidDataStoreRegistryEntries, requestHandler?: (request: IRequest, runtime: IContainerRuntime) => Promise<IResponse>, runtimeOptions?: IContainerRuntimeOptions, containerScope?: FluidObject, existing?: boolean, containerRuntimeCtor?: typeof ContainerRuntime): Promise<ContainerRuntime>;
|
||||
static loadRuntime(params: {
|
||||
context: IContainerContext;
|
||||
registryEntries: NamedFluidDataStoreRegistryEntries;
|
||||
existing: boolean;
|
||||
requestHandler?: (request: IRequest, runtime: IContainerRuntime) => Promise<IResponse>;
|
||||
runtimeOptions?: IContainerRuntimeOptions;
|
||||
containerScope?: FluidObject;
|
||||
containerRuntimeCtor?: typeof ContainerRuntime;
|
||||
}): Promise<ContainerRuntime>;
|
||||
// (undocumented)
|
||||
readonly logger: ITelemetryLogger;
|
||||
// (undocumented)
|
||||
|
@ -334,6 +345,7 @@ export interface IConnectableRuntime {
|
|||
export interface IContainerRuntimeOptions {
|
||||
readonly compressionOptions?: ICompressionRuntimeOptions;
|
||||
readonly enableOfflineLoad?: boolean;
|
||||
readonly enableOpReentryCheck?: boolean;
|
||||
readonly flushMode?: FlushMode;
|
||||
// (undocumented)
|
||||
readonly gcOptions?: IGCRuntimeOptions;
|
||||
|
@ -405,7 +417,7 @@ export interface IOnDemandSummarizeOptions extends ISummarizeOptions {
|
|||
readonly reason: string;
|
||||
}
|
||||
|
||||
// @public
|
||||
// @public @deprecated
|
||||
export interface IPendingFlush {
|
||||
// (undocumented)
|
||||
type: "flush";
|
||||
|
@ -518,10 +530,6 @@ export interface ISummarizerRuntime extends IConnectableRuntime {
|
|||
closeFn(): void;
|
||||
// (undocumented)
|
||||
readonly logger: ITelemetryLogger;
|
||||
// @deprecated (undocumented)
|
||||
on(event: "batchEnd", listener: (error: any, op: ISequencedDocumentMessage) => void): this;
|
||||
// @deprecated (undocumented)
|
||||
removeListener(event: "batchEnd", listener: (error: any, op: ISequencedDocumentMessage) => void): this;
|
||||
readonly summarizerClientId: string | undefined;
|
||||
}
|
||||
|
||||
|
@ -558,8 +566,6 @@ export interface ISummaryBaseConfiguration {
|
|||
initialSummarizerDelayMs: number;
|
||||
maxAckWaitTime: number;
|
||||
maxOpsSinceLastSummary: number;
|
||||
// @deprecated (undocumented)
|
||||
summarizerClientElection: boolean;
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
|
@ -618,18 +624,8 @@ export interface ISummaryOpMessage extends ISequencedDocumentMessage {
|
|||
|
||||
// @public (undocumented)
|
||||
export interface ISummaryRuntimeOptions {
|
||||
// @deprecated
|
||||
disableSummaries?: boolean;
|
||||
// @deprecated
|
||||
initialSummarizerDelayMs?: number;
|
||||
// @deprecated (undocumented)
|
||||
maxOpsSinceLastSummary?: number;
|
||||
// @deprecated
|
||||
summarizerClientElection?: boolean;
|
||||
// Warning: (ae-forgotten-export) The symbol "ISummarizerOptions" needs to be exported by the entry point index.d.ts
|
||||
//
|
||||
// @deprecated
|
||||
summarizerOptions?: Readonly<Partial<ISummarizerOptions>>;
|
||||
summaryConfigOverrides?: ISummaryConfiguration;
|
||||
}
|
||||
|
||||
|
|
|
@ -102,6 +102,7 @@ export interface IFluidDataStoreRuntime extends IFluidRouter, IEventProvider<IFl
|
|||
createChannel(id: string | undefined, type: string): IChannel;
|
||||
// (undocumented)
|
||||
readonly deltaManager: IDeltaManager<ISequencedDocumentMessage, IDocumentMessage>;
|
||||
ensureNoDataModelChanges<T>(callback: () => T): T;
|
||||
readonly entryPoint?: IFluidHandle<FluidObject>;
|
||||
getAudience(): IAudience;
|
||||
getChannel(id: string): Promise<IChannel>;
|
||||
|
|
|
@ -70,6 +70,7 @@ export class FluidDataStoreRuntime extends TypedEventEmitter<IFluidDataStoreRunt
|
|||
dispose(): void;
|
||||
// (undocumented)
|
||||
get disposed(): boolean;
|
||||
ensureNoDataModelChanges<T>(callback: () => T): T;
|
||||
// (undocumented)
|
||||
readonly entryPoint?: IFluidHandle<FluidObject>;
|
||||
// (undocumented)
|
||||
|
|
|
@ -1,207 +0,0 @@
|
|||
## API Report File for "@fluidframework/iframe-driver"
|
||||
|
||||
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
||||
|
||||
```ts
|
||||
|
||||
import * as Comlink from 'comlink';
|
||||
import { ConnectionMode } from '@fluidframework/protocol-definitions';
|
||||
import { Deferred } from '@fluidframework/common-utils';
|
||||
import { IClient } from '@fluidframework/protocol-definitions';
|
||||
import { IClientConfiguration } from '@fluidframework/protocol-definitions';
|
||||
import { IConnected } from '@fluidframework/protocol-definitions';
|
||||
import { IContainerPackageInfo } from '@fluidframework/driver-definitions';
|
||||
import { IDisposable } from '@fluidframework/common-definitions';
|
||||
import { IDocumentDeltaConnection } from '@fluidframework/driver-definitions';
|
||||
import { IDocumentDeltaConnectionEvents } from '@fluidframework/driver-definitions';
|
||||
import { IDocumentDeltaStorageService } from '@fluidframework/driver-definitions';
|
||||
import { IDocumentMessage } from '@fluidframework/protocol-definitions';
|
||||
import { IDocumentService } from '@fluidframework/driver-definitions';
|
||||
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions';
|
||||
import { IDocumentStorageService } from '@fluidframework/driver-definitions';
|
||||
import { IRequest } from '@fluidframework/core-interfaces';
|
||||
import { IResolvedUrl } from '@fluidframework/driver-definitions';
|
||||
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
||||
import { ISignalClient } from '@fluidframework/protocol-definitions';
|
||||
import { ISignalMessage } from '@fluidframework/protocol-definitions';
|
||||
import { ISummaryTree } from '@fluidframework/protocol-definitions';
|
||||
import { ITelemetryBaseLogger } from '@fluidframework/common-definitions';
|
||||
import { ITokenClaims } from '@fluidframework/protocol-definitions';
|
||||
import { IUrlResolver } from '@fluidframework/driver-definitions';
|
||||
import { TypedEventEmitter } from '@fluidframework/common-utils';
|
||||
|
||||
// @public @deprecated
|
||||
export class DocumentServiceFactoryProxy implements IDocumentServiceFactoryProxy {
|
||||
// @deprecated
|
||||
constructor(documentServiceFactory: IDocumentServiceFactory, options: any);
|
||||
// @deprecated (undocumented)
|
||||
get clients(): {
|
||||
[clientId: string]: ICombinedDriver;
|
||||
} & Comlink.ProxyMarked;
|
||||
// @deprecated (undocumented)
|
||||
connected(): Promise<void>;
|
||||
// @deprecated (undocumented)
|
||||
createContainer(createNewSummaryFn: () => Promise<ISummaryTree>, resolvedUrlFn: () => Promise<IResolvedUrl>): Promise<string>;
|
||||
// @deprecated (undocumented)
|
||||
createDocumentService(resolvedUrlFn: () => Promise<IResolvedUrl>): Promise<string>;
|
||||
// @deprecated (undocumented)
|
||||
createProxy(): IDocumentServiceFactoryProxy;
|
||||
}
|
||||
|
||||
// @public @deprecated (undocumented)
|
||||
export interface ICombinedDriver {
|
||||
// @deprecated (undocumented)
|
||||
clientId: string;
|
||||
// @deprecated (undocumented)
|
||||
deltaStorage: IDocumentDeltaStorageService;
|
||||
// @deprecated (undocumented)
|
||||
logger: ITelemetryBaseLogger;
|
||||
// @deprecated (undocumented)
|
||||
storage: IDocumentStorageService;
|
||||
// @deprecated (undocumented)
|
||||
stream: IOuterDocumentDeltaConnectionProxy;
|
||||
}
|
||||
|
||||
// @public @deprecated (undocumented)
|
||||
export interface IDocumentServiceFactoryProxy {
|
||||
// @deprecated (undocumented)
|
||||
clients: {
|
||||
[clientId: string]: ICombinedDriver;
|
||||
};
|
||||
// @deprecated (undocumented)
|
||||
connected(): Promise<void>;
|
||||
// @deprecated (undocumented)
|
||||
createContainer(createNewSummaryFn: () => Promise<ISummaryTree>, resolvedUrlFn: () => Promise<IResolvedUrl>): Promise<string>;
|
||||
// @deprecated (undocumented)
|
||||
createDocumentService(resolvedUrlFn: () => Promise<IResolvedUrl>): Promise<string>;
|
||||
}
|
||||
|
||||
// @public @deprecated (undocumented)
|
||||
export const IDocumentServiceFactoryProxyKey = "IDocumentServiceFactoryProxy";
|
||||
|
||||
// @public @deprecated
|
||||
export class InnerDocumentDeltaConnection extends TypedEventEmitter<IDocumentDeltaConnectionEvents> implements IDocumentDeltaConnection, IDisposable {
|
||||
// @deprecated
|
||||
get claims(): ITokenClaims;
|
||||
// @deprecated
|
||||
get clientId(): string;
|
||||
// @deprecated
|
||||
static create(connection: IConnected, outerProxy: IOuterDocumentDeltaConnectionProxy): Promise<IDocumentDeltaConnection>;
|
||||
// @deprecated (undocumented)
|
||||
details: IConnected;
|
||||
// @deprecated (undocumented)
|
||||
dispose(): void;
|
||||
// @deprecated (undocumented)
|
||||
get disposed(): boolean;
|
||||
// @deprecated
|
||||
get existing(): boolean;
|
||||
// @deprecated
|
||||
get initialClients(): ISignalClient[];
|
||||
// @deprecated
|
||||
get initialMessages(): ISequencedDocumentMessage[];
|
||||
// @deprecated
|
||||
get initialSignals(): ISignalMessage[];
|
||||
// @deprecated (undocumented)
|
||||
get lastKnownOpNumber(): any;
|
||||
// @deprecated
|
||||
get maxMessageSize(): number;
|
||||
// @deprecated
|
||||
get mode(): ConnectionMode;
|
||||
// @deprecated (undocumented)
|
||||
outerProxy: IOuterDocumentDeltaConnectionProxy;
|
||||
// @deprecated
|
||||
get serviceConfiguration(): IClientConfiguration;
|
||||
// @deprecated
|
||||
submit(messages: IDocumentMessage[]): void;
|
||||
// @deprecated
|
||||
submitSignal(message: IDocumentMessage): void;
|
||||
// @deprecated
|
||||
get version(): string;
|
||||
}
|
||||
|
||||
// @public @deprecated
|
||||
export class InnerDocumentService implements IDocumentService {
|
||||
// @deprecated (undocumented)
|
||||
clientId: string;
|
||||
// @deprecated
|
||||
connectToDeltaStorage(): Promise<IDocumentDeltaStorageService>;
|
||||
// @deprecated
|
||||
connectToDeltaStream(client: IClient): Promise<IDocumentDeltaConnection>;
|
||||
// @deprecated
|
||||
connectToStorage(): Promise<IDocumentStorageService>;
|
||||
// @deprecated
|
||||
static create(proxyObject: ICombinedDriver, resolvedUrl: IResolvedUrl, logger?: ITelemetryBaseLogger): Promise<InnerDocumentService>;
|
||||
// @deprecated (undocumented)
|
||||
dispose(): void;
|
||||
// @deprecated (undocumented)
|
||||
readonly resolvedUrl: IResolvedUrl;
|
||||
}
|
||||
|
||||
// @public @deprecated
|
||||
export class InnerDocumentServiceFactory implements IDocumentServiceFactory {
|
||||
// @deprecated (undocumented)
|
||||
static create(outerPort: MessagePort): Promise<InnerDocumentServiceFactory>;
|
||||
// @deprecated (undocumented)
|
||||
createContainer(createNewSummary: ISummaryTree, resolvedUrl: IResolvedUrl, logger?: ITelemetryBaseLogger, clientIsSummarizer?: boolean): Promise<IDocumentService>;
|
||||
// @deprecated (undocumented)
|
||||
createDocumentService(resolvedUrl: IResolvedUrl, logger?: ITelemetryBaseLogger, clientIsSummarizer?: boolean): Promise<IDocumentService>;
|
||||
// @deprecated (undocumented)
|
||||
static readonly protocolName = "fluid:";
|
||||
// @deprecated (undocumented)
|
||||
readonly protocolName = "fluid:";
|
||||
}
|
||||
|
||||
// @public @deprecated (undocumented)
|
||||
export class InnerUrlResolver implements IUrlResolver {
|
||||
// @deprecated
|
||||
constructor(outerProxy: IUrlResolverProxy);
|
||||
// @deprecated (undocumented)
|
||||
static create(outerPort: MessagePort): Promise<InnerUrlResolver>;
|
||||
// @deprecated (undocumented)
|
||||
getAbsoluteUrl(resolvedUrl: IResolvedUrl, relativeUrl: string, packageInfoSource?: IContainerPackageInfo): Promise<string>;
|
||||
// @deprecated (undocumented)
|
||||
resolve(request: IRequest): Promise<IResolvedUrl | undefined>;
|
||||
}
|
||||
|
||||
// @public @deprecated (undocumented)
|
||||
export interface IOuterDocumentDeltaConnectionProxy {
|
||||
// @deprecated (undocumented)
|
||||
getDetails(): Promise<IConnected>;
|
||||
// @deprecated (undocumented)
|
||||
handshake: Deferred<any>;
|
||||
// @deprecated (undocumented)
|
||||
submit(messages: IDocumentMessage[]): Promise<void>;
|
||||
// @deprecated (undocumented)
|
||||
submitSignal(message: IDocumentMessage): Promise<void>;
|
||||
}
|
||||
|
||||
// @public @deprecated (undocumented)
|
||||
export interface IUrlResolverProxy {
|
||||
// @deprecated (undocumented)
|
||||
connected(): Promise<void>;
|
||||
// @deprecated (undocumented)
|
||||
getAbsoluteUrl(resolvedUrlFn: () => Promise<IResolvedUrl>, relativeUrl: string, packageInfoFn: () => Promise<IContainerPackageInfo | undefined>): Promise<string>;
|
||||
// @deprecated (undocumented)
|
||||
resolve(request: IRequest): Promise<() => Promise<IResolvedUrl | undefined>>;
|
||||
}
|
||||
|
||||
// @public @deprecated (undocumented)
|
||||
export const IUrlResolverProxyKey = "IUrlResolverProxy";
|
||||
|
||||
// @public @deprecated (undocumented)
|
||||
export class OuterUrlResolver {
|
||||
// @deprecated
|
||||
constructor(urlResolver: IUrlResolver);
|
||||
// @deprecated (undocumented)
|
||||
connected(): Promise<void>;
|
||||
// @deprecated (undocumented)
|
||||
createProxy(): IUrlResolverProxy;
|
||||
// @deprecated (undocumented)
|
||||
getAbsoluteUrl(resolvedUrlFn: () => Promise<IResolvedUrl>, relativeUrl: string, packageInfoFn: () => Promise<IContainerPackageInfo | undefined>): Promise<string>;
|
||||
// @deprecated (undocumented)
|
||||
resolve(request: IRequest): Promise<() => Promise<IResolvedUrl | undefined>>;
|
||||
}
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
|
@ -5,12 +5,14 @@
|
|||
```ts
|
||||
|
||||
import { IChannelStorageService } from '@fluidframework/datastore-definitions';
|
||||
import type { IEventThisPlaceHolder } from '@fluidframework/common-definitions';
|
||||
import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions';
|
||||
import { IFluidHandle } from '@fluidframework/core-interfaces';
|
||||
import { IFluidSerializer } from '@fluidframework/shared-object-base';
|
||||
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
||||
import { ISummaryTreeWithStats } from '@fluidframework/runtime-definitions';
|
||||
import { ITelemetryLogger } from '@fluidframework/common-definitions';
|
||||
import type { ITelemetryLogger } from '@fluidframework/common-definitions';
|
||||
import { TypedEventEmitter } from '@fluidframework/common-utils';
|
||||
|
||||
// @public (undocumented)
|
||||
export function addProperties(oldProps: PropertySet | undefined, newProps: PropertySet, op?: ICombiningOp, seq?: number): PropertySet;
|
||||
|
@ -82,8 +84,10 @@ export interface BlockUpdateActions {
|
|||
child: (block: IMergeBlock, index: number) => void;
|
||||
}
|
||||
|
||||
// Warning: (ae-forgotten-export) The symbol "IClientEvents" needs to be exported by the entry point index.d.ts
|
||||
//
|
||||
// @public (undocumented)
|
||||
export class Client {
|
||||
export class Client extends TypedEventEmitter<IClientEvents> {
|
||||
constructor(specToSegment: (spec: IJSONSegment) => ISegment, logger: ITelemetryLogger, options?: PropertySet);
|
||||
// (undocumented)
|
||||
accumOps: number;
|
||||
|
@ -1150,6 +1154,8 @@ export interface SegmentGroup {
|
|||
// (undocumented)
|
||||
previousProps?: PropertySet[];
|
||||
// (undocumented)
|
||||
refSeq: number;
|
||||
// (undocumented)
|
||||
segments: ISegment[];
|
||||
}
|
||||
|
||||
|
|
|
@ -4,14 +4,15 @@
|
|||
|
||||
```ts
|
||||
|
||||
/// <reference types="mocha" />
|
||||
|
||||
// @public (undocumented)
|
||||
export const mochaHooks: {
|
||||
beforeAll(): void;
|
||||
beforeEach(): void;
|
||||
afterEach(): void;
|
||||
beforeEach(this: Mocha.Context): void;
|
||||
afterEach(this: Mocha.Context): void;
|
||||
};
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
|
|
@ -180,6 +180,7 @@ export interface IFluidDataStoreContext extends IEventProvider<IFluidDataStoreCo
|
|||
readonly createProps?: any;
|
||||
// (undocumented)
|
||||
readonly deltaManager: IDeltaManager<ISequencedDocumentMessage, IDocumentMessage>;
|
||||
ensureNoDataModelChanges<T>(callback: () => T): T;
|
||||
getAbsoluteUrl(relativeUrl: string): Promise<string | undefined>;
|
||||
getAudience(): IAudience;
|
||||
getBaseGCDetails(): Promise<IGarbageCollectionDetailsBase>;
|
||||
|
|
|
@ -180,7 +180,7 @@ export abstract class RuntimeFactoryHelper<T = IContainerRuntime> implements IRu
|
|||
// (undocumented)
|
||||
instantiateFromExisting(_runtime: T): Promise<void>;
|
||||
// (undocumented)
|
||||
instantiateRuntime(context: IContainerContext, existing?: boolean): Promise<IRuntime>;
|
||||
instantiateRuntime(context: IContainerContext, existing: boolean): Promise<IRuntime>;
|
||||
// (undocumented)
|
||||
get IRuntimeFactory(): this;
|
||||
// (undocumented)
|
||||
|
|
|
@ -142,9 +142,9 @@ export class IntervalCollection<TInterval extends ISerializableInterval> extends
|
|||
// @internal
|
||||
constructor(helpers: IIntervalHelpers<TInterval>, requiresClient: boolean, emitter: IValueOpEmitter, serializedIntervals: ISerializedInterval[] | ISerializedIntervalCollectionV2);
|
||||
// @internal (undocumented)
|
||||
ackAdd(serializedInterval: ISerializedInterval, local: boolean, op: ISequencedDocumentMessage): TInterval | undefined;
|
||||
ackAdd(serializedInterval: ISerializedInterval, local: boolean, op: ISequencedDocumentMessage, localOpMetadata: IMapMessageLocalMetadata | undefined): TInterval | undefined;
|
||||
// @internal (undocumented)
|
||||
ackChange(serializedInterval: ISerializedInterval, local: boolean, op: ISequencedDocumentMessage): void;
|
||||
ackChange(serializedInterval: ISerializedInterval, local: boolean, op: ISequencedDocumentMessage, localOpMetadata: IMapMessageLocalMetadata | undefined): void;
|
||||
// @internal (undocumented)
|
||||
ackDelete(serializedInterval: ISerializedInterval, local: boolean, op: ISequencedDocumentMessage): void;
|
||||
add(start: number, end: number, intervalType: IntervalType, props?: PropertySet): TInterval;
|
||||
|
|
|
@ -185,12 +185,14 @@ export class MockLogger extends TelemetryLogger implements ITelemetryLogger {
|
|||
assertMatch(expectedEvents: Omit<ITelemetryBaseEvent, "category">[], message?: string): void;
|
||||
assertMatchAny(expectedEvents: Omit<ITelemetryBaseEvent, "category">[], message?: string): void;
|
||||
assertMatchNone(disallowedEvents: Omit<ITelemetryBaseEvent, "category">[], message?: string): void;
|
||||
assertMatchStrict(expectedEvents: Omit<ITelemetryBaseEvent, "category">[], message?: string): void;
|
||||
// (undocumented)
|
||||
clear(): void;
|
||||
// (undocumented)
|
||||
events: ITelemetryBaseEvent[];
|
||||
matchAnyEvent(expectedEvents: Omit<ITelemetryBaseEvent, "category">[]): boolean;
|
||||
matchEvents(expectedEvents: Omit<ITelemetryBaseEvent, "category">[]): boolean;
|
||||
matchEventStrict(expectedEvents: Omit<ITelemetryBaseEvent, "category">[]): boolean;
|
||||
// (undocumented)
|
||||
send(event: ITelemetryBaseEvent): void;
|
||||
}
|
||||
|
|
|
@ -293,6 +293,8 @@ export class MockFluidDataStoreContext implements IFluidDataStoreContext {
|
|||
// (undocumented)
|
||||
deltaManager: IDeltaManager<ISequencedDocumentMessage, IDocumentMessage>;
|
||||
// (undocumented)
|
||||
ensureNoDataModelChanges<T>(callback: () => T): T;
|
||||
// (undocumented)
|
||||
readonly existing: boolean;
|
||||
// (undocumented)
|
||||
getAbsoluteUrl(relativeUrl: string): Promise<string | undefined>;
|
||||
|
@ -379,6 +381,8 @@ export class MockFluidDataStoreRuntime extends EventEmitter implements IFluidDat
|
|||
// (undocumented)
|
||||
readonly documentId: string;
|
||||
// (undocumented)
|
||||
ensureNoDataModelChanges<T>(callback: () => T): T;
|
||||
// (undocumented)
|
||||
readonly entryPoint?: IFluidHandle<FluidObject>;
|
||||
// (undocumented)
|
||||
readonly existing: boolean;
|
||||
|
|
|
@ -91,7 +91,7 @@ export const createTestContainerRuntimeFactory: (containerRuntimeCtor: typeof Co
|
|||
instantiateFromExisting(runtime: ContainerRuntime): Promise<void>;
|
||||
preInitialize(context: IContainerContext, existing: boolean): Promise<IRuntime & IContainerRuntime>;
|
||||
readonly IRuntimeFactory: any;
|
||||
instantiateRuntime(context: IContainerContext, existing?: boolean | undefined): Promise<IRuntime>;
|
||||
instantiateRuntime(context: IContainerContext, existing: boolean): Promise<IRuntime>;
|
||||
hasInitialized(_runtime: IContainerRuntime): Promise<void>;
|
||||
};
|
||||
};
|
||||
|
@ -255,7 +255,7 @@ export const TestContainerRuntimeFactory: {
|
|||
instantiateFromExisting(runtime: ContainerRuntime): Promise<void>;
|
||||
preInitialize(context: IContainerContext, existing: boolean): Promise<IRuntime & IContainerRuntime>;
|
||||
readonly IRuntimeFactory: any;
|
||||
instantiateRuntime(context: IContainerContext, existing?: boolean | undefined): Promise<IRuntime>;
|
||||
instantiateRuntime(context: IContainerContext, existing: boolean): Promise<IRuntime>;
|
||||
hasInitialized(_runtime: IContainerRuntime): Promise<void>;
|
||||
};
|
||||
};
|
||||
|
@ -346,7 +346,6 @@ export function timeoutPromise<T = void>(executor: (resolve: (value: T | Promise
|
|||
|
||||
// @public (undocumented)
|
||||
export interface TimeoutWithError {
|
||||
// (undocumented)
|
||||
durationMs?: number;
|
||||
// (undocumented)
|
||||
errorMsg?: string;
|
||||
|
@ -356,7 +355,6 @@ export interface TimeoutWithError {
|
|||
|
||||
// @public (undocumented)
|
||||
export interface TimeoutWithValue<T = void> {
|
||||
// (undocumented)
|
||||
durationMs?: number;
|
||||
// (undocumented)
|
||||
reject: false;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/collaborative-textarea",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "A minimal example using the react collaborative-textarea",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -39,16 +39,16 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/react-inputs": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/react-inputs": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"css-loader": "^1.0.0",
|
||||
"react": "^17.0.1",
|
||||
"react-dom": "^17.0.1",
|
||||
|
@ -59,7 +59,7 @@
|
|||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/test-tools": "^0.2.3074",
|
||||
"@fluidframework/test-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/expect-puppeteer": "2.2.1",
|
||||
"@types/jest": "22.2.3",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/contact-collection",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Example of using a Fluid Object as a collection of items",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -38,13 +38,13 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"css-loader": "^1.0.0",
|
||||
"react": "^17.0.1",
|
||||
"react-dom": "^17.0.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/data-object-grid",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Data object grid creates child data objects from a registry and lays them out in a grid.",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -41,22 +41,22 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/clicker": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/codemirror": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/collaborative-textarea": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/multiview-coordinate-model": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/multiview-slider-coordinate-view": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/prosemirror": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/clicker": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-example/codemirror": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-example/collaborative-textarea": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-example/multiview-coordinate-model": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-example/multiview-slider-coordinate-view": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-example/prosemirror": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-adapters": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-adapters": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"office-ui-fabric-react": "^7.189.0",
|
||||
"prop-types": "^15.7.2",
|
||||
"react": "^17.0.1",
|
||||
|
|
|
@ -33,12 +33,12 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-tools/fluidapp-odsp-urlresolver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/fluidapp-odsp-urlresolver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/odsp-doclib-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/odsp-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/odsp-driver-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/telemetry-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/odsp-doclib-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/odsp-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/odsp-driver-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/telemetry-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"express": "^4.16.3",
|
||||
"nconf": "^0.11.4",
|
||||
"webpack-dev-server": "~4.6.0"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/view-framework-sampler",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Example of integrating a Fluid data object with a variety of view frameworks.",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -39,12 +39,12 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"css-loader": "^1.0.0",
|
||||
"react": "^17.0.1",
|
||||
"react-dom": "^17.0.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/canvas",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Fluid ink canvas",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -43,15 +43,15 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/ink": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/ink": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/test-tools": "^0.2.3074",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/clicker",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Minimal Fluid component sample to implement a collaborative counter.",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -43,21 +43,21 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/task-manager": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/task-manager": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/counter": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/counter": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/test-tools": "^0.2.3074",
|
||||
"@fluidframework/test-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/expect-puppeteer": "2.2.1",
|
||||
"@types/jest": "22.2.3",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/codemirror",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Simple markdown editor",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -41,26 +41,26 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-adapters": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-adapters": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@types/codemirror": "0.0.76",
|
||||
"codemirror": "^5.48.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/diceroller",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Minimal Fluid Container & Object sample to implement a collaborative dice roller.",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -43,15 +43,15 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/test-tools": "^0.2.3074",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/monaco",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Monaco code editor",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -41,19 +41,19 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@types/node": "^14.18.0",
|
||||
"monaco-editor": "^0.30.0",
|
||||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/multiview-constellation-model",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Constellation model for multiview sample",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -42,15 +42,15 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/multiview-coordinate-model": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-example/multiview-coordinate-model": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0"
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/test-tools": "^0.2.3074",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/multiview-constellation-view",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "View for multiview sample",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -43,12 +43,12 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/multiview-slider-coordinate-view": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-example/multiview-slider-coordinate-view": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/test-tools": "^0.2.3074",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/multiview-container",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Container for multiview sample",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -43,23 +43,23 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/multiview-constellation-model": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/multiview-constellation-view": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/multiview-coordinate-model": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/multiview-plot-coordinate-view": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/multiview-slider-coordinate-view": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/multiview-triangle-view": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-adapters": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/multiview-constellation-model": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-example/multiview-constellation-view": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-example/multiview-coordinate-model": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-example/multiview-plot-coordinate-view": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-example/multiview-slider-coordinate-view": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-example/multiview-triangle-view": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-adapters": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/test-tools": "^0.2.3074",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/multiview-coordinate-model",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Coordinate model for multiview sample",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -42,13 +42,13 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0"
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/test-tools": "^0.2.3074",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/multiview-coordinate-interface",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Interface for multiview sample",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/multiview-plot-coordinate-view",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "View for multiview sample",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -43,11 +43,11 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/test-tools": "^0.2.3074",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/multiview-slider-coordinate-view",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "View for multiview sample",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -43,11 +43,11 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/test-tools": "^0.2.3074",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/multiview-triangle-view",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "View for multiview sample",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -43,11 +43,11 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/test-tools": "^0.2.3074",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/presence-tracker",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Example Data Object that tracks page focus for Audience members using signals.",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -38,11 +38,11 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-experimental/data-objects": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/data-objects": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/tinylicious-client": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"fluid-framework": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0"
|
||||
"@fluidframework/tinylicious-client": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"fluid-framework": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/build-cli": "^0.6.0-109663",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/prosemirror",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "ProseMirror",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -41,22 +41,22 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-adapters": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-adapters": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"orderedmap": "^2.1.0",
|
||||
"prosemirror-example-setup": "^1.2.1",
|
||||
"prosemirror-history": "^1.3.0",
|
||||
|
@ -69,7 +69,7 @@
|
|||
"prosemirror-view": "^1.28.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/shared-text",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Shared text",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -43,30 +43,30 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/protocol-definitions": "^1.1.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/undo-redo": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/undo-redo": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"bootstrap": "^3.3.7",
|
||||
"debug": "^4.1.1",
|
||||
"react": "^17.0.1",
|
||||
"react-dom": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/test-tools": "^0.2.3074",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/smde",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Simple markdown editor",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -40,25 +40,25 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"marked": "^2.0.3",
|
||||
"simplemde": "^1.11.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/table-document",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Chaincode component containing a table's data",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -53,28 +53,28 @@
|
|||
"temp-directory": "nyc/.nyc_output"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-experimental/sequence-deprecated": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/sequence-deprecated": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/protocol-definitions": "^1.1.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"debug": "^4.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/build-cli": "^0.6.0-109663",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-version-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-version-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/debug": "^4.1.5",
|
||||
"@types/mocha": "^9.1.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/table-view",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Chaincode component that provides a view for a table-document.",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -44,23 +44,23 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/table-document": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-example/table-document": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/matrix": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/matrix": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@tiny-calc/micro": "0.0.0-alpha.5",
|
||||
"react": "^17.0.1",
|
||||
"source-map-loader": "^2.0.0",
|
||||
"url-loader": "^2.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/task-selection",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Example demonstrating selecting a unique task amongst connected Fluid clients",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -39,17 +39,17 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/oldest-client-observer": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/task-manager": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/oldest-client-observer": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/task-manager": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"css-loader": "^1.0.0",
|
||||
"style-loader": "^1.0.0"
|
||||
},
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/todo",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Simple todo canvas.",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -43,24 +43,24 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-experimental/react-inputs": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-adapters": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/react-inputs": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-adapters": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"react": "^17.0.1",
|
||||
"react-dom": "^17.0.1",
|
||||
"uuid": "^8.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/test-tools": "^0.2.3074",
|
||||
"@fluidframework/test-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/expect-puppeteer": "2.2.1",
|
||||
"@types/jest": "22.2.3",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/webflow",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Collaborative markdown editor.",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -75,29 +75,29 @@
|
|||
"temp-directory": "nyc/.nyc_output"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/data-object-base": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/data-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"debug": "^4.1.1",
|
||||
"react": "^17.0.1",
|
||||
"react-dom": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-version-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-version-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/debug": "^4.1.5",
|
||||
"@types/mocha": "^9.1.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/app-integration-container-views",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Minimal Fluid Container & data store sample to implement a collaborative dice roller as a standalone app.",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -38,17 +38,17 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-adapters": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-adapters": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"react": "^17.0.1",
|
||||
"react-dom": "^17.0.1"
|
||||
},
|
||||
|
|
|
@ -42,28 +42,28 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/quorum": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/react-inputs": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/task-manager": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/cell": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/quorum": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/react-inputs": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/task-manager": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/cell": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/register-collection": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/telemetry-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/driver-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/register-collection": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/telemetry-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"css-loader": "^1.0.0",
|
||||
"react": "^17.0.1",
|
||||
"react-dom": "^17.0.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/app-integration-external-views",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Minimal Fluid Container & Data Object sample to implement a collaborative dice roller as a standalone app.",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -39,12 +39,12 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"css-loader": "^1.0.0",
|
||||
"style-loader": "^1.0.0"
|
||||
},
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/app-integration-schema-upgrade",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Using external data to initialize the container state and serialize out afterwards.",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -39,28 +39,28 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/quorum": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/react-inputs": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/task-manager": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/cell": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/quorum": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/react-inputs": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/task-manager": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/cell": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/register-collection": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/telemetry-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/driver-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/register-collection": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/telemetry-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"css-loader": "^1.0.0",
|
||||
"react": "^17.0.1",
|
||||
"react-dom": "^17.0.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-internal/hosts-sample",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Sample Fluid container host",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -31,17 +31,17 @@
|
|||
"webpack": "webpack --config webpack.config.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/protocol-definitions": "^1.1.0",
|
||||
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/web-code-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/web-code-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"react": "^17.0.1",
|
||||
"semver": "^7.3.4"
|
||||
},
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/bundle-size-tests",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "A package for understanding the bundle size of Fluid Framework",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -29,13 +29,13 @@
|
|||
"webpack:profile": "npm run webpack"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/matrix": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/odsp-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/matrix": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/odsp-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"source-map-loader": "^2.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/example-utils",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Shared utilities used by examples.",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -34,22 +34,22 @@
|
|||
"tsc": "tsc"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/local-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/server-local-server": "^0.1038.2000",
|
||||
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-adapters": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/driver-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/local-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/server-local-server": "^0.1038.2000-98212",
|
||||
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-adapters": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"uuid": "^8.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
@ -34,7 +34,7 @@ export abstract class ModelContainerRuntimeFactory<ModelType> implements IRuntim
|
|||
|
||||
public async instantiateRuntime(
|
||||
context: IContainerContext,
|
||||
existing?: boolean,
|
||||
existing: boolean,
|
||||
): Promise<IRuntime> {
|
||||
const fromExisting = existing ?? context.existing ?? false;
|
||||
const runtime = await ContainerRuntime.load(
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/partial-checkout",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "A sample using property-dds and property-binder to create a reactive application.",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -38,38 +38,38 @@
|
|||
"webpack": "webpack --color --no-stats"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-binder": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-common": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-dds": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-inspector-table": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-properties": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-proxy": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/schemas": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-binder": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-changeset": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-dds": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-inspector-table": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-properties": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-proxy": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/schemas": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/data-object-base": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/data-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/driver-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/protocol-definitions": "^1.1.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@types/uuid": "^8.3.0",
|
||||
"jsonwebtoken": "^8.4.0",
|
||||
"lodash": "^4.17.21",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/property-inspector",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "TreeTable representation for property-dds which allow browsing, editing and searching.",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -38,36 +38,36 @@
|
|||
"webpack": "webpack --color --no-stats"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-binder": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-common": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-dds": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-inspector-table": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-properties": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-proxy": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/schemas": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-binder": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-changeset": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-dds": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-inspector-table": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-properties": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-proxy": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/schemas": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/data-object-base": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/data-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/protocol-definitions": "^1.1.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@hig/fonts": "^1.0.2",
|
||||
"@material-ui/core": "4.12.4",
|
||||
"@material-ui/lab": "4.0.0-alpha.61",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/schemas",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Centralized package for storing schemas used by the samples.",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/property-binder",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Data Binder for Fluid PropertyDDS",
|
||||
"keywords": [],
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -68,9 +68,9 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.13.7",
|
||||
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-dds": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-properties": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-changeset": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-dds": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-properties": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"lodash": "^4.17.21"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -80,8 +80,8 @@
|
|||
"@babel/preset-env": "^7.2.0",
|
||||
"@fluid-experimental/property-binder-previous": "npm:@fluid-experimental/property-binder@2.0.0-internal.2.1.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/jest": "22.2.3",
|
||||
"async": "^3.2.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/property-changeset",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "property changeset definitions and related functionalities",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -62,7 +62,7 @@
|
|||
"temp-directory": "nyc/.nyc_output"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-experimental/property-common": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"ajv": "7.1.1",
|
||||
"ajv-keywords": "4.0.0",
|
||||
"async": "^3.2.0",
|
||||
|
@ -74,7 +74,7 @@
|
|||
"devDependencies": {
|
||||
"@fluid-experimental/property-changeset-previous": "npm:@fluid-experimental/property-changeset@2.0.0-internal.2.1.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/lodash": "^4.14.118",
|
||||
"@types/mocha": "^9.1.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/property-common",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "common functions used in properties",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -72,7 +72,7 @@
|
|||
"@fluid-experimental/property-common-previous": "npm:@fluid-experimental/property-common@2.0.0-internal.2.1.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@microsoft/api-extractor": "^7.22.2",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/debug": "^4.1.5",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-internal/platform-dependent",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Helper package that separates code for browser and server.",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
|
|
@ -6,4 +6,4 @@
|
|||
*/
|
||||
|
||||
export const pkgName = "@fluid-experimental/property-common";
|
||||
export const pkgVersion = "2.0.0-internal.2.2.0";
|
||||
export const pkgVersion = "2.0.0-internal.3.0.0";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/property-dds",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "definition of the property distributed data store",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -38,16 +38,16 @@
|
|||
"tsc": "tsc"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-properties": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-changeset": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-properties": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/protocol-definitions": "^1.1.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"axios": "^0.26.0",
|
||||
"fastest-json-copy": "^1.0.1",
|
||||
"lodash": "^4.17.21",
|
||||
|
@ -57,17 +57,16 @@
|
|||
"uuid": "^8.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-experimental/property-common": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-dds-previous": "npm:@fluid-experimental/property-dds@2.0.0-internal.2.1.0",
|
||||
"@fluid-experimental/property-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/driver-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/local-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/server-local-server": "^0.1038.2000",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/local-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/server-local-server": "^0.1038.2000-98212",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@microsoft/api-extractor": "^7.22.2",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/mocha": "^9.1.1",
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/property-inspector-table",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Property Inspector Table component",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -55,13 +55,12 @@
|
|||
"react-virtualized-auto-sizer": "^1.0.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-experimental/property-binder": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-dds": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-inspector-table-previous": "npm:@fluid-experimental/property-inspector-table@2.0.0-internal.2.1.0",
|
||||
"@fluid-experimental/property-properties": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-proxy": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-binder": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-changeset": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-dds": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-properties": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-proxy": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@storybook/addon-actions": "^6.4.22",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/property-properties",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "definitions of properties",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -62,8 +62,8 @@
|
|||
"temp-directory": "nyc/.nyc_output"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-common": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-changeset": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"ajv": "7.1.1",
|
||||
"async": "^3.2.0",
|
||||
"fastest-json-copy": "^1.0.1",
|
||||
|
@ -74,7 +74,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@types/mocha": "^9.1.1",
|
||||
"chai": "^4.2.0",
|
||||
"concurrently": "^6.2.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/property-proxy",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Proxify PropertyTree to interact with them in a JavaScript like manner",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -39,8 +39,8 @@
|
|||
"tsc": "tsc"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-properties": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0"
|
||||
"@fluid-experimental/property-changeset": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-properties": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.12.10",
|
||||
|
@ -75,4 +75,4 @@
|
|||
"baselineVersion": "2.0.0-internal.2.1.0",
|
||||
"broken": {}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -6,4 +6,4 @@
|
|||
*/
|
||||
|
||||
export const pkgName = "@fluid-experimental/property-proxy";
|
||||
export const pkgVersion = "2.0.0-internal.2.2.0";
|
||||
export const pkgVersion = "2.0.0-internal.3.0.0";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/property-query",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "QueryService implementation",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -21,8 +21,8 @@
|
|||
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-common": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-changeset": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"ajv": "7.1.1",
|
||||
"async": "^3.2.0",
|
||||
"http-status": "1.3.2",
|
||||
|
@ -35,9 +35,8 @@
|
|||
"traverse": "0.6.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-experimental/property-properties": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-query-previous": "npm:@fluid-experimental/property-query@2.0.0-internal.2.1.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-properties": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"chai": "^4.2.0",
|
||||
"cross-env": "^7.0.2",
|
||||
"mocha": "^10.0.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/property-query-service",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Moira service",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -42,10 +42,10 @@
|
|||
"tempDirectory": "coverage/tmp"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-common": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-properties": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-query": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-changeset": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-properties": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/property-query": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"async": "^3.2.0",
|
||||
"basicauth-middleware": "2.0.0",
|
||||
"body-parser": "^1.18.3",
|
||||
|
@ -68,13 +68,13 @@
|
|||
"sleep-promise": "8.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-experimental/property-dds": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/property-dds": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/local-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/server-local-server": "^0.1038.2000",
|
||||
"@fluidframework/test-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/local-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/server-local-server": "^0.1038.2000-98212",
|
||||
"@fluidframework/test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"aws-sdk": "2.547.0",
|
||||
"chai": "^4.2.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/ot",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Distributed data structure for hosting ottypes",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -61,18 +61,18 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/protocol-definitions": "^1.1.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0"
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@microsoft/api-extractor": "^7.22.2",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/mocha": "^9.1.1",
|
||||
|
|
|
@ -6,4 +6,4 @@
|
|||
*/
|
||||
|
||||
export const pkgName = "@fluid-experimental/ot";
|
||||
export const pkgVersion = "2.0.0-internal.2.2.0";
|
||||
export const pkgVersion = "2.0.0-internal.3.0.0";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/sharejs-json1",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Distributed data structure for hosting ottypes",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -61,20 +61,20 @@
|
|||
"temp-directory": "nyc/.nyc_output"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-experimental/ot": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/ot": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/protocol-definitions": "^1.1.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"ot-json1": "^1.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@microsoft/api-extractor": "^7.22.2",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/mocha": "^9.1.1",
|
||||
|
|
|
@ -6,4 +6,4 @@
|
|||
*/
|
||||
|
||||
export const pkgName = "@fluid-experimental/sharejs-json1";
|
||||
export const pkgVersion = "2.0.0-internal.2.2.0";
|
||||
export const pkgVersion = "2.0.0-internal.3.0.0";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/sequence-deprecated",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Deprecated distributed sequences",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -63,20 +63,20 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0"
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-experimental/sequence-deprecated-previous": "npm:@fluid-experimental/sequence-deprecated@2.0.0-internal.2.0.0",
|
||||
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/build-tools": "^0.6.0-109663",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@microsoft/api-extractor": "^7.22.2",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/diff": "^3.5.1",
|
||||
|
@ -95,7 +95,7 @@
|
|||
},
|
||||
"typeValidation": {
|
||||
"disabled": true,
|
||||
"version": "2.0.0-internal.2.1.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"broken": {}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,4 +6,4 @@
|
|||
*/
|
||||
|
||||
export const pkgName = "@fluid-experimental/sequence-deprecated";
|
||||
export const pkgVersion = "2.0.0-internal.2.2.0";
|
||||
export const pkgVersion = "2.0.0-internal.3.0.0";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/tree-graphql",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Prototype using GraphQL to access a distributed tree",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -37,7 +37,7 @@
|
|||
"tsc": "tsc"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-experimental/tree": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@graphql-codegen/plugin-helpers": "^1.18.2",
|
||||
"@graphql-codegen/visitor-plugin-common": "^1.18.2",
|
||||
|
@ -45,8 +45,8 @@
|
|||
"graphql-tools": "^7.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@graphql-codegen/cli": "1.20.1",
|
||||
"@graphql-codegen/typescript": "1.20.2",
|
||||
"@microsoft/api-extractor": "^7.22.2",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/tree",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Distributed tree",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -43,13 +43,13 @@
|
|||
"dependencies": {
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/protocol-definitions": "^1.1.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/telemetry-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/telemetry-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"buffer": "^6.0.3",
|
||||
"denque": "^1.5.1",
|
||||
"lru-cache": "^6.0.0",
|
||||
|
@ -57,19 +57,19 @@
|
|||
"uuid": "^8.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-internal/stochastic-test-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-internal/stochastic-test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-tools/benchmark": "^0.45.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-driver-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-drivers": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/undo-redo": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-driver-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-drivers": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/undo-redo": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@microsoft/api-extractor": "^7.22.2",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/lru-cache": "^5.1.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/bubblebench-baseline",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Bubblemark inspired DDS benchmark",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -43,18 +43,18 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/bubblebench-common": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/bubblebench-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/test-tools": "^0.2.3074",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/bubblebench-common",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Bubblemark inspired DDS benchmark",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -55,13 +55,13 @@
|
|||
"temp-directory": "nyc/.nyc_output"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-experimental/tree": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"best-random": "^1.0.0",
|
||||
"react": "^17.0.1",
|
||||
"react-dom": "^17.0.1",
|
||||
|
@ -71,7 +71,7 @@
|
|||
"@fluid-tools/build-cli": "^0.6.0-109663",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-tools": "^0.2.3074",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/mocha": "^9.1.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/bubblebench-ot",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Bubblemark inspired DDS benchmark",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -43,20 +43,20 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/bubblebench-common": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/sharejs-json1": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/bubblebench-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/sharejs-json1": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"ot-json1": "^1.0.1",
|
||||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/test-tools": "^0.2.3074",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-example/bubblebench-sharedtree",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"private": true,
|
||||
"description": "Bubblemark inspired DDS benchmark",
|
||||
"homepage": "https://fluidframework.com",
|
||||
|
@ -43,19 +43,19 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluid-example/bubblebench-common": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-experimental/tree": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-example/bubblebench-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-experimental/tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/test-tools": "^0.2.3074",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/data-objects",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "A collection of ready to use Fluid Data Objects",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -32,12 +32,12 @@
|
|||
"tsc": "tsc"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0"
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/build-cli": "^0.6.0-109663",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/get-container",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Tool for getting a container for testing app scenarios",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -31,17 +31,17 @@
|
|||
"tsc": "tsc"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/local-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/driver-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/local-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/protocol-definitions": "^1.1.0",
|
||||
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/server-local-server": "^0.1038.2000",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/server-local-server": "^0.1038.2000-98212",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"jsonwebtoken": "^8.4.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/last-edited",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Tracks the last edited information in the Container.",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -55,20 +55,20 @@
|
|||
"temp-directory": "nyc/.nyc_output"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/protocol-definitions": "^1.1.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/shared-summary-block": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0"
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/shared-summary-block": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/build-cli": "^0.6.0-109663",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@microsoft/api-extractor": "^7.22.2",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/mocha": "^9.1.1",
|
||||
|
|
|
@ -6,4 +6,4 @@
|
|||
*/
|
||||
|
||||
export const pkgName = "@fluid-experimental/last-edited";
|
||||
export const pkgVersion = "2.0.0-internal.2.2.0";
|
||||
export const pkgVersion = "2.0.0-internal.3.0.0";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluid-experimental/react-inputs",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "React support for the Aqueduct framework.",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -33,11 +33,11 @@
|
|||
"tsc": "tsc"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluidframework/cell": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/cell": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -4,5 +4,5 @@
|
|||
"experimental/**",
|
||||
"packages/**"
|
||||
],
|
||||
"version": "2.0.0-internal.2.2.0"
|
||||
"version": "2.0.0-internal.3.0.0"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluidframework/container-definitions",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Fluid container definitions",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -41,15 +41,15 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/driver-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/protocol-definitions": "^1.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/build-cli": "^0.6.0-109663",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/build-tools": "^0.6.0-109663",
|
||||
"@fluidframework/container-definitions-previous": "npm:@fluidframework/container-definitions@2.0.0-internal.2.1.0",
|
||||
"@fluidframework/container-definitions-previous": "npm:@fluidframework/container-definitions@2.0.0-internal.2.1.1",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@microsoft/api-extractor": "^7.22.2",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
|
@ -62,9 +62,9 @@
|
|||
"typescript": "~4.5.5"
|
||||
},
|
||||
"typeValidation": {
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"baselineRange": ">=2.0.0-internal.2.1.0 <2.0.0-internal.2.2.0",
|
||||
"baselineVersion": "2.0.0-internal.2.1.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"baselineRange": ">=2.0.0-internal.2.0.0 <2.0.0-internal.3.0.0",
|
||||
"baselineVersion": "2.0.0-internal.2.1.1",
|
||||
"broken": {
|
||||
"InterfaceDeclaration_IBatchMessage": {
|
||||
"backCompat": false
|
||||
|
|
|
@ -203,5 +203,5 @@ export interface IRuntimeFactory extends IProvideRuntimeFactory {
|
|||
* @param context - container context to be supplied to the runtime
|
||||
* @param existing - whether to instantiate for the first time or from an existing context
|
||||
*/
|
||||
instantiateRuntime(context: IContainerContext, existing?: boolean): Promise<IRuntime>;
|
||||
instantiateRuntime(context: IContainerContext, existing: boolean): Promise<IRuntime>;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluidframework/core-interfaces",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Fluid object interfaces",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -42,7 +42,7 @@
|
|||
"@fluid-tools/build-cli": "^0.6.0-109663",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/build-tools": "^0.6.0-109663",
|
||||
"@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.0.0-internal.2.1.0",
|
||||
"@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.0.0-internal.2.1.1",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@microsoft/api-extractor": "^7.22.2",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
|
@ -55,9 +55,9 @@
|
|||
"typescript": "~4.5.5"
|
||||
},
|
||||
"typeValidation": {
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"baselineRange": ">=2.0.0-internal.2.1.0 <2.0.0-internal.2.2.0",
|
||||
"baselineVersion": "2.0.0-internal.2.1.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"baselineRange": ">=2.0.0-internal.2.0.0 <2.0.0-internal.3.0.0",
|
||||
"baselineVersion": "2.0.0-internal.2.1.1",
|
||||
"broken": {}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluidframework/driver-definitions",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Fluid driver definitions",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -40,14 +40,14 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/protocol-definitions": "^1.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/build-cli": "^0.6.0-109663",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/build-tools": "^0.6.0-109663",
|
||||
"@fluidframework/driver-definitions-previous": "npm:@fluidframework/driver-definitions@2.0.0-internal.2.1.0",
|
||||
"@fluidframework/driver-definitions-previous": "npm:@fluidframework/driver-definitions@2.0.0-internal.2.1.1",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@microsoft/api-extractor": "^7.22.2",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
|
@ -59,9 +59,9 @@
|
|||
"typescript": "~4.5.5"
|
||||
},
|
||||
"typeValidation": {
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"baselineRange": ">=2.0.0-internal.2.1.0 <2.0.0-internal.2.2.0",
|
||||
"baselineVersion": "2.0.0-internal.2.1.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"baselineRange": ">=2.0.0-internal.2.0.0 <2.0.0-internal.3.0.0",
|
||||
"baselineVersion": "2.0.0-internal.2.1.1",
|
||||
"broken": {}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluidframework/cell",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Distributed data structure for a single value",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -63,22 +63,22 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/protocol-definitions": "^1.1.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0"
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-tools/build-cli": "^0.6.0-109663",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/build-tools": "^0.6.0-109663",
|
||||
"@fluidframework/cell-previous": "npm:@fluidframework/cell@2.0.0-internal.2.1.0",
|
||||
"@fluidframework/cell-previous": "npm:@fluidframework/cell@2.0.0-internal.2.1.1",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@microsoft/api-extractor": "^7.22.2",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/mocha": "^9.1.1",
|
||||
|
@ -94,9 +94,9 @@
|
|||
"typescript": "~4.5.5"
|
||||
},
|
||||
"typeValidation": {
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"baselineRange": ">=2.0.0-internal.2.1.0 <2.0.0-internal.2.2.0",
|
||||
"baselineVersion": "2.0.0-internal.2.1.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"baselineRange": ">=2.0.0-internal.2.0.0 <2.0.0-internal.3.0.0",
|
||||
"baselineVersion": "2.0.0-internal.2.1.1",
|
||||
"broken": {}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,4 +6,4 @@
|
|||
*/
|
||||
|
||||
export const pkgName = "@fluidframework/cell";
|
||||
export const pkgVersion = "2.0.0-internal.2.2.0";
|
||||
export const pkgVersion = "2.0.0-internal.3.0.0";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluidframework/counter",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Counter DDS",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -63,21 +63,21 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/protocol-definitions": "^1.1.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0"
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-tools/build-cli": "^0.6.0-109663",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/build-tools": "^0.6.0-109663",
|
||||
"@fluidframework/counter-previous": "npm:@fluidframework/counter@2.0.0-internal.2.1.0",
|
||||
"@fluidframework/counter-previous": "npm:@fluidframework/counter@2.0.0-internal.2.1.1",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@microsoft/api-extractor": "^7.22.2",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/mocha": "^9.1.1",
|
||||
|
@ -93,9 +93,9 @@
|
|||
"typescript": "~4.5.5"
|
||||
},
|
||||
"typeValidation": {
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"baselineRange": ">=2.0.0-internal.2.1.0 <2.0.0-internal.2.2.0",
|
||||
"baselineVersion": "2.0.0-internal.2.1.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"baselineRange": ">=2.0.0-internal.2.0.0 <2.0.0-internal.3.0.0",
|
||||
"baselineVersion": "2.0.0-internal.2.1.1",
|
||||
"broken": {}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,4 +6,4 @@
|
|||
*/
|
||||
|
||||
export const pkgName = "@fluidframework/counter";
|
||||
export const pkgVersion = "2.0.0-internal.2.2.0";
|
||||
export const pkgVersion = "2.0.0-internal.3.0.0";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluidframework/ink",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Ink DDS",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -63,12 +63,12 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/protocol-definitions": "^1.1.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"uuid": "^8.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -76,9 +76,9 @@
|
|||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/build-tools": "^0.6.0-109663",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/ink-previous": "npm:@fluidframework/ink@2.0.0-internal.2.1.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/ink-previous": "npm:@fluidframework/ink@2.0.0-internal.2.1.1",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@microsoft/api-extractor": "^7.22.2",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/mocha": "^9.1.1",
|
||||
|
@ -93,9 +93,9 @@
|
|||
"typescript": "~4.5.5"
|
||||
},
|
||||
"typeValidation": {
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"baselineRange": ">=2.0.0-internal.2.1.0 <2.0.0-internal.2.2.0",
|
||||
"baselineVersion": "2.0.0-internal.2.1.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"baselineRange": ">=2.0.0-internal.2.0.0 <2.0.0-internal.3.0.0",
|
||||
"baselineVersion": "2.0.0-internal.2.1.1",
|
||||
"broken": {}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,4 +6,4 @@
|
|||
*/
|
||||
|
||||
export const pkgName = "@fluidframework/ink";
|
||||
export const pkgVersion = "2.0.0-internal.2.2.0";
|
||||
export const pkgVersion = "2.0.0-internal.3.0.0";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluidframework/map",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Distributed map",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -67,26 +67,26 @@
|
|||
"dependencies": {
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/container-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/container-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/driver-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/protocol-definitions": "^1.1.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"path-browserify": "^1.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-tools/benchmark": "^0.45.0",
|
||||
"@fluid-tools/build-cli": "^0.6.0-109663",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/build-tools": "^0.6.0-109663",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/map-previous": "npm:@fluidframework/map@2.0.0-internal.2.1.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/map-previous": "npm:@fluidframework/map@2.0.0-internal.2.1.1",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@microsoft/api-extractor": "^7.22.2",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@types/mocha": "^9.1.1",
|
||||
|
@ -102,9 +102,9 @@
|
|||
"typescript": "~4.5.5"
|
||||
},
|
||||
"typeValidation": {
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"baselineRange": ">=2.0.0-internal.2.1.0 <2.0.0-internal.2.2.0",
|
||||
"baselineVersion": "2.0.0-internal.2.1.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"baselineRange": ">=2.0.0-internal.2.0.0 <2.0.0-internal.3.0.0",
|
||||
"baselineVersion": "2.0.0-internal.2.1.1",
|
||||
"broken": {}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,4 +6,4 @@
|
|||
*/
|
||||
|
||||
export const pkgName = "@fluidframework/map";
|
||||
export const pkgVersion = "2.0.0-internal.2.2.0";
|
||||
export const pkgVersion = "2.0.0-internal.3.0.0";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fluidframework/matrix",
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"description": "Distributed matrix",
|
||||
"homepage": "https://fluidframework.com",
|
||||
"repository": {
|
||||
|
@ -66,28 +66,28 @@
|
|||
"dependencies": {
|
||||
"@fluidframework/common-definitions": "^0.20.1",
|
||||
"@fluidframework/common-utils": "^1.0.0",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/protocol-base": "^0.1038.2000",
|
||||
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/protocol-base": "^0.1038.2000-98212",
|
||||
"@fluidframework/protocol-definitions": "^1.1.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/telemetry-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/telemetry-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@tiny-calc/nano": "0.0.0-alpha.5",
|
||||
"tslib": "^1.10.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluid-tools/benchmark": "^0.45.0",
|
||||
"@fluid-tools/build-cli": "^0.6.0-109663",
|
||||
"@fluidframework/build-common": "^1.1.0",
|
||||
"@fluidframework/build-tools": "^0.6.0-109663",
|
||||
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
||||
"@fluidframework/matrix-previous": "npm:@fluidframework/matrix@2.0.0-internal.2.1.0",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
||||
"@fluidframework/matrix-previous": "npm:@fluidframework/matrix@2.0.0-internal.2.1.1",
|
||||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
|
||||
"@microsoft/api-extractor": "^7.22.2",
|
||||
"@rushstack/eslint-config": "^2.5.1",
|
||||
"@tiny-calc/micro": "0.0.0-alpha.5",
|
||||
|
@ -108,9 +108,9 @@
|
|||
"uuid": "^8.3.1"
|
||||
},
|
||||
"typeValidation": {
|
||||
"version": "2.0.0-internal.2.2.0",
|
||||
"baselineRange": ">=2.0.0-internal.2.1.0 <2.0.0-internal.2.2.0",
|
||||
"baselineVersion": "2.0.0-internal.2.1.0",
|
||||
"version": "2.0.0-internal.3.0.0",
|
||||
"baselineRange": ">=2.0.0-internal.2.0.0 <2.0.0-internal.3.0.0",
|
||||
"baselineVersion": "2.0.0-internal.2.1.1",
|
||||
"broken": {}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,4 +6,4 @@
|
|||
*/
|
||||
|
||||
export const pkgName = "@fluidframework/matrix";
|
||||
export const pkgVersion = "2.0.0-internal.2.2.0";
|
||||
export const pkgVersion = "2.0.0-internal.3.0.0";
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче