@gram-ai/elements 1.18.0 → 1.18.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.
- package/dist/components/Chat/stories/ColorScheme.stories.d.ts +8 -0
- package/dist/components/Chat/stories/Composer.stories.d.ts +7 -0
- package/dist/components/Chat/stories/Customization.stories.d.ts +8 -0
- package/dist/components/Chat/stories/Density.stories.d.ts +8 -0
- package/dist/components/Chat/stories/FrontendTools.stories.d.ts +6 -0
- package/dist/components/Chat/stories/Modal.stories.d.ts +11 -0
- package/dist/components/Chat/stories/Model.stories.d.ts +6 -0
- package/dist/components/Chat/stories/Plugins.stories.d.ts +6 -0
- package/dist/components/Chat/stories/Radius.stories.d.ts +8 -0
- package/dist/components/Chat/stories/ToolApproval.stories.d.ts +8 -0
- package/dist/components/Chat/stories/Tools.stories.d.ts +6 -0
- package/dist/components/Chat/stories/Variants.stories.d.ts +8 -0
- package/dist/components/Chat/stories/Welcome.stories.d.ts +6 -0
- package/dist/elements.cjs +9 -9
- package/dist/elements.css +1 -1
- package/dist/elements.js +575 -583
- package/dist/types/index.d.ts +9 -5
- package/package.json +1 -1
- package/dist/components/Chat/index.stories.d.ts +0 -42
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Chat } from '..';
|
|
2
|
+
import { Meta, StoryFn } from '@storybook/react-vite';
|
|
3
|
+
declare const meta: Meta<typeof Chat>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryFn<typeof Chat>;
|
|
6
|
+
export declare const Light: Story;
|
|
7
|
+
export declare const Dark: Story;
|
|
8
|
+
export declare const System: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Chat } from '..';
|
|
2
|
+
import { Meta, StoryFn } from '@storybook/react-vite';
|
|
3
|
+
declare const meta: Meta<typeof Chat>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryFn<typeof Chat>;
|
|
6
|
+
export declare const CustomPlaceholder: Story;
|
|
7
|
+
export declare const AttachmentsDisabled: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Chat } from '..';
|
|
2
|
+
import { Meta, StoryFn } from '@storybook/react-vite';
|
|
3
|
+
declare const meta: Meta<typeof Chat>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryFn<typeof Chat>;
|
|
6
|
+
export declare const SystemPrompt: Story;
|
|
7
|
+
export declare const ComponentOverridesStory: Story;
|
|
8
|
+
export declare const LanguageModel: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Chat } from '..';
|
|
2
|
+
import { Meta, StoryFn } from '@storybook/react-vite';
|
|
3
|
+
declare const meta: Meta<typeof Chat>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryFn<typeof Chat>;
|
|
6
|
+
export declare const Compact: Story;
|
|
7
|
+
export declare const Normal: Story;
|
|
8
|
+
export declare const Spacious: Story;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Chat } from '..';
|
|
2
|
+
import { Meta, StoryFn } from '@storybook/react-vite';
|
|
3
|
+
declare const meta: Meta<typeof Chat>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryFn<typeof Chat>;
|
|
6
|
+
export declare const CustomIcon: Story;
|
|
7
|
+
export declare const Expandable: Story;
|
|
8
|
+
export declare const PositionTopRight: Story;
|
|
9
|
+
export declare const PositionBottomRight: Story;
|
|
10
|
+
export declare const PositionBottomLeft: Story;
|
|
11
|
+
export declare const PositionTopLeft: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Chat } from '..';
|
|
2
|
+
import { Meta, StoryFn } from '@storybook/react-vite';
|
|
3
|
+
declare const meta: Meta<typeof Chat>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryFn<typeof Chat>;
|
|
6
|
+
export declare const Round: Story;
|
|
7
|
+
export declare const Soft: Story;
|
|
8
|
+
export declare const Sharp: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Chat } from '..';
|
|
2
|
+
import { Meta, StoryFn } from '@storybook/react-vite';
|
|
3
|
+
declare const meta: Meta<typeof Chat>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryFn<typeof Chat>;
|
|
6
|
+
export declare const SingleTool: Story;
|
|
7
|
+
export declare const MultipleGroupedTools: Story;
|
|
8
|
+
export declare const FrontendTool: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Chat } from '..';
|
|
2
|
+
import { Meta, StoryFn } from '@storybook/react-vite';
|
|
3
|
+
declare const meta: Meta<typeof Chat>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryFn<typeof Chat>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Standalone: Story;
|
|
8
|
+
export declare const Sidecar: Story;
|