@dxos/react-ui-tabs 0.8.4-main.c85a9c8dae → 0.8.4-main.d05673bc65

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-tabs",
3
- "version": "0.8.4-main.c85a9c8dae",
3
+ "version": "0.8.4-main.d05673bc65",
4
4
  "description": "Components for facilitating a Tabs pattern.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -36,8 +36,8 @@
36
36
  "@radix-ui/react-slot": "1.1.2",
37
37
  "@radix-ui/react-tabs": "1.1.3",
38
38
  "@radix-ui/react-use-controllable-state": "1.1.0",
39
- "@dxos/react-ui-attention": "0.8.4-main.c85a9c8dae",
40
- "@dxos/util": "0.8.4-main.c85a9c8dae"
39
+ "@dxos/react-ui-attention": "0.8.4-main.d05673bc65",
40
+ "@dxos/util": "0.8.4-main.d05673bc65"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/react": "~19.2.7",
@@ -45,16 +45,16 @@
45
45
  "react": "~19.2.3",
46
46
  "react-dom": "~19.2.3",
47
47
  "vite": "^7.1.11",
48
- "@dxos/react-ui": "0.8.4-main.c85a9c8dae",
49
- "@dxos/storybook-utils": "0.8.4-main.c85a9c8dae",
50
- "@dxos/ui-theme": "0.8.4-main.c85a9c8dae",
51
- "@dxos/random": "0.8.4-main.c85a9c8dae"
48
+ "@dxos/random": "0.8.4-main.d05673bc65",
49
+ "@dxos/ui-theme": "0.8.4-main.d05673bc65",
50
+ "@dxos/storybook-utils": "0.8.4-main.d05673bc65",
51
+ "@dxos/react-ui": "0.8.4-main.d05673bc65"
52
52
  },
53
53
  "peerDependencies": {
54
54
  "react": "~19.2.3",
55
55
  "react-dom": "~19.2.3",
56
- "@dxos/react-ui": "0.8.4-main.c85a9c8dae",
57
- "@dxos/ui-theme": "0.8.4-main.c85a9c8dae"
56
+ "@dxos/react-ui": "0.8.4-main.d05673bc65",
57
+ "@dxos/ui-theme": "0.8.4-main.d05673bc65"
58
58
  },
59
59
  "publishConfig": {
60
60
  "access": "public"
package/src/Tabs.tsx CHANGED
@@ -24,7 +24,7 @@ import {
24
24
  useForwardedRef,
25
25
  } from '@dxos/react-ui';
26
26
  import { useAttention } from '@dxos/react-ui-attention';
27
- import { ghostSelectedContainerMd, mx } from '@dxos/ui-theme';
27
+ import { mx } from '@dxos/ui-theme';
28
28
 
29
29
  type TabsActivePart = 'list' | 'panel';
30
30
 
@@ -228,7 +228,7 @@ const TabsTab = ({ value, classNames, children, onClick, ...props }: TabsTabProp
228
228
  onClick={handleClick}
229
229
  classNames={[
230
230
  orientation === 'vertical' && 'block justify-start text-start w-full',
231
- orientation === 'vertical' && ghostSelectedContainerMd,
231
+ orientation === 'vertical' && 'dx-selected',
232
232
  classNames,
233
233
  ]}
234
234
  >
@@ -264,7 +264,7 @@ const TabsIconTab = ({ value, classNames, onClick, ...props }: TabsIconTabProps)
264
264
  onClick={handleClick}
265
265
  classNames={[
266
266
  orientation === 'vertical' && 'justify-start text-start w-full',
267
- orientation === 'vertical' && ghostSelectedContainerMd,
267
+ orientation === 'vertical' && 'dx-selected',
268
268
  classNames,
269
269
  ]}
270
270
  />