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