@mparticle/aquarium 1.29.0-chore-cascader-updates.1 → 1.29.0-chore-cascader-updates.3
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/aquarium.js +671 -666
- package/dist/aquarium.umd.cjs +27 -27
- package/dist/index.d.ts +4 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -462,8 +462,9 @@ export declare interface ICarouselProps extends CarouselProps {
|
|
|
462
462
|
}
|
|
463
463
|
|
|
464
464
|
declare interface ICascaderOption {
|
|
465
|
-
value: string
|
|
466
|
-
label
|
|
465
|
+
value: string;
|
|
466
|
+
label: ReactNode;
|
|
467
|
+
searchLabel?: string;
|
|
467
468
|
children?: ICascaderOption[];
|
|
468
469
|
disabled?: boolean;
|
|
469
470
|
}
|
|
@@ -672,6 +673,7 @@ export declare interface IQueryItemCascaderProps {
|
|
|
672
673
|
value?: Array<number | string>;
|
|
673
674
|
disabled?: boolean;
|
|
674
675
|
placement?: ICascaderProps_2['placement'];
|
|
676
|
+
defaultOpen?: ICascaderProps_2['defaultOpen'];
|
|
675
677
|
}
|
|
676
678
|
|
|
677
679
|
export declare type IQueryItemQualifierOption = DefaultOptionType;
|