From 34ca6509b84f5a165fc25e3fb4f8ae913a7ee499 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Thu, 1 Jun 2023 14:50:04 +0200 Subject: [PATCH] chore: extract tokens Signed-off-by: Gabriel --- packages/technical-features/react-application/index.ts | 6 ++++++ .../cluster-frame-child-component-injection-token.ts | 0 .../root-frame-child-component-injection-token.ts | 0 3 files changed, 6 insertions(+) rename packages/{core/src/renderer/frames => technical-features/react-application/src}/cluster-frame/cluster-frame-child-component-injection-token.ts (100%) rename packages/{core/src/renderer/frames => technical-features/react-application/src}/root-frame/root-frame-child-component-injection-token.ts (100%) diff --git a/packages/technical-features/react-application/index.ts b/packages/technical-features/react-application/index.ts index e3f5236d54..892af3b030 100644 --- a/packages/technical-features/react-application/index.ts +++ b/packages/technical-features/react-application/index.ts @@ -7,4 +7,10 @@ export type { ReactApplicationChildren } from "./src/react-application/react-app export { reactApplicationHigherOrderComponentInjectionToken } from "./src/react-application/react-application-higher-order-component-injection-token"; export type { ReactApplicationHigherOrderComponent } from "./src/react-application/react-application-higher-order-component-injection-token"; +export { clusterFrameChildComponentInjectionToken } from "./src/cluster-frame/cluster-frame-child-component-injection-token"; +export type { ClusterFrameChildComponent } from "./src/cluster-frame/cluster-frame-child-component-injection-token"; + +export { rootFrameChildComponentInjectionToken } from "./src/root-frame/root-frame-child-component-injection-token"; +export type { RootFrameChildComponent } from "./src/root-frame/root-frame-child-component-injection-token"; + export { reactApplicationFeature } from "./src/feature"; diff --git a/packages/core/src/renderer/frames/cluster-frame/cluster-frame-child-component-injection-token.ts b/packages/technical-features/react-application/src/cluster-frame/cluster-frame-child-component-injection-token.ts similarity index 100% rename from packages/core/src/renderer/frames/cluster-frame/cluster-frame-child-component-injection-token.ts rename to packages/technical-features/react-application/src/cluster-frame/cluster-frame-child-component-injection-token.ts diff --git a/packages/core/src/renderer/frames/root-frame/root-frame-child-component-injection-token.ts b/packages/technical-features/react-application/src/root-frame/root-frame-child-component-injection-token.ts similarity index 100% rename from packages/core/src/renderer/frames/root-frame/root-frame-child-component-injection-token.ts rename to packages/technical-features/react-application/src/root-frame/root-frame-child-component-injection-token.ts