File tree Expand file tree Collapse file tree 7 files changed +4
-6
lines changed
Expand file tree Collapse file tree 7 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 11import { store } from "@/lib/store" ;
22import type { FrameworkOptions } from "@/lib/types/state/store" ;
3- import { configureLogging } from "@/lib/utils /configureLogging" ;
3+ import { configureLogging } from "@/lib/actions/helpers /configureLogging" ;
44import { handleHostStoreChange } from "./handleHostStoreChange" ;
55
66export function configureFramework < S extends object = object > (
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import type {
1010import type { ContribPoint } from "@/lib/types/model/extension" ;
1111import type { ContributionState } from "@/lib" ;
1212import { updateArray } from "@/lib/utils/updateArray" ;
13- import { isContainerState } from "@/lib/utils /isContainerState" ;
13+ import { isContainerState } from "@/lib/actions/helpers /isContainerState" ;
1414
1515export function applyStateChangeRequests (
1616 stateChangeRequests : StateChangeRequest [ ] ,
File renamed without changes.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import type { Input } from "@/lib/types/model/channel";
22import type { ContributionState } from "@/lib/types/state/contribution" ;
33import type { ComponentState } from "@/lib/types/state/component" ;
44import { isSubscriptable } from "@/lib/utils/isSubscriptable" ;
5- import { isContainerState } from "@/lib/utils /isContainerState" ;
5+ import { isContainerState } from "@/lib/actions/helpers /isContainerState" ;
66
77export function getInputValues < S extends object = object > (
88 inputs : Input [ ] ,
File renamed without changes.
Original file line number Diff line number Diff line change @@ -20,5 +20,3 @@ export {
2020 useContributionsResult ,
2121 useContributionsRecord ,
2222} from "@/lib/hooks" ;
23- // Utilities
24- export { configureLogging } from "@/lib/utils/configureLogging" ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import type {
66import type { ApiResult } from "@/lib/utils/fetchApiResult" ;
77import type { ContributionState } from "@/lib/types/state/contribution" ;
88import type { ApiOptions } from "@/lib/api" ;
9- import type { LoggingOptions } from "@/lib/utils /configureLogging" ;
9+ import type { LoggingOptions } from "@/lib/actions/helpers /configureLogging" ;
1010import type { StoreApi } from "zustand" ;
1111
1212export interface FrameworkOptions < S extends object = object > {
You can’t perform that action at this time.
0 commit comments