@mparticle/aquarium 1.61.0-operation-prism-shift.1 → 1.61.0-operation-prism-shift.3

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 (161) hide show
  1. package/dist/aquarium.js +27036 -0
  2. package/dist/aquarium.umd.cjs +252 -0
  3. package/dist/index.d.ts +1 -0
  4. package/dist/src/components/UXPatterns/MoreActionsButton/MoreActionsButton.d.ts +18 -0
  5. package/dist/src/components/UXPatterns/UnauthorizedTooltip/UnauthorizedTooltip.d.ts +9 -0
  6. package/dist/src/components/data-display/Avatar/Avatar.d.ts +11 -0
  7. package/dist/src/components/data-display/Badge/Badge.d.ts +11 -0
  8. package/dist/src/components/data-display/Card/Card.d.ts +12 -0
  9. package/dist/src/components/data-display/Collapse/Collapse.d.ts +10 -0
  10. package/dist/src/components/data-display/Descriptions/Descriptions.d.ts +11 -0
  11. package/dist/src/components/data-display/Empty/Empty.d.ts +36 -0
  12. package/dist/src/components/data-display/Image/Image.d.ts +11 -0
  13. package/dist/src/components/data-display/List/List.d.ts +9 -0
  14. package/dist/src/components/data-display/Popover/Popover.d.ts +5 -0
  15. package/dist/src/components/data-display/Segmented/Segmented.d.ts +7 -0
  16. package/dist/src/components/data-display/Table/Table.d.ts +21 -0
  17. package/dist/src/components/data-display/Tabs/Tabs.d.ts +10 -0
  18. package/dist/src/components/data-display/Tag/Tag.d.ts +13 -0
  19. package/dist/src/components/data-display/Tooltip/Tooltip.d.ts +5 -0
  20. package/dist/src/components/data-display/Tour/Tour.d.ts +5 -0
  21. package/dist/src/components/data-entry/AutoComplete/AutoComplete.d.ts +5 -0
  22. package/dist/src/components/data-entry/Cascader/Cascader.d.ts +11 -0
  23. package/dist/src/components/data-entry/Checkbox/Checkbox.d.ts +11 -0
  24. package/dist/src/components/data-entry/DatePicker/DatePicker.d.ts +78 -0
  25. package/dist/src/components/data-entry/Form/Form.d.ts +28 -0
  26. package/dist/src/components/data-entry/Input/Input.d.ts +14 -0
  27. package/dist/src/components/data-entry/InputNumber/InputNumber.d.ts +5 -0
  28. package/dist/src/components/data-entry/QueryItem/Action.d.ts +10 -0
  29. package/dist/src/components/data-entry/QueryItem/Cascader.d.ts +27 -0
  30. package/dist/src/components/data-entry/QueryItem/NumberInput.d.ts +16 -0
  31. package/dist/src/components/data-entry/QueryItem/Qualifier.d.ts +16 -0
  32. package/dist/src/components/data-entry/QueryItem/QueryItem.d.ts +17 -0
  33. package/dist/src/components/data-entry/QueryItem/Text.d.ts +11 -0
  34. package/dist/src/components/data-entry/QueryItem/TextInput.d.ts +10 -0
  35. package/dist/src/components/data-entry/QueryItem/ValueSelector.d.ts +11 -0
  36. package/dist/src/components/data-entry/Radio/Radio.d.ts +11 -0
  37. package/dist/src/components/data-entry/Radio/RadioButton.d.ts +5 -0
  38. package/dist/src/components/data-entry/Radio/RadioGroup.d.ts +5 -0
  39. package/dist/src/components/data-entry/Select/Select.d.ts +14 -0
  40. package/dist/src/components/data-entry/Switch/Switch.d.ts +5 -0
  41. package/dist/src/components/data-entry/TimePicker/TimePicker.d.ts +11 -0
  42. package/dist/src/components/data-entry/TreeSelect/TreeSelect.d.ts +14 -0
  43. package/dist/src/components/data-entry/Upload/Upload.d.ts +16 -0
  44. package/dist/src/components/feedback/Alert/Alert.d.ts +13 -0
  45. package/dist/src/components/feedback/Drawer/Drawer.d.ts +5 -0
  46. package/dist/src/components/feedback/LoadingModal/LoadingModal.d.ts +8 -0
  47. package/dist/src/components/feedback/Message/Message.d.ts +23 -0
  48. package/dist/src/components/feedback/Modal/DeleteConfirmModal/DeleteConfirmModal.d.ts +14 -0
  49. package/dist/src/components/feedback/Modal/ErrorModal/ErrorModal.d.ts +9 -0
  50. package/dist/src/components/feedback/Modal/Modal.d.ts +16 -0
  51. package/dist/src/components/feedback/Notification/Notification.d.ts +22 -0
  52. package/dist/src/components/feedback/Popconfirm/Popconfirm.d.ts +5 -0
  53. package/dist/src/components/feedback/Progress/Progress.d.ts +5 -0
  54. package/dist/src/components/feedback/Result/Result.d.ts +17 -0
  55. package/dist/src/components/feedback/Skeleton/Skeleton.d.ts +19 -0
  56. package/dist/src/components/feedback/Spin/Spin.d.ts +10 -0
  57. package/dist/src/components/general/Button/Button.d.ts +18 -0
  58. package/dist/src/components/general/FloatButton/FloatButton.d.ts +12 -0
  59. package/dist/src/components/general/Icon/ErrorStateIcon/ErrorStateIcon.d.ts +9 -0
  60. package/dist/src/components/general/Icon/Icon.d.ts +12 -0
  61. package/dist/src/components/general/Icon/SuccessStateIcon/SuccessStateIcon.d.ts +9 -0
  62. package/dist/src/components/general/Icon/WarningStateIcon/WarningStateIcon.d.ts +9 -0
  63. package/dist/src/components/general/Typography/Typography.d.ts +35 -0
  64. package/dist/src/components/general/Typography/colors.d.ts +3 -0
  65. package/dist/src/components/icons/index.d.ts +140 -0
  66. package/dist/src/components/index.d.ts +99 -0
  67. package/dist/src/components/layout/Center/Center.d.ts +3 -0
  68. package/dist/src/components/layout/Divider/Divider.d.ts +5 -0
  69. package/dist/src/components/layout/Flex/Flex.d.ts +5 -0
  70. package/dist/src/components/layout/Grid/Grid.d.ts +6 -0
  71. package/dist/src/components/layout/Layout/Layout.d.ts +13 -0
  72. package/dist/src/components/layout/Space/Space.d.ts +11 -0
  73. package/dist/src/components/layout/Splitter/Splitter.d.ts +23 -0
  74. package/dist/src/components/navigation/Anchor/Anchor.d.ts +10 -0
  75. package/dist/src/components/navigation/Breadcrumb/Breadcrumb.d.ts +12 -0
  76. package/dist/src/components/navigation/Dropdown/Dropdown.d.ts +11 -0
  77. package/dist/src/components/navigation/GlobalNavigation/GlobalNavigation.d.ts +46 -0
  78. package/dist/src/components/navigation/GlobalNavigation/HomeButton.d.ts +6 -0
  79. package/dist/src/components/navigation/GlobalNavigation/NavigationButtonItem.d.ts +9 -0
  80. package/dist/src/components/navigation/GlobalNavigation/NavigationCreate.d.ts +20 -0
  81. package/dist/src/components/navigation/GlobalNavigation/NavigationIcon.d.ts +11 -0
  82. package/dist/src/components/navigation/GlobalNavigation/NavigationItem.d.ts +15 -0
  83. package/dist/src/components/navigation/GlobalNavigation/NavigationList.d.ts +6 -0
  84. package/dist/src/components/navigation/GlobalNavigation/NavigationMenu.d.ts +6 -0
  85. package/dist/src/components/navigation/GlobalNavigation/NavigationSearch.d.ts +6 -0
  86. package/dist/src/components/navigation/GlobalNavigation/NotificationCenter.d.ts +9 -0
  87. package/dist/src/components/navigation/GlobalNavigation/SuiteLogo.d.ts +7 -0
  88. package/dist/src/components/navigation/GlobalNavigation/SuiteSelector/SuiteSelector.d.ts +11 -0
  89. package/dist/src/components/navigation/GlobalNavigation/SuiteSelector/SuiteSelectorContent.d.ts +5 -0
  90. package/dist/src/components/navigation/GlobalNavigation/SuiteSelector/SuiteSelectorSuiteLink.d.ts +10 -0
  91. package/dist/src/components/navigation/GlobalNavigation/WorkspaceSelector/WorkspaceNoResults.d.ts +2 -0
  92. package/dist/src/components/navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelector.d.ts +12 -0
  93. package/dist/src/components/navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelectorContent.d.ts +18 -0
  94. package/dist/src/components/navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelectorContentItems.d.ts +7 -0
  95. package/dist/src/components/navigation/GlobalNavigation/stories-utils.d.ts +2 -0
  96. package/dist/src/components/navigation/Menu/Menu.d.ts +24 -0
  97. package/dist/src/components/navigation/Pagination/Pagination.d.ts +5 -0
  98. package/dist/src/components/navigation/Steps/Steps.d.ts +5 -0
  99. package/dist/src/components/not-prod-ready/Affix/Affix.d.ts +5 -0
  100. package/dist/src/components/not-prod-ready/Calendar/Calendar.d.ts +13 -0
  101. package/dist/src/components/not-prod-ready/Carousel/Carousel.d.ts +5 -0
  102. package/dist/src/components/not-prod-ready/ColorPicker/ColorPicker.d.ts +5 -0
  103. package/dist/src/components/not-prod-ready/QRCode/QRCode.d.ts +5 -0
  104. package/dist/src/components/not-prod-ready/Rate/Rate.d.ts +5 -0
  105. package/dist/src/components/not-prod-ready/Slider/Slider.d.ts +5 -0
  106. package/dist/src/components/not-prod-ready/Statistic/Statistic.d.ts +15 -0
  107. package/dist/src/components/not-prod-ready/Timeline/Timeline.d.ts +10 -0
  108. package/dist/src/components/not-prod-ready/Transfer/Transfer.d.ts +16 -0
  109. package/dist/src/components/not-prod-ready/Tree/Tree.d.ts +19 -0
  110. package/dist/src/components/not-prod-ready/Watermark/Watermark.d.ts +5 -0
  111. package/dist/src/constants/ChartColors.d.ts +1 -0
  112. package/dist/src/constants/ChartConfig.d.ts +8 -0
  113. package/dist/src/constants/Icons.d.ts +2 -0
  114. package/dist/src/hooks/NewExperienceReminder/useNewExperienceReminder.d.ts +14 -0
  115. package/dist/src/hooks/useInitData.d.ts +1 -0
  116. package/dist/src/hooks/useMount.d.ts +1 -0
  117. package/dist/src/hooks/useUnMount.d.ts +1 -0
  118. package/dist/src/services/user-preferences/composite-user-preferences-service/composite-user-preferences-service.d.ts +9 -0
  119. package/dist/src/services/user-preferences/composite-user-preferences-service/composite-user-preferences-service.spec.d.ts +1 -0
  120. package/dist/src/services/user-preferences/composite-user-preferences-service/index.d.ts +1 -0
  121. package/dist/src/services/user-preferences/index.d.ts +1 -0
  122. package/dist/src/services/user-preferences/models/definitions/index.d.ts +4 -0
  123. package/dist/src/services/user-preferences/models/definitions/user-preference-definition.d.ts +5 -0
  124. package/dist/src/services/user-preferences/models/definitions/user-preference-definitions.d.ts +4 -0
  125. package/dist/src/services/user-preferences/models/definitions/user-preference-per-scope.d.ts +4 -0
  126. package/dist/src/services/user-preferences/models/definitions/user-preference-scope-type.d.ts +6 -0
  127. package/dist/src/services/user-preferences/models/storage-models/index.d.ts +1 -0
  128. package/dist/src/services/user-preferences/models/storage-models/user-preference-scope.d.ts +8 -0
  129. package/dist/src/services/user-preferences/user-preferences-service.d.ts +19 -0
  130. package/dist/src/services/user-preferences/user-preferences-service.spec.d.ts +26 -0
  131. package/dist/src/shared/Operation.d.ts +178 -0
  132. package/dist/src/shared/Paths.d.ts +146 -0
  133. package/dist/src/shared/Suite.d.ts +9 -0
  134. package/dist/src/shared/UserPreferences.d.ts +12 -0
  135. package/dist/src/shared/Utils.d.ts +4 -0
  136. package/dist/src/shared/services/AudiencePermissionsService.d.ts +9 -0
  137. package/dist/src/shared/services/AuthorizationsService.d.ts +6 -0
  138. package/dist/src/shared/services/FeatureFlagsService.d.ts +54 -0
  139. package/dist/src/shared/services/InitializationService.d.ts +4 -0
  140. package/dist/src/shared/services/NavigationItemsService.d.ts +55 -0
  141. package/dist/src/shared/services/RoutesAuthorizationsService.d.ts +12 -0
  142. package/dist/src/shared/services/routeAuthorizations/anaytics-authorizations.d.ts +6 -0
  143. package/dist/src/shared/services/routeAuthorizations/base-routes-authorizations.d.ts +7 -0
  144. package/dist/src/shared/services/routeAuthorizations/customer-360-authorizations.d.ts +11 -0
  145. package/dist/src/shared/services/routeAuthorizations/data-platform-authorizations.d.ts +22 -0
  146. package/dist/src/shared/services/routeAuthorizations/data-warehouse-authorizations.d.ts +10 -0
  147. package/dist/src/shared/services/routeAuthorizations/oversight-authorizations.d.ts +13 -0
  148. package/dist/src/shared/services/routeAuthorizations/root-authorizations.d.ts +10 -0
  149. package/dist/src/shared/services/routeAuthorizations/segmentation-authorizations.d.ts +10 -0
  150. package/dist/src/styles/style.d.ts +425 -0
  151. package/dist/src/types/icons.d.ts +14 -0
  152. package/dist/src/utils/Cookies.d.ts +15 -0
  153. package/dist/src/utils/ExampleStory.d.ts +9 -0
  154. package/dist/src/utils/GetGlobalToken.d.ts +2 -0
  155. package/dist/src/utils/debounce.d.ts +1 -0
  156. package/dist/src/utils/svg-prettifier/SvgPrettifier.d.ts +2 -0
  157. package/dist/src/utils/utils.d.ts +16 -0
  158. package/dist/src/utils/utils.spec.d.ts +1 -0
  159. package/dist/style.css +1 -0
  160. package/dist/style.ts +437 -0
  161. package/package.json +1 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.