@gouvfr-lasuite/ui-kit 0.5.0 → 0.6.0

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
@@ -431,9 +431,14 @@ export declare type DropdownMenuProps = {
431
431
 
432
432
  export declare const Filter: (props: FilterProps) => JSX.Element;
433
433
 
434
+ export declare type FilterOption = Option_2 & {
435
+ showSeparator?: boolean;
436
+ isChecked?: boolean;
437
+ };
438
+
434
439
  export declare type FilterProps = {
435
440
  label: string;
436
- options: Option_2[];
441
+ options: FilterOption[];
437
442
  } & SelectProps;
438
443
 
439
444
  export declare const Footer: () => JSX.Element;