@mparticle/aquarium 1.31.0 → 1.31.1-fix-notification-center-props.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/index.d.ts +11 -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 { IButtonProps as IButtonProps_2 } from '../../../../../../../../../src/components';
|
|
87
88
|
import { ICascaderProps as ICascaderProps_2 } from '../../../../../../../../../src/components';
|
|
88
89
|
import { ColProps as IColProps } from 'antd';
|
|
89
90
|
import { IConfigProviderProps } from './other/ConfigProvider/ConfigProvider';
|
|
@@ -106,11 +107,12 @@ import { INavigationOrg as INavigationOrg_2 } from '../../../../../../../../../s
|
|
|
106
107
|
import { INavigationWorkspace } from './navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelectorItems';
|
|
107
108
|
import { INewExperienceReminderOptions } from '../hooks/NewExperienceReminder/useNewExperienceReminder';
|
|
108
109
|
import { INewExperienceReminderOptions as INewExperienceReminderOptions_2 } from '../../../../../../../../../src/components';
|
|
109
|
-
import { INotificationCenterProps } from '../../../../../../../../../src/components/navigation/GlobalNavigation/NotificationCenter';
|
|
110
|
+
import { INotificationCenterProps as INotificationCenterProps_2 } from '../../../../../../../../../src/components/navigation/GlobalNavigation/NotificationCenter';
|
|
110
111
|
import { Input as Input_2 } from 'antd';
|
|
111
112
|
import { InputNumberProps } from 'antd';
|
|
112
113
|
import { InputProps } from 'antd';
|
|
113
114
|
import { InputRef } from 'antd';
|
|
115
|
+
import { IPopoverProps as IPopoverProps_2 } from '../../../../../../../../../src/components';
|
|
114
116
|
import { IQueryItemQualifierProps } from '../../../../../../../../../src/components/data-entry/QueryItem/Qualifier';
|
|
115
117
|
import { RowProps as IRowProps } from 'antd';
|
|
116
118
|
import { ISuiteSelectorOptions } from '../../../../../../../../../src/components/navigation/GlobalNavigation/GlobalNavigationItems';
|
|
@@ -546,7 +548,7 @@ export declare interface IGlobalNavigationProps {
|
|
|
546
548
|
* This will be removed once all the apps updated.
|
|
547
549
|
*/
|
|
548
550
|
minimapOptions?: ISuiteSelectorOptions;
|
|
549
|
-
notificationCenter?:
|
|
551
|
+
notificationCenter?: INotificationCenterProps_2;
|
|
550
552
|
}
|
|
551
553
|
|
|
552
554
|
export declare interface IIconProps {
|
|
@@ -628,6 +630,11 @@ export { INavigationWorkspace }
|
|
|
628
630
|
|
|
629
631
|
export { INewExperienceReminderOptions }
|
|
630
632
|
|
|
633
|
+
export declare interface INotificationCenterProps extends Omit<IPopoverProps_2, 'key' | 'trigger' | 'placement' | 'arrow' | 'overlayClassName' | 'title'> {
|
|
634
|
+
onClose?: IButtonProps_2['onClick'];
|
|
635
|
+
onPreferencesClick?: IButtonProps_2['onClick'];
|
|
636
|
+
}
|
|
637
|
+
|
|
631
638
|
export declare interface INotificationProps extends NotificationArgsProps {
|
|
632
639
|
children: React.ReactNode;
|
|
633
640
|
}
|
|
@@ -872,6 +879,8 @@ declare const Notification_2: {
|
|
|
872
879
|
};
|
|
873
880
|
export { Notification_2 as Notification }
|
|
874
881
|
|
|
882
|
+
export declare const NotificationCenterZIndex = 9999;
|
|
883
|
+
|
|
875
884
|
export declare const Pagination: (props: IPaginationProps) => JSX_2.Element;
|
|
876
885
|
|
|
877
886
|
export declare const Popconfirm: (props: IPopconfirmProps) => JSX_2.Element;
|