dt-shared-front 2.2.47 → 2.2.48
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/checkbox/checkbox.stories.d.ts +6 -0
- package/dist/components/date-picker/date-picker.stories.d.ts +6 -0
- package/dist/components/radio/radio.stories.d.ts +14 -0
- package/dist/components/range-picker/range-picker.stories.d.ts +6 -0
- package/dist/components/select/select.d.ts +1 -1
- package/dist/components/stacked-input/stacked-input.stories.d.ts +6 -0
- package/dist/components/steps/steps.stories.d.ts +5 -0
- package/dist/components/tag-box/tag-box.stories.d.ts +14 -0
- package/dist/components/text-area/text-area.stories.d.ts +6 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/main.css +35 -35
- package/dist/main.css.map +1 -1
- package/package.json +1 -1
@@ -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;
|
@@ -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,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;
|