@vchasno/ui-kit 0.1.1 → 0.1.2
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/index.d.ts
CHANGED
|
@@ -211,4 +211,4 @@ interface CheckboxProps extends InputHTMLAttributes<HTMLInputElement>, Partial<L
|
|
|
211
211
|
}
|
|
212
212
|
declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>;
|
|
213
213
|
|
|
214
|
-
export { Alert, type AlertProps, Button, type ButtonProps, Checkbox, type CheckboxProps, DatePicker, type DatePickerProps, FlexBox, type FlexBoxProps, Input, InputMeta, type InputMetaProps, type InputProps, MaskInput, type MaskInputProps, Pagination, type PaginationProps, Paragraph, type ParagraphProps, Select, SelectCreatable, type SelectCreatableProps, type SelectProps, Spinner, type SpinnerProps, Switcher, type SwitcherProps, Tabs, type TabsProps, Text, TextAreaInput, type TextAreaInputProps, TextInput, type TextInputProps, type TextProps, Title, type TitleProps };
|
|
214
|
+
export { Alert, type AlertProps, Button, type ButtonProps, Checkbox, type CheckboxProps, DatePicker, type DatePickerProps, FlexBox, type FlexBoxProps, Input, InputMeta, type InputMetaProps, type InputProps, MaskInput, type MaskInputProps, Pagination, type PaginationProps, Paragraph, type ParagraphProps, Select, SelectCreatable, type SelectCreatableProps, type Option as SelectOption, type SelectProps, Spinner, type SpinnerProps, Switcher, type SwitcherProps, Tabs, type TabsProps, Text, TextAreaInput, type TextAreaInputProps, TextInput, type TextInputProps, type TextProps, Title, type TitleProps };
|
|
@@ -12,6 +12,7 @@ export { default as Pagination } from './Pagination';
|
|
|
12
12
|
export type { PaginationProps } from './Pagination';
|
|
13
13
|
export { default as Select } from './Select/Select';
|
|
14
14
|
export type { SelectProps } from './Select/Select';
|
|
15
|
+
export type { Option as SelectOption } from './Select/types';
|
|
15
16
|
export { default as SelectCreatable } from './Select/SelectCreatable';
|
|
16
17
|
export type { SelectCreatableProps } from './Select/SelectCreatable';
|
|
17
18
|
export { default as TextInput } from './TextInput';
|