vrfi-design-system 1.0.46 → 1.0.47
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 +5 -1
- package/dist/main.es.js +9493 -9474
- package/dist/main.umd.js +122 -122
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -62,10 +62,12 @@ import { RegisterOptions } from 'react-hook-form';
|
|
|
62
62
|
import { default as Row } from 'antd/lib/row';
|
|
63
63
|
import { RowProps } from 'antd/lib/row';
|
|
64
64
|
import { SelectProps } from 'antd';
|
|
65
|
+
import { SelectType } from '../../../../enums/selectType.enum';
|
|
65
66
|
import { SidebarMenuProps } from '../types/SidebarRouteProps';
|
|
66
67
|
import { SidebarMenuProps as SidebarMenuProps_2 } from '../..//types/SidebarRouteProps';
|
|
67
68
|
import { Size } from '../../enums/size.enum';
|
|
68
69
|
import { SizeType } from 'antd/lib/config-provider/SizeContext';
|
|
70
|
+
import { SizeType as SizeType_2 } from 'antd/es/config-provider/SizeContext';
|
|
69
71
|
import { SkeletonProps } from 'antd';
|
|
70
72
|
import { SorterResult } from 'antd/lib/table/interface';
|
|
71
73
|
import { SortOrder } from 'antd/lib/table/interface';
|
|
@@ -548,12 +550,14 @@ export declare interface SearchComponentProps {
|
|
|
548
550
|
|
|
549
551
|
export declare const SearchField: FC<SearchComponentProps>;
|
|
550
552
|
|
|
551
|
-
export declare const Select: ({ name, label, required, customOnChange, options, ...props }: SelectPropsBase) => default_2.JSX.Element;
|
|
553
|
+
export declare const Select: ({ name, label, required, customOnChange, options, size, type, ...props }: SelectPropsBase) => default_2.JSX.Element;
|
|
552
554
|
|
|
553
555
|
declare interface SelectPropsBase extends SelectProps {
|
|
554
556
|
name: string;
|
|
555
557
|
label: string;
|
|
556
558
|
required?: boolean;
|
|
559
|
+
size?: SizeType_2;
|
|
560
|
+
type?: SelectType;
|
|
557
561
|
customOnChange?: (event: default_2.ChangeEvent<HTMLInputElement> | string | number, field: ControllerRenderProps<FieldValues, string>) => void;
|
|
558
562
|
}
|
|
559
563
|
|