@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/cunningham.ts +70 -70
- package/dist/index.cjs +18 -18
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +1354 -1348
- package/dist/index.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
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:
|
|
441
|
+
options: FilterOption[];
|
|
437
442
|
} & SelectProps;
|
|
438
443
|
|
|
439
444
|
export declare const Footer: () => JSX.Element;
|