vrfi-design-system 1.0.89 → 1.0.90
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 +3 -4
- package/dist/main.es.js +3984 -3981
- package/dist/main.umd.js +88 -88
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -10,9 +10,7 @@ import { BadgeType } from '../../enums/badgeType.enum';
|
|
|
10
10
|
import { BadgeType as BadgeType_2 } from '../../../enums/badgeType.enum';
|
|
11
11
|
import { ButtonType } from '../../enums/buttonType';
|
|
12
12
|
import { ButtonType as ButtonType_2 } from 'antd/lib/button';
|
|
13
|
-
import { CheckboxChangeEvent } from 'antd/es/checkbox';
|
|
14
13
|
import { CheckboxGroupProps as CheckboxGroupProps_2 } from 'antd/lib/checkbox';
|
|
15
|
-
import { CheckboxGroupProps as CheckboxGroupProps_3 } from 'antd/es/checkbox';
|
|
16
14
|
import { CheckboxOptionType } from 'antd/lib/checkbox/Group';
|
|
17
15
|
import { default as Col } from 'antd/lib/col';
|
|
18
16
|
import { Colors } from '../../enums/colors.enum';
|
|
@@ -257,17 +255,18 @@ export declare interface CheckboxSelectFieldProps extends SelectPropsBase {
|
|
|
257
255
|
handleCheckboxChange?: (value: string) => void;
|
|
258
256
|
}
|
|
259
257
|
|
|
260
|
-
export declare const CheckBoxWithFormWrapper: ({ name, onCheckboxChange, group, children, ...props }: CheckBoxWithFormWrapperProps) => default_2.JSX.Element;
|
|
258
|
+
export declare const CheckBoxWithFormWrapper: ({ name, onCheckboxChange, group, children, singleSelectionMode, ...props }: CheckBoxWithFormWrapperProps) => default_2.JSX.Element;
|
|
261
259
|
|
|
262
260
|
declare interface CheckBoxWithFormWrapperProps {
|
|
263
261
|
children?: default_2.ReactNode;
|
|
264
262
|
disabled?: boolean;
|
|
265
263
|
indeterminate?: boolean;
|
|
266
264
|
group?: boolean;
|
|
267
|
-
onCheckboxChange?: (event:
|
|
265
|
+
onCheckboxChange?: (event: string | number | boolean | (string | number)[] | null) => void;
|
|
268
266
|
options?: (CheckboxOptionType | string | number)[];
|
|
269
267
|
name: string;
|
|
270
268
|
className?: string;
|
|
269
|
+
singleSelectionMode?: boolean;
|
|
271
270
|
}
|
|
272
271
|
|
|
273
272
|
export { Col }
|