@dxos/react-ui-list 0.8.2-main.5ca3450 → 0.8.2-main.600d381

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-ui-list",
3
- "version": "0.8.2-main.5ca3450",
3
+ "version": "0.8.2-main.600d381",
4
4
  "description": "A list component.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -28,15 +28,15 @@
28
28
  "@preact/signals-core": "^1.6.0",
29
29
  "@radix-ui/react-accordion": "1.2.3",
30
30
  "@radix-ui/react-context": "1.1.1",
31
- "@dxos/debug": "0.8.2-main.5ca3450",
32
- "@dxos/echo-schema": "0.8.2-main.5ca3450",
33
- "@dxos/live-object": "0.8.2-main.5ca3450",
34
- "@dxos/log": "0.8.2-main.5ca3450",
35
- "@dxos/invariant": "0.8.2-main.5ca3450",
36
- "@dxos/react-ui-attention": "0.8.2-main.5ca3450",
37
- "@dxos/react-ui-text-tooltip": "0.8.2-main.5ca3450",
38
- "@dxos/react-ui-types": "0.8.2-main.5ca3450",
39
- "@dxos/util": "0.8.2-main.5ca3450"
31
+ "@dxos/debug": "0.8.2-main.600d381",
32
+ "@dxos/echo-schema": "0.8.2-main.600d381",
33
+ "@dxos/live-object": "0.8.2-main.600d381",
34
+ "@dxos/react-ui-attention": "0.8.2-main.600d381",
35
+ "@dxos/react-ui-text-tooltip": "0.8.2-main.600d381",
36
+ "@dxos/invariant": "0.8.2-main.600d381",
37
+ "@dxos/log": "0.8.2-main.600d381",
38
+ "@dxos/react-ui-types": "0.8.2-main.600d381",
39
+ "@dxos/util": "0.8.2-main.600d381"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@phosphor-icons/react": "^2.1.5",
@@ -46,18 +46,18 @@
46
46
  "react": "~18.2.0",
47
47
  "react-dom": "~18.2.0",
48
48
  "vite": "5.4.7",
49
- "@dxos/random": "0.8.2-main.5ca3450",
50
- "@dxos/react-ui": "0.8.2-main.5ca3450",
51
- "@dxos/react-ui-theme": "0.8.2-main.5ca3450",
52
- "@dxos/storybook-utils": "0.8.2-main.5ca3450"
49
+ "@dxos/random": "0.8.2-main.600d381",
50
+ "@dxos/react-ui": "0.8.2-main.600d381",
51
+ "@dxos/react-ui-theme": "0.8.2-main.600d381",
52
+ "@dxos/storybook-utils": "0.8.2-main.600d381"
53
53
  },
54
54
  "peerDependencies": {
55
55
  "@phosphor-icons/react": "^2.1.5",
56
56
  "effect": "3.13.3",
57
57
  "react": "~18.2.0",
58
58
  "react-dom": "~18.2.0",
59
- "@dxos/react-ui": "0.8.2-main.5ca3450",
60
- "@dxos/react-ui-theme": "0.8.2-main.5ca3450"
59
+ "@dxos/react-ui": "0.8.2-main.600d381",
60
+ "@dxos/react-ui-theme": "0.8.2-main.600d381"
61
61
  },
62
62
  "publishConfig": {
63
63
  "access": "public"
@@ -26,9 +26,9 @@ const DefaultStory = () => {
26
26
  return (
27
27
  <Accordion.Root<TestItem> items={items} classNames='w-[40rem]'>
28
28
  {({ items }) => (
29
- <div className='flex flex-col w-full border-y border-divider divide-y divide-divider'>
29
+ <div className='flex flex-col w-full border-y border-separator divide-y divide-separator'>
30
30
  {items.map((item) => (
31
- <Accordion.Item key={item.id} item={item} classNames='border-x border-divider'>
31
+ <Accordion.Item key={item.id} item={item} classNames='border-x border-separator'>
32
32
  <Accordion.ItemHeader>{item.name}</Accordion.ItemHeader>
33
33
  <Accordion.ItemBody>
34
34
  <p>{item.text}</p>
@@ -27,7 +27,7 @@ const state = new Map<string, Live<{ open: boolean; current: boolean }>>();
27
27
  const meta: Meta<typeof Tree> = {
28
28
  title: 'ui/react-ui-list/Tree',
29
29
  component: Tree,
30
- decorators: [withTheme, withLayout({ tooltips: true })],
30
+ decorators: [withTheme, withLayout()],
31
31
  render: (args) => {
32
32
  useEffect(() => {
33
33
  return monitorForElements({