@stackflow/react
Advanced tools
Comparing version 1.1.10 to 1.1.11
@@ -6,1 +6,2 @@ export type ActivityComponentType<T extends { | ||
}>; | ||
//# sourceMappingURL=ActivityComponentType.d.ts.map |
@@ -10,1 +10,2 @@ import type { Activity } from "@stackflow/core"; | ||
export {}; | ||
//# sourceMappingURL=ActivityProvider.d.ts.map |
@@ -7,1 +7,2 @@ export * from "./ActivityComponentType"; | ||
export * from "./useActivityParams"; | ||
//# sourceMappingURL=index.d.ts.map |
export declare function makeActivityId(): string; | ||
//# sourceMappingURL=makeActivityId.d.ts.map |
export declare function makeStepId(): string; | ||
//# sourceMappingURL=makeStepId.d.ts.map |
@@ -5,1 +5,2 @@ /** | ||
export declare const useActivity: () => import("@stackflow/core").Activity; | ||
//# sourceMappingURL=useActivity.d.ts.map |
@@ -7,1 +7,2 @@ /** | ||
}>(): T; | ||
//# sourceMappingURL=useActivityParams.d.ts.map |
@@ -9,1 +9,2 @@ import type { ActivityRegisteredEvent } from "@stackflow/core"; | ||
}; | ||
//# sourceMappingURL=BaseActivities.d.ts.map |
@@ -9,1 +9,2 @@ import type { CoreStore, Stack } from "@stackflow/core"; | ||
export declare const CoreProvider: React.FC<CoreProviderProps>; | ||
//# sourceMappingURL=CoreProvider.d.ts.map |
export * from "./CoreProvider"; | ||
export * from "./useCoreActions"; | ||
export * from "./useCoreState"; | ||
//# sourceMappingURL=index.d.ts.map |
export declare const useCoreActions: () => import("@stackflow/core").StackflowActions; | ||
//# sourceMappingURL=useCoreActions.d.ts.map |
export declare const useCoreState: () => import("@stackflow/core").Stack; | ||
//# sourceMappingURL=useCoreState.d.ts.map |
@@ -12,1 +12,2 @@ export * from "./activity/ActivityComponentType"; | ||
export * from "./useStepActions"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -10,1 +10,2 @@ import type { ActivityComponentType } from "./activity"; | ||
export default MainRenderer; | ||
//# sourceMappingURL=MainRenderer.d.ts.map |
@@ -13,1 +13,2 @@ import type { StackflowReactPlugin } from "./StackflowReactPlugin"; | ||
export default PluginRenderer; | ||
//# sourceMappingURL=PluginRenderer.d.ts.map |
export * from "./PluginsProvider"; | ||
export * from "./usePlugins"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -11,1 +11,2 @@ import type React from "react"; | ||
export {}; | ||
//# sourceMappingURL=PluginsProvider.d.ts.map |
export declare function usePlugins(): import("./PluginsProvider").PluginsContextValue; | ||
//# sourceMappingURL=usePlugins.d.ts.map |
export * from "./useDeferredValue"; | ||
export * from "./useSyncExternalStore"; | ||
export * from "./useTransition"; | ||
//# sourceMappingURL=index.d.ts.map |
import React from "react"; | ||
export declare const useDeferredValue: typeof React.useDeferredValue; | ||
//# sourceMappingURL=useDeferredValue.d.ts.map |
import React from "react"; | ||
export declare const useSyncExternalStore: typeof React.useSyncExternalStore; | ||
//# sourceMappingURL=useSyncExternalStore.d.ts.map |
import React from "react"; | ||
export declare const useTransition: typeof React.useTransition; | ||
//# sourceMappingURL=useTransition.d.ts.map |
export * from "./StackProvider"; | ||
export * from "./useStack"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -9,1 +9,2 @@ import type { Stack } from "@stackflow/core"; | ||
export {}; | ||
//# sourceMappingURL=StackProvider.d.ts.map |
@@ -5,1 +5,2 @@ /** | ||
export declare const useStack: () => import("@stackflow/core").Stack; | ||
//# sourceMappingURL=useStack.d.ts.map |
@@ -70,1 +70,2 @@ import type { ActivityRegisteredEvent, StackflowActions } from "@stackflow/core"; | ||
export {}; | ||
//# sourceMappingURL=stackflow.d.ts.map |
@@ -36,1 +36,2 @@ import type { Activity, Stack, StackflowPlugin } from "@stackflow/core"; | ||
} & ReturnType<StackflowPlugin>; | ||
//# sourceMappingURL=StackflowReactPlugin.d.ts.map |
@@ -41,1 +41,2 @@ import type { BaseActivities } from "./BaseActivities"; | ||
export declare function useActions<T extends BaseActivities>(): UseActionsOutputType<T>; | ||
//# sourceMappingURL=useActions.d.ts.map |
export declare const useActiveEffect: (effect: React.EffectCallback) => void; | ||
//# sourceMappingURL=useActiveEffect.d.ts.map |
export declare const useEnterDoneEffect: (effect: React.EffectCallback, deps?: React.DependencyList) => void; | ||
//# sourceMappingURL=useEnterDoneEffect.d.ts.map |
@@ -6,1 +6,2 @@ import type { ActivityStep } from "@stackflow/core"; | ||
export declare function useStep(): ActivityStep | null; | ||
//# sourceMappingURL=useStep.d.ts.map |
@@ -13,1 +13,2 @@ import type { BaseActivities } from "./BaseActivities"; | ||
export declare const useStepActions: UseStepActions; | ||
//# sourceMappingURL=useStepActions.d.ts.map |
@@ -7,1 +7,2 @@ export * from "./isBrowser"; | ||
export * from "./WithRequired"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -6,1 +6,2 @@ /** | ||
export declare function isBrowser(): boolean; | ||
//# sourceMappingURL=isBrowser.d.ts.map |
@@ -6,1 +6,2 @@ /** | ||
export declare function isServer(): boolean; | ||
//# sourceMappingURL=isServer.d.ts.map |
export declare function makeRef<T>(): [() => T | null, (value: T) => void]; | ||
//# sourceMappingURL=makeRef.d.ts.map |
export declare const noop: () => void; | ||
//# sourceMappingURL=noop.d.ts.map |
export declare function useMemoDeep<T>(next: T): T; | ||
//# sourceMappingURL=useMemoDeep.d.ts.map |
export type WithRequired<T, K extends keyof T> = T & { | ||
[P in K]-?: T[P]; | ||
}; | ||
//# sourceMappingURL=WithRequired.d.ts.map |
{ | ||
"name": "@stackflow/react", | ||
"version": "1.1.10", | ||
"version": "1.1.11", | ||
"repository": { | ||
@@ -37,4 +37,4 @@ "type": "git", | ||
"devDependencies": { | ||
"@stackflow/core": "^1.0.12", | ||
"@stackflow/esbuild-config": "^1.0.2", | ||
"@stackflow/core": "^1.0.13", | ||
"@stackflow/esbuild-config": "^1.0.3", | ||
"@types/react": "^18.3.3", | ||
@@ -41,0 +41,0 @@ "esbuild": "^0.23.0", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
175323
123