@mparticle/aquarium 1.31.0-chore-cascader-updates.1 → 1.31.0-nav-disabled-interactions-poc.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 +7475 -7381
- package/dist/aquarium.umd.cjs +43 -43
- package/dist/index.d.ts +6 -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';
|
|
@@ -140,6 +139,7 @@ import { MessageType } from 'antd/es/message/interface';
|
|
|
140
139
|
import { ModalFunc } from 'antd/es/modal/confirm';
|
|
141
140
|
import { modalGlobalConfig } from 'antd/es/modal/confirm';
|
|
142
141
|
import { ModalProps } from 'antd';
|
|
142
|
+
import { MouseEventHandler } from 'react';
|
|
143
143
|
import { NamedExoticComponent } from 'react';
|
|
144
144
|
import { NewExperienceReminderHook } from '../hooks/NewExperienceReminder/useNewExperienceReminder';
|
|
145
145
|
import { NewExperienceReminderHook as NewExperienceReminderHook_2 } from '../../../../../../../../../src/components';
|
|
@@ -461,10 +461,9 @@ export declare interface ICardProps extends CardProps {
|
|
|
461
461
|
export declare interface ICarouselProps extends CarouselProps {
|
|
462
462
|
}
|
|
463
463
|
|
|
464
|
-
declare interface ICascaderOption
|
|
464
|
+
declare interface ICascaderOption {
|
|
465
465
|
value: string;
|
|
466
|
-
label:
|
|
467
|
-
searchLabel?: string;
|
|
466
|
+
label: string;
|
|
468
467
|
children?: ICascaderOption[];
|
|
469
468
|
disabled?: boolean;
|
|
470
469
|
}
|
|
@@ -539,12 +538,15 @@ export declare interface IGlobalNavigationProps {
|
|
|
539
538
|
onClick: () => void;
|
|
540
539
|
withoutContainer?: boolean;
|
|
541
540
|
};
|
|
541
|
+
disableInteractions?: boolean;
|
|
542
|
+
onNavigationItemHover?: (item: IGlobalNavigationItem_2) => void;
|
|
542
543
|
suiteSelectorOptions?: ISuiteSelectorOptions;
|
|
543
544
|
/**
|
|
544
545
|
* @deprecated This variant is a temporary fix for new component.
|
|
545
546
|
* This will be removed once all the apps updated.
|
|
546
547
|
*/
|
|
547
548
|
minimapOptions?: ISuiteSelectorOptions;
|
|
549
|
+
tempGlobalOnClick?: MouseEventHandler<HTMLDivElement>;
|
|
548
550
|
}
|
|
549
551
|
|
|
550
552
|
export declare interface IIconProps {
|
|
@@ -677,8 +679,6 @@ export declare interface IQueryItemCascaderProps {
|
|
|
677
679
|
loadData?: (value: string) => Promise<void>;
|
|
678
680
|
value?: Array<number | string>;
|
|
679
681
|
disabled?: boolean;
|
|
680
|
-
placement?: ICascaderProps_2['placement'];
|
|
681
|
-
defaultOpen?: ICascaderProps_2['defaultOpen'];
|
|
682
682
|
}
|
|
683
683
|
|
|
684
684
|
export declare type IQueryItemQualifierOption = DefaultOptionType;
|