@validationcloud/fractal-ui 1.10.0 → 1.11.0

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.
@@ -0,0 +1,20 @@
1
+ import { ScrollArea } from 'radix-ui';
2
+ import { default as React } from 'react';
3
+ type ScrollAreaRootProps = {} & React.ComponentPropsWithoutRef<typeof ScrollArea.Root>;
4
+ export declare function Root({ className, ...props }: ScrollAreaRootProps): import("react/jsx-runtime").JSX.Element;
5
+ type ScrollAreaViewportProps = {} & React.ComponentPropsWithoutRef<typeof ScrollArea.Viewport>;
6
+ export declare function Viewport({ className, ...props }: ScrollAreaViewportProps): import("react/jsx-runtime").JSX.Element;
7
+ type ScrollAreaScrollbarProps = {} & React.ComponentPropsWithoutRef<typeof ScrollArea.Scrollbar>;
8
+ export declare function Scrollbar({ className, ...props }: ScrollAreaScrollbarProps): import("react/jsx-runtime").JSX.Element;
9
+ type ScrollAreaThumbProps = {} & React.ComponentPropsWithoutRef<typeof ScrollArea.Thumb>;
10
+ export declare function Thumb({ className, ...props }: ScrollAreaThumbProps): import("react/jsx-runtime").JSX.Element;
11
+ type ScrollAreaCornerProps = {} & React.ComponentPropsWithoutRef<typeof ScrollArea.Corner>;
12
+ export declare function Corner({ className, ...props }: ScrollAreaCornerProps): import("react/jsx-runtime").JSX.Element;
13
+ declare const _default: {
14
+ Root: typeof Root;
15
+ Viewport: typeof Viewport;
16
+ Scrollbar: typeof Scrollbar;
17
+ Thumb: typeof Thumb;
18
+ Corner: typeof Corner;
19
+ };
20
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { default as ScrollArea } from './scroll-area';
3
+ declare const meta: Meta<typeof ScrollArea.Root>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const BasicExample: Story;
7
+ export declare const CustomizedColorAndSize: Story;
8
+ export declare const TrackSpaceExample: Story;