vrfi-design-system 1.1.8 → 1.1.10
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 +27 -2
- package/dist/main.es.js +20951 -19716
- package/dist/main.umd.js +160 -148
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ActionType } from '../../enums/trigger';
|
|
2
2
|
import { Align } from '../../enums/align.enum';
|
|
3
|
+
import { RadioProps as AntdRadioProps } from 'antd';
|
|
3
4
|
import { default as AuthBanner } from '../../views/Auth/AuthBanner';
|
|
4
5
|
import { AuthBannerTextType } from '../../views/Auth/AuthBanner/authBanner.constants';
|
|
5
6
|
import { default as AuthForm } from '../../views/Auth/AuthForm';
|
|
@@ -71,7 +72,6 @@ import { ProfileDetailFooterTypes } from '../../enums/profileDetailFooter.enum';
|
|
|
71
72
|
import { PropsWithChildren } from 'react';
|
|
72
73
|
import { RadioChangeEvent } from 'antd';
|
|
73
74
|
import { RadioGroupProps } from 'antd';
|
|
74
|
-
import { RadioProps as RadioProps_2 } from 'antd';
|
|
75
75
|
import { RateProps as RateProps_2 } from 'antd';
|
|
76
76
|
import { ReactElement } from 'react';
|
|
77
77
|
import { ReactNode } from 'react';
|
|
@@ -87,6 +87,7 @@ import { Size } from '../../enums/size.enum';
|
|
|
87
87
|
import { Size as Size_2 } from '../../../enums/size.enum';
|
|
88
88
|
import { SizeType } from 'antd/lib/config-provider/SizeContext';
|
|
89
89
|
import { SizeType as SizeType_2 } from 'antd/es/config-provider/SizeContext';
|
|
90
|
+
import { SliderSingleProps } from 'antd';
|
|
90
91
|
import { SorterResult } from 'antd/lib/table/interface';
|
|
91
92
|
import { SortOrder } from 'antd/lib/table/interface';
|
|
92
93
|
import { SortOrderKeys } from './../../enums/sortOrderKeys.enum';
|
|
@@ -169,6 +170,8 @@ declare interface AgencyJobCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
169
170
|
|
|
170
171
|
export { Align }
|
|
171
172
|
|
|
173
|
+
export { AntdRadioProps }
|
|
174
|
+
|
|
172
175
|
export declare const ApplicationHeader: default_2.FC<ApplicationHeaderProps>;
|
|
173
176
|
|
|
174
177
|
export declare interface ApplicationHeaderProps {
|
|
@@ -822,9 +825,13 @@ export declare interface ProfileDetailProps {
|
|
|
822
825
|
textImage?: boolean;
|
|
823
826
|
}
|
|
824
827
|
|
|
828
|
+
export { RadioChangeEvent }
|
|
829
|
+
|
|
825
830
|
export declare function RadioGroup({ name, required, label, options, customOnChange, ...rest }: RadioProps): default_2.JSX.Element;
|
|
826
831
|
|
|
827
|
-
|
|
832
|
+
export { RadioGroupProps }
|
|
833
|
+
|
|
834
|
+
export declare interface RadioProps extends AntdRadioProps, Pick<RadioGroupProps, "options"> {
|
|
828
835
|
name: string;
|
|
829
836
|
label?: string;
|
|
830
837
|
required?: boolean;
|
|
@@ -892,6 +899,24 @@ export declare interface SidebarProps {
|
|
|
892
899
|
|
|
893
900
|
export { Size }
|
|
894
901
|
|
|
902
|
+
export declare const Slider: default_2.FC<SliderProps>;
|
|
903
|
+
|
|
904
|
+
export declare interface SliderProps extends SliderSingleProps {
|
|
905
|
+
labels: string[];
|
|
906
|
+
isVertical?: boolean;
|
|
907
|
+
horizontalMarks?: boolean;
|
|
908
|
+
step?: number | null;
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
export declare const SliderWithForm: default_2.FC<SliderWithFormProps>;
|
|
912
|
+
|
|
913
|
+
export declare interface SliderWithFormProps extends SliderSingleProps {
|
|
914
|
+
name: string;
|
|
915
|
+
labels: string[];
|
|
916
|
+
isVertical?: boolean;
|
|
917
|
+
horizontalMarks?: boolean;
|
|
918
|
+
}
|
|
919
|
+
|
|
895
920
|
export { SorterResult }
|
|
896
921
|
|
|
897
922
|
export { SortOrder }
|