vrfi-design-system 1.1.8 → 1.1.9
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 +20 -1
- 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
|
@@ -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';
|
|
@@ -824,7 +825,7 @@ export declare interface ProfileDetailProps {
|
|
|
824
825
|
|
|
825
826
|
export declare function RadioGroup({ name, required, label, options, customOnChange, ...rest }: RadioProps): default_2.JSX.Element;
|
|
826
827
|
|
|
827
|
-
declare interface RadioProps extends RadioProps_2, Pick<RadioGroupProps,
|
|
828
|
+
export declare interface RadioProps extends RadioProps_2, Pick<RadioGroupProps, "options"> {
|
|
828
829
|
name: string;
|
|
829
830
|
label?: string;
|
|
830
831
|
required?: boolean;
|
|
@@ -892,6 +893,24 @@ export declare interface SidebarProps {
|
|
|
892
893
|
|
|
893
894
|
export { Size }
|
|
894
895
|
|
|
896
|
+
export declare const Slider: default_2.FC<SliderProps>;
|
|
897
|
+
|
|
898
|
+
export declare interface SliderProps extends SliderSingleProps {
|
|
899
|
+
labels: string[];
|
|
900
|
+
isVertical?: boolean;
|
|
901
|
+
horizontalMarks?: boolean;
|
|
902
|
+
step?: number | null;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
export declare const SliderWithForm: default_2.FC<SliderWithFormProps>;
|
|
906
|
+
|
|
907
|
+
export declare interface SliderWithFormProps extends SliderSingleProps {
|
|
908
|
+
name: string;
|
|
909
|
+
labels: string[];
|
|
910
|
+
isVertical?: boolean;
|
|
911
|
+
horizontalMarks?: boolean;
|
|
912
|
+
}
|
|
913
|
+
|
|
895
914
|
export { SorterResult }
|
|
896
915
|
|
|
897
916
|
export { SortOrder }
|