Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/ui/src/alert-dialog/stories/index.story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type { Meta, StoryObj } from '@storybook/react-vite';
import { action } from 'storybook/actions';
import { fn } from 'storybook/test';

import { AlertDialog } from '../..';
import * as AlertDialog from '../index';

const meta: Meta< typeof AlertDialog.Root > = {
title: 'Design System/Components/AlertDialog',
Expand Down
3 changes: 2 additions & 1 deletion packages/ui/src/empty-state/stories/index.story.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type { Meta, StoryObj } from '@storybook/react-vite';
import { search } from '@wordpress/icons';
import { Button, EmptyState } from '../..';
import { Button } from '../../button';
import * as EmptyState from '../index';

const meta: Meta< typeof EmptyState.Root > = {
title: 'Design System/Components/EmptyState',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from '@storybook/react-vite';
import { useId } from '@wordpress/element';
import { Field } from '../../../..';
import * as Field from '../index';
import { DETAILS_EXAMPLE } from '../../../stories/shared';

const meta: Meta< typeof Field.Root > = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Meta, StoryObj } from '@storybook/react-vite';
import { Fieldset } from '../../../..';
import * as Fieldset from '../index';
import { DETAILS_EXAMPLE } from '../../../stories/shared';

const meta: Meta< typeof Fieldset.Root > = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Meta, StoryObj } from '@storybook/react-vite';
import { Select } from '../../../..';
import * as Select from '../index';

const meta: Meta< typeof Select.Root > = {
title: 'Design System/Components/Form/Primitives/Select',
Expand Down
3 changes: 2 additions & 1 deletion packages/ui/src/tabs/stories/index.story.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import type { Meta, StoryObj } from '@storybook/react-vite';
import { useState, cloneElement } from '@wordpress/element';
import { link, more, wordpress } from '@wordpress/icons';
import { Tabs, Tooltip } from '../..';
import * as Tabs from '../index';
import * as Tooltip from '../../tooltip';

const meta: Meta< typeof Tabs.Root > = {
title: 'Design System/Components/Tabs',
Expand Down
3 changes: 2 additions & 1 deletion packages/ui/src/tooltip/stories/index.story.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type { Meta, StoryObj } from '@storybook/react-vite';
import { formatBold, formatItalic } from '@wordpress/icons';
import { Icon, Tooltip } from '../..';
import { Icon } from '../../icon';
import * as Tooltip from '../index';

const meta: Meta< typeof Tooltip.Root > = {
title: 'Design System/Components/Tooltip',
Expand Down
Loading