@mparticle/aquarium 1.29.0-chore-cascader-updates.5 → 1.29.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/aquarium.js +4063 -4049
- package/dist/aquarium.umd.cjs +34 -34
- package/dist/index.d.ts +2 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -84,7 +84,6 @@ 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';
|
|
88
87
|
import { ColProps as IColProps } from 'antd';
|
|
89
88
|
import { IConfigProviderProps } from './other/ConfigProvider/ConfigProvider';
|
|
90
89
|
import type { IconNames } from '../../../../../../../../../src/types/icons';
|
|
@@ -461,10 +460,9 @@ export declare interface ICardProps extends CardProps {
|
|
|
461
460
|
export declare interface ICarouselProps extends CarouselProps {
|
|
462
461
|
}
|
|
463
462
|
|
|
464
|
-
declare interface ICascaderOption
|
|
463
|
+
declare interface ICascaderOption {
|
|
465
464
|
value: string;
|
|
466
|
-
label:
|
|
467
|
-
searchLabel?: string;
|
|
465
|
+
label: string;
|
|
468
466
|
children?: ICascaderOption[];
|
|
469
467
|
disabled?: boolean;
|
|
470
468
|
}
|
|
@@ -672,8 +670,6 @@ export declare interface IQueryItemCascaderProps {
|
|
|
672
670
|
loadData?: (value: string) => Promise<void>;
|
|
673
671
|
value?: Array<number | string>;
|
|
674
672
|
disabled?: boolean;
|
|
675
|
-
placement?: ICascaderProps_2['placement'];
|
|
676
|
-
defaultOpen?: ICascaderProps_2['defaultOpen'];
|
|
677
673
|
}
|
|
678
674
|
|
|
679
675
|
export declare type IQueryItemQualifierOption = DefaultOptionType;
|