vrfi-design-system 1.1.50 → 1.1.52

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
@@ -323,20 +323,21 @@ 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, preserveSelectionsAcrossPagination, ...props }: CheckBoxWithFormWrapperProps) => default_2.JSX.Element;
327
327
 
328
328
  declare interface CheckBoxWithFormWrapperProps {
329
329
  children?: default_2.ReactNode;
330
330
  disabled?: boolean;
331
331
  indeterminate?: boolean;
332
332
  group?: boolean;
333
- onCheckboxChange?: (event: string | number | boolean | (string | number)[] | null, unchecked?: string | number) => void;
333
+ onCheckboxChange?: (event: string | number | boolean | (string | number)[] | null) => 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
+ preserveSelectionsAcrossPagination?: boolean;
340
341
  value?: string | number | boolean | (string | number)[] | null;
341
342
  }
342
343