@epam/statgpt-ui-components 0.7.0-dev.15 → 0.7.0-dev.18

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,8 @@
1
+ import { Meta, StoryObj } from '@storybook/react-vite';
2
+ import { Calendar } from './Calendar';
3
+ declare const meta: Meta<typeof Calendar>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof Calendar>;
6
+ export declare const Interactive: Story;
7
+ export declare const DayResolution: Story;
8
+ export declare const EndDate: Story;
@@ -0,0 +1,9 @@
1
+ import { Meta, StoryObj } from '@storybook/react-vite';
2
+ import { Dropdown } from './Dropdown';
3
+ declare const meta: Meta<typeof Dropdown>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof Dropdown>;
6
+ export declare const Default: Story;
7
+ export declare const WithSelectedOption: Story;
8
+ export declare const WithCustomContent: Story;
9
+ export declare const Disabled: Story;
@@ -0,0 +1,12 @@
1
+ import { Meta, StoryObj } from '@storybook/react-vite';
2
+ import { Input } from './Input';
3
+ declare const meta: Meta<typeof Input>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof Input>;
6
+ export declare const Interactive: Story;
7
+ export declare const Default: Story;
8
+ export declare const WithValue: Story;
9
+ export declare const Disabled: Story;
10
+ export declare const Invalid: Story;
11
+ export declare const Readonly: Story;
12
+ export declare const Password: Story;
@@ -0,0 +1,11 @@
1
+ import { Meta, StoryObj } from '@storybook/react-vite';
2
+ import { InputWithIcon } from './InputWithIcon';
3
+ declare const meta: Meta<typeof InputWithIcon>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof InputWithIcon>;
6
+ export declare const Interactive: Story;
7
+ export declare const WithIconBefore: Story;
8
+ export declare const WithIconAfter: Story;
9
+ export declare const WithBothIcons: Story;
10
+ export declare const Disabled: Story;
11
+ export declare const ChatInputVariant: Story;
@@ -0,0 +1,9 @@
1
+ import { Meta, StoryObj } from '@storybook/react-vite';
2
+ import { Link } from './Link';
3
+ declare const meta: Meta<typeof Link>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof Link>;
6
+ export declare const Default: Story;
7
+ export declare const WithIconAfter: Story;
8
+ export declare const WithIconBefore: Story;
9
+ export declare const WithBothIcons: Story;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/react-vite';
2
+ import { Loader } from './Loader';
3
+ declare const meta: Meta<typeof Loader>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof Loader>;
6
+ export declare const Default: Story;
@@ -0,0 +1,11 @@
1
+ import { Meta, StoryObj } from '@storybook/react-vite';
2
+ import { Radio } from './Radio';
3
+ declare const meta: Meta<typeof Radio>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof Radio>;
6
+ export declare const Interactive: Story;
7
+ export declare const Unchecked: Story;
8
+ export declare const Checked: Story;
9
+ export declare const WithDescription: Story;
10
+ export declare const CheckedWithDescription: Story;
11
+ export declare const WithoutLabel: Story;
@@ -0,0 +1,9 @@
1
+ import { Meta, StoryObj } from '@storybook/react-vite';
2
+ import { RequestLimitMessage } from './RequestLimit';
3
+ declare const meta: Meta<typeof RequestLimitMessage>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof RequestLimitMessage>;
6
+ export declare const Default: Story;
7
+ export declare const WithAdvancedViewButton: Story;
8
+ export declare const DownloadMode: Story;
9
+ export declare const DownloadModeWithQuery: Story;
@@ -0,0 +1,8 @@
1
+ import { Meta, StoryObj } from '@storybook/react-vite';
2
+ import { Tag } from './Tag';
3
+ declare const meta: Meta<typeof Tag>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof Tag>;
6
+ export declare const Default: Story;
7
+ export declare const Disabled: Story;
8
+ export declare const WithTextCallback: Story;
package/package.json CHANGED
@@ -1,21 +1,20 @@
1
1
  {
2
2
  "name": "@epam/statgpt-ui-components",
3
- "version": "0.7.0-dev.15",
3
+ "version": "0.7.0-dev.18",
4
4
  "license": "MIT",
5
5
  "dependencies": {
6
- "react-flatpickr": "^4.0.11",
7
- "classnames": "^2.5.1",
8
- "@epam/statgpt-shared-toolkit": "0.7.0-dev.15",
9
- "@tabler/icons-react": "^3.34.1",
10
- "@floating-ui/react": "^0.27.14",
11
- "tailwind-merge": "^3.4.0",
6
+ "@epam/statgpt-shared-toolkit": "0.7.0-dev.18"
7
+ },
8
+ "peerDependencies": {
12
9
  "@dnd-kit/core": "^6.3.1",
13
10
  "@dnd-kit/sortable": "^10.0.0",
14
11
  "@dnd-kit/utilities": "^3.2.2",
15
- "@storybook/react-vite": "^10.4.1"
16
- },
17
- "peerDependencies": {
18
- "react": "^19.2.1"
12
+ "@floating-ui/react": "^0.27.14",
13
+ "@tabler/icons-react": "^3.34.1",
14
+ "classnames": "^2.5.1",
15
+ "react": "^19.2.1",
16
+ "react-flatpickr": "^4.0.11",
17
+ "tailwind-merge": "^3.4.0"
19
18
  },
20
19
  "exports": {
21
20
  ".": {