@mparticle/aquarium 1.56.1 → 1.56.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 (31) hide show
  1. package/dist/src/components/data-entry/QueryItem/Action.d.ts +1 -1
  2. package/dist/src/components/data-entry/QueryItem/Cascader.d.ts +2 -2
  3. package/dist/src/components/data-entry/QueryItem/QueryItem.d.ts +4 -4
  4. package/dist/src/components/data-entry/QueryItem/ValueSelector.d.ts +3 -3
  5. package/dist/src/components/feedback/LoadingModal/LoadingModal.d.ts +1 -1
  6. package/dist/src/components/feedback/Modal/DeleteConfirmModal/DeleteConfirmModal.d.ts +1 -1
  7. package/dist/src/components/feedback/Modal/ErrorModal/ErrorModal.d.ts +1 -1
  8. package/dist/src/components/general/Icon/Icon.d.ts +1 -1
  9. package/dist/src/components/icons/index.d.ts +136 -136
  10. package/dist/src/components/index.d.ts +2 -2
  11. package/dist/src/components/layout/Center/Center.d.ts +1 -1
  12. package/dist/src/components/navigation/GlobalNavigation/GlobalNavigation.d.ts +3 -3
  13. package/dist/src/components/navigation/GlobalNavigation/NavigationCreate.d.ts +1 -1
  14. package/dist/src/components/navigation/GlobalNavigation/NavigationItem.d.ts +2 -2
  15. package/dist/src/components/navigation/GlobalNavigation/NavigationList.d.ts +1 -1
  16. package/dist/src/components/navigation/GlobalNavigation/NavigationMenu.d.ts +1 -1
  17. package/dist/src/components/navigation/GlobalNavigation/NotificationCenter.d.ts +1 -1
  18. package/dist/src/components/navigation/GlobalNavigation/SuiteLogo.d.ts +1 -1
  19. package/dist/src/components/navigation/GlobalNavigation/SuiteSelector/SuiteSelector.d.ts +2 -2
  20. package/dist/src/components/navigation/GlobalNavigation/SuiteSelector/SuiteSelectorContent.d.ts +1 -1
  21. package/dist/src/components/navigation/GlobalNavigation/SuiteSelector/SuiteSelectorSuiteLink.d.ts +1 -1
  22. package/dist/src/components/navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelector.d.ts +1 -1
  23. package/dist/src/components/navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelectorContent.d.ts +1 -1
  24. package/dist/src/components/navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelectorContentItems.d.ts +1 -1
  25. package/dist/src/components/navigation/GlobalNavigation/stories-utils.d.ts +1 -1
  26. package/dist/src/constants/Icons.d.ts +1 -1
  27. package/dist/src/services/user-preferences/composite-user-preferences-service/composite-user-preferences-service.d.ts +2 -2
  28. package/dist/src/services/user-preferences/user-preferences-service.d.ts +3 -3
  29. package/dist/src/services/user-preferences/user-preferences-service.spec.d.ts +3 -3
  30. package/dist/src/shared/services/NavigationItemsService.d.ts +1 -1
  31. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
