Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
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
1 change: 1 addition & 0 deletions .storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const config = {
'@storybook/addon-links',
'@storybook/addon-docs',
'@storybook/addon-onboarding',
'@storybook/addon-a11y',
],
framework: {
name: '@storybook/nextjs',
Expand Down
2 changes: 1 addition & 1 deletion lib/dnd/stories/Accessibility.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Meta, StoryObj } from '@storybook/react';
import type { Meta, StoryObj } from '@storybook/nextjs';
import { useCallback, useRef, useState } from 'react';
import { DndStoreProvider, useDragSource, useDropTarget } from '~/lib/dnd';
import { useAccessibilityAnnouncements } from '~/lib/dnd/useAccessibilityAnnouncements';
Expand Down
2 changes: 1 addition & 1 deletion lib/dnd/stories/DragAndDrop.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Meta, StoryObj } from '@storybook/react';
import type { Meta, StoryObj } from '@storybook/nextjs';
import { useState } from 'react';
import {
DndStoreProvider,
Expand Down
2 changes: 1 addition & 1 deletion lib/dnd/stories/DragSource.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Meta, StoryObj } from '@storybook/react';
import type { Meta, StoryObj } from '@storybook/nextjs';
import { useState } from 'react';
import { DndStoreProvider, useDragSource, useDropTarget } from '..';

Expand Down
2 changes: 1 addition & 1 deletion lib/dnd/stories/DropTarget.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Meta, StoryObj } from '@storybook/react';
import type { Meta, StoryObj } from '@storybook/nextjs';
import { useState } from 'react';
import { DndStoreProvider, useDragSource, useDropTarget } from '..';

Expand Down
Loading
Loading