@dxos/react-ui 0.3.10-main.a0865c9 → 0.3.10-main.aebf1c0
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 +6 -6
- package/src/components/Avatars/Avatar.stories.tsx +1 -1
- package/src/components/Avatars/AvatarGroup.stories.tsx +1 -1
- package/src/components/Breadcrumb/Breadcrumb.stories.tsx +1 -1
- package/src/components/Buttons/Button.stories.tsx +1 -1
- package/src/components/Buttons/Toggle.stories.tsx +1 -1
- package/src/components/Buttons/ToggleGroup.stories.tsx +1 -1
- package/src/components/Dialogs/AlertDialog.stories.tsx +1 -1
- package/src/components/Dialogs/Dialog.stories.tsx +1 -1
- package/src/components/DropdownMenu/DropdownMenu.stories.tsx +1 -1
- package/src/components/Input/Input.stories.tsx +1 -1
- package/src/components/Link/Link.stories.tsx +1 -1
- package/src/components/Lists/List.stories.tsx +1 -1
- package/src/components/Lists/Tree.stories.tsx +1 -1
- package/src/components/Main/Main.stories.tsx +1 -1
- package/src/components/Message/Message.stories.tsx +1 -1
- package/src/components/Popover/Popover.stories.tsx +1 -1
- package/src/components/ScrollArea/ScrollArea.stories.tsx +1 -1
- package/src/components/Select/Select.stories.tsx +1 -1
- package/src/components/Status/Status.stories.tsx +1 -1
- package/src/components/Tag/Tag.stories.tsx +1 -1
- package/src/components/Toast/Toast.stories.tsx +1 -1
- package/src/components/Toolbar/Toolbar.stories.tsx +1 -1
- package/src/components/Tooltip/Tooltip.stories.tsx +1 -1
- package/src/playground/Controls.stories.tsx +1 -1
- package/src/playground/Surfaces.stories.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxos/react-ui",
|
|
3
|
-
"version": "0.3.10-main.
|
|
3
|
+
"version": "0.3.10-main.aebf1c0",
|
|
4
4
|
"description": "Low-level React components for DXOS, applying a theme to a core group of primitives",
|
|
5
5
|
"homepage": "https://dxos.org",
|
|
6
6
|
"bugs": "https://github.com/dxos/dxos/issues",
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"jdenticon": "^3.2.0",
|
|
38
38
|
"keyborg": "^2.0.0",
|
|
39
39
|
"react-i18next": "^11.18.6",
|
|
40
|
-
"@dxos/react-hooks": "0.3.10-main.
|
|
41
|
-
"@dxos/react-
|
|
42
|
-
"@dxos/react-
|
|
43
|
-
"@dxos/react-
|
|
40
|
+
"@dxos/react-hooks": "0.3.10-main.aebf1c0",
|
|
41
|
+
"@dxos/react-list": "0.3.10-main.aebf1c0",
|
|
42
|
+
"@dxos/react-ui-types": "0.3.10-main.aebf1c0",
|
|
43
|
+
"@dxos/react-input": "0.3.10-main.aebf1c0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@dnd-kit/core": "^6.0.5",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"react-dom": "^18.2.0",
|
|
55
55
|
"vite": "^4.3.9",
|
|
56
56
|
"vite-plugin-turbosnap": "^1.0.2",
|
|
57
|
-
"@dxos/react-ui-theme": "0.3.10-main.
|
|
57
|
+
"@dxos/react-ui-theme": "0.3.10-main.aebf1c0"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"@phosphor-icons/react": "^2.0.5",
|
|
@@ -62,7 +62,7 @@ const StorybookAvatar = (props: PropsWithChildren<StorybookAvatarProps>) => {
|
|
|
62
62
|
};
|
|
63
63
|
|
|
64
64
|
export default {
|
|
65
|
-
title: '
|
|
65
|
+
title: 'react-ui/Avatar',
|
|
66
66
|
component: StorybookAvatar,
|
|
67
67
|
decorators: [withTheme],
|
|
68
68
|
parameters: { chromatic: { disableSnapshot: false } },
|
|
@@ -15,7 +15,7 @@ import { DensityProvider } from '../DensityProvider';
|
|
|
15
15
|
import { ElevationProvider } from '../ElevationProvider';
|
|
16
16
|
|
|
17
17
|
export default {
|
|
18
|
-
title: '
|
|
18
|
+
title: 'react-ui/Button',
|
|
19
19
|
component: Button,
|
|
20
20
|
decorators: [withTheme],
|
|
21
21
|
parameters: { chromatic: { disableSnapshot: false } },
|
|
@@ -21,7 +21,7 @@ const StorybookToggle = (props: StorybookToggleProps) => {
|
|
|
21
21
|
};
|
|
22
22
|
|
|
23
23
|
export default {
|
|
24
|
-
title: '
|
|
24
|
+
title: 'react-ui/Toggle button',
|
|
25
25
|
component: StorybookToggle,
|
|
26
26
|
decorators: [withTheme],
|
|
27
27
|
parameters: { chromatic: { disableSnapshot: false } },
|
|
@@ -29,7 +29,7 @@ const StorybookToggleGroup = (props: StorybookToggleGroupProps) => {
|
|
|
29
29
|
};
|
|
30
30
|
|
|
31
31
|
export default {
|
|
32
|
-
title: '
|
|
32
|
+
title: 'react-ui/Toggle button group',
|
|
33
33
|
component: StorybookToggleGroup,
|
|
34
34
|
decorators: [withTheme],
|
|
35
35
|
parameters: { chromatic: { disableSnapshot: false } },
|
|
@@ -39,7 +39,7 @@ const StorybookDialog = ({ title, openTrigger, description, body, closeTrigger }
|
|
|
39
39
|
};
|
|
40
40
|
|
|
41
41
|
export default {
|
|
42
|
-
title: '
|
|
42
|
+
title: 'react-ui/Dialog',
|
|
43
43
|
component: StorybookDialog,
|
|
44
44
|
decorators: [withTheme],
|
|
45
45
|
parameters: { chromatic: { disableSnapshot: false } },
|
|
@@ -92,7 +92,7 @@ const StorybookDropdownMenu = () => {
|
|
|
92
92
|
};
|
|
93
93
|
|
|
94
94
|
export default {
|
|
95
|
-
title: '
|
|
95
|
+
title: 'react-ui/Dropdown menu',
|
|
96
96
|
component: StorybookDropdownMenu,
|
|
97
97
|
decorators: [withTheme],
|
|
98
98
|
parameters: { chromatic: { disableSnapshot: false } },
|
|
@@ -16,7 +16,7 @@ import { List, ListItem, type ListProps, type ListScopedProps } from './List';
|
|
|
16
16
|
import { withTheme } from '../../testing';
|
|
17
17
|
|
|
18
18
|
export default {
|
|
19
|
-
title: '
|
|
19
|
+
title: 'react-ui/List',
|
|
20
20
|
component: List as FC<ListProps>,
|
|
21
21
|
decorators: [withTheme],
|
|
22
22
|
parameters: { chromatic: { disableSnapshot: false } },
|
|
@@ -28,7 +28,7 @@ const StoryMessage = ({ valence, title, body }: StoryMessageProps) => (
|
|
|
28
28
|
);
|
|
29
29
|
|
|
30
30
|
export default {
|
|
31
|
-
title: '
|
|
31
|
+
title: 'react-ui/Message',
|
|
32
32
|
component: StoryMessage,
|
|
33
33
|
decorators: [withTheme],
|
|
34
34
|
parameters: { chromatic: { disableSnapshot: false } },
|
|
@@ -28,7 +28,7 @@ const StorybookPopover = ({ openTrigger, children }: PropsWithChildren<{ openTri
|
|
|
28
28
|
};
|
|
29
29
|
|
|
30
30
|
export default {
|
|
31
|
-
title: '
|
|
31
|
+
title: 'react-ui/Popover',
|
|
32
32
|
component: StorybookPopover,
|
|
33
33
|
decorators: [withTheme],
|
|
34
34
|
parameters: { chromatic: { disableSnapshot: false } },
|
|
@@ -34,7 +34,7 @@ const StorybookScrollArea = ({ children }: PropsWithChildren<{}>) => {
|
|
|
34
34
|
};
|
|
35
35
|
|
|
36
36
|
export default {
|
|
37
|
-
title: '
|
|
37
|
+
title: 'react-ui/Scroll area',
|
|
38
38
|
component: StorybookScrollArea,
|
|
39
39
|
decorators: [withTheme],
|
|
40
40
|
parameters: { chromatic: { disableSnapshot: false } },
|
|
@@ -59,7 +59,7 @@ const StorybookSelect = ({ items = [] }: PropsWithChildren<{ items: ItemProps[]
|
|
|
59
59
|
};
|
|
60
60
|
|
|
61
61
|
export default {
|
|
62
|
-
title: '
|
|
62
|
+
title: 'react-ui/Select',
|
|
63
63
|
component: createDensityTest(StorybookSelect),
|
|
64
64
|
decorators: [withTheme],
|
|
65
65
|
parameters: { chromatic: { disableSnapshot: false } },
|
|
@@ -70,7 +70,7 @@ const StorybookToolbar = (props: StorybookToolbarProps) => {
|
|
|
70
70
|
};
|
|
71
71
|
|
|
72
72
|
export default {
|
|
73
|
-
title: '
|
|
73
|
+
title: 'react-ui/Toolbar',
|
|
74
74
|
component: StorybookToolbar,
|
|
75
75
|
decorators: [withTheme],
|
|
76
76
|
parameters: { chromatic: { disableSnapshot: false } },
|
|
@@ -29,7 +29,7 @@ const StoryTooltip = ({ content }: StoryTooltipProps) => (
|
|
|
29
29
|
);
|
|
30
30
|
|
|
31
31
|
export default {
|
|
32
|
-
title: '
|
|
32
|
+
title: 'react-ui/Tooltip',
|
|
33
33
|
component: StoryTooltip,
|
|
34
34
|
decorators: [withTheme],
|
|
35
35
|
parameters: { chromatic: { disableSnapshot: false } },
|