@mparticle/aquarium 1.29.0 → 1.30.0-chore-cascader-updates.1
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 +2446 -2440
- package/dist/aquarium.umd.cjs +32 -32
- package/dist/index.d.ts +6 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -84,6 +84,7 @@ import { GroupProps } from 'antd/es/avatar';
|
|
|
84
84
|
import { IActionProps } from '../../../../../../../../../src/components/data-entry/QueryItem/Action';
|
|
85
85
|
import { IAvatarProps as IAvatarProps_2 } from '../../../../../../../../../src/components';
|
|
86
86
|
import { IBaseGlobalNavigationItem } from './navigation/GlobalNavigation/GlobalNavigationItems';
|
|
87
|
+
import { ICascaderProps as ICascaderProps_2 } from '../../../../../../../../../src/components';
|
|
87
88
|
import { ColProps as IColProps } from 'antd';
|
|
88
89
|
import { IConfigProviderProps } from './other/ConfigProvider/ConfigProvider';
|
|
89
90
|
import type { IconNames } from '../../../../../../../../../src/types/icons';
|
|
@@ -460,9 +461,10 @@ export declare interface ICardProps extends CardProps {
|
|
|
460
461
|
export declare interface ICarouselProps extends CarouselProps {
|
|
461
462
|
}
|
|
462
463
|
|
|
463
|
-
declare interface ICascaderOption {
|
|
464
|
+
declare interface ICascaderOption extends DefaultOptionType {
|
|
464
465
|
value: string;
|
|
465
|
-
label:
|
|
466
|
+
label: ReactNode;
|
|
467
|
+
searchLabel?: string;
|
|
466
468
|
children?: ICascaderOption[];
|
|
467
469
|
disabled?: boolean;
|
|
468
470
|
}
|
|
@@ -670,6 +672,8 @@ export declare interface IQueryItemCascaderProps {
|
|
|
670
672
|
loadData?: (value: string) => Promise<void>;
|
|
671
673
|
value?: Array<number | string>;
|
|
672
674
|
disabled?: boolean;
|
|
675
|
+
placement?: ICascaderProps_2['placement'];
|
|
676
|
+
defaultOpen?: ICascaderProps_2['defaultOpen'];
|
|
673
677
|
}
|
|
674
678
|
|
|
675
679
|
export declare type IQueryItemQualifierOption = DefaultOptionType;
|