@dxos/react-hooks 0.8.4-main.fffef41 → 0.8.4-staging.60fe92afc8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/LICENSE +102 -5
  2. package/README.md +1 -0
  3. package/dist/lib/browser/index.mjs +122 -98
  4. package/dist/lib/browser/index.mjs.map +4 -4
  5. package/dist/lib/browser/meta.json +1 -1
  6. package/dist/lib/node-esm/index.mjs +122 -98
  7. package/dist/lib/node-esm/index.mjs.map +4 -4
  8. package/dist/lib/node-esm/meta.json +1 -1
  9. package/dist/types/src/index.d.ts +3 -2
  10. package/dist/types/src/index.d.ts.map +1 -1
  11. package/dist/types/src/useAsyncEffect.d.ts.map +1 -1
  12. package/dist/types/src/useAsyncState.d.ts.map +1 -1
  13. package/dist/types/src/useAtomState.d.ts +12 -0
  14. package/dist/types/src/useAtomState.d.ts.map +1 -0
  15. package/dist/types/src/useControlledState.d.ts +2 -2
  16. package/dist/types/src/useControlledState.d.ts.map +1 -1
  17. package/dist/types/src/useDebugDeps.d.ts +1 -1
  18. package/dist/types/src/useDebugDeps.d.ts.map +1 -1
  19. package/dist/types/src/useDefaultValue.d.ts.map +1 -1
  20. package/dist/types/src/useDefaults.d.ts.map +1 -1
  21. package/dist/types/src/useDynamicRef.d.ts +1 -1
  22. package/dist/types/src/useDynamicRef.d.ts.map +1 -1
  23. package/dist/types/src/useForwardedRef.d.ts.map +1 -1
  24. package/dist/types/src/useId.d.ts.map +1 -1
  25. package/dist/types/src/useIsFocused.d.ts.map +1 -1
  26. package/dist/types/src/useMediaQuery.d.ts.map +1 -1
  27. package/dist/types/src/useMulticastObservable.d.ts.map +1 -1
  28. package/dist/types/src/useTimeout.d.ts.map +1 -1
  29. package/dist/types/src/useTransitions.d.ts.map +1 -1
  30. package/dist/types/src/useViewportResize.d.ts +1 -1
  31. package/dist/types/src/useViewportResize.d.ts.map +1 -1
  32. package/dist/types/tsconfig.tsbuildinfo +1 -1
  33. package/package.json +18 -16
  34. package/src/index.ts +4 -3
  35. package/src/useAtomState.ts +23 -0
  36. package/src/useControlledState.ts +6 -6
  37. package/src/useDebugDeps.ts +17 -8
  38. package/src/useDynamicRef.ts +4 -5
  39. package/src/useForwardedRef.ts +4 -2
  40. package/src/useId.ts +3 -2
  41. package/src/useIsFocused.ts +1 -1
  42. package/src/useMulticastObservable.test.ts +1 -1
  43. package/src/useViewportResize.ts +36 -11
  44. package/dist/types/src/useSignals.d.ts +0 -10
  45. package/dist/types/src/useSignals.d.ts.map +0 -1
  46. package/src/useSignals.ts +0 -27
package/LICENSE CHANGED
@@ -1,8 +1,105 @@
1
- MIT License
2
- Copyright (c) 2022 DXOS
1
+ # Functional Source License, Version 1.1, ALv2 Future License
3
2
 
4
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
3
+ ## Abbreviation
5
4
 
6
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
5
+ FSL-1.1-Apache-2.0
7
6
 
