@mparticle/aquarium 1.54.2-fix-sqdui-3981-icontype.2 → 1.55.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.
@@ -1,10 +1,14 @@
1
1
  /// <reference types="react" />
2
2
  import type { RequireAtLeastOne } from 'type-fest';
3
- export type IconVariant = 'light' | 'duo-tone';
3
+ export declare const ICON_VARIANTS: {
4
+ readonly LIGHT: "light";
5
+ readonly DUO_TONE: "duo-tone";
6
+ };
7
+ export type IconVariant = (typeof ICON_VARIANTS)[keyof typeof ICON_VARIANTS];
4
8
  export type IconOptions = RequireAtLeastOne<{
5
- light?: React.ComponentType<React.SVGProps<SVGSVGElement>>;
6
- 'duo-tone'?: React.ComponentType<React.SVGProps<SVGSVGElement>>;
9
+ [ICON_VARIANTS.LIGHT]?: React.ComponentType<React.SVGProps<SVGSVGElement>>;
10
+ [ICON_VARIANTS.DUO_TONE]?: React.ComponentType<React.SVGProps<SVGSVGElement>>;
7
11
  default: IconVariant;
8
- deprecated?: string;
12
+ deprecated?: string | boolean;
9
13
  }, IconVariant>;
10
- export type IconNames = 'abSplit' | 'accept' | 'account' | 'active' | 'agentCopilot' | 'add' | 'alicorn' | 'audienceGroup' | 'analytics' | 'annotation' | 'array' | 'api' | 'audiences' | 'C360' | 'calculatedAttribute' | 'catalog' | 'chartColumn' | 'chartLine' | 'check' | 'circleNodes' | 'close' | 'cloud' | 'cohort' | 'connections' | 'conversion' | 'criteriaGroup' | 'copy' | 'dashboard' | 'database' | 'dataPlatform' | 'date' | 'delete' | 'devices' | 'directory' | 'dragAndDrop' | 'dropdownClose' | 'dropdownOpen' | 'dsr' | 'edit' | 'empty' | 'enrichment' | 'event' | 'eventAttribute' | 'favorite' | 'filter' | 'fitToScreen' | 'flag' | 'folderClosed' | 'forwarding' | 'fullScreen' | 'funnel' | 'gear' | 'generic' | 'grid' | 'group' | 'heart' | 'help' | 'helpVideo' | 'identity' | 'info' | 'insights' | 'journeyAnalysis' | 'journeys' | 'jumpTo' | 'lightBulb' | 'link' | 'list' | 'liveStream' | 'lock' | 'logout' | 'messageQuestion' | 'moreActions' | 'mpLogo' | 'myHub' | 'next' | 'notification' | 'number' | 'notificationSubscribed' | 'notificationSubscribe' | 'observability' | 'openTab' | 'organization' | 'other' | 'otherData' | 'oversight' | 'overview' | 'paywall' | 'pause' | 'pipelines' | 'placeholder' | 'play' | 'precision' | 'predictions' | 'premium' | 'premiumDt' | 'previous' | 'privacy' | 'privileges' | 'refreshFrequency' | 'rateDown' | 'rateStar' | 'rateUp' | 'run' | 'remove' | 'savedProjects' | 'scheduledReport' | 'search' | 'segmentation' | 'segmentationAnalysis' | 'selected' | 'settings' | 'setup' | 'shieldKeyhole' | 'signout' | 'siteMap' | 'sparkles' | 'split' | 'string' | 'support' | 'systemAlerts' | 'textWidget' | 'timestamp' | 'transformation' | 'trends' | 'unlock' | 'upload' | 'userAttribute' | 'userProfiles' | 'users' | 'wrench' | 'zoomIn' | 'zoomOut' | 'bannerFreemium' | 'boolean' | 'stateEmpty' | 'stateError' | 'stateNoResults' | 'back' | 'submitFeedback' | 'boost' | 'clone' | 'reorder' | 'refresh';
14
+ export type IconNames = 'abSplit' | 'accept' | 'account' | 'active' | 'agentCopilot' | 'add' | 'alicorn' | 'audienceGroup' | 'analytics' | 'annotation' | 'array' | 'api' | 'audiences' | 'C360' | 'calculatedAttribute' | 'catalog' | 'chartColumn' | 'chartLine' | 'check' | 'circleNodes' | 'close' | 'cloud' | 'cohort' | 'connections' | 'conversion' | 'criteriaGroup' | 'copy' | 'dashboard' | 'database' | 'dataPlatform' | 'date' | 'delete' | 'devices' | 'directory' | 'dragAndDrop' | 'dropdownClose' | 'dropdownOpen' | 'dsr' | 'edit' | 'empty' | 'enrichment' | 'event' | 'eventAttribute' | 'favorite' | 'filter' | 'fitToScreen' | 'flag' | 'folderClosed' | 'forwarding' | 'fullScreen' | 'funnel' | 'gear' | 'generic' | 'grid' | 'group' | 'heart' | 'help' | 'helpVideo' | 'identity' | 'info' | 'insights' | 'journeyAnalysis' | 'journeys' | 'jumpTo' | 'lightBulb' | 'link' | 'list' | 'liveStream' | 'lock' | 'logout' | 'messageQuestion' | 'moreActions' | 'mpLogo' | 'myHub' | 'next' | 'notification' | 'number' | 'notificationSubscribed' | 'notificationSubscribe' | 'observability' | 'openTab' | 'organization' | 'other' | 'otherData' | 'oversight' | 'overview' | 'paywall' | 'pause' | 'pipelines' | 'placeholder' | 'play' | 'precision' | 'predictions' | 'premium' | 'premiumDt' | 'previous' | 'privacy' | 'privileges' | 'refreshFrequency' | 'rateDown' | 'rateStar' | 'rateUp' | 'run' | 'remove' | 'savedProjects' | 'scheduledReport' | 'search' | 'segmentation' | 'segmentationAnalysis' | 'selected' | 'settings' | 'setup' | 'shieldKeyhole' | 'signout' | 'siteMap' | 'sparkles' | 'split' | 'string' | 'support' | 'systemAlerts' | 'textWidget' | 'timestamp' | 'transformation' | 'trends' | 'unlock' | 'upload' | 'user' | 'userAttribute' | 'userProfiles' | 'users' | 'viewOnly' | 'wrench' | 'zoomIn' | 'zoomOut' | 'bannerFreemium' | 'boolean' | 'stateEmpty' | 'stateError' | 'stateNoResults' | 'back' | 'submitFeedback' | 'boost' | 'clone' | 'reorder' | 'refresh';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mparticle/aquarium",
3
- "version": "1.54.2-fix-sqdui-3981-icontype.2",
3
+ "version": "1.55.0",
4
4
  "description": "mParticle Component Library",
5
5
  "license": "Apache-2.0",
6
6
  "keywords": [