@dxos/react-hooks 0.9.1-main.c7dcc2e112 → 0.9.1-staging.ee54ba693a

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/react-hooks",
3
- "version": "0.9.1-main.c7dcc2e112",
3
+ "version": "0.9.1-staging.ee54ba693a",
4
4
  "description": "React hooks supporting DXOS React primitives.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -32,19 +32,19 @@
32
32
  "alea": "^1.0.1",
33
33
  "lodash.defaultsdeep": "^4.6.1",
34
34
  "mini-virtual-list": "^0.3.2",
35
- "@dxos/async": "0.9.1-main.c7dcc2e112",
36
- "@dxos/log": "0.9.1-main.c7dcc2e112"
35
+ "@dxos/async": "0.9.1-staging.ee54ba693a",
36
+ "@dxos/log": "0.9.1-staging.ee54ba693a"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/lodash.defaultsdeep": "^4.6.6",
40
- "@types/react": "~19.2.7",
40
+ "@types/react": "~19.2.17",
41
41
  "@types/react-dom": "~19.2.3",
42
- "react": "~19.2.3",
43
- "react-dom": "~19.2.3"
42
+ "react": "~19.2.7",
43
+ "react-dom": "~19.2.7"
44
44
  },
45
45
  "peerDependencies": {
46
- "react": "~19.2.3",
47
- "react-dom": "~19.2.3"
46
+ "react": "~19.2.7",
47
+ "react-dom": "~19.2.7"
48
48
  },
49
49
  "publishConfig": {
50
50
  "access": "public"
package/src/index.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  //
4
4
 
5
5
  export { useComposedRefs } from '@radix-ui/react-compose-refs';
6
- export { useSize, useScroller } from 'mini-virtual-list';
6
+ export { useScroller, useSize } from 'mini-virtual-list';
7
7
 
8
8
  export * from './useAsyncEffect';
9
9
  export * from './useAtomState';
@@ -8,10 +8,10 @@ import { useEffect, useState } from 'react';
8
8
 
9
9
  // TODO(thure): This should be derived from the same source of truth as the Tailwind theme config.
10
10
  const breakpointMediaQueries: Record<string, string> = {
11
- sm: '(min-width: 640px)',
12
- md: '(min-width: 768px)',
13
- lg: '(min-width: 1024px)',
14
- xl: '(min-width: 1280px)',
11
+ 'sm': '(min-width: 640px)',
12
+ 'md': '(min-width: 768px)',
13
+ 'lg': '(min-width: 1024px)',
14
+ 'xl': '(min-width: 1280px)',
15
15
  '2xl': '(min-width: 1536px)',
16
16
  };
17
17