vrfi-design-system 1.1.31 → 1.1.34

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
@@ -318,7 +318,7 @@ export declare interface CheckboxSelectFieldProps extends SelectPropsBase {
318
318
  handleCheckboxChange?: (value: string) => void;
319
319
  }
320
320
 
321
- export declare const CheckBoxWithFormWrapper: ({ name, onCheckboxChange, group, children, singleSelectionMode, customOptionDisplay, options, ...props }: CheckBoxWithFormWrapperProps) => default_2.JSX.Element;
321
+ export declare const CheckBoxWithFormWrapper: ({ name, onCheckboxChange, group, children, singleSelectionMode, customOptionDisplay, options, defaultValue, ...props }: CheckBoxWithFormWrapperProps) => default_2.JSX.Element;
322
322
 
323
323
  declare interface CheckBoxWithFormWrapperProps {
324
324
  children?: default_2.ReactNode;
@@ -331,6 +331,7 @@ declare interface CheckBoxWithFormWrapperProps {
331
331
  className?: string;
332
332
  singleSelectionMode?: boolean;
333
333
  customOptionDisplay?: boolean;
334
+ defaultValue?: boolean;
334
335
  }
335
336
 
336
337
  export { Col }
@@ -621,6 +622,7 @@ declare interface JobCardProps extends HTMLAttributes<HTMLDivElement> {
621
622
  status?: JobStatus;
622
623
  jobTrackId?: string;
623
624
  title: string;
625
+ showBadgesFooter?: boolean;
624
626
  }
625
627
 
626
628
  export declare const JobTrackingCard: (props: JobTrackingCardProps) => default_2.JSX.Element;