@validationcloud/fractal-ui 1.22.0 → 1.22.2
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.
- package/dist/components/badge/badge.stories.d.ts +1 -1
- package/dist/components/box/box.stories.d.ts +1 -1
- package/dist/components/button/button.stories.d.ts +1 -1
- package/dist/components/decorated-icon/decorated-icon.stories.d.ts +1 -1
- package/dist/components/icon/icon-showcase.stories.d.ts +1 -1
- package/dist/components/icon/icon.stories.d.ts +1 -1
- package/dist/components/input-button/input-button.stories.d.ts +1 -1
- package/dist/components/page-padding/page-padding.stories.d.ts +1 -1
- package/dist/components/protocol-logo/protocol-logo.stories.d.ts +2 -2
- package/dist/components/scroll-area/scroll-area.stories.d.ts +6 -2
- package/dist/components/skeleton/skeleton.stories.d.ts +1 -1
- package/dist/components/text-input/text-input.stories.d.ts +1 -1
- package/dist/components/tooltip/tooltip.stories.d.ts +2 -2
- package/dist/fractal-ui.js +244 -6073
- package/package.json +28 -31
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StoryObj } from '@storybook/react';
|
|
1
|
+
import { StoryObj } from '@storybook/react-vite';
|
|
2
2
|
import { ProtocolLogo } from './protocol-logo';
|
|
3
3
|
declare const meta: {
|
|
4
4
|
component: typeof ProtocolLogo;
|
|
@@ -7,7 +7,7 @@ declare const meta: {
|
|
|
7
7
|
default: string;
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
|
-
decorators: ((Story: import('
|
|
10
|
+
decorators: ((Story: import('storybook/internal/csf').PartialStoryFn<import('@storybook/react').ReactRenderer, {
|
|
11
11
|
name: string;
|
|
12
12
|
size?: ("xs" | "sm" | "md" | "lg" | "xl") | undefined;
|
|
13
13
|
string?: number | string | undefined | undefined;
|
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { default as React } from 'react';
|
|
2
3
|
import { ScrollArea } from './scroll-area';
|
|
3
|
-
|
|
4
|
+
type StoryArgs = React.ComponentPropsWithoutRef<typeof ScrollArea.Root> & {
|
|
5
|
+
contentLength?: 'short' | 'long';
|
|
6
|
+
};
|
|
7
|
+
declare const meta: Meta<StoryArgs>;
|
|
4
8
|
export default meta;
|
|
5
9
|
type Story = StoryObj<typeof meta>;
|
|
6
10
|
export declare const BasicExample: Story;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StoryObj } from '@storybook/react';
|
|
1
|
+
import { StoryObj } from '@storybook/react-vite';
|
|
2
2
|
import { Tooltip } from './tooltip';
|
|
3
3
|
declare const meta: {
|
|
4
4
|
component: typeof Tooltip;
|
|
@@ -10,7 +10,7 @@ declare const meta: {
|
|
|
10
10
|
args: {
|
|
11
11
|
side: "bottom";
|
|
12
12
|
};
|
|
13
|
-
decorators: ((Story: import('
|
|
13
|
+
decorators: ((Story: import('storybook/internal/csf').PartialStoryFn<import('@storybook/react').ReactRenderer, {
|
|
14
14
|
content: React.ReactNode;
|
|
15
15
|
color?: "bg-neutral-60" | "bg-neutral-80" | "bg-secondary-40" | undefined;
|
|
16
16
|
side?: "bottom" | "left" | "right" | "top" | undefined;
|