vrfi-design-system 1.0.82 → 1.0.83
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 +10 -1
- package/dist/main.es.js +8974 -8838
- package/dist/main.umd.js +103 -103
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -107,6 +107,7 @@ import { TableType } from '../../enums/tableType.enum';
|
|
|
107
107
|
import { TableType as TableType_2 } from '../../../enums/tableType.enum';
|
|
108
108
|
import { TabsProps as TabsProps_2 } from 'antd';
|
|
109
109
|
import { TextAreaProps as TextAreaProps_2 } from 'antd/es/input';
|
|
110
|
+
import { TimePickerProps } from 'antd';
|
|
110
111
|
import { TitleHeaderStatus } from '../../enums/titleHeaderStatus.enum';
|
|
111
112
|
import { TitleHeaderStatus as TitleHeaderStatus_2 } from '../../../enums/titleHeaderStatus.enum';
|
|
112
113
|
import { TooltipProps } from 'antd/es/tooltip';
|
|
@@ -741,7 +742,7 @@ export declare interface SearchComponentProps {
|
|
|
741
742
|
|
|
742
743
|
export declare const SearchField: FC<SearchComponentProps>;
|
|
743
744
|
|
|
744
|
-
export declare const Select: ({ name, label, required, customOnChange, options, size, type, customInput, className, ...props }: SelectPropsBase) => default_2.JSX.Element;
|
|
745
|
+
export declare const Select: ({ name, label, required, customOnChange, options, size, type, customInput, className, selectedOptions, handleCheckboxChange, ...props }: SelectPropsBase) => default_2.JSX.Element;
|
|
745
746
|
|
|
746
747
|
declare interface SelectPropsBase extends SelectProps {
|
|
747
748
|
name: string;
|
|
@@ -751,6 +752,8 @@ declare interface SelectPropsBase extends SelectProps {
|
|
|
751
752
|
type?: SelectType_2;
|
|
752
753
|
customInput?: boolean;
|
|
753
754
|
customOnChange?: (event: default_2.ChangeEvent<HTMLInputElement> | string | number, field: ControllerRenderProps<FieldValues, string>) => void;
|
|
755
|
+
selectedOptions?: (string | number)[];
|
|
756
|
+
handleCheckboxChange?: (value: string) => void;
|
|
754
757
|
}
|
|
755
758
|
|
|
756
759
|
export { SelectType }
|
|
@@ -875,8 +878,14 @@ export declare const TextAreaWithController: ({ label, type, placeholder, requir
|
|
|
875
878
|
|
|
876
879
|
export declare type TextAreaWithControllerProps = CustomInputProps & TextAreaProps_2;
|
|
877
880
|
|
|
881
|
+
declare type TimePickerComponentProps = CustomInputProps & Omit<TimePickerProps, "ref"> & {
|
|
882
|
+
format?: string;
|
|
883
|
+
};
|
|
884
|
+
|
|
878
885
|
export declare const Timer: (props: TimerProps) => default_2.JSX.Element;
|
|
879
886
|
|
|
887
|
+
export declare const TImerPicker: default_2.FC<TimePickerComponentProps>;
|
|
888
|
+
|
|
880
889
|
export declare interface TimerProps {
|
|
881
890
|
hours: number;
|
|
882
891
|
minutes: number;
|