@mparticle/aquarium 1.31.0-nav-disabled-interactions-poc.4 → 1.31.0-nav-disabled-interactions-poc.5
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 +5324 -5295
- package/dist/aquarium.umd.cjs +39 -39
- package/dist/index.d.ts +10 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -110,6 +110,7 @@ import { Input as Input_2 } from 'antd';
|
|
|
110
110
|
import { InputNumberProps } from 'antd';
|
|
111
111
|
import { InputProps } from 'antd';
|
|
112
112
|
import { InputRef } from 'antd';
|
|
113
|
+
import { IPopoverProps as IPopoverProps_2 } from '../../../../../../../../../src/components';
|
|
113
114
|
import { IQueryItemQualifierProps } from '../../../../../../../../../src/components/data-entry/QueryItem/Qualifier';
|
|
114
115
|
import { RowProps as IRowProps } from 'antd';
|
|
115
116
|
import { ISuiteSelectorOptions } from '../../../../../../../../../src/components/navigation/GlobalNavigation/GlobalNavigationItems';
|
|
@@ -549,6 +550,10 @@ export declare interface IGlobalNavigationProps {
|
|
|
549
550
|
minimapOptions?: ISuiteSelectorOptions;
|
|
550
551
|
tempGlobalOnClick?: MouseEventHandler<HTMLDivElement>;
|
|
551
552
|
drawerOptions?: IDrawerProps_2;
|
|
553
|
+
notification?: {
|
|
554
|
+
options?: IPopoverProps_2;
|
|
555
|
+
actions?: NotificationActions;
|
|
556
|
+
};
|
|
552
557
|
}
|
|
553
558
|
|
|
554
559
|
export declare interface IIconProps {
|
|
@@ -872,6 +877,11 @@ declare const Notification_2: {
|
|
|
872
877
|
};
|
|
873
878
|
export { Notification_2 as Notification }
|
|
874
879
|
|
|
880
|
+
declare interface NotificationActions {
|
|
881
|
+
onClose?: () => void;
|
|
882
|
+
onPreferencesClick?: () => void;
|
|
883
|
+
}
|
|
884
|
+
|
|
875
885
|
export declare const Pagination: (props: IPaginationProps) => JSX_2.Element;
|
|
876
886
|
|
|
877
887
|
export declare const Popconfirm: (props: IPopconfirmProps) => JSX_2.Element;
|