8
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
7
+ ## Notice
8
+
9
+ Copyright 2026 DXOS
10
+
11
+ ## Terms and Conditions
12
+
13
+ ### Licensor ("We")
14
+
15
+ The party offering the Software under these Terms and Conditions.
16
+
17
+ ### The Software
18
+
19
+ The "Software" is each version of the software that we make available under
20
+ these Terms and Conditions, as indicated by our inclusion of these Terms and
21
+ Conditions with the Software.
22
+
23
+ ### License Grant
24
+
25
+ Subject to your compliance with this License Grant and the Patents,
26
+ Redistribution and Trademark clauses below, we hereby grant you the right to
27
+ use, copy, modify, create derivative works, publicly perform, publicly display
28
+ and redistribute the Software for any Permitted Purpose identified below.
29
+
30
+ ### Permitted Purpose
31
+
32
+ A Permitted Purpose is any purpose other than a Competing Use. A Competing Use
33
+ means making the Software available to others in a commercial product or
34
+ service that:
35
+
36
+ 1. substitutes for the Software;
37
+
38
+ 2. substitutes for any other product or service we offer using the Software
39
+ that exists as of the date we make the Software available; or
40
+
41
+ 3. offers the same or substantially similar functionality as the Software.
42
+
43
+ Permitted Purposes specifically include using the Software:
44
+
45
+ 1. for your internal use and access;
46
+
47
+ 2. for non-commercial education;
48
+
49
+ 3. for non-commercial research; and
50
+
51
+ 4. in connection with professional services that you provide to a licensee
52
+ using the Software in accordance with these Terms and Conditions.
53
+
54
+ ### Patents
55
+
56
+ To the extent your use for a Permitted Purpose would necessarily infringe our
57
+ patents, the license grant above includes a license under our patents. If you
58
+ make a claim against any party that the Software infringes or contributes to
59
+ the infringement of any patent, then your patent license to the Software ends
60
+ immediately.
61
+
62
+ ### Redistribution
63
+
64
+ The Terms and Conditions apply to all copies, modifications and derivatives of
65
+ the Software.
66
+
67
+ If you redistribute any copies, modifications or derivatives of the Software,
68
+ you must include a copy of or a link to these Terms and Conditions and not
69
+ remove any copyright notices provided in or with the Software.
70
+
71
+ ### Disclaimer
72
+
73
+ THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR
74
+ IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF FITNESS FOR A PARTICULAR
75
+ PURPOSE, MERCHANTABILITY, TITLE OR NON-INFRINGEMENT.
76
+
77
+ IN NO EVENT WILL WE HAVE ANY LIABILITY TO YOU ARISING OUT OF OR RELATED TO THE
78
+ SOFTWARE, INCLUDING INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES,
79
+ EVEN IF WE HAVE BEEN INFORMED OF THEIR POSSIBILITY IN ADVANCE.
80
+
81
+ ### Trademarks
82
+
83
+ Except for displaying the License Details and identifying us as the origin of
84
+ the Software, you have no right under these Terms and Conditions to use our
85
+ trademarks, trade names, service marks or product names.
86
+
87
+ ## Grant of Future License
88
+
89
+ We hereby irrevocably grant you an additional license to use the Software under
90
+ the Apache License, Version 2.0 that is effective on the second anniversary of
91
+ the date we make the Software available. On or after that date, you may use the
92
+ Software under the Apache License, Version 2.0, in which case the following
93
+ will apply:
94
+
95
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
96
+ this file except in compliance with the License.
97
+
98
+ You may obtain a copy of the License at
99
+
100
+ http://www.apache.org/licenses/LICENSE-2.0
101
+
102
+ Unless required by applicable law or agreed to in writing, software distributed
103
+ under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
104
+ CONDITIONS OF ANY KIND, either express or implied. See the License for the
105
+ specific language governing permissions and limitations under the License.
package/README.md CHANGED
@@ -3,4 +3,5 @@
3
3
  TypeScript types for DXOS UI and its themes.
4
4
 
5
5
  Ref
6
+
6
7
  - https://github.com/jaredLunde/react-hook
@@ -1,3 +1,7 @@
1
+ // src/index.ts
2
+ import { useComposedRefs } from "@radix-ui/react-compose-refs";
3
+ import { useSize, useScroller } from "mini-virtual-list";
4
+
1
5
  // src/useAsyncEffect.ts
2
6
  import { useEffect } from "react";
3
7
  var useAsyncEffect = (cb, deps) => {
@@ -17,10 +21,28 @@ var useAsyncEffect = (cb, deps) => {
17
21
  }, deps ?? []);
18
22
  };
19
23
 
24
+ // src/useAtomState.ts
25
+ import { Atom, useAtomSet, useAtomValue } from "@effect-atom/atom-react";
26
+ import { useMemo, useState } from "react";
27
+ var useAtomState = (initialValue) => {
28
+ const [atom] = useState(() => Atom.make(initialValue));
29
+ const value = useAtomValue(atom);
30
+ const set = useAtomSet(atom);
31
+ return useMemo(() => ({
32
+ atom,
33
+ value,
34
+ set
35
+ }), [
36
+ atom,
37
+ value,
38
+ set
39
+ ]);
40
+ };
41
+
20
42
  // src/useAsyncState.ts