- import { type IButtonProps } from '../../../../../../../../../src/components';
2
+ import { type IButtonProps } from '../..';
3
3
  export interface IActionProps {
4
4
  type?: 'disabled' | 'primary' | 'default';
5
5
  text?: string;
@@ -1,8 +1,8 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
2
  import { type DefaultOptionType } from 'antd/es/select';
3
3
  import { type ReactNode } from 'react';
4
- import { type ICascaderProps as IBaseCascaderProps } from '../../../../../../../../../src/components';
5
- import { type Icons } from '../../../../../../../../../src/constants/Icons';
4
+ import { type ICascaderProps as IBaseCascaderProps } from '../..';
5
+ import { type Icons } from '../../../constants/Icons';
6
6
  export interface ICascaderOption extends DefaultOptionType {
7
7
  value: string;
8
8
  label: ReactNode;
@@ -1,7 +1,7 @@
1
- import { ITextProps } from '../../../../../../../../../src/components/data-entry/QueryItem/Text';
2
- import { ITextInputProps, INumberInputProps, IQueryItemCascaderProps } from '../../../../../../../../../src/components';
3
- import { IQueryItemQualifierProps } from '../../../../../../../../../src/components/data-entry/QueryItem/Qualifier';
4
- import { IActionProps } from '../../../../../../../../../src/components/data-entry/QueryItem/Action';
1
+ import { ITextProps } from './Text';
2
+ import { ITextInputProps, INumberInputProps, IQueryItemCascaderProps } from '../..';
3
+ import { IQueryItemQualifierProps } from './Qualifier';
4
+ import { IActionProps } from './Action';
5
5
  import { JSX } from 'react/jsx-runtime';
6
6
  export declare const QueryItem: {
7
7
  (): JSX.Element;
@@ -1,6 +1,6 @@
1
- import { IQueryItemCascaderProps } from '../../../../../../../../../src/components/data-entry/QueryItem/Cascader';
2
- import { INumberInputProps } from '../../../../../../../../../src/components/data-entry/QueryItem/NumberInput';
3
- import { ITextInputProps } from '../../../../../../../../../src/components/data-entry/QueryItem/TextInput';
1
+ import { IQueryItemCascaderProps } from './Cascader';
2
+ import { INumberInputProps } from './NumberInput';
3
+ import { ITextInputProps } from './TextInput';
4
4
  import { JSX } from 'react/jsx-runtime';
5
5
  declare const ValueSelector: {
6
6
  (): JSX.Element;
@@ -1,6 +1,6 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
2
  /// <reference types="react" />
3
- import { type IModalProps } from '../../../../../../../../../src/components/feedback/Modal/Modal';
3
+ import { type IModalProps } from '../Modal/Modal';
4
4
  export interface ILoadingModalProps<Data> extends Omit<IModalProps, 'children'> {
5
5
  fetchData: () => Promise<Data>;
6
6
  children: (initData: Data) => React.ReactNode;
@@ -1,6 +1,6 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
2
  import React from 'react';
3
- import { type IModalProps } from '../../../../../../../../../../src/components';
3
+ import { type IModalProps } from '../../..';
4
4
  export interface IDeleteConfirmModalProps extends IModalProps {
5
5
  open: boolean;
6
6
  title: string;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { type IModalProps } from '../../../../../../../../../../src/components';
2
+ import { type IModalProps } from '../../..';
3
3
  export interface IErrorModalProps extends Omit<IModalProps, 'footer' | 'okText' | 'okButtonProps' | 'cancelText' | 'cancelButtonProps' | 'onOk' | 'onCancel' | 'content'> {
4
4
  open: boolean;
5
5
  title?: string;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import type { IconVariant, IconNames } from '../../../../../../../../../src/types/icons';
2
+ import type { IconVariant, IconNames } from '../../../types/icons';
3
3
  type IconSize = 'xxxxl' | 'xxxl' | 'xxl' | 'xl' | 'lg' | 'md' | 'sm' | 'xs';
4
4
  export type IconColor = 'default' | 'primary' | 'success' | 'warning' | 'error' | 'info' | 'white' | 'black' | 'text' | 'strong' | 'brand' | 'inherit';
5
5
  export interface IIconProps {
@@ -1,137 +1,137 @@
1
- import AcceptIcon from '../../../../../../../../src/assets/svg/mp_act_lt_accept.svg?react';
2
- import AddIcon from '../../../../../../../../src/assets/svg/add.svg?react';
3
- import AlicornIcon from '../../../../../../../../src/assets/svg/alicorn.svg?react';
4
- import RateDownIcon from '../../../../../../../../src/assets/svg/rate_down.svg?react';
5
- import RateDownIconDt from '../../../../../../../../src/assets/svg/mp_act_dt_rate-down.svg?react';
6
- import RateStarIcon from '../../../../../../../../src/assets/svg/mp_act_lt_rate-star.svg?react';
7
- import RateStarIconDt from '../../../../../../../../src/assets/svg/mp_act_dt_rate-star.svg?react';
8
- import RateUpIcon from '../../../../../../../../src/assets/svg/rate_up.svg?react';
9
- import RateUpIconDt from '../../../../../../../../src/assets/svg/mp_act_dt_rate-up.svg?react';
10
- import RunIcon from '../../../../../../../../src/assets/svg/mp_act_lt_run.svg?react';
11
- import AnalyticsIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_analytcis.svg?react';
12
- import AnalyticsIconDt from '../../../../../../../../src/assets/svg/mp_pm_dt_analytics.svg?react';
13
- import C360Icon from '../../../../../../../../src/assets/svg/mp_pm_lt_c360.svg?react';
14
- import C360IconDt from '../../../../../../../../src/assets/svg/mp_pm_dt_c360.svg?react';
15
- import CalculatedAttributeIcon from '../../../../../../../../src/assets/svg/mp_info_lt_calculated-attribute.svg?react';
16
- import CriteriaGroupIcon from '../../../../../../../../src/assets/svg/mp_info_lt_criteria-group.svg?react';
17
- import CatalogIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_catalog.svg?react';
18
- import ChartColumnIcon from '../../../../../../../../src/assets/svg/chart-column.svg?react';
19
- import ChartLineIcon from '../../../../../../../../src/assets/svg/chart-line.svg?react';
20
- import CheckIcon from '../../../../../../../../src/assets/svg/check.svg?react';
21
- import CircleNodesIcon from '../../../../../../../../src/assets/svg/circle-nodes.svg?react';
22
- import CloudIcon from '../../../../../../../../src/assets/svg/cloud.svg?react';
23
- import ConnectionsIcon from '../../../../../../../../src/assets/svg/connections.svg?react';
24
- import DataPlatformIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_data-paltform.svg?react';
25
- import DataPlatformIconDt from '../../../../../../../../src/assets/svg/mp_pm_dt_data-platform.svg?react';
26
- import DatabaseIcon from '../../../../../../../../src/assets/svg/database.svg?react';
27
- import DateIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_date.svg?react';
28
- import DevicesIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_devices.svg?react';
29
- import DragAndDropIcon from '../../../../../../../../src/assets/svg/mp_act_lt_dragandrop.svg?react';
30
- import DsrIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_dsr.svg?react';
31
- import EmptyIcon from '../../../../../../../../src/assets/svg/empty.svg?react';
32
- import StateError from '../../../../../../../../src/assets/svg/mp_info_lt_empty-error.svg?react';
33
- import EnrichmentIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_enrichment.svg?react';
34
- import EventAttributeIcon from '../../../../../../../../src/assets/svg/event-attribute.svg?react';
35
- import EventIcon from '../../../../../../../../src/assets/svg/event.svg?react';
36
- import FitToScreen from '../../../../../../../../src/assets/svg/mp_act_lt_fit-to-screen.svg?react';
37
- import FolderClosedIcon from '../../../../../../../../src/assets/svg/folder-closed.svg?react';
38
- import ForwardingIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_forwarding.svg?react';
39
- import GearIcon from '../../../../../../../../src/assets/svg/gear.svg?react';
40
- import GridIcon from '../../../../../../../../src/assets/svg/grid.svg?react';
41
- import GroupIcon from '../../../../../../../../src/assets/svg/mp_info_lt_group.svg?react';
42
- import HeartIcon from '../../../../../../../../src/assets/svg/heart.svg?react';
43
- import HelpIcon from '../../../../../../../../src/assets/svg/help.svg?react';
44
- import IdentityIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_identity.svg?react';
45
- import JumpToIcon from '../../../../../../../../src/assets/svg/mp_act_lt_jump-to.svg?react';
46
- import LightBulbIcon from '../../../../../../../../src/assets/svg/lightbulb.svg?react';
47
- import LiveStreamIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_live-stream.svg?react';
48
- import MessageQuestionIcon from '../../../../../../../../src/assets/svg/message-question.svg?react';
49
- import MpLogoIcon from '../../../../../../../../src/assets/svg/mpLogo.svg?react';
50
- import ObservabilityIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_observability.svg?react';
51
- import OversightIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_oversight.svg?react';
52
- import OversightIconDt from '../../../../../../../../src/assets/svg/mp_pm_dt_oversight.svg?react';
53
- import PrecisionIcon from '../../../../../../../../src/assets/svg/precision.svg?react';
54
- import PredictionsIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_predictions.svg?react';
55
- import PredictionsIconDt from '../../../../../../../../src/assets/svg/mp_pm_dt_predictions.svg?react';
56
- import RemoveIcon from '../../../../../../../../src/assets/svg/remove.svg?react';
57
- import SearchIcon from '../../../../../../../../src/assets/svg/search.svg?react';
58
- import SegmentationIconDt from '../../../../../../../../src/assets/svg/mp_pm_dt_segmentation.svg?react';
59
- import ShieldKeyholeIcon from '../../../../../../../../src/assets/svg/shield-keyhole.svg?react';
60
- import SignoutIcon from '../../../../../../../../src/assets/svg/signout.svg?react';
61
- import SplitIcon from '../../../../../../../../src/assets/svg/split.svg?react';
62
- import SystemAlertsIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_system-alerts.svg?react';
63
- import TransformationsIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_transformations.svg?react';
64
- import UploadIcon from '../../../../../../../../src/assets/svg/mp_act_it_upload.svg?react';
65
- import UserAttributeIcon from '../../../../../../../../src/assets/svg/user-attribute.svg?react';
66
- import UserIcon from '../../../../../../../../src/assets/svg/mp_info_lt_user.svg?react';
67
- import UserProfilesIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_userprofiles.svg?react';
68
- import ViewOnlyIcon from '../../../../../../../../src/assets/svg/mp_info_lt_view-only.svg?react';
69
- import UsersIcon from '../../../../../../../../src/assets/svg/mp_info_lt_users.svg?react';
70
- import WrenchIcon from '../../../../../../../../src/assets/svg/wrench.svg?react';
71
- import ZoomIn from '../../../../../../../../src/assets/svg/mp_act_lt_zoom-in.svg?react';
72
- import ZoomOut from '../../../../../../../../src/assets/svg/mp_act_lt_zoom-out.svg?react';
73
- import PremiumIcon from '../../../../../../../../src/assets/svg/mp_info_lt_premium.svg?react';
74
- import PaywallIcon from '../../../../../../../../src/assets/svg/mp_info_lt_paywall.svg?react';
75
- import ConversionIcon from '../../../../../../../../src/assets/svg/mp_info_lt_conversion.svg?react';
76
- import HelpVideoIcon from '../../../../../../../../src/assets/svg/mp_info_lt_help-video.svg?react';
77
- import NextIcon from '../../../../../../../../src/assets/svg/mp_act_lt_next.svg?react';
78
- import NumberIcon from '../../../../../../../../src/assets/svg/mp_data_lt_number.svg?react';
79
- import OpenTabIcon from '../../../../../../../../src/assets/svg/mp_act_lt_open-tab.svg?react';
80
- import PauseIcon from '../../../../../../../../src/assets/svg/mp_act_lt_pause.svg?react';
81
- import PlayIcon from '../../../../../../../../src/assets/svg/mp_act_lt_play.svg?react';
82
- import PreviousIcon from '../../../../../../../../src/assets/svg/mp_act_lt_previous.svg?react';
83
- import DirectoryIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_directory.svg?react';
84
- import LockIcon from '../../../../../../../../src/assets/svg/mp_act_lt_lock.svg?react';
85
- import UnlockIcon from '../../../../../../../../src/assets/svg/mp_act_lt_unlock.svg?react';
86
- import NotificationIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_notification.svg?react';
87
- import NotificationSubscribedIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_notification_subscribed.svg?react';
88
- import NotificationSubscribeIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_notification_subscribe.svg?react';
89
- import PremiumIconDt from '../../../../../../../../src/assets/svg/mp_info_dt_premium.svg?react';
90
- import OverviewIcon from '../../../../../../../../src/assets/svg/mp_pm_lt_overview.svg?react';
91
- import OverviewIconDt from '../../../../../../../../src/assets/svg/mp_pm_dt_overview.svg?react';
92
- import FilterIcon from '../../../../../../../../src/assets/svg/mp_act_lt_filter.svg?react';
93
- import ActiveIcon from '../../../../../../../../src/assets/svg/mp_info_lt_active.svg?react';
94
- import AgentCopilotIcon from '../../../../../../../../src/assets/svg/mp_info_dt_agent-copilot.svg?react';
95
- import AudienceGroupIcon from '../../../../../../../../src/assets/svg/mp_info_lt_audience-group.svg?react';
96
- import LinkIcon from '../../../../../../../../src/assets/svg/mp_info_link.svg?react';
97
- import InfoIcon from '../../../../../../../../src/assets/svg/mp_info_lt_info.svg?react';
98
- import Placeholder from '../../../../../../../../src/assets/svg/mp_info_lt_placeholder.svg?react';
99
- import Organization from '../../../../../../../../src/assets/svg/mp_pm_lt_organization.svg?react';
100
- import JourneyAnalysis from '../../../../../../../../src/assets/svg/mp_pm_lt_journey-analysis.svg?react';
101
- import Dashboard from '../../../../../../../../src/assets/svg/mp_pm_lt_dashboard.svg?react';
102
- import Account from '../../../../../../../../src/assets/svg/mp_pm_lt_account.svg?react';
103
- import TextWidget from '../../../../../../../../src/assets/svg/mp_info_lt_text-widget.svg?react';
104
- import RefreshFrequency from '../../../../../../../../src/assets/svg/mp_info_lt_refresh-frequency.svg?react';
105
- import Privileges from '../../../../../../../../src/assets/svg/mp_info_lt_privileges.svg?react';
106
- import Funnel from '../../../../../../../../src/assets/svg/mp_info_lt_funnel.svg?react';
107
- import Cohort from '../../../../../../../../src/assets/svg/mp_info_lt_cohort.svg?react';
108
- import Annotation from '../../../../../../../../src/assets/svg/mp_info_lt_annotation.svg?react';
109
- import Delete from '../../../../../../../../src/assets/svg/mp_act_lt_delete.svg?react';
110
- import DropdownClose from '../../../../../../../../src/assets/svg/mp_act_lt_dropdown-close.svg?react';
111
- import DropdownOpen from '../../../../../../../../src/assets/svg/mp_act_lt_dropdown-open.svg?react';
112
- import SegmentationAnalysis from '../../../../../../../../src/assets/svg/mp_pm_lt_segmentation-analysis.svg?react';
113
- import ScheduledReport from '../../../../../../../../src/assets/svg/mp_pm_lt_scheduled-report.svg?react';
114
- import FullScreen from '../../../../../../../../src/assets/svg/mp_act_lt_full-screen.svg?react';
115
- import Edit from '../../../../../../../../src/assets/svg/mp_act_lt_edit.svg?react';
116
- import Copy from '../../../../../../../../src/assets/svg/mp_act_lt_copy.svg?react';
117
- import MoreActions from '../../../../../../../../src/assets/svg/mp_act_lt_more-actions.svg?react';
118
- import AbSplit from '../../../../../../../../src/assets/svg/mp_info_lt_ab-split.svg?react';
119
- import ArrayIcon from '../../../../../../../../src/assets/svg/mp_data_dt_array.svg?react';
120
- import BannerFreemium from '../../../../../../../../src/assets/svg/mp_info_dt_sampled.svg?react';
121
- import BooleanIcon from '../../../../../../../../src/assets/svg/mp_data_lt_boolean.svg?react';
122
- import StateEmpty from '../../../../../../../../src/assets/svg/mp_info_lt_state-empty.svg?react';
123
- import StateNoResults from '../../../../../../../../src/assets/svg/mp_info_lt_state-no-results.svg?react';
124
- import Back from '../../../../../../../../src/assets/svg/mp_act_lt_back.svg?react';
125
- import Flag from '../../../../../../../../src/assets/svg/flag.svg?react';
126
- import SubmitFeedback from '../../../../../../../../src/assets/svg/mp_act_lt_submit-feedback.svg?react';
127
- import Boost from '../../../../../../../../src/assets/svg/mp_info_lt_boost.svg?react';
128
- import Clone from '../../../../../../../../src/assets/svg/mp_act_lt_clone.svg?react';
129
- import Reorder from '../../../../../../../../src/assets/svg/mp_act_lt_reorder.svg?react';
130
- import GenericIcon from '../../../../../../../../src/assets/svg/mp_info_lt_generic.svg?react';
131
- import ListIcon from '../../../../../../../../src/assets/svg/mp_data_dt_list.svg?react';
132
- import OtherIcon from '../../../../../../../../src/assets/svg/mp_info_lt_other.svg?react';
133
- import OtherDataIcon from '../../../../../../../../src/assets/svg/mp_data_dt_other.svg?react';
134
- import RefreshIcon from '../../../../../../../../src/assets/svg/refresh.svg?react';
135
- import StringIcon from '../../../../../../../../src/assets/svg/mp_data_dt_string.svg?react';
136
- import TimestampIcon from '../../../../../../../../src/assets/svg/mp_data_dt_timestamp.svg?react';
1
+ import AcceptIcon from '../../assets/svg/mp_act_lt_accept.svg?react';
2
+ import AddIcon from '../../assets/svg/add.svg?react';
3
+ import AlicornIcon from '../../assets/svg/alicorn.svg?react';
4
+ import RateDownIcon from '../../assets/svg/rate_down.svg?react';
5
+ import RateDownIconDt from '../../assets/svg/mp_act_dt_rate-down.svg?react';
6
+ import RateStarIcon from '../../assets/svg/mp_act_lt_rate-star.svg?react';
7
+ import RateStarIconDt from '../../assets/svg/mp_act_dt_rate-star.svg?react';
8
+ import RateUpIcon from '../../assets/svg/rate_up.svg?react';
9
+ import RateUpIconDt from '../../assets/svg/mp_act_dt_rate-up.svg?react';
10
+ import RunIcon from '../../assets/svg/mp_act_lt_run.svg?react';
11
+ import AnalyticsIcon from '../../assets/svg/mp_pm_lt_analytcis.svg?react';
12
+ import AnalyticsIconDt from '../../assets/svg/mp_pm_dt_analytics.svg?react';
13
+ import C360Icon from '../../assets/svg/mp_pm_lt_c360.svg?react';
14
+ import C360IconDt from '../../assets/svg/mp_pm_dt_c360.svg?react';
15
+ import CalculatedAttributeIcon from '../../assets/svg/mp_info_lt_calculated-attribute.svg?react';
16
+ import CriteriaGroupIcon from '../../assets/svg/mp_info_lt_criteria-group.svg?react';
17
+ import CatalogIcon from '../../assets/svg/mp_pm_lt_catalog.svg?react';
18
+ import ChartColumnIcon from '../../assets/svg/chart-column.svg?react';
19
+ import ChartLineIcon from '../../assets/svg/chart-line.svg?react';
20
+ import CheckIcon from '../../assets/svg/check.svg?react';
21
+ import CircleNodesIcon from '../../assets/svg/circle-nodes.svg?react';
22
+ import CloudIcon from '../../assets/svg/cloud.svg?react';
23
+ import ConnectionsIcon from '../../assets/svg/connections.svg?react';
24
+ import DataPlatformIcon from '../../assets/svg/mp_pm_lt_data-paltform.svg?react';
25
+ import DataPlatformIconDt from '../../assets/svg/mp_pm_dt_data-platform.svg?react';
26
+ import DatabaseIcon from '../../assets/svg/database.svg?react';
27
+ import DateIcon from '../../assets/svg/mp_pm_lt_date.svg?react';
28
+ import DevicesIcon from '../../assets/svg/mp_pm_lt_devices.svg?react';
29
+ import DragAndDropIcon from '../../assets/svg/mp_act_lt_dragandrop.svg?react';
30
+ import DsrIcon from '../../assets/svg/mp_pm_lt_dsr.svg?react';
31
+ import EmptyIcon from '../../assets/svg/empty.svg?react';
32
+ import StateError from '../../assets/svg/mp_info_lt_empty-error.svg?react';
33
+ import EnrichmentIcon from '../../assets/svg/mp_pm_lt_enrichment.svg?react';
34
+ import EventAttributeIcon from '../../assets/svg/event-attribute.svg?react';
35
+ import EventIcon from '../../assets/svg/event.svg?react';
36
+ import FitToScreen from '../../assets/svg/mp_act_lt_fit-to-screen.svg?react';
37
+ import FolderClosedIcon from '../../assets/svg/folder-closed.svg?react';
38
+ import ForwardingIcon from '../../assets/svg/mp_pm_lt_forwarding.svg?react';
39
+ import GearIcon from '../../assets/svg/gear.svg?react';
40
+ import GridIcon from '../../assets/svg/grid.svg?react';
41
+ import GroupIcon from '../../assets/svg/mp_info_lt_group.svg?react';
42
+ import HeartIcon from '../../assets/svg/heart.svg?react';
43
+ import HelpIcon from '../../assets/svg/help.svg?react';
44
+ import IdentityIcon from '../../assets/svg/mp_pm_lt_identity.svg?react';
45
+ import JumpToIcon from '../../assets/svg/mp_act_lt_jump-to.svg?react';
46
+ import LightBulbIcon from '../../assets/svg/lightbulb.svg?react';
47
+ import LiveStreamIcon from '../../assets/svg/mp_pm_lt_live-stream.svg?react';
48
+ import MessageQuestionIcon from '../../assets/svg/message-question.svg?react';
49
+ import MpLogoIcon from '../../assets/svg/mpLogo.svg?react';
50
+ import ObservabilityIcon from '../../assets/svg/mp_pm_lt_observability.svg?react';
51
+ import OversightIcon from '../../assets/svg/mp_pm_lt_oversight.svg?react';
52
+ import OversightIconDt from '../../assets/svg/mp_pm_dt_oversight.svg?react';
53
+ import PrecisionIcon from '../../assets/svg/precision.svg?react';
54
+ import PredictionsIcon from '../../assets/svg/mp_pm_lt_predictions.svg?react';
55
+ import PredictionsIconDt from '../../assets/svg/mp_pm_dt_predictions.svg?react';
56
+ import RemoveIcon from '../../assets/svg/remove.svg?react';
57
+ import SearchIcon from '../../assets/svg/search.svg?react';
58
+ import SegmentationIconDt from '../../assets/svg/mp_pm_dt_segmentation.svg?react';
59
+ import ShieldKeyholeIcon from '../../assets/svg/shield-keyhole.svg?react';
60
+ import SignoutIcon from '../../assets/svg/signout.svg?react';
61
+ import SplitIcon from '../../assets/svg/split.svg?react';
62
+ import SystemAlertsIcon from '../../assets/svg/mp_pm_lt_system-alerts.svg?react';
63
+ import TransformationsIcon from '../../assets/svg/mp_pm_lt_transformations.svg?react';
64
+ import UploadIcon from '../../assets/svg/mp_act_it_upload.svg?react';
65
+ import UserAttributeIcon from '../../assets/svg/user-attribute.svg?react';
66
+ import UserIcon from '../../assets/svg/mp_info_lt_user.svg?react';
67
+ import UserProfilesIcon from '../../assets/svg/mp_pm_lt_userprofiles.svg?react';
68
+ import ViewOnlyIcon from '../../assets/svg/mp_info_lt_view-only.svg?react';
69
+ import UsersIcon from '../../assets/svg/mp_info_lt_users.svg?react';
70
+ import WrenchIcon from '../../assets/svg/wrench.svg?react';
71
+ import ZoomIn from '../../assets/svg/mp_act_lt_zoom-in.svg?react';
72
+ import ZoomOut from '../../assets/svg/mp_act_lt_zoom-out.svg?react';
73
+ import PremiumIcon from '../../assets/svg/mp_info_lt_premium.svg?react';
74
+ import PaywallIcon from '../../assets/svg/mp_info_lt_paywall.svg?react';
75
+ import ConversionIcon from '../../assets/svg/mp_info_lt_conversion.svg?react';
76
+ import HelpVideoIcon from '../../assets/svg/mp_info_lt_help-video.svg?react';
77
+ import NextIcon from '../../assets/svg/mp_act_lt_next.svg?react';
78
+ import NumberIcon from '../../assets/svg/mp_data_lt_number.svg?react';
79
+ import OpenTabIcon from '../../assets/svg/mp_act_lt_open-tab.svg?react';
80
+ import PauseIcon from '../../assets/svg/mp_act_lt_pause.svg?react';
81
+ import PlayIcon from '../../assets/svg/mp_act_lt_play.svg?react';
82
+ import PreviousIcon from '../../assets/svg/mp_act_lt_previous.svg?react';
83
+ import DirectoryIcon from '../../assets/svg/mp_pm_lt_directory.svg?react';
84
+ import LockIcon from '../../assets/svg/mp_act_lt_lock.svg?react';
85
+ import UnlockIcon from '../../assets/svg/mp_act_lt_unlock.svg?react';
86
+ import NotificationIcon from '../../assets/svg/mp_pm_lt_notification.svg?react';
87
+ import NotificationSubscribedIcon from '../../assets/svg/mp_pm_lt_notification_subscribed.svg?react';
88
+ import NotificationSubscribeIcon from '../../assets/svg/mp_pm_lt_notification_subscribe.svg?react';
89
+ import PremiumIconDt from '../../assets/svg/mp_info_dt_premium.svg?react';
90
+ import OverviewIcon from '../../assets/svg/mp_pm_lt_overview.svg?react';
91
+ import OverviewIconDt from '../../assets/svg/mp_pm_dt_overview.svg?react';
92
+ import FilterIcon from '../../assets/svg/mp_act_lt_filter.svg?react';
93
+ import ActiveIcon from '../../assets/svg/mp_info_lt_active.svg?react';
94
+ import AgentCopilotIcon from '../../assets/svg/mp_info_dt_agent-copilot.svg?react';
95
+ import AudienceGroupIcon from '../../assets/svg/mp_info_lt_audience-group.svg?react';
96
+ import LinkIcon from '../../assets/svg/mp_info_link.svg?react';
97
+ import InfoIcon from '../../assets/svg/mp_info_lt_info.svg?react';
98
+ import Placeholder from '../../assets/svg/mp_info_lt_placeholder.svg?react';
99
+ import Organization from '../../assets/svg/mp_pm_lt_organization.svg?react';
100
+ import JourneyAnalysis from '../../assets/svg/mp_pm_lt_journey-analysis.svg?react';
101
+ import Dashboard from '../../assets/svg/mp_pm_lt_dashboard.svg?react';
102
+ import Account from '../../assets/svg/mp_pm_lt_account.svg?react';
103
+ import TextWidget from '../../assets/svg/mp_info_lt_text-widget.svg?react';
104
+ import RefreshFrequency from '../../assets/svg/mp_info_lt_refresh-frequency.svg?react';
105
+ import Privileges from '../../assets/svg/mp_info_lt_privileges.svg?react';
106
+ import Funnel from '../../assets/svg/mp_info_lt_funnel.svg?react';
107
+ import Cohort from '../../assets/svg/mp_info_lt_cohort.svg?react';
108
+ import Annotation from '../../assets/svg/mp_info_lt_annotation.svg?react';
109
+ import Delete from '../../assets/svg/mp_act_lt_delete.svg?react';
110
+ import DropdownClose from '../../assets/svg/mp_act_lt_dropdown-close.svg?react';
111
+ import DropdownOpen from '../../assets/svg/mp_act_lt_dropdown-open.svg?react';
112
+ import SegmentationAnalysis from '../../assets/svg/mp_pm_lt_segmentation-analysis.svg?react';
113
+ import ScheduledReport from '../../assets/svg/mp_pm_lt_scheduled-report.svg?react';
114
+ import FullScreen from '../../assets/svg/mp_act_lt_full-screen.svg?react';
115
+ import Edit from '../../assets/svg/mp_act_lt_edit.svg?react';
116
+ import Copy from '../../assets/svg/mp_act_lt_copy.svg?react';
117
+ import MoreActions from '../../assets/svg/mp_act_lt_more-actions.svg?react';
118
+ import AbSplit from '../../assets/svg/mp_info_lt_ab-split.svg?react';
119
+ import ArrayIcon from '../../assets/svg/mp_data_dt_array.svg?react';
120
+ import BannerFreemium from '../../assets/svg/mp_info_dt_sampled.svg?react';
121
+ import BooleanIcon from '../../assets/svg/mp_data_lt_boolean.svg?react';
122
+ import StateEmpty from '../../assets/svg/mp_info_lt_state-empty.svg?react';
123
+ import StateNoResults from '../../assets/svg/mp_info_lt_state-no-results.svg?react';
124
+ import Back from '../../assets/svg/mp_act_lt_back.svg?react';
125
+ import Flag from '../../assets/svg/flag.svg?react';
126
+ import SubmitFeedback from '../../assets/svg/mp_act_lt_submit-feedback.svg?react';
127
+ import Boost from '../../assets/svg/mp_info_lt_boost.svg?react';
128
+ import Clone from '../../assets/svg/mp_act_lt_clone.svg?react';
129
+ import Reorder from '../../assets/svg/mp_act_lt_reorder.svg?react';
130
+ import GenericIcon from '../../assets/svg/mp_info_lt_generic.svg?react';
131
+ import ListIcon from '../../assets/svg/mp_data_dt_list.svg?react';
132
+ import OtherIcon from '../../assets/svg/mp_info_lt_other.svg?react';
133
+ import OtherDataIcon from '../../assets/svg/mp_data_dt_other.svg?react';
134
+ import RefreshIcon from '../../assets/svg/refresh.svg?react';
135
+ import StringIcon from '../../assets/svg/mp_data_dt_string.svg?react';
136
+ import TimestampIcon from '../../assets/svg/mp_data_dt_timestamp.svg?react';
137
137
  export { AbSplit, AcceptIcon, Account, ActiveIcon, AgentCopilotIcon, AddIcon, AlicornIcon, ArrayIcon, AudienceGroupIcon, RateDownIcon, RateDownIconDt, RateStarIcon, RateStarIconDt, RateUpIcon, RateUpIconDt, RunIcon, AnalyticsIcon, AnalyticsIconDt, Annotation, C360Icon, C360IconDt, CalculatedAttributeIcon, CriteriaGroupIcon, CatalogIcon, ChartColumnIcon, ChartLineIcon, CheckIcon, CircleNodesIcon, CloudIcon, Cohort, ConnectionsIcon, ConversionIcon, Copy, Dashboard, DatabaseIcon, DataPlatformIcon, DataPlatformIconDt, DateIcon, Delete, DevicesIcon, DirectoryIcon, DragAndDropIcon, DropdownClose, DropdownOpen, DsrIcon, Edit, EmptyIcon, StateError, EnrichmentIcon, EventAttributeIcon, EventIcon, FilterIcon, FitToScreen, Flag, FolderClosedIcon, ForwardingIcon, FullScreen, Funnel, GearIcon, GenericIcon, GridIcon, GroupIcon, HeartIcon, HelpIcon, HelpVideoIcon, IdentityIcon, InfoIcon, JourneyAnalysis, JumpToIcon, LightBulbIcon, LinkIcon, LiveStreamIcon, LockIcon, MessageQuestionIcon, MoreActions, MpLogoIcon, NextIcon, NotificationIcon, NotificationSubscribedIcon, NotificationSubscribeIcon, ObservabilityIcon, OpenTabIcon, Organization, OtherIcon, OversightIcon, OversightIconDt, OverviewIcon, OverviewIconDt, PauseIcon, Placeholder, PlayIcon, PrecisionIcon, PredictionsIcon, PredictionsIconDt, PremiumIcon, PremiumIconDt, PreviousIcon, Privileges, RefreshFrequency, Reorder, RemoveIcon, ScheduledReport, SearchIcon, SegmentationAnalysis, SegmentationIconDt, ShieldKeyholeIcon, SignoutIcon, SplitIcon, SubmitFeedback, SystemAlertsIcon, TextWidget, TransformationsIcon, UnlockIcon, UploadIcon, UserAttributeIcon, UserIcon, UserProfilesIcon, UsersIcon, ViewOnlyIcon, WrenchIcon, ZoomIn, ZoomOut, BannerFreemium, PaywallIcon, StateEmpty, StateNoResults, Back, BooleanIcon, Boost, Clone, ListIcon, NumberIcon, OtherDataIcon, RefreshIcon, StringIcon, TimestampIcon, };
@@ -58,8 +58,8 @@ export { Notification, type INotificationProps, notification } from './feedback/
58
58
  export { Alert, type IAlertProps } from './feedback/Alert/Alert';
59
59
  export { Message, type IMessageProps, message } from './feedback/Message/Message';
60
60
  export { LoadingModal, type ILoadingModalProps } from './feedback/LoadingModal/LoadingModal';
61
- export { DeleteConfirmModal, type IDeleteConfirmModalProps, } from '../../../../../../../src/components/feedback/Modal/DeleteConfirmModal/DeleteConfirmModal';
62
- export { ErrorModal, type IErrorModalProps } from '../../../../../../../src/components/feedback/Modal/ErrorModal/ErrorModal';
61
+ export { DeleteConfirmModal, type IDeleteConfirmModalProps, } from './feedback/Modal/DeleteConfirmModal/DeleteConfirmModal';
62
+ export { ErrorModal, type IErrorModalProps } from './feedback/Modal/ErrorModal/ErrorModal';
63
63
  export { Flex, type IFlexProps } from './layout/Flex/Flex';
64
64
  export { Center } from './layout/Center/Center';
65
65
  export { Divider, type IDividerProps } from './layout/Divider/Divider';
@@ -1,3 +1,3 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
- import { type IFlexProps } from '../../../../../../../../../src/components/layout/Flex/Flex';
2
+ import { type IFlexProps } from '../Flex/Flex';
3
3
  export declare const Center: (props: Omit<IFlexProps, 'justify' | 'align'>) => JSX.Element;
@@ -1,7 +1,7 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
- import { INewExperienceReminderOptions, NewExperienceReminderHook, type IGlobalNavigationLogo, type INavigationOrg, type INavigationCreateProps, type IAvatarProps } from '../../../../../../../../../src/components';
3
- import { type IGlobalNavigationItem, type ISuiteSelectorOptions } from '../../../../../../../../../src/components/navigation/GlobalNavigation/GlobalNavigationItems';
4
- import { type INotificationCenterProps } from '../../../../../../../../../src/components/navigation/GlobalNavigation/NotificationCenter';
2
+ import { INewExperienceReminderOptions, NewExperienceReminderHook, type IGlobalNavigationLogo, type INavigationOrg, type INavigationCreateProps, type IAvatarProps } from '../..';
3
+ import { type IGlobalNavigationItem, type ISuiteSelectorOptions } from './GlobalNavigationItems';
4
+ import { type INotificationCenterProps } from './NotificationCenter';
5
5
  export interface NotificationActions {
6
6
  onClose?: () => void;
7
7
  onPreferencesClick?: () => void;
@@ -1,5 +1,5 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
- import { type MenuItemGroupType, type MenuItemType } from '../../../../../../../../../src/components';
2
+ import { type MenuItemGroupType, type MenuItemType } from '../..';
3
3
  export interface INavigationCreateProps {
4
4
  createItems: Array<INavigationCreateItem | INavigationCreateGroup>;
5
5
  }
@@ -1,7 +1,7 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
2
  import { type MouseEvent, type ReactNode } from 'react';
3
- import { type IGlobalNavigationItem } from '../../../../../../../../../src/components';
4
- import { type HrefOptions } from '../../../../../../../../../src/utils/utils';
3
+ import { type IGlobalNavigationItem } from '../..';
4
+ import { type HrefOptions } from '../../../utils/utils';
5
5
  export interface INavigationItemProps {
6
6
  type: 'link' | 'menu';
7
7
  icon?: ReactNode;
@@ -1,5 +1,5 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
- import { type IGlobalNavigationItem } from '../../../../../../../../../src/components/navigation/GlobalNavigation/GlobalNavigationItems';
2
+ import { type IGlobalNavigationItem } from './GlobalNavigationItems';
3
3
  export interface INavigationListProps {
4
4
  items: IGlobalNavigationItem[];
5
5
  }
@@ -1,5 +1,5 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
- import { type IGlobalNavigationItem } from '../../../../../../../../../src/components/navigation/GlobalNavigation/GlobalNavigationItems';
2
+ import { type IGlobalNavigationItem } from './GlobalNavigationItems';
3
3
  export interface INavigationMenuProps {
4
4
  items: IGlobalNavigationItem[];
5
5
  }
@@ -1,5 +1,5 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
- import { type IButtonProps, type IPopoverProps } from '../../../../../../../../../src/components';
2
+ import { type IButtonProps, type IPopoverProps } from '../..';
3
3
  export interface INotificationCenterProps extends Omit<IPopoverProps, 'key' | 'trigger' | 'placement' | 'arrow' | 'overlayClassName' | 'title'> {
4
4
  unreadMessages?: number;
5
5
  onClose?: IButtonProps['onClick'];
@@ -1,5 +1,5 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
- import { type IGlobalNavigationLogo, type ISuiteSelectorOptions } from '../../../../../../../../../src/components/navigation/GlobalNavigation/GlobalNavigationItems';
2
+ import { type IGlobalNavigationLogo, type ISuiteSelectorOptions } from './GlobalNavigationItems';
3
3
  interface SuiteLogoProps extends IGlobalNavigationLogo {
4
4
  suiteSelectorOptions?: ISuiteSelectorOptions;
5
5
  }
@@ -1,7 +1,7 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
2
  import { type ReactNode } from 'react';
3
- import { type IPopoverProps } from '../../../../../../../../../../src/components';
4
- import { type ISuiteSelectorOptions, type SuiteLink } from '../../../../../../../../../../src/components/navigation/GlobalNavigation/GlobalNavigationItems';
3
+ import { type IPopoverProps } from '../../..';
4
+ import { type ISuiteSelectorOptions, type SuiteLink } from '../GlobalNavigationItems';
5
5
  interface ISuiteSelectorProps extends IPopoverProps {
6
6
  suiteSelectorOptions: ISuiteSelectorOptions;
7
7
  onLinkClick: (link: SuiteLink) => void;
@@ -1,5 +1,5 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
- import { type ISuiteSelectorOptions } from '../../../../../../../../../../src/components/navigation/GlobalNavigation/GlobalNavigationItems';
2
+ import { type ISuiteSelectorOptions } from '../GlobalNavigationItems';
3
3
  type ISuiteSelectorContentProps = ISuiteSelectorOptions;
4
4
  export declare function SuiteSelectorContent(props: ISuiteSelectorContentProps): JSX.Element;
5
5
  export {};
@@ -1,5 +1,5 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
- import { type SuiteLink, type SuiteLinks } from '../../../../../../../../../../src/components/navigation/GlobalNavigation/GlobalNavigationItems';
2
+ import { type SuiteLink, type SuiteLinks } from '../GlobalNavigationItems';
3
3
  interface ISuiteSelectorSuiteLinkProps {
4
4
  link: SuiteLink;
5
5
  onLinkClick: (link: SuiteLink) => void;
@@ -1,5 +1,5 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
- import { type IAvatarProps, type INavigationOrg } from '../../../../../../../../../../src/components';
2
+ import { type IAvatarProps, type INavigationOrg } from '../../..';
3
3
  export interface IWorkspaceSelectorProps {
4
4
  orgs: INavigationOrg[];
5
5
  avatarOptions?: IAvatarProps;
@@ -1,6 +1,6 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
2
  import { type ChangeEvent, type RefObject } from 'react';
3
- import { type InputRef, type IWorkspaceSelectorDisplayItem } from '../../../../../../../../../../src/components';
3
+ import { type InputRef, type IWorkspaceSelectorDisplayItem } from '../../..';
4
4
  type WorkspaceSelectorContentProps = {
5
5
  onSearch: (e: ChangeEvent<HTMLInputElement>) => void;
6
6
  searchTerm: string;
@@ -1,5 +1,5 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
- import { type IWorkspaceSelectorDisplayItem } from '../../../../../../../../../../src/components';
2
+ import { type IWorkspaceSelectorDisplayItem } from '../../..';
3
3
  type WorkspaceSelectorContentItemsProps = {
4
4
  menuItems: IWorkspaceSelectorDisplayItem[];
5
5
  };
@@ -1,2 +1,2 @@
1
- import { type INavigationOrg } from '../../../../../../../../../src/components';
1
+ import { type INavigationOrg } from '../..';
2
2
  export declare function generateOrgs(orgs: number, accounts: number, workspaces: number): INavigationOrg[];
@@ -1,2 +1,2 @@
1
- import { type IconOptions, type IconNames } from '../../../../../../../src/types/icons';
1
+ import { type IconOptions, type IconNames } from '../types/icons';
2
2
  export declare const Icons: Record<IconNames, IconOptions>;
@@ -1,5 +1,5 @@
1
- import { UserPreferenceScopeType, type UserPreferenceDefinitions } from '../../../../../../../../../src/services/user-preferences/models/definitions';
2
- import { type UserPreferenceScope } from '../../../../../../../../../src/services/user-preferences/models/storage-models';
1
+ import { UserPreferenceScopeType, type UserPreferenceDefinitions } from '../models/definitions';
2
+ import { type UserPreferenceScope } from '../models/storage-models';
3
3
  import { type UserPreferencesPerScope } from '../models/definitions/user-preference-per-scope';
4
4
  export declare class CompositeUserPreferencesService<T extends Record<string, unknown>> {
5
5
  getScopedUserPreferences(userPreferencesPerScope: UserPreferencesPerScope<T>, currentScope: UserPreferenceScope, definitions: UserPreferenceDefinitions<T>): T;
@@ -1,6 +1,6 @@
1
- import { type UserPreferenceScope } from '../../../../../../../../src/services/user-preferences/models/storage-models';
2
- import { type CookieOptions } from '../../../../../../../../src/utils/Cookies';
3
- import { type UserPreferenceDefinitions } from '../../../../../../../../src/components';
1
+ import { type UserPreferenceScope } from './models/storage-models';
2
+ import { type CookieOptions } from '../../utils/Cookies';
3
+ import { type UserPreferenceDefinitions } from '../../components';
4
4
  export declare class UserPreferencesService<T extends Record<string, unknown>> {
5
5
  private readonly definitions;
6
6
  private readonly currentScope;
@@ -1,7 +1,7 @@
1
- import { type UserPreferenceScope } from '../../../../../../../../src/services/user-preferences/models/storage-models/user-preference-scope';
2
- import { UserPreferenceScopeType } from '../../../../../../../../src/services/user-preferences/models/definitions/user-preference-scope-type';
1
+ import { type UserPreferenceScope } from './models/storage-models/user-preference-scope';
2
+ import { UserPreferenceScopeType } from './models/definitions/user-preference-scope-type';
3
3
  import { type Sync } from 'factory.ts';
4
- import { type UserPreferenceDefinitions } from '../../../../../../../../src/components';
4
+ import { type UserPreferenceDefinitions } from '../../components';
5
5
  import { type UserPreferencesPerScope } from './models/definitions/user-preference-per-scope';
6
6
  export type TestType = {
7
7
  Default: {
@@ -1,4 +1,4 @@
1
- import { type IGlobalNavigationItem } from '../../../../../../../../src/components';
1
+ import { type IGlobalNavigationItem } from '../../components';
2
2
  export declare enum NavigationItemId {
3
3
  Overview = "overview",
4
4
  Oversight = "oversight",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mparticle/aquarium",
3
- "version": "1.56.1",
3
+ "version": "1.56.2",
4
4
  "description": "mParticle Component Library",
5
5
  "license": "Apache-2.0",
6
6
  "keywords": [