@validationcloud/fractal-ui 1.13.0 → 1.14.1

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.
@@ -1 +1 @@
1
- export declare const iconIds: readonly ["arrow-narrow", "arrow", "banknote", "billing", "bracket", "check", "chevron-vertical", "chevron", "circle-fill", "circle-stroke", "clock", "close", "cog", "collapse", "copy", "documents", "enter", "exclamation", "faucet", "fire", "filter", "help-center", "home", "info", "intercom", "link", "more", "minus", "node", "patch", "plus", "processing", "radio-empty", "radio-full", "resize", "search", "step-indicator", "subgraphs", "sync-problem", "thumb", "wallet", "wallet-connected", "wallet-disconnected", "wrench"];
1
+ export declare const iconIds: readonly ["arrow-narrow", "arrow", "banknote", "billing", "bracket", "check", "chevron-vertical", "chevron", "circle-fill", "circle-stroke", "clock", "close", "cog", "collapse", "copy", "documents", "enter", "exclamation", "faucet", "fire", "filter", "help-center", "home", "info", "intercom", "link", "menu", "more", "minus", "node", "patch", "plus", "processing", "radio-empty", "radio-full", "resize", "search", "step-indicator", "subgraphs", "sync-problem", "thumb", "wallet", "wallet-connected", "wallet-disconnected", "wrench"];
@@ -1,20 +1,20 @@
1
- import { ScrollArea } from 'radix-ui';
1
+ import { ScrollArea as RadixScrollArea } from 'radix-ui';
2
2
  import { default as React } from 'react';
3
- type ScrollAreaRootProps = {} & React.ComponentPropsWithoutRef<typeof ScrollArea.Root>;
3
+ type ScrollAreaRootProps = {} & React.ComponentPropsWithoutRef<typeof RadixScrollArea.Root>;
4
4
  export declare function Root({ className, ...props }: ScrollAreaRootProps): import("react/jsx-runtime").JSX.Element;
5
- type ScrollAreaViewportProps = {} & React.ComponentPropsWithoutRef<typeof ScrollArea.Viewport>;
5
+ type ScrollAreaViewportProps = {} & React.ComponentPropsWithoutRef<typeof RadixScrollArea.Viewport>;
6
6
  export declare function Viewport({ className, ...props }: ScrollAreaViewportProps): import("react/jsx-runtime").JSX.Element;
7
- type ScrollAreaScrollbarProps = {} & React.ComponentPropsWithoutRef<typeof ScrollArea.Scrollbar>;
7
+ type ScrollAreaScrollbarProps = {} & React.ComponentPropsWithoutRef<typeof RadixScrollArea.Scrollbar>;
8
8
  export declare function Scrollbar({ className, ...props }: ScrollAreaScrollbarProps): import("react/jsx-runtime").JSX.Element;
9
- type ScrollAreaThumbProps = {} & React.ComponentPropsWithoutRef<typeof ScrollArea.Thumb>;
9
+ type ScrollAreaThumbProps = {} & React.ComponentPropsWithoutRef<typeof RadixScrollArea.Thumb>;
10
10
  export declare function Thumb({ className, ...props }: ScrollAreaThumbProps): import("react/jsx-runtime").JSX.Element;
11
- type ScrollAreaCornerProps = {} & React.ComponentPropsWithoutRef<typeof ScrollArea.Corner>;
11
+ type ScrollAreaCornerProps = {} & React.ComponentPropsWithoutRef<typeof RadixScrollArea.Corner>;
12
12
  export declare function Corner({ className, ...props }: ScrollAreaCornerProps): import("react/jsx-runtime").JSX.Element;
13
- declare const _default: {
13
+ export declare const ScrollArea: {
14
14
  Root: typeof Root;
15
15
  Viewport: typeof Viewport;
16
16
  Scrollbar: typeof Scrollbar;
17
17
  Thumb: typeof Thumb;
18
18
  Corner: typeof Corner;
19
19
  };
20
- export default _default;
20
+ export {};
@@ -1,5 +1,5 @@
1
1
  import { Meta, StoryObj } from '@storybook/react';
2
- import { default as ScrollArea } from './scroll-area';
2
+ import { ScrollArea } from './scroll-area';
3
3
  declare const meta: Meta<typeof ScrollArea.Root>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof meta>;