dt-shared-front 2.2.47 → 2.2.49

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,6 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Checkbox } from './checkbox';
3
+ declare const meta: Meta<typeof Checkbox>;
4
+ export default meta;
5
+ declare type Story = StoryObj<typeof Checkbox>;
6
+ export declare const CheckboxAllTemplate: Story;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { DatePicker } from './date-picker';
3
+ declare const meta: Meta<typeof DatePicker>;
4
+ export default meta;
5
+ declare type Story = StoryObj<typeof DatePicker>;
6
+ export declare const Default: Story;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Radio } from './radio';
3
+ declare const meta: Meta<typeof Radio>;
4
+ export declare enum EPassengerGender {
5
+ MALE = "MALE",
6
+ FEMALE = "FEMALE"
7
+ }
8
+ export declare enum EPassengerGenderName {
9
+ MALE = "\u041C\u0443\u0436\u0441\u043A\u043E\u0439",
10
+ FEMALE = "\u0416\u0435\u043D\u0441\u043A\u0438\u0439"
11
+ }
12
+ export default meta;
13
+ declare type Story = StoryObj<typeof Radio>;
14
+ export declare const Default: Story;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { RangePicker } from './range-picker';
3
+ declare const meta: Meta<typeof RangePicker>;
4
+ export default meta;
5
+ declare type Story = StoryObj<typeof RangePicker>;
6
+ export declare const Default: Story;
@@ -30,5 +30,5 @@ declare type ISelectProps<T> = Omit<SelectProps, 'options' | 'onChange'> & {
30
30
  isMobileModal?: boolean;
31
31
  modalTitle?: string;
32
32
  };
33
- export declare function Select<T = any>({ debounceTimeout, onServerSearch, onServerSearchGroup, onRenderOption, valueKey, labelKey, labelPlaceholder, labels, popupClassName, suffixIcon, stacked, error, isMobileModal, modalTitle, ...props }: ISelectProps<T>): React.JSX.Element;
33
+ export declare function Select<T = any>({ debounceTimeout, onServerSearch, onServerSearchGroup, onRenderOption, valueKey, labelKey, labelPlaceholder, labels, popupClassName, suffixIcon, stacked, error, isMobileModal, modalTitle, disabled, ...props }: ISelectProps<T>): React.JSX.Element;
34
34
  export {};
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { StackedInput } from './stacked-input';
3
+ declare const meta: Meta<typeof StackedInput>;
4
+ export default meta;
5
+ declare type Story = StoryObj<typeof StackedInput>;
6
+ export declare const Default: Story;
@@ -0,0 +1,5 @@
1
+ import { Meta } from '@storybook/react';
2
+ import { Steps } from './steps';
3
+ declare const meta: Meta<typeof Steps>;
4
+ export default meta;
5
+ export declare const WithoutLinks: any;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { TagBox } from './tag-box';
3
+ declare const meta: Meta<typeof TagBox>;
4
+ export declare enum EPassengerGender {
5
+ MALE = "MALE",
6
+ FEMALE = "FEMALE"
7
+ }
8
+ export declare enum EPassengerGenderName {
9
+ MALE = "\u041C\u0443\u0436\u0441\u043A\u043E\u0439",
10
+ FEMALE = "\u0416\u0435\u043D\u0441\u043A\u0438\u0439"
11
+ }
12
+ export default meta;
13
+ declare type Story = StoryObj<typeof TagBox>;
14
+ export declare const Default: Story;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { TextArea } from './text-area';
3
+ declare const meta: Meta<typeof TextArea>;
4
+ export default meta;
5
+ declare type Story = StoryObj<typeof TextArea>;
6
+ export declare const Default: Story;