vrfi-design-system 1.1.41 → 1.1.42
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 +2 -1
- package/dist/main.es.js +7201 -7200
- package/dist/main.umd.js +108 -108
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -323,7 +323,7 @@ export declare interface CheckboxSelectFieldProps extends SelectPropsBase {
|
|
|
323
323
|
handleCheckboxChange?: (value: string) => void;
|
|
324
324
|
}
|
|
325
325
|
|
|
326
|
-
export declare const CheckBoxWithFormWrapper: ({ name, onCheckboxChange, group, children, singleSelectionMode, customOptionDisplay, options, defaultValue, ...props }: CheckBoxWithFormWrapperProps) => default_2.JSX.Element;
|
|
326
|
+
export declare const CheckBoxWithFormWrapper: ({ name, onCheckboxChange, group, children, singleSelectionMode, customOptionDisplay, options, defaultValue, value: controlledValue, ...props }: CheckBoxWithFormWrapperProps) => default_2.JSX.Element;
|
|
327
327
|
|
|
328
328
|
declare interface CheckBoxWithFormWrapperProps {
|
|
329
329
|
children?: default_2.ReactNode;
|
|
@@ -337,6 +337,7 @@ declare interface CheckBoxWithFormWrapperProps {
|
|
|
337
337
|
singleSelectionMode?: boolean;
|
|
338
338
|
customOptionDisplay?: boolean;
|
|
339
339
|
defaultValue?: boolean;
|
|
340
|
+
value?: string | number | boolean | (string | number)[] | null;
|
|
340
341
|
}
|
|
341
342
|
|
|
342
343
|
export { Col }
|