@mparticle/aquarium 1.40.0-add-unified-nav.1 → 1.40.0-poc-unified-nav.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.
Files changed (148) hide show
  1. package/dist/aquarium.js +25320 -0
  2. package/dist/aquarium.umd.cjs +195 -0
  3. package/dist/index.d.ts +1 -0
  4. package/dist/src/components/data-display/Avatar/Avatar.d.ts +8 -0
  5. package/dist/src/components/data-display/Badge/Badge.d.ts +8 -0
  6. package/dist/src/components/data-display/Card/Card.d.ts +9 -0
  7. package/dist/src/components/data-display/Collapse/Collapse.d.ts +8 -0
  8. package/dist/src/components/data-display/Descriptions/Descriptions.d.ts +8 -0
  9. package/dist/src/components/data-display/Empty/Empty.d.ts +9 -0
  10. package/dist/src/components/data-display/Image/Image.d.ts +8 -0
  11. package/dist/src/components/data-display/List/List.d.ts +7 -0
  12. package/dist/src/components/data-display/Popover/Popover.d.ts +4 -0
  13. package/dist/src/components/data-display/Segmented/Segmented.d.ts +6 -0
  14. package/dist/src/components/data-display/Table/Table.d.ts +18 -0
  15. package/dist/src/components/data-display/Tabs/Tabs.d.ts +8 -0
  16. package/dist/src/components/data-display/Tag/Tag.d.ts +12 -0
  17. package/dist/src/components/data-display/Tooltip/Tooltip.d.ts +4 -0
  18. package/dist/src/components/data-display/Tour/Tour.d.ts +4 -0
  19. package/dist/src/components/data-entry/AutoComplete/AutoComplete.d.ts +4 -0
  20. package/dist/src/components/data-entry/Cascader/Cascader.d.ts +9 -0
  21. package/dist/src/components/data-entry/Checkbox/Checkbox.d.ts +8 -0
  22. package/dist/src/components/data-entry/DatePicker/DatePicker.d.ts +69 -0
  23. package/dist/src/components/data-entry/Form/Form.d.ts +22 -0
  24. package/dist/src/components/data-entry/Input/Input.d.ts +14 -0
  25. package/dist/src/components/data-entry/InputNumber/InputNumber.d.ts +4 -0
  26. package/dist/src/components/data-entry/QueryItem/Action.d.ts +9 -0
  27. package/dist/src/components/data-entry/QueryItem/Cascader.d.ts +26 -0
  28. package/dist/src/components/data-entry/QueryItem/NumberInput.d.ts +15 -0
  29. package/dist/src/components/data-entry/QueryItem/Qualifier.d.ts +11 -0
  30. package/dist/src/components/data-entry/QueryItem/QueryItem.d.ts +12 -0
  31. package/dist/src/components/data-entry/QueryItem/Text.d.ts +6 -0
  32. package/dist/src/components/data-entry/QueryItem/TextInput.d.ts +9 -0
  33. package/dist/src/components/data-entry/QueryItem/ValueSelector.d.ts +7 -0
  34. package/dist/src/components/data-entry/Radio/Radio.d.ts +8 -0
  35. package/dist/src/components/data-entry/Radio/RadioButton.d.ts +4 -0
  36. package/dist/src/components/data-entry/Radio/RadioGroup.d.ts +4 -0
  37. package/dist/src/components/data-entry/Select/Select.d.ts +11 -0
  38. package/dist/src/components/data-entry/Switch/Switch.d.ts +4 -0
  39. package/dist/src/components/data-entry/TimePicker/TimePicker.d.ts +8 -0
  40. package/dist/src/components/data-entry/TreeSelect/TreeSelect.d.ts +11 -0
  41. package/dist/src/components/data-entry/Upload/Upload.d.ts +13 -0
  42. package/dist/src/components/feedback/Alert/Alert.d.ts +7 -0
  43. package/dist/src/components/feedback/Drawer/Drawer.d.ts +4 -0
  44. package/dist/src/components/feedback/LoadingModal/LoadingModal.d.ts +7 -0
  45. package/dist/src/components/feedback/Message/Message.d.ts +19 -0
  46. package/dist/src/components/feedback/Modal/Modal.d.ts +14 -0
  47. package/dist/src/components/feedback/Notification/Notification.d.ts +18 -0
  48. package/dist/src/components/feedback/Popconfirm/Popconfirm.d.ts +4 -0
  49. package/dist/src/components/feedback/Progress/Progress.d.ts +4 -0
  50. package/dist/src/components/feedback/Result/Result.d.ts +10 -0
  51. package/dist/src/components/feedback/Skeleton/Skeleton.d.ts +12 -0
  52. package/dist/src/components/feedback/Spin/Spin.d.ts +8 -0
  53. package/dist/src/components/general/Button/Button.d.ts +16 -0
  54. package/dist/src/components/general/FloatButton/FloatButton.d.ts +9 -0
  55. package/dist/src/components/general/Icon/Icon.d.ts +12 -0
  56. package/dist/src/components/general/Typography/Typography.d.ts +34 -0
  57. package/dist/src/components/general/Typography/colors.d.ts +3 -0
  58. package/dist/src/components/icons/index.d.ts +97 -0
  59. package/dist/src/components/index.d.ts +89 -0
  60. package/dist/src/components/layout/Center/Center.d.ts +2 -0
  61. package/dist/src/components/layout/Divider/Divider.d.ts +4 -0
  62. package/dist/src/components/layout/Flex/Flex.d.ts +4 -0
  63. package/dist/src/components/layout/Grid/Grid.d.ts +6 -0
  64. package/dist/src/components/layout/Layout/Layout.d.ts +11 -0
  65. package/dist/src/components/layout/Space/Space.d.ts +8 -0
  66. package/dist/src/components/navigation/Anchor/Anchor.d.ts +8 -0
  67. package/dist/src/components/navigation/Breadcrumb/Breadcrumb.d.ts +10 -0
  68. package/dist/src/components/navigation/Dropdown/Dropdown.d.ts +13 -0
  69. package/dist/src/components/navigation/GlobalNavigation/GlobalNavigation.d.ts +37 -0
  70. package/dist/src/components/navigation/GlobalNavigation/HomeButton.d.ts +5 -0
  71. package/dist/src/components/navigation/GlobalNavigation/NavigationButtonItem.d.ts +9 -0
  72. package/dist/src/components/navigation/GlobalNavigation/NavigationCreate.d.ts +19 -0
  73. package/dist/src/components/navigation/GlobalNavigation/NavigationIcon.d.ts +10 -0
  74. package/dist/src/components/navigation/GlobalNavigation/NavigationItem.d.ts +14 -0
  75. package/dist/src/components/navigation/GlobalNavigation/NavigationList.d.ts +5 -0
  76. package/dist/src/components/navigation/GlobalNavigation/NavigationSearch.d.ts +5 -0
  77. package/dist/src/components/navigation/GlobalNavigation/NotificationCenter.d.ts +8 -0
  78. package/dist/src/components/navigation/GlobalNavigation/SuiteLogo.d.ts +6 -0
  79. package/dist/src/components/navigation/GlobalNavigation/SuiteSelector/SuiteSelector.d.ts +10 -0
  80. package/dist/src/components/navigation/GlobalNavigation/SuiteSelector/SuiteSelectorContent.d.ts +4 -0
  81. package/dist/src/components/navigation/GlobalNavigation/SuiteSelector/SuiteSelectorSuiteLink.d.ts +9 -0
  82. package/dist/src/components/navigation/GlobalNavigation/WorkspaceSelector/WorkspaceNoResults.d.ts +1 -0
  83. package/dist/src/components/navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelector.d.ts +11 -0
  84. package/dist/src/components/navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelectorContent.d.ts +17 -0
  85. package/dist/src/components/navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelectorContentItems.d.ts +6 -0
  86. package/dist/src/components/navigation/GlobalNavigation/stories-utils.d.ts +2 -0
  87. package/dist/src/components/navigation/Menu/Menu.d.ts +20 -0
  88. package/dist/src/components/navigation/Pagination/Pagination.d.ts +4 -0
  89. package/dist/src/components/navigation/Steps/Steps.d.ts +4 -0
  90. package/dist/src/components/not-prod-ready/Affix/Affix.d.ts +4 -0
  91. package/dist/src/components/not-prod-ready/Calendar/Calendar.d.ts +9 -0
  92. package/dist/src/components/not-prod-ready/Carousel/Carousel.d.ts +4 -0
  93. package/dist/src/components/not-prod-ready/ColorPicker/ColorPicker.d.ts +4 -0
  94. package/dist/src/components/not-prod-ready/QRCode/QRCode.d.ts +4 -0
  95. package/dist/src/components/not-prod-ready/Rate/Rate.d.ts +4 -0
  96. package/dist/src/components/not-prod-ready/Slider/Slider.d.ts +4 -0
  97. package/dist/src/components/not-prod-ready/Statistic/Statistic.d.ts +13 -0
  98. package/dist/src/components/not-prod-ready/Timeline/Timeline.d.ts +8 -0
  99. package/dist/src/components/not-prod-ready/Transfer/Transfer.d.ts +13 -0
  100. package/dist/src/components/not-prod-ready/Tree/Tree.d.ts +15 -0
  101. package/dist/src/components/not-prod-ready/Watermark/Watermark.d.ts +4 -0
  102. package/dist/src/constants/ChartColors.d.ts +1 -0
  103. package/dist/src/constants/ChartConfig.d.ts +8 -0
  104. package/dist/src/constants/Icons.d.ts +2 -0
  105. package/dist/src/hooks/NewExperienceReminder/useNewExperienceReminder.d.ts +14 -0
  106. package/dist/src/hooks/useInitData.d.ts +1 -0
  107. package/dist/src/hooks/useMount.d.ts +1 -0
  108. package/dist/src/hooks/useUnMount.d.ts +1 -0
  109. package/dist/src/services/user-preferences/composite-user-preferences-service/composite-user-preferences-service.d.ts +9 -0
  110. package/dist/src/services/user-preferences/composite-user-preferences-service/composite-user-preferences-service.spec.d.ts +1 -0
  111. package/dist/src/services/user-preferences/composite-user-preferences-service/index.d.ts +1 -0
  112. package/dist/src/services/user-preferences/index.d.ts +1 -0
  113. package/dist/src/services/user-preferences/models/definitions/index.d.ts +4 -0
  114. package/dist/src/services/user-preferences/models/definitions/user-preference-definition.d.ts +5 -0
  115. package/dist/src/services/user-preferences/models/definitions/user-preference-definitions.d.ts +4 -0
  116. package/dist/src/services/user-preferences/models/definitions/user-preference-per-scope.d.ts +4 -0
  117. package/dist/src/services/user-preferences/models/definitions/user-preference-scope-type.d.ts +6 -0
  118. package/dist/src/services/user-preferences/models/storage-models/index.d.ts +1 -0
  119. package/dist/src/services/user-preferences/models/storage-models/user-preference-scope.d.ts +8 -0
  120. package/dist/src/services/user-preferences/user-preferences-service.d.ts +19 -0
  121. package/dist/src/services/user-preferences/user-preferences-service.spec.d.ts +26 -0
  122. package/dist/src/shared/AudiencePermissionsService.d.ts +22 -0
  123. package/dist/src/shared/AuthorizationManager.d.ts +5 -0
  124. package/dist/src/shared/FeatureFlagsManager.d.ts +51 -0
  125. package/dist/src/shared/Operation.d.ts +171 -0
  126. package/dist/src/shared/Paths.d.ts +140 -0
  127. package/dist/src/shared/RouteAuthorizations/base-routes-authorizations.d.ts +7 -0
  128. package/dist/src/shared/RouteAuthorizations/customer-360-authorizations.d.ts +11 -0
  129. package/dist/src/shared/RouteAuthorizations/data-platform-authorizations.d.ts +22 -0
  130. package/dist/src/shared/RouteAuthorizations/oversight-authorizations.d.ts +13 -0
  131. package/dist/src/shared/RouteAuthorizations/root-authorizations.d.ts +11 -0
  132. package/dist/src/shared/RouteAuthorizations/segmentation-authorizations.d.ts +10 -0
  133. package/dist/src/shared/RoutesAuthorizationManager.d.ts +13 -0
  134. package/dist/src/shared/Suite.d.ts +8 -0
  135. package/dist/src/shared/UserPreferences.d.ts +11 -0
  136. package/dist/src/shared/utils.d.ts +1 -0
  137. package/dist/src/styles/style.d.ts +425 -0
  138. package/dist/src/types/icons.d.ts +10 -0
  139. package/dist/src/utils/Cookies.d.ts +15 -0
  140. package/dist/src/utils/ExampleStory.d.ts +8 -0
  141. package/dist/src/utils/GetGlobalToken.d.ts +2 -0
  142. package/dist/src/utils/debounce.d.ts +1 -0
  143. package/dist/src/utils/svg-prettifier/SvgPrettifier.d.ts +1 -0
  144. package/dist/src/utils/utils.d.ts +16 -0
  145. package/dist/src/utils/utils.spec.d.ts +1 -0
  146. package/dist/style.css +1 -0
  147. package/dist/style.ts +437 -0
  148. package/package.json +3 -2
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import { type SpinProps as AntSpinProps } from 'antd';
3
+ export interface ISpinProps extends AntSpinProps {
4
+ }
5
+ export declare const Spin: {
6
+ (props: ISpinProps): import("react/jsx-runtime").JSX.Element;
7
+ setDefaultIndicator: (indicator: import("react").ReactNode) => void;
8
+ };
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ import { type ButtonProps as AntButtonProps } from 'antd';
3
+ import { type ReactNode } from 'react';
4
+ export interface IButtonProps extends Omit<AntButtonProps, 'variant'> {
5
+ /**
6
+ * @deprecated This variant is a temporary fix for new icons.
7
+ * Use this variant only with new icons to align the icon and text centered.
8
+ * This will be removed once all icons are updated.
9
+ */
10
+ variant?: 'with-new-icon';
11
+ icon?: ReactNode;
12
+ }
13
+ export declare const Button: {
14
+ (props: IButtonProps): import("react/jsx-runtime").JSX.Element;
15
+ Group: React.FC<import("antd/es/button").ButtonGroupProps>;
16
+ };
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import { type FloatButtonProps as AntFloatButtonProps } from 'antd';
3
+ export interface IFloatButtonProps extends AntFloatButtonProps {
4
+ }
5
+ export declare const FloatButton: {
6
+ (props: IFloatButtonProps): import("react/jsx-runtime").JSX.Element;
7
+ BackTop: import("react").ForwardRefExoticComponent<import("antd/es/float-button/interface").BackTopProps & import("react").RefAttributes<import("antd").FloatButtonRef>>;
8
+ Group: import("react").NamedExoticComponent<import("antd").FloatButtonGroupProps>;
9
+ };
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ import type { IconVariant, IconNames } from '../../../../../../../../../src/types/icons';
3
+ type IconSize = 'xxxxl' | 'xxxl' | 'xxl' | 'xl' | 'lg' | 'md' | 'sm' | 'xs';
4
+ export type IconColor = 'default' | 'primary' | 'success' | 'warning' | 'error' | 'info' | 'white' | 'black' | 'text' | 'strong' | 'brand' | 'inherit';
5
+ export interface IIconProps {
6
+ name: IconNames;
7
+ color?: IconColor;
8
+ size?: IconSize;
9
+ variant?: IconVariant;
10
+ }
11
+ export declare const Icon: React.FC<IIconProps>;
12
+ export {};
@@ -0,0 +1,34 @@
1
+ import type { ReactNode } from 'react';
2
+ import type { TextProps as AntTextProps } from 'antd/es/typography/Text';
3
+ import type { TitleProps as AntTitleProps } from 'antd/es/typography/Title';
4
+ import type { LinkProps as AntLinkProps } from 'antd/es/typography/Link';
5
+ import type { ParagraphProps as AntParagraphProps } from 'antd/es/typography/Paragraph';
6
+ import { type TypographyColor } from './colors';
7
+ type TypographySize = 'base' | 'sm' | 'lg' | 'xl' | number;
8
+ interface InternalTypographyProps {
9
+ size?: TypographySize;
10
+ color?: TypographyColor;
11
+ children: ReactNode;
12
+ }
13
+ export declare const Typography: {
14
+ (): import("react/jsx-runtime").JSX.Element;
15
+ Text: (props: ITextProps) => import("react/jsx-runtime").JSX.Element;
16
+ Title: (props: ITitleProps) => import("react/jsx-runtime").JSX.Element;
17
+ Link: (props: ILinkProps) => import("react/jsx-runtime").JSX.Element;
18
+ Paragraph: (props: IParagraphProps) => import("react/jsx-runtime").JSX.Element;
19
+ };
20
+ type InternalTextProps = InternalTypographyProps & AntTextProps;
21
+ type InternalTitleProps = InternalTypographyProps & AntTitleProps;
22
+ type InternalLinkProps = InternalTypographyProps & AntLinkProps;
23
+ type InternalParagraphProps = InternalTypographyProps & AntParagraphProps;
24
+ export interface ITextProps extends InternalTextProps {
25
+ tooltip?: boolean;
26
+ }
27
+ export interface ITitleProps extends InternalTitleProps {
28
+ }
29
+ export interface ILinkProps extends InternalLinkProps {
30
+ tooltip?: boolean;
31
+ }
32
+ export interface IParagraphProps extends InternalParagraphProps {
33
+ }
34
+ export {};
@@ -0,0 +1,3 @@
1
+ export declare const TypographyColors: readonly ["ColorText", "ColorTextSecondary", "ColorTextTertiary", "ColorTextQuaternary", "ColorInfoText", "ColorInfoTextActive", "ColorPrimaryTextHover", "ColorPrimaryText", "ColorPrimaryTextActive", "ColorSuccessTextHover", "ColorSuccessText", "ColorSuccessTextActive", "ColorErrorTextHover", "ColorErrorText", "ColorErrorTextActive", "ColorWarningTextHover", "ColorWarningText", "ColorWarningTextActive", "ColorLink", "ColorLinkHover", "ColorLinkActive", "ColorTextPlaceholder", "ColorTextDisabled", "ColorTextHeading", "ColorTextLabel", "ColorTextDescription", "ColorTextLightSolid"];
2
+ export type TypographyColor = (typeof TypographyColors)[number];
3
+ export declare function getColorFromStyles(color: TypographyColor | string): string;
@@ -0,0 +1,97 @@
1
+ import AddIcon from '../../../../../../../../src/assets/svg/add.svg?react';
2
+ import AlicornIcon from '../../../../../../../../src/assets/svg/alicorn.svg?react';
3
+ import AnalyticsIconDt from '../../../../../../../../src/assets/svg/mp_pm_dt_analytics.svg?react';
4
+ import C360IconDt from '../../../../../../../../src/assets/svg/mp_pm_dt_c360.svg?react';
5
+ import CatalogIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_catalog.svg?react';
6
+ import ChartColumnIcon from '../../../../../../../../src/assets/svg/chart-column.svg?react';
7
+ import ChartLineIcon from '../../../../../../../../src/assets/svg/chart-line.svg?react';
8
+ import CheckIcon from '../../../../../../../../src/assets/svg/check.svg?react';
9
+ import CircleNodesIcon from '../../../../../../../../src/assets/svg/circle-nodes.svg?react';
10
+ import CloudIcon from '../../../../../../../../src/assets/svg/cloud.svg?react';
11
+ import ConnectionsIcon from '../../../../../../../../src/assets/svg/connections.svg?react';
12
+ import DataPlatformIconDt from '../../../../../../../../src/assets/svg/mp_pm_dt_data-platform.svg?react';
13
+ import DatabaseIcon from '../../../../../../../../src/assets/svg/database.svg?react';
14
+ import DragAndDropIcon from '../../../../../../../../src/assets/svg/mp_act_lt_dragandrop.svg?react';
15
+ import DsrIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_dsr.svg?react';
16
+ import EmptyIcon from '../../../../../../../../src/assets/svg/empty.svg?react';
17
+ import EnrichmentIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_enrichment.svg?react';
18
+ import EventAttributeIcon from '../../../../../../../../src/assets/svg/event-attribute.svg?react';
19
+ import EventIcon from '../../../../../../../../src/assets/svg/event.svg?react';
20
+ import FitToScreen from '../../../../../../../../src/assets/svg/mp_act_lt_fit-to-screen.svg?react';
21
+ import FolderClosedIcon from '../../../../../../../../src/assets/svg/folder-closed.svg?react';
22
+ import ForwardingIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_forwarding.svg?react';
23
+ import GearIcon from '../../../../../../../../src/assets/svg/gear.svg?react';
24
+ import GridIcon from '../../../../../../../../src/assets/svg/grid.svg?react';
25
+ import HeartIcon from '../../../../../../../../src/assets/svg/heart.svg?react';
26
+ import HelpIcon from '../../../../../../../../src/assets/svg/help.svg?react';
27
+ import IdentityIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_identity.svg?react';
28
+ import JumpToIcon from '../../../../../../../../src/assets/svg/mp_act_lt_jump-to.svg?react';
29
+ import LightBulbIcon from '../../../../../../../../src/assets/svg/lightbulb.svg?react';
30
+ import LiveStreamIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_live-stream.svg?react';
31
+ import PaywallIcon from '../../../../../../../../src/assets/svg/paywall.svg?react';
32
+ import MessageQuestionIcon from '../../../../../../../../src/assets/svg/message-question.svg?react';
33
+ import MpLogoIcon from '../../../../../../../../src/assets/svg/mpLogo.svg?react';
34
+ import ObservabilityIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_observability.svg?react';
35
+ import OversightIconDt from '../../../../../../../../src/assets/svg/mp_pm_dt_oversight.svg?react';
36
+ import PrecisionIcon from '../../../../../../../../src/assets/svg/precision.svg?react';
37
+ import PredictionsIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_predictions.svg?react';
38
+ import PredictionsIconDt from '../../../../../../../../src/assets/svg/mp_pm_dt_predictions.svg?react';
39
+ import RemoveIcon from '../../../../../../../../src/assets/svg/remove.svg?react';
40
+ import SearchIcon from '../../../../../../../../src/assets/svg/search.svg?react';
41
+ import SegmentationIconDt from '../../../../../../../../src/assets/svg/mp_pm_dt_segmentation.svg?react';
42
+ import ShieldKeyholeIcon from '../../../../../../../../src/assets/svg/shield-keyhole.svg?react';
43
+ import SignoutIcon from '../../../../../../../../src/assets/svg/signout.svg?react';
44
+ import SplitIcon from '../../../../../../../../src/assets/svg/split.svg?react';
45
+ import SystemAlertsIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_system-alerts.svg?react';
46
+ import TransformationsIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_transformations.svg?react';
47
+ import UploadIcon from '../../../../../../../../src/assets/svg/mp_act_it_upload.svg?react';
48
+ import UserAttributeIcon from '../../../../../../../../src/assets/svg/user-attribute.svg?react';
49
+ import UserProfilesIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_userprofiles.svg?react';
50
+ import UsersIcon from '../../../../../../../../src/assets/svg/mp_info_lt_users.svg?react';
51
+ import WrenchIcon from '../../../../../../../../src/assets/svg/wrench.svg?react';
52
+ import ZoomIn from '../../../../../../../../src/assets/svg/mp_act_lt_zoom-in.svg?react';
53
+ import ZoomOut from '../../../../../../../../src/assets/svg/mp_act_lt_zoom-out.svg?react';
54
+ import PremiumIcon from '../../../../../../../../src/assets/svg/mp_info_lt_premium.svg?react';
55
+ import ConversionIcon from '../../../../../../../../src/assets/svg/mp_info_lt_conversion.svg?react';
56
+ import HelpVideoIcon from '../../../../../../../../src/assets/svg/mp_info_lt_help-video.svg?react';
57
+ import NextIcon from '../../../../../../../../src/assets/svg/mp_act_lt_next.svg?react';
58
+ import OpenTabIcon from '../../../../../../../../src/assets/svg/mp_act_lt_open-tab.svg?react';
59
+ import PreviousIcon from '../../../../../../../../src/assets/svg/mp_act_lt_previous.svg?react';
60
+ import DirectoryIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_directory.svg?react';
61
+ import LockIcon from '../../../../../../../../src/assets/svg/mp_act_lt_lock.svg?react';
62
+ import UnlockIcon from '../../../../../../../../src/assets/svg/mp_act_lt_unlock.svg?react';
63
+ import NotificationIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_notification.svg?react';
64
+ import NotificationSubscribedIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_notification_subscribed.svg?react';
65
+ import NotificationSubscribeIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_notification_subscribe.svg?react';
66
+ import PremiumIconDt from '../../../../../../../../src/assets/svg/mp_info_dt_premium.svg?react';
67
+ import OverviewIconDt from '../../../../../../../../src/assets/svg/mp_pm_dt_overview.svg?react';
68
+ import FilterIcon from '../../../../../../../../src/assets/svg/mp_act_lt_filter.svg?react';
69
+ import ActiveIcon from '../../../../../../../../src/assets/svg/mp_info_lt_active.svg?react';
70
+ import LinkIcon from '../../../../../../../../src/assets/svg/mp_info_link.svg?react';
71
+ import InfoIcon from '../../../../../../../../src/assets/svg/mp_info_lt_info.svg?react';
72
+ import Placeholder from '../../../../../../../../src/assets/svg/mp_info_lt_placeholder.svg?react';
73
+ import Organization from '../../../../../../../../src/assets/svg/mp_pm_lt_organization.svg?react';
74
+ import JourneyAnalysis from '../../../../../../../../src/assets/svg/mp_pm_lt_journey-analysis.svg?react';
75
+ import Dashboard from '../../../../../../../../src/assets/svg/mp_pm_lt_dashboard.svg?react';
76
+ import Account from '../../../../../../../../src/assets/svg/mp_pm_lt_account.svg?react';
77
+ import TextWidget from '../../../../../../../../src/assets/svg/mp_info_lt_text-widget.svg?react';
78
+ import RefreshFrequency from '../../../../../../../../src/assets/svg/mp_info_lt_refresh-frequency.svg?react';
79
+ import Privileges from '../../../../../../../../src/assets/svg/mp_info_lt_privileges.svg?react';
80
+ import Funnel from '../../../../../../../../src/assets/svg/mp_info_lt_funnel.svg?react';
81
+ import Cohort from '../../../../../../../../src/assets/svg/mp_info_lt_cohort.svg?react';
82
+ import Annotation from '../../../../../../../../src/assets/svg/mp_info_lt_annotation.svg?react';
83
+ import Delete from '../../../../../../../../src/assets/svg/mp_act_lt_delete.svg?react';
84
+ import DropdownClose from '../../../../../../../../src/assets/svg/mp_act_lt_dropdown-close.svg?react';
85
+ import DropdownOpen from '../../../../../../../../src/assets/svg/mp_act_lt_dropdown-open.svg?react';
86
+ import SegmentationAnalysis from '../../../../../../../../src/assets/svg/mp_pm_lt_segmentation-analysis.svg?react';
87
+ import ScheduledReport from '../../../../../../../../src/assets/svg/mp_pm_lt_scheduled-report.svg?react';
88
+ import FullScreen from '../../../../../../../../src/assets/svg/mp_act_lt_full-screen.svg?react';
89
+ import Edit from '../../../../../../../../src/assets/svg/mp_act_lt_edit.svg?react';
90
+ import Copy from '../../../../../../../../src/assets/svg/mp_act_lt_copy.svg?react';
91
+ import MoreActions from '../../../../../../../../src/assets/svg/mp_act_lt_more-actions.svg?react';
92
+ import AbSplit from '../../../../../../../../src/assets/svg/mp_info_lt_ab-split.svg?react';
93
+ import BannerFreemium from '../../../../../../../../src/assets/svg/mp_info_dt_sampled.svg?react';
94
+ import StateEmpty from '../../../../../../../../src/assets/svg/mp_info_lt_state-empty.svg?react';
95
+ import StateError from '../../../../../../../../src/assets/svg/mp_info_lt_state-error.svg?react';
96
+ import StateNoResults from '../../../../../../../../src/assets/svg/mp_info_lt_state-no-results.svg?react';
97
+ export { AbSplit, Account, ActiveIcon, AddIcon, AlicornIcon, AnalyticsIconDt, Annotation, C360IconDt, CatalogIcon, ChartColumnIcon, ChartLineIcon, CheckIcon, CircleNodesIcon, CloudIcon, Cohort, ConnectionsIcon, ConversionIcon, Copy, Dashboard, DatabaseIcon, DataPlatformIconDt, Delete, DirectoryIcon, DragAndDropIcon, DropdownClose, DropdownOpen, DsrIcon, Edit, EmptyIcon, EnrichmentIcon, EventAttributeIcon, EventIcon, FilterIcon, FitToScreen, FolderClosedIcon, ForwardingIcon, FullScreen, Funnel, GearIcon, GridIcon, HeartIcon, HelpIcon, HelpVideoIcon, IdentityIcon, InfoIcon, JourneyAnalysis, JumpToIcon, LightBulbIcon, LinkIcon, LiveStreamIcon, LockIcon, MessageQuestionIcon, MoreActions, MpLogoIcon, NextIcon, NotificationIcon, NotificationSubscribedIcon, NotificationSubscribeIcon, ObservabilityIcon, OpenTabIcon, Organization, OversightIconDt, OverviewIconDt, PaywallIcon, Placeholder, PrecisionIcon, PredictionsIcon, PredictionsIconDt, PremiumIcon, PremiumIconDt, PreviousIcon, Privileges, RefreshFrequency, RemoveIcon, ScheduledReport, SearchIcon, SegmentationAnalysis, SegmentationIconDt, ShieldKeyholeIcon, SignoutIcon, SplitIcon, SystemAlertsIcon, TextWidget, TransformationsIcon, UnlockIcon, UploadIcon, UserAttributeIcon, UserProfilesIcon, UsersIcon, WrenchIcon, ZoomIn, ZoomOut, BannerFreemium, StateEmpty, StateError, StateNoResults, };
@@ -0,0 +1,89 @@
1
+ export { Button, type IButtonProps } from './general/Button/Button';
2
+ export { FloatButton, type IFloatButtonProps } from './general/FloatButton/FloatButton';
3
+ export { Icon, type IIconProps } from './general/Icon/Icon';
4
+ export { Rate, type IRateProps } from './not-prod-ready/Rate/Rate';
5
+ export { Form, type IFormProps, type FormInstance } from './data-entry/Form/Form';
6
+ export { TreeSelect, type ITreeSelectProps } from './data-entry/TreeSelect/TreeSelect';
7
+ export { Select, type ISelectProps, type SelectDefaultOptionType, type SelectBaseOptionType, } from './data-entry/Select/Select';
8
+ export { Mentions, type IMentionsProps } from './not-prod-ready/Mentions/Mentions';
9
+ export { Radio, type IRadioProps } from './data-entry/Radio/Radio';
10
+ export { ColorPicker, type IColorPickerProps } from './not-prod-ready/ColorPicker/ColorPicker';
11
+ export { Slider, type ISliderProps } from './not-prod-ready/Slider/Slider';
12
+ export { Cascader, type ICascaderProps } from './data-entry/Cascader/Cascader';
13
+ export { DatePicker, type IDatePickerProps } from './data-entry/DatePicker/DatePicker';
14
+ export { Checkbox, type ICheckboxProps } from './data-entry/Checkbox/Checkbox';
15
+ export { Input, type IInputProps, type InputRef } from './data-entry/Input/Input';
16
+ export { InputNumber, type IInputNumberProps } from './data-entry/InputNumber/InputNumber';
17
+ export { Switch, type ISwitchProps } from './data-entry/Switch/Switch';
18
+ export { Upload, type IUploadProps, type IUploadFileProps } from './data-entry/Upload/Upload';
19
+ export { AutoComplete, type IAutoCompleteProps } from './data-entry/AutoComplete/AutoComplete';
20
+ export { TimePicker, type ITimePickerProps } from './data-entry/TimePicker/TimePicker';
21
+ export { Transfer, type ITransferProps } from './not-prod-ready/Transfer/Transfer';
22
+ export { QueryItem } from './data-entry/QueryItem/QueryItem';
23
+ export type { IQueryItemQualifierOption } from './data-entry/QueryItem/Qualifier';
24
+ export type { IQueryItemCascaderProps } from './data-entry/QueryItem/Cascader';
25
+ export type { INumberInputProps } from './data-entry/QueryItem/NumberInput';
26
+ export type { ITextInputProps } from './data-entry/QueryItem/TextInput';
27
+ export { Collapse, type ICollapseProps } from './data-display/Collapse/Collapse';
28
+ export { Timeline, type ITimelineProps } from './not-prod-ready/Timeline/Timeline';
29
+ export { Calendar, type ICalendarProps } from './not-prod-ready/Calendar/Calendar';
30
+ export { Segmented, type ISegmentedProps } from './data-display/Segmented/Segmented';
31
+ export { Tabs, type ITabsProps } from './data-display/Tabs/Tabs';
32
+ export { Tag, type ITagProps } from './data-display/Tag/Tag';
33
+ export { Tour, type ITourProps } from './data-display/Tour/Tour';
34
+ export { Carousel, type ICarouselProps } from './not-prod-ready/Carousel/Carousel';
35
+ export { Tooltip, type ITooltipProps } from './data-display/Tooltip/Tooltip';
36
+ export { Statistic, type IStatisticProps } from './not-prod-ready/Statistic/Statistic';
37
+ export { Tree, type ITreeProps, type ITreeData } from './not-prod-ready/Tree/Tree';
38
+ export { Image, type IImageProps } from './data-display/Image/Image';
39
+ export { QRCode, type IQRCodeProps } from './not-prod-ready/QRCode/QRCode';
40
+ export { Badge, type IBadgeProps } from './data-display/Badge/Badge';
41
+ export { Card, type ICardProps } from './data-display/Card/Card';
42
+ export { Avatar, type IAvatarProps } from './data-display/Avatar/Avatar';
43
+ export { Descriptions, type IDescriptionsProps } from './data-display/Descriptions/Descriptions';
44
+ export { Table, type ITableProps, type ColumnsType, type ExpandableConfig, type ColumnType, type TableProps, } from './data-display/Table/Table';
45
+ export { Empty, type IEmptyProps } from './data-display/Empty/Empty';
46
+ export { Popover, type IPopoverProps } from './data-display/Popover/Popover';
47
+ export { List, type IListProps } from './data-display/List/List';
48
+ export { Progress, type IProgressProps } from './feedback/Progress/Progress';
49
+ export { Result, type IResultProps } from './feedback/Result/Result';
50
+ export { Spin, type ISpinProps } from './feedback/Spin/Spin';
51
+ export { Skeleton, type ISkeletonProps } from './feedback/Skeleton/Skeleton';
52
+ export { Watermark, type IWatermarkProps } from './not-prod-ready/Watermark/Watermark';
53
+ export { Popconfirm, type IPopconfirmProps } from './feedback/Popconfirm/Popconfirm';
54
+ export { Drawer, type IDrawerProps } from './feedback/Drawer/Drawer';
55
+ export { Modal, type IModalProps } from './feedback/Modal/Modal';
56
+ export { Notification, type INotificationProps, notification } from './feedback/Notification/Notification';
57
+ export { Alert, type IAlertProps } from './feedback/Alert/Alert';
58
+ export { Message, type IMessageProps, message } from './feedback/Message/Message';
59
+ export { LoadingModal, type ILoadingModalProps } from './feedback/LoadingModal/LoadingModal';
60
+ export { Flex, type IFlexProps } from './layout/Flex/Flex';
61
+ export { Center } from './layout/Center/Center';
62
+ export { Divider, type IDividerProps } from './layout/Divider/Divider';
63
+ export { Space, type ISpaceProps } from './layout/Space/Space';
64
+ export { Layout, type ILayoutProps } from './layout/Layout/Layout';
65
+ export { Grid, Col, Row, type IColProps, type IRowProps } from './layout/Grid/Grid';
66
+ export { Steps, type IStepsProps } from './navigation/Steps/Steps';
67
+ export { Anchor, type IAnchorProps } from './navigation/Anchor/Anchor';
68
+ export { Dropdown, type IDropdownProps } from './navigation/Dropdown/Dropdown';
69
+ export { Breadcrumb, type IBreadcrumbProps } from './navigation/Breadcrumb/Breadcrumb';
70
+ export { Pagination, type IPaginationProps } from './navigation/Pagination/Pagination';
71
+ export { Menu, type IMenuProps, type MenuItemType, type SubMenuType, type MenuItemGroupType, type MenuDividerType, type IMenuInfo, } from './navigation/Menu/Menu';
72
+ export { ConfigProvider, type IConfigProviderProps } from './other/ConfigProvider/ConfigProvider';
73
+ export { Affix, type IAffixProps } from './not-prod-ready/Affix/Affix';
74
+ export { GlobalNavigation, GlobalNavWidth, type IGlobalNavigationProps, } from './navigation/GlobalNavigation/GlobalNavigation';
75
+ export type { IBaseGlobalNavigationItem, IGlobalNavigationItem, IGlobalNavigationLogo, } from './navigation/GlobalNavigation/GlobalNavigationItems';
76
+ export type { INavigationCreateProps, INavigationCreateGroup, INavigationCreateItem, } from './navigation/GlobalNavigation/NavigationCreate';
77
+ export type { INavigationOrg, INavigationWorkspace, INavigationAccount, IWorkspaceSelectorDisplayItem, IWorkspaceSelectorItem, } from './navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelectorItems';
78
+ export { type INotificationCenterProps, NotificationCenterZIndex, } from './navigation/GlobalNavigation/NotificationCenter';
79
+ export { SuiteLogo } from './navigation/GlobalNavigation/SuiteLogo';
80
+ export { Typography } from './general/Typography/Typography';
81
+ export { UserPreferencesService } from '../services/user-preferences';
82
+ export { CompositeUserPreferencesService } from '../services/user-preferences/composite-user-preferences-service';
83
+ export { UserPreferenceScopeType, type UserPreferenceDefinition, type UserPreferenceDefinitions, type UserPreferencesPerScope, } from '../services/user-preferences/models/definitions';
84
+ export { USER_PREFERENCE_SCOPE_SEPARATOR, UserPreferenceGlobalScope, type UserPreferenceScope, } from '../services/user-preferences/models/storage-models';
85
+ export { useNewExperienceReminder, type INewExperienceReminderOptions, type NewExperienceReminderHook, } from '../hooks/NewExperienceReminder/useNewExperienceReminder';
86
+ export { ChartConfig, ChartAxisStyle } from '../constants/ChartConfig';
87
+ export { ChartColors } from '../constants/ChartColors';
88
+ export { RoutesAuthorizationManager } from '../shared/RoutesAuthorizationManager';
89
+ export { initUserPreferences } from '../shared/UserPreferences';
@@ -0,0 +1,2 @@
1
+ import { type IFlexProps } from '../../../../../../../../../src/components/layout/Flex/Flex';
2
+ export declare const Center: (props: Omit<IFlexProps, 'justify' | 'align'>) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
1
+ import { type DividerProps as AntDividerProps } from 'antd';
2
+ export interface IDividerProps extends AntDividerProps {
3
+ }
4
+ export declare const Divider: (props: IDividerProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
1
+ import { type FlexProps as AntFlexProps } from 'antd';
2
+ export interface IFlexProps extends AntFlexProps {
3
+ }
4
+ export declare const Flex: (props: IFlexProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ import { Grid as AntGrid } from 'antd';
2
+ import { Col as AntCol } from 'antd';
3
+ import { Row as AntRow } from 'antd';
4
+ import { type RowProps as AntRowProps } from 'antd';
5
+ import { type ColProps as AntColProps } from 'antd';
6
+ export { AntGrid as Grid, AntCol as Col, type AntColProps as IColProps, AntRow as Row, type AntRowProps as IRowProps };
@@ -0,0 +1,11 @@
1
+ /// <reference types="react" />
2
+ import { type LayoutProps as AntLayoutProps } from 'antd';
3
+ export interface ILayoutProps extends AntLayoutProps {
4
+ }
5
+ export declare const Layout: {
6
+ (props: ILayoutProps): import("react/jsx-runtime").JSX.Element;
7
+ Sider: import("react").ForwardRefExoticComponent<import("antd").SiderProps & import("react").RefAttributes<HTMLDivElement>>;
8
+ Footer: import("react").ForwardRefExoticComponent<AntLayoutProps & import("react").RefAttributes<HTMLElement>>;
9
+ Content: import("react").ForwardRefExoticComponent<AntLayoutProps & import("react").RefAttributes<HTMLElement>>;
10
+ Header: import("react").ForwardRefExoticComponent<AntLayoutProps & import("react").RefAttributes<HTMLElement>>;
11
+ };
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import { type SpaceProps as AntSpaceProps } from 'antd';
3
+ export interface ISpaceProps extends AntSpaceProps {
4
+ }
5
+ export declare const Space: {
6
+ (props: ISpaceProps): import("react/jsx-runtime").JSX.Element;
7
+ Compact: import("react").FC<import("antd/es/space/Compact").SpaceCompactProps>;
8
+ };
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import { type AnchorProps as AntAnchorProps } from 'antd';
3
+ export interface IAnchorProps extends AntAnchorProps {
4
+ }
5
+ export declare const Anchor: {
6
+ (props: IAnchorProps): import("react/jsx-runtime").JSX.Element;
7
+ Link: import("react").FC<import("antd").AnchorLinkProps>;
8
+ };
@@ -0,0 +1,10 @@
1
+ /// <reference types="react" />
2
+ import { type BreadcrumbProps as AntBreadcrumbProps } from 'antd';
3
+ export interface IBreadcrumbProps extends AntBreadcrumbProps {
4
+ }
5
+ export declare const Breadcrumb: {
6
+ (props: IBreadcrumbProps): import("react/jsx-runtime").JSX.Element;
7
+ Item: import("react").FC<import("antd").BreadcrumbItemProps> & {
8
+ __ANT_BREADCRUMB_ITEM: boolean;
9
+ };
10
+ };
@@ -0,0 +1,13 @@
1
+ /// <reference types="react" />
2
+ import { type DropdownProps as AntDropdownProps } from 'antd';
3
+ export interface IDropdownProps extends AntDropdownProps {
4
+ }
5
+ /**
6
+ * @deprecated This component is deprecated and will be removed in future versions.
7
+ * Please use the Select component instead. You can find more details here:
8
+ * https://mparticle.github.io/aquarium/?path=/docs/components-data-entry-select--documentation
9
+ */
10
+ export declare const Dropdown: {
11
+ (props: IDropdownProps): import("react/jsx-runtime").JSX.Element;
12
+ Button: import("react").FC<import("antd/es/dropdown").DropdownButtonProps>;
13
+ };
@@ -0,0 +1,37 @@
1
+ import { type IGlobalNavigationLogo, type INavigationOrg, type INavigationCreateProps, type IAvatarProps } from '../../../../../../../../../src/components';
2
+ import { type IGlobalNavigationItem, type ISuiteSelectorOptions } from '../../../../../../../../../src/components/navigation/GlobalNavigation/GlobalNavigationItems';
3
+ import { type INotificationCenterProps } from '../../../../../../../../../src/components/navigation/GlobalNavigation/NotificationCenter';
4
+ export interface NotificationActions {
5
+ onClose?: () => void;
6
+ onPreferencesClick?: () => void;
7
+ }
8
+ export interface IGlobalNavigationProps {
9
+ logo: IGlobalNavigationLogo;
10
+ tools: IGlobalNavigationItem[];
11
+ management: IGlobalNavigationItem[];
12
+ orgs?: INavigationOrg[];
13
+ createItems?: INavigationCreateProps['createItems'];
14
+ onSearchClick?: () => void;
15
+ onSuiteLogoClick?: () => void;
16
+ onMpHomeClick: () => void;
17
+ hideMpHome?: boolean;
18
+ showSuiteLogo?: boolean;
19
+ avatarOptions?: IAvatarProps;
20
+ navigationButtonItemOptions?: {
21
+ label: string;
22
+ onClick: () => void;
23
+ withoutContainer?: boolean;
24
+ };
25
+ suiteSelectorOptions?: ISuiteSelectorOptions;
26
+ /**
27
+ * @deprecated This variant is a temporary fix for new component.
28
+ * This will be removed once all the apps updated.
29
+ */
30
+ minimapOptions?: ISuiteSelectorOptions;
31
+ notificationCenter?: INotificationCenterProps;
32
+ }
33
+ export declare const GlobalNavWidth: 90;
34
+ export declare const GlobalNavigation: {
35
+ ({ showSuiteLogo, ...props }: IGlobalNavigationProps): import("react/jsx-runtime").JSX.Element;
36
+ useNewExperienceReminder: (options: import('../../../../../../../../../src/components').INewExperienceReminderOptions) => import('../../../../../../../../../src/components').NewExperienceReminderHook;
37
+ };
@@ -0,0 +1,5 @@
1
+ interface HomeButtonProps {
2
+ onMpHomeClick: () => void;
3
+ }
4
+ export declare function HomeButton(props: HomeButtonProps): import("react/jsx-runtime").JSX.Element;
5
+ export {};
@@ -0,0 +1,9 @@
1
+ import React, { type ReactNode } from 'react';
2
+ export interface INavigationButtonItemProps {
3
+ label: ReactNode;
4
+ onClick?: () => void;
5
+ withoutContainer?: boolean;
6
+ href?: string;
7
+ target?: '_blank' | '_self';
8
+ }
9
+ export declare const NavigationButtonItem: React.FC<INavigationButtonItemProps>;
@@ -0,0 +1,19 @@
1
+ import { type MenuItemGroupType, type MenuItemType } from '../../../../../../../../../src/components';
2
+ export interface INavigationCreateProps {
3
+ createItems: Array<INavigationCreateItem | INavigationCreateGroup>;
4
+ }
5
+ export interface INavigationCreateGroup extends Omit<MenuItemGroupType, 'key'> {
6
+ label: string;
7
+ type: 'group';
8
+ }
9
+ export interface INavigationCreateItem extends Omit<MenuItemType, 'key'> {
10
+ disabled?: boolean;
11
+ title: string;
12
+ description: string;
13
+ type?: undefined;
14
+ isLoading?: boolean;
15
+ isLocked?: boolean;
16
+ tooltip?: string;
17
+ onClick?: () => void;
18
+ }
19
+ export declare function NavigationCreate(props: INavigationCreateProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,10 @@
1
+ import { type ReactNode } from 'react';
2
+ interface INavigationIconProps {
3
+ className?: string;
4
+ icon: ReactNode;
5
+ label: ReactNode;
6
+ hideLabel?: boolean;
7
+ onClick?: (e: React.MouseEvent) => void;
8
+ }
9
+ export declare function NavigationIcon(props: INavigationIconProps): import("react/jsx-runtime").JSX.Element;
10
+ export {};
@@ -0,0 +1,14 @@
1
+ import { type MouseEvent, type ReactNode } from 'react';
2
+ import { type IGlobalNavigationItem } from '../../../../../../../../../src/components';
3
+ import { type HrefOptions } from '../../../../../../../../../src/utils/utils';
4
+ export interface INavigationItemProps {
5
+ type: 'link' | 'menu';
6
+ icon?: ReactNode;
7
+ label?: ReactNode;
8
+ hideLabel?: boolean;
9
+ items?: IGlobalNavigationItem[];
10
+ isActive?: boolean;
11
+ onClick?: (e: MouseEvent) => void;
12
+ hrefOptions?: HrefOptions;
13
+ }
14
+ export declare function NavigationItem(props: INavigationItemProps): string | number | boolean | import("react/jsx-runtime").JSX.Element | Iterable<ReactNode> | null | undefined;
@@ -0,0 +1,5 @@
1
+ import { type IGlobalNavigationItem } from '../../../../../../../../../src/components/navigation/GlobalNavigation/GlobalNavigationItems';
2
+ export interface INavigationListProps {
3
+ items: IGlobalNavigationItem[];
4
+ }
5
+ export declare function NavigationList(props: INavigationListProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ interface INavigationSearchProps {
2
+ onClick: () => void;
3
+ }
4
+ export declare function NavigationSearch(props: INavigationSearchProps): import("react/jsx-runtime").JSX.Element;
5
+ export {};
@@ -0,0 +1,8 @@
1
+ import { type IButtonProps, type IPopoverProps } from '../../../../../../../../../src/components';
2
+ export interface INotificationCenterProps extends Omit<IPopoverProps, 'key' | 'trigger' | 'placement' | 'arrow' | 'overlayClassName' | 'title'> {
3
+ unreadMessages?: number;
4
+ onClose?: IButtonProps['onClick'];
5
+ onPreferencesClick?: IButtonProps['onClick'];
6
+ }
7
+ export declare const NotificationCenterZIndex = 9999;
8
+ export declare function NotificationCenter({ zIndex, onClose, onPreferencesClick, unreadMessages, ...props }: INotificationCenterProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ import { type IGlobalNavigationLogo, type ISuiteSelectorOptions } from '../../../../../../../../../src/components/navigation/GlobalNavigation/GlobalNavigationItems';
2
+ interface SuiteLogoProps extends IGlobalNavigationLogo {
3
+ suiteSelectorOptions?: ISuiteSelectorOptions;
4
+ }
5
+ export declare function SuiteLogo({ icon, label, type, onSuiteLogoClick, navSwitcherTourOptions, suiteSelectorOptions, }: SuiteLogoProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -0,0 +1,10 @@
1
+ import { type ReactNode } from 'react';
2
+ import { type IPopoverProps } from '../../../../../../../../../../src/components';
3
+ import { type ISuiteSelectorOptions, type SuiteLink } from '../../../../../../../../../../src/components/navigation/GlobalNavigation/GlobalNavigationItems';
4
+ interface ISuiteSelectorProps extends IPopoverProps {
5
+ suiteSelectorOptions: ISuiteSelectorOptions;
6
+ onLinkClick: (link: SuiteLink) => void;
7
+ children: ReactNode;
8
+ }
9
+ export declare function SuiteSelector(props: ISuiteSelectorProps): import("react/jsx-runtime").JSX.Element;
10
+ export {};
@@ -0,0 +1,4 @@
1
+ import { type ISuiteSelectorOptions } from '../../../../../../../../../../src/components/navigation/GlobalNavigation/GlobalNavigationItems';
2
+ type ISuiteSelectorContentProps = ISuiteSelectorOptions;
3
+ export declare function SuiteSelectorContent(props: ISuiteSelectorContentProps): import("react/jsx-runtime").JSX.Element;
4
+ export {};
@@ -0,0 +1,9 @@
1
+ import { type SuiteLink, type SuiteLinks } from '../../../../../../../../../../src/components/navigation/GlobalNavigation/GlobalNavigationItems';
2
+ interface ISuiteSelectorSuiteLinkProps {
3
+ link: SuiteLink;
4
+ onLinkClick: (link: SuiteLink) => void;
5
+ unauthorizedLinks?: SuiteLinks[];
6
+ activeLink: SuiteLinks;
7
+ }
8
+ export declare function SuiteSelectorSuiteLink(props: ISuiteSelectorSuiteLinkProps): import("react/jsx-runtime").JSX.Element;
9
+ export {};
@@ -0,0 +1 @@
1
+ export declare const WorkspaceNoResults: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,11 @@
1
+ import { type IAvatarProps, type INavigationOrg } from '../../../../../../../../../../src/components';
2
+ export interface IWorkspaceSelectorProps {
3
+ orgs: INavigationOrg[];
4
+ avatarOptions?: IAvatarProps;
5
+ navigationButtonItemOptions?: {
6
+ label: string;
7
+ onClick: () => void;
8
+ withoutContainer?: boolean;
9
+ };
10
+ }
11
+ export declare function WorkspaceSelector(props: IWorkspaceSelectorProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,17 @@
1
+ import { type ChangeEvent, type RefObject } from 'react';
2
+ import { type InputRef, type IWorkspaceSelectorDisplayItem } from '../../../../../../../../../../src/components';
3
+ type WorkspaceSelectorContentProps = {
4
+ onSearch: (e: ChangeEvent<HTMLInputElement>) => void;
5
+ searchTerm: string;
6
+ hasSearchInput: boolean;
7
+ inputRef: RefObject<InputRef>;
8
+ hasNoResults: boolean;
9
+ menuItems: IWorkspaceSelectorDisplayItem[];
10
+ navigationButtonItemOptions?: {
11
+ label: string;
12
+ onClick: () => void;
13
+ withoutContainer?: boolean;
14
+ };
15
+ };
16
+ export declare function WorkspaceSelectorContent(props: WorkspaceSelectorContentProps): import("react/jsx-runtime").JSX.Element;
17
+ export {};
@@ -0,0 +1,6 @@
1
+ import { type IWorkspaceSelectorDisplayItem } from '../../../../../../../../../../src/components';
2
+ type WorkspaceSelectorContentItemsProps = {
3
+ menuItems: IWorkspaceSelectorDisplayItem[];
4
+ };
5
+ export declare function WorkspaceSelectorContentItems({ menuItems }: WorkspaceSelectorContentItemsProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -0,0 +1,2 @@
1
+ import { type INavigationOrg } from '../../../../../../../../../src/components';
2
+ export declare function generateOrgs(orgs: number, accounts: number, workspaces: number): INavigationOrg[];