@mparticle/aquarium 1.56.1 → 1.57.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/aquarium.js +5522 -5451
- package/dist/aquarium.umd.cjs +36 -36
- package/dist/src/components/UXPatterns/MoreActionsButton/MoreActionsButton.d.ts +18 -0
- package/dist/src/components/data-entry/QueryItem/Action.d.ts +1 -1
- package/dist/src/components/data-entry/QueryItem/Cascader.d.ts +2 -2
- package/dist/src/components/data-entry/QueryItem/QueryItem.d.ts +4 -4
- package/dist/src/components/data-entry/QueryItem/ValueSelector.d.ts +3 -3
- package/dist/src/components/feedback/LoadingModal/LoadingModal.d.ts +1 -1
- package/dist/src/components/feedback/Modal/DeleteConfirmModal/DeleteConfirmModal.d.ts +1 -1
- package/dist/src/components/feedback/Modal/ErrorModal/ErrorModal.d.ts +1 -1
- package/dist/src/components/general/Icon/Icon.d.ts +1 -1
- package/dist/src/components/general/Icon/SuccessStateIcon/SuccessStateIcon.d.ts +9 -0
- package/dist/src/components/general/Icon/WarningStateIcon/WarningStateIcon.d.ts +9 -0
- package/dist/src/components/icons/index.d.ts +136 -136
- package/dist/src/components/index.d.ts +5 -2
- package/dist/src/components/layout/Center/Center.d.ts +1 -1
- package/dist/src/components/navigation/GlobalNavigation/GlobalNavigation.d.ts +3 -3
- package/dist/src/components/navigation/GlobalNavigation/NavigationCreate.d.ts +1 -1
- package/dist/src/components/navigation/GlobalNavigation/NavigationItem.d.ts +2 -2
- package/dist/src/components/navigation/GlobalNavigation/NavigationList.d.ts +1 -1
- package/dist/src/components/navigation/GlobalNavigation/NavigationMenu.d.ts +1 -1
- package/dist/src/components/navigation/GlobalNavigation/NotificationCenter.d.ts +1 -1
- package/dist/src/components/navigation/GlobalNavigation/SuiteLogo.d.ts +1 -1
- package/dist/src/components/navigation/GlobalNavigation/SuiteSelector/SuiteSelector.d.ts +2 -2
- package/dist/src/components/navigation/GlobalNavigation/SuiteSelector/SuiteSelectorContent.d.ts +1 -1
- package/dist/src/components/navigation/GlobalNavigation/SuiteSelector/SuiteSelectorSuiteLink.d.ts +1 -1
- package/dist/src/components/navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelector.d.ts +1 -1
- package/dist/src/components/navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelectorContent.d.ts +1 -1
- package/dist/src/components/navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelectorContentItems.d.ts +1 -1
- package/dist/src/components/navigation/GlobalNavigation/stories-utils.d.ts +1 -1
- package/dist/src/constants/Icons.d.ts +1 -1
- package/dist/src/services/user-preferences/composite-user-preferences-service/composite-user-preferences-service.d.ts +2 -2
- package/dist/src/services/user-preferences/user-preferences-service.d.ts +3 -3
- package/dist/src/services/user-preferences/user-preferences-service.spec.d.ts +3 -3
- package/dist/src/shared/services/NavigationItemsService.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { type INavigationOrg } from '
|
|
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 '
|
|
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 '
|
|
2
|
-
import { type UserPreferenceScope } from '
|
|
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 '
|
|
2
|
-
import { type CookieOptions } from '
|
|
3
|
-
import { type UserPreferenceDefinitions } from '
|
|
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 '
|
|
2
|
-
import { UserPreferenceScopeType } from '
|
|
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 '
|
|
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: {
|