@mparticle/aquarium 1.31.0-nav-disabled-interactions-poc.7 → 1.31.0-nav-disabled-interactions-poc.8
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 +2351 -2350
- package/dist/aquarium.umd.cjs +30 -30
- package/dist/index.d.ts +7 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -59,6 +59,7 @@ import { DescriptionsItemProps } from 'antd/es/descriptions/Item';
|
|
|
59
59
|
import { DescriptionsProps } from 'antd';
|
|
60
60
|
import { DirectoryTreeProps } from 'antd/es/tree';
|
|
61
61
|
import { DividerProps } from 'antd';
|
|
62
|
+
import { DrawerProps } from 'antd';
|
|
62
63
|
import { DropdownButtonProps } from 'antd/es/dropdown';
|
|
63
64
|
import { DropdownProps } from 'antd';
|
|
64
65
|
import { EmptyProps } from 'antd';
|
|
@@ -104,7 +105,7 @@ import { INavigationOrg as INavigationOrg_2 } from '../../../../../../../../../s
|
|
|
104
105
|
import { INavigationWorkspace } from './navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelectorItems';
|
|
105
106
|
import { INewExperienceReminderOptions } from '../hooks/NewExperienceReminder/useNewExperienceReminder';
|
|
106
107
|
import { INewExperienceReminderOptions as INewExperienceReminderOptions_2 } from '../../../../../../../../../src/components';
|
|
107
|
-
import { INotificationCenterProps } from '../../../../../../../../../src/components/navigation/GlobalNavigation/
|
|
108
|
+
import { INotificationCenterProps } from '../../../../../../../../../src/components/navigation/GlobalNavigation/NotificationCenter';
|
|
108
109
|
import { Input as Input_2 } from 'antd';
|
|
109
110
|
import { InputNumberProps } from 'antd';
|
|
110
111
|
import { InputProps } from 'antd';
|
|
@@ -364,6 +365,8 @@ export declare const Descriptions: {
|
|
|
364
365
|
|
|
365
366
|
export declare const Divider: (props: IDividerProps) => JSX_2.Element;
|
|
366
367
|
|
|
368
|
+
export declare const Drawer: (props: IDrawerProps) => JSX_2.Element;
|
|
369
|
+
|
|
367
370
|
export declare const Dropdown: {
|
|
368
371
|
(props: IDropdownProps): JSX_2.Element;
|
|
369
372
|
Button: FC<DropdownButtonProps>;
|
|
@@ -495,6 +498,9 @@ export declare interface IDescriptionsProps extends DescriptionsProps {
|
|
|
495
498
|
export declare interface IDividerProps extends DividerProps {
|
|
496
499
|
}
|
|
497
500
|
|
|
501
|
+
export declare interface IDrawerProps extends DrawerProps {
|
|
502
|
+
}
|
|
503
|
+
|
|
498
504
|
export declare interface IDropdownProps extends DropdownProps {
|
|
499
505
|
}
|
|
500
506
|
|