0.1.3 #4
@@ -1,14 +1,13 @@
|
|||||||
|
export * from "./input/index.js"
|
||||||
export * from "./ScopeOptions.js"
|
export * from "./ScopeOptions.js"
|
||||||
export * from "./useCallbackPromise.js"
|
export * from "./useCallbackPromise.js"
|
||||||
export * from "./useCallbackSync.js"
|
export * from "./useCallbackSync.js"
|
||||||
export * from "./useContext.js"
|
export * from "./useContext.js"
|
||||||
export * from "./useEffect.js"
|
export * from "./useEffect.js"
|
||||||
export * from "./useFork.js"
|
export * from "./useFork.js"
|
||||||
export * from "./useInput.js"
|
|
||||||
export * from "./useLayoutEffect.js"
|
export * from "./useLayoutEffect.js"
|
||||||
export * from "./useMemo.js"
|
export * from "./useMemo.js"
|
||||||
export * from "./useOnce.js"
|
export * from "./useOnce.js"
|
||||||
export * from "./useOptionalInput.js"
|
|
||||||
export * from "./useRefFromState.js"
|
export * from "./useRefFromState.js"
|
||||||
export * from "./useRefState.js"
|
export * from "./useRefState.js"
|
||||||
export * from "./useScope.js"
|
export * from "./useScope.js"
|
||||||
|
|||||||
2
packages/effect-fc/src/hooks/Hooks/input/index.ts
Normal file
2
packages/effect-fc/src/hooks/Hooks/input/index.ts
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
export * from "./useInput.js"
|
||||||
|
export * from "./useOptionalInput.js"
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
import { type Duration, Effect, Equal, type Equivalence, flow, identity, Option, type ParseResult, Ref, Schema, Stream, SubscriptionRef } from "effect"
|
import { type Duration, Effect, Equal, type Equivalence, flow, identity, Option, type ParseResult, Ref, Schema, Stream, SubscriptionRef } from "effect"
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
import { useFork } from "./useFork.js"
|
import { useFork } from "../useFork.js"
|
||||||
import { useOnce } from "./useOnce.js"
|
import { useOnce } from "../useOnce.js"
|
||||||
import { useRefState } from "./useRefState.js"
|
import { useRefState } from "../useRefState.js"
|
||||||
|
|
||||||
|
|
||||||
export namespace useInput {
|
export namespace useInput {
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
import { type Duration, Effect, Equal, type Equivalence, flow, identity, Option, type ParseResult, Ref, Schema, Stream, SubscriptionRef } from "effect"
|
import { type Duration, Effect, Equal, type Equivalence, flow, identity, Option, type ParseResult, Ref, Schema, Stream, SubscriptionRef } from "effect"
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
import { SetStateAction } from "../../types/index.js"
|
import { SetStateAction } from "../../../types/index.js"
|
||||||
import { useCallbackSync } from "./useCallbackSync.js"
|
import { useCallbackSync } from "../useCallbackSync.js"
|
||||||
import { useFork } from "./useFork.js"
|
import { useFork } from "../useFork.js"
|
||||||
import { useOnce } from "./useOnce.js"
|
import { useOnce } from "../useOnce.js"
|
||||||
import { useRefState } from "./useRefState.js"
|
import { useRefState } from "../useRefState.js"
|
||||||
import { useSubscribeRefs } from "./useSubscribeRefs.js"
|
import { useSubscribeRefs } from "../useSubscribeRefs.js"
|
||||||
|
|
||||||
|
|
||||||
export namespace useOptionalInput {
|
export namespace useOptionalInput {
|
||||||
Reference in New Issue
Block a user