Skip to content

Commit 7eca435

Browse files
committed
fix: editor issues
1 parent 51144f1 commit 7eca435

11 files changed

Lines changed: 1041 additions & 4525 deletions

File tree

.claude/settings.local.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

components/carousel/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import CarouselItem from './carousel-item';
22
import Carousel from './carousel';
33

4-
export { CarouselProps, EasingType } from './carousel';
5-
export { CarouselItemProps } from './carousel-item';
4+
export type { CarouselProps, EasingType } from './carousel';
5+
export type { CarouselItemProps } from './carousel-item';
66

77
Carousel.Item = CarouselItem;
88
export default Carousel;

components/tabs/index.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
import Tabs, { TabsProps } from './tabs';
2-
import TabPanel, { TabPanelProps } from './tab-panel';
1+
import Tabs from './tabs';
2+
import TabPanel from './tab-panel';
33

4-
export { TabsProps, TabPanelProps };
4+
export type { TabsProps } from './tabs';
5+
export type { TabPanelProps } from './tab-panel';
56

67
type ITabs = typeof Tabs & {
78
Panel: typeof TabPanel;

0 commit comments

Comments
 (0)