vrfi-design-system 1.1.47 → 1.1.48

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 CHANGED
@@ -330,14 +330,13 @@ declare interface CheckBoxWithFormWrapperProps {
330
330
  disabled?: boolean;
331
331
  indeterminate?: boolean;
332
332
  group?: boolean;
333
- onCheckboxChange?: (event: string | number | boolean | (string | number)[] | null) => void;
333
+ onCheckboxChange?: (event: string | number | boolean | (string | number)[] | null, unchecked?: string | number) => void;
334
334
  options?: (CheckboxOptionType | string | number)[];
335
335
  name: string;
336
336
  className?: string;
337
337
  singleSelectionMode?: boolean;
338
338
  customOptionDisplay?: boolean;
339
339
  defaultValue?: boolean;
340
- value?: string | number | boolean | (string | number)[] | null;
341
340
  }
342
341
 
343
342
  export { Col }