@gram-ai/elements 1.18.7 → 1.18.8

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,10 @@
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 WithImplicitSessionAuth: Story;
8
+ export declare const WithExplicitSessionAuth: Story;
9
+ export declare const WithExplicitAPIKeyAuth: Story;
10
+ export declare const LanguageModel: Story;
@@ -1,8 +1,6 @@
1
- import { Chat } from '..';
1
+ import { Chat } from '../../../index';
2
2
  import { Meta, StoryFn } from '@storybook/react-vite';
3
3
  declare const meta: Meta<typeof Chat>;
4
4
  export default meta;
5
5
  type Story = StoryFn<typeof Chat>;
6
- export declare const SystemPrompt: Story;
7
6
  export declare const ComponentOverridesStory: Story;
8
- export declare const LanguageModel: Story;