21
- import { useEffect as useEffect2, useState } from "react";
43
+ import { useEffect as useEffect2, useState as useState2 } from "react";
22
44
  var useAsyncState = (cb, deps = []) => {
23
- const [value, setValue] = useState();
45
+ const [value, setValue] = useState2();
24
46
  useEffect2(() => {
25
47
  let disposed = false;
26
48
  const t = setTimeout(async () => {
@@ -41,14 +63,13 @@ var useAsyncState = (cb, deps = []) => {
41
63
  };
42
64
 
43
65
  // src/useControlledState.ts
44
- import { useCallback as useCallback2, useEffect as useEffect4, useRef as useRef2, useState as useState3 } from "react";
66
+ import { useCallback as useCallback2, useEffect as useEffect4, useRef as useRef2, useState as useState4 } from "react";
45
67
 
46
68
  // src/useDynamicRef.ts
47
- import { useCallback } from "@preact-signals/safe-react/react";
48
- import { useEffect as useEffect3, useRef, useState as useState2 } from "react";
49
- var useStateWithRef = (valueParam) => {
50
- const [value, setValue] = useState2(valueParam);
51
- const valueRef = useRef(valueParam);
69
+ import { useCallback, useEffect as useEffect3, useRef, useState as useState3 } from "react";
70
+ var useStateWithRef = (valueProp) => {
71
+ const [value, setValue] = useState3(valueProp);
72
+ const valueRef = useRef(valueProp);
52
73
  const setter = useCallback((value2) => {
53
74
  if (typeof value2 === "function") {
54
75
  setValue((current) => {
@@ -77,15 +98,15 @@ var useDynamicRef = (value) => {
77
98
  };
78
99
 
79
100
  // src/useControlledState.ts
80
- var useControlledState = (valueParam, onChange) => {
81
- const [value, setControlledValue] = useState3(valueParam);
101
+ var useControlledState = (valueProp, onChange) => {
102
+ const [value, setControlledValue] = useState4(valueProp);
82
103
  useEffect4(() => {
83
- setControlledValue(valueParam);
104
+ setControlledValue(valueProp);
84
105
  }, [
85
- valueParam
106
+ valueProp
86
107
  ]);
87
108
  const onChangeRef = useRef2(onChange);
88
- const valueRef = useDynamicRef(valueParam);
109
+ const valueRef = useDynamicRef(valueProp);
89
110
  const setValue = useCallback2((nextValue) => {
90
111
  const value2 = isFunction(nextValue) ? nextValue(valueRef.current) : nextValue;
91
112
  setControlledValue(value2);
@@ -105,32 +126,37 @@ function isFunction(value) {
105
126
 
106
127
  // src/useDebugDeps.ts
107
128
  import { useEffect as useEffect5, useRef as useRef3 } from "react";
108
- var useDebugDeps = (deps = [], active = true) => {
129
+ import { log } from "@dxos/log";
130
+ var useDebugDeps = (deps = [], label = "useDebugDeps", active = true) => {
109
131
  const lastDeps = useRef3([]);
110
132
  useEffect5(() => {
111
- console.group("deps changed", {
112
- previous: lastDeps.current.length,
113
- current: deps.length
114
- });
133
+ if (!active) {
134
+ return;
135
+ }
136
+ const diff = {};
115
137
  for (let i = 0; i < Math.max(lastDeps.current.length ?? 0, deps.length ?? 0); i++) {
116
- if (lastDeps.current[i] !== deps[i] && active) {
117
- console.log("changed", {
118
- index: i,
138
+ if (lastDeps.current[i] !== deps[i] || i > lastDeps.current.length) {
139
+ diff[i] = {
119
140
  previous: lastDeps.current[i],
120
141
  current: deps[i]
121
- });
142
+ };
122
143
  }
123
144
  }
124
- console.groupEnd();
145
+ if (Object.keys(diff).length > 0) {
146
+ log.warn(`Updated: ${label} [${lastDeps.current.length}/${deps.length}]`, diff);
147
+ }
125
148
  lastDeps.current = deps;
126
- }, deps);
149
+ }, [
150
+ ...deps,
151
+ active
152
+ ]);
127
153
  };
128
154
 
129
155
  // src/useDefaultValue.ts
130
- import { useEffect as useEffect6, useMemo, useState as useState4 } from "react";
156
+ import { useEffect as useEffect6, useMemo as useMemo2, useState as useState5 } from "react";
131
157
  var useDefaultValue = (reactiveValue, getDefaultValue) => {
132
- const stableDefaultValue = useMemo(getDefaultValue, []);
133
- const [value, setValue] = useState4(reactiveValue ?? stableDefaultValue);
158
+ const stableDefaultValue = useMemo2(getDefaultValue, []);
159
+ const [value, setValue] = useState5(reactiveValue ?? stableDefaultValue);
134
160
  useEffect6(() => {
135
161
  setValue(reactiveValue ?? stableDefaultValue);
136
162
  }, [
@@ -142,18 +168,18 @@ var useDefaultValue = (reactiveValue, getDefaultValue) => {
142
168
 
143
169
  // src/useDefaults.ts
144
170
  import defaultsDeep from "lodash.defaultsdeep";
145
- import { useMemo as useMemo2 } from "react";
171
+ import { useMemo as useMemo3 } from "react";
146
172
  var useDefaults = (value, defaults) => {
147
- return useMemo2(() => defaultsDeep({}, defaults, value), [
173
+ return useMemo3(() => defaultsDeep({}, defaults, value), [
148
174
  value,
149
175
  defaults
150
176
  ]);
151
177
  };
152
178
 
153
179
  // src/useFileDownload.ts
154
- import { useMemo as useMemo3 } from "react";
180
+ import { useMemo as useMemo4 } from "react";
155
181
  var useFileDownload = () => {
156
- return useMemo3(() => (data, filename) => {
182
+ return useMemo4(() => (data, filename) => {
157
183
  const url = typeof data === "string" ? data : URL.createObjectURL(data);
158
184
  const element = document.createElement("a");
159
185
  element.setAttribute("href", url);
@@ -164,7 +190,7 @@ var useFileDownload = () => {
164
190
  };
165
191
 
166
192
  // src/useForwardedRef.ts
167
- import { useEffect as useEffect7, useMemo as useMemo4, useRef as useRef4 } from "react";
193
+ import { useEffect as useEffect7, useMemo as useMemo5, useRef as useRef4 } from "react";
168
194
  var useForwardedRef = (forwardedRef) => {
169
195
  const localRef = useRef4(null);
170
196
  useEffect7(() => {
@@ -189,29 +215,35 @@ var mergeRefs = (refs) => {
189
215
  cleanups.push(typeof cleanup === "function" ? cleanup : () => setRef(ref, null));
190
216
  }
191
217
  return () => {
192
- for (const cleanup of cleanups) cleanup();
218
+ for (const cleanup of cleanups) {
219
+ cleanup();
220
+ }
193
221
  };
194
222
  };
195
223
  };
196
224
  var useMergeRefs = (refs) => {
197
- return useMemo4(() => mergeRefs(refs), refs);
225
+ return useMemo5(() => mergeRefs(refs), [
226
+ ...refs
227
+ ]);
198
228
  };
199
229
 
200
230
  // src/useId.ts
201
231
  import alea from "alea";
202
- import { useMemo as useMemo5 } from "react";
232
+ import { useMemo as useMemo6 } from "react";
203
233
  var Alea = alea;
204
234
  var prng = new Alea("@dxos/react-hooks");
205
235
  var randomString = (n = 4) => prng().toString(16).slice(2, n + 2);
206
- var useId = (namespace, propsId, opts) => useMemo5(() => makeId(namespace, propsId, opts), [
207
- propsId
208
- ]);
236
+ var useId = (namespace, propsId, opts) => {
237
+ return useMemo6(() => makeId(namespace, propsId, opts), [
238
+ propsId
239
+ ]);
240
+ };
209
241
  var makeId = (namespace, propsId, opts) => propsId ?? `${namespace}-${randomString(opts?.n ?? 4)}`;
210
242
 
211
243
  // src/useIsFocused.ts
212
- import { useEffect as useEffect8, useRef as useRef5, useState as useState5 } from "react";
244
+ import { useEffect as useEffect8, useRef as useRef5, useState as useState6 } from "react";
213
245
  var useIsFocused = (inputRef) => {
214
- const [isFocused, setIsFocused] = useState5(void 0);
246
+ const [isFocused, setIsFocused] = useState6(void 0);
215
247
  const isFocusedRef = useRef5(isFocused);
216
248
  isFocusedRef.current = isFocused;
217
249
  useEffect8(() => {
@@ -238,7 +270,7 @@ var useIsFocused = (inputRef) => {
238
270
  };
239
271
 
240
272
  // src/useMediaQuery.ts
241
- import { useEffect as useEffect9, useState as useState6 } from "react";
273
+ import { useEffect as useEffect9, useState as useState7 } from "react";
242
274
  var breakpointMediaQueries = {
243
275
  sm: "(min-width: 640px)",
244
276
  md: "(min-width: 768px)",
@@ -255,7 +287,7 @@ var useMediaQuery = (query, options = {}) => {
255
287
  fallback
256
288
  ];
257
289
  fallbackValues = fallbackValues.filter((v) => v != null);
258
- const [value, setValue] = useState6(() => {
290
+ const [value, setValue] = useState7(() => {
259
291
  return queries.map((query2, index) => ({
260
292
  media: query2,
261
293
  matches: ssr ? !!fallbackValues[index] : document.defaultView?.matchMedia(query2).matches
@@ -303,9 +335,9 @@ var useMediaQuery = (query, options = {}) => {
303
335
  };
304
336
 
305
337
  // src/useMulticastObservable.ts
306
- import { useMemo as useMemo6, useSyncExternalStore } from "react";
338
+ import { useMemo as useMemo7, useSyncExternalStore } from "react";
307
339
  var useMulticastObservable = (observable) => {
308
- const subscribeFn = useMemo6(() => (listener) => {
340
+ const subscribeFn = useMemo7(() => (listener) => {
309
341
  const subscription = observable.subscribe(listener);
310
342
  return () => subscription.unsubscribe();
311
343
  }, [
@@ -315,9 +347,9 @@ var useMulticastObservable = (observable) => {
315
347
  };
316
348
 
317
349
  // src/useRefCallback.ts
318
- import { useState as useState7 } from "react";
350
+ import { useState as useState8 } from "react";
319
351
  var useRefCallback = () => {
320
- const [value, setValue] = useState7(null);
352
+ const [value, setValue] = useState8(null);
321
353
  return {
322
354
  refCallback: (value2) => setValue(value2),
323
355
  value
@@ -325,63 +357,58 @@ var useRefCallback = () => {
325
357
  };
326
358
 
327
359
  // src/useViewportResize.ts
328
- import { useLayoutEffect, useMemo as useMemo7 } from "react";
329
- var useViewportResize = (handler, deps = [], delay = 800) => {
330
- const debouncedHandler = useMemo7(() => {
360
+ import { useLayoutEffect, useMemo as useMemo8 } from "react";
361
+ var useViewportResize = (cb, deps = [], delay = 800) => {
362
+ const { handler: debouncedHandler, cancel } = useMemo8(() => {
331
363
  let timeout;
332
- return (event) => {
333
- clearTimeout(timeout);
334
- timeout = setTimeout(() => {
335
- handler(event);
336
- }, delay);
364
+ return {
365
+ handler: (event) => {
366
+ if (timeout !== void 0) {
367
+ clearTimeout(timeout);
368
+ }
369
+ timeout = setTimeout(() => {
370
+ timeout = void 0;
371
+ if (typeof document === "undefined" || typeof getComputedStyle === "undefined") {
372
+ return;
373
+ }
374
+ cb(event);
375
+ }, delay);
376
+ },
377
+ cancel: () => {
378
+ if (timeout !== void 0) {
379
+ clearTimeout(timeout);
380
+ timeout = void 0;
381
+ }
382
+ }
337
383
  };
338
384
  }, [
339
- handler,
385
+ cb,
340
386
  delay
341
387
  ]);
342
388
  return useLayoutEffect(() => {
343
389
  window.visualViewport?.addEventListener("resize", debouncedHandler);
344
390
  debouncedHandler();
345
- return () => window.visualViewport?.removeEventListener("resize", debouncedHandler);
391
+ return () => {
392
+ window.visualViewport?.removeEventListener("resize", debouncedHandler);
393
+ cancel();
394
+ };
346
395
  }, [
347
396
  debouncedHandler,
397
+ cancel,
348
398
  ...deps
349
399
  ]);
350
400
  };
351
401
 
352
- // src/useSignals.ts
353
- import { useSignals as _useSignals } from "@preact-signals/safe-react/tracking";
354
- import { computed, effect } from "@preact-signals/safe-react";
355
- import { useRef as useRef6 } from "@preact-signals/safe-react/react";
356
- import { useEffect as useEffect10, useMemo as useMemo8 } from "react";
357
- var useSignalsEffect = (cb, deps) => {
358
- const callback = useRef6(cb);
359
- callback.current = cb;
360
- useEffect10(() => {
361
- return effect(() => {
362
- return callback.current();
363
- });
364
- }, deps ?? []);
365
- };
366
- var useSignalsMemo = (cb, deps) => {
367
- var _effect = _useSignals();
368
- try {
369
- return useMemo8(() => computed(cb), deps ?? []).value;
370
- } finally {
371
- _effect.f();
372
- }
373
- };
374
-
375
402
  // src/useTimeout.ts
376
- import { useEffect as useEffect11, useRef as useRef7 } from "react";
403
+ import { useEffect as useEffect10, useRef as useRef6 } from "react";
377
404
  var useTimeout = (callback, delay = 0, deps = []) => {
378
- const callbackRef = useRef7(callback);
379
- useEffect11(() => {
405
+ const callbackRef = useRef6(callback);
406
+ useEffect10(() => {
380
407
  callbackRef.current = callback;
381
408
  }, [
382
409
  callback
383
410
  ]);
384
- useEffect11(() => {
411
+ useEffect10(() => {
385
412
  if (delay == null) {
386
413
  return;
387
414
  }
@@ -393,13 +420,13 @@ var useTimeout = (callback, delay = 0, deps = []) => {
393
420
  ]);
394
421
  };
395
422
  var useInterval = (callback, delay = 0, deps = []) => {
396
- const callbackRef = useRef7(callback);
397
- useEffect11(() => {
423
+ const callbackRef = useRef6(callback);
424
+ useEffect10(() => {
398
425
  callbackRef.current = callback;
399
426
  }, [
400
427
  callback
401
428
  ]);
402
- useEffect11(() => {
429
+ useEffect10(() => {
403
430
  if (delay == null) {
404
431
  return;
405
432
  }
@@ -417,14 +444,14 @@ var useInterval = (callback, delay = 0, deps = []) => {
417
444
  };
418
445
 
419
446
  // src/useTransitions.ts
420
- import { useEffect as useEffect12, useRef as useRef8, useState as useState8 } from "react";
447
+ import { useEffect as useEffect11, useRef as useRef7, useState as useState9 } from "react";
421
448
  var isFunction2 = (functionToCheck) => {
422
449
  return functionToCheck instanceof Function;
423
450
  };
424
451
  var useDidTransition = (currentValue, fromValue, toValue) => {
425
- const [hasTransitioned, setHasTransitioned] = useState8(false);
426
- const previousValue = useRef8(currentValue);
427
- useEffect12(() => {
452
+ const [hasTransitioned, setHasTransitioned] = useState9(false);
453
+ const previousValue = useRef7(currentValue);
454
+ useEffect11(() => {
428
455
  const toValueValid = isFunction2(toValue) ? toValue(currentValue) : toValue === currentValue;
429
456
  const fromValueValid = isFunction2(fromValue) ? fromValue(previousValue.current) : fromValue === previousValue.current;
430
457
  if (fromValueValid && toValueValid && !hasTransitioned) {
@@ -442,15 +469,15 @@ var useDidTransition = (currentValue, fromValue, toValue) => {
442
469
  return hasTransitioned;
443
470
  };
444
471
  var useOnTransition = (currentValue, fromValue, toValue, callback) => {
445
- const dirty = useRef8(false);
472
+ const dirty = useRef7(false);
446
473
  const hasTransitioned = useDidTransition(currentValue, fromValue, toValue);
447
- useEffect12(() => {
474
+ useEffect11(() => {
448
475
  dirty.current = false;
449
476
  }, [
450
477
  currentValue,
451
478
  dirty
452
479
  ]);
453
- useEffect12(() => {
480
+ useEffect11(() => {
454
481
  if (hasTransitioned && !dirty.current) {
455
482
  callback();
456
483
  dirty.current = true;
@@ -461,9 +488,6 @@ var useOnTransition = (currentValue, fromValue, toValue, callback) => {
461
488
  callback
462
489
  ]);
463
490
  };
464
-
465
- // src/index.ts
466
- import { useSize, useScroller } from "mini-virtual-list";
467
491
  export {
468
492
  makeId,
469
493
  mergeRefs,
@@ -471,6 +495,8 @@ export {
471
495
  setRef,
472
496
  useAsyncEffect,
473
497
  useAsyncState,
498
+ useAtomState,
499
+ useComposedRefs,
474
500
  useControlledState,
475
501
  useDebugDeps,
476
502
  useDefaultValue,
@@ -488,8 +514,6 @@ export {
488
514
  useOnTransition,
489
515
  useRefCallback,
490
516
  useScroller,
491
- useSignalsEffect,
492
- useSignalsMemo,
493
517
  useSize,
494
518
  useStateWithRef,
495
519
  useTimeout,