@pingux/astro 2.196.0 → 2.198.7-alpha.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.
Files changed (68) hide show
  1. package/lib/cjs/components/ComboBox/ComboBoxInput.js +3 -2
  2. package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.js +1 -1
  3. package/lib/cjs/components/HelpHint/HelpHint.js +3 -18
  4. package/lib/cjs/components/IconButton/IconButton.styles.d.ts +2 -2
  5. package/lib/cjs/components/IconWrapper/IconWrapper.js +1 -3
  6. package/lib/cjs/components/LinkSelectField/LinkSelectField.js +9 -6
  7. package/lib/cjs/components/LinkSelectField/LinkSelectField.test.js +18 -0
  8. package/lib/cjs/components/Modal/Modal.styles.d.ts +0 -4
  9. package/lib/cjs/components/Modal/Modal.styles.js +1 -3
  10. package/lib/cjs/components/Modal/ModalHeader.js +15 -7
  11. package/lib/cjs/components/MultivaluesField/CondensedMultivaluesField.js +3 -3
  12. package/lib/cjs/components/PanelHeader/PanelHeader.js +2 -2
  13. package/lib/cjs/hooks/useGetTheme/useGetTheme.d.ts +6 -0
  14. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.js +2 -2
  15. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/icons.d.ts +2 -0
  16. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.d.ts +3 -0
  17. package/lib/cjs/styles/themeOverrides/onyxDarkUiLibraryOverride.js +3 -1
  18. package/lib/cjs/styles/themeOverrides/onyxSideNav.d.ts +2 -0
  19. package/lib/cjs/styles/themes/astro/customProperties/icons.d.ts +2 -0
  20. package/lib/cjs/styles/themes/astro/customProperties/icons.js +21 -1
  21. package/lib/cjs/styles/themes/astro/customProperties/index.d.ts +3 -0
  22. package/lib/cjs/styles/themes/astro/customProperties/index.js +3 -1
  23. package/lib/cjs/styles/themes/next-gen/colors/colors.js +1 -1
  24. package/lib/cjs/styles/themes/next-gen/customProperties/customSizes.d.ts +1 -0
  25. package/lib/cjs/styles/themes/next-gen/customProperties/customSizes.js +3 -1
  26. package/lib/cjs/styles/themes/next-gen/customProperties/icons.d.ts +2 -0
  27. package/lib/cjs/styles/themes/next-gen/customProperties/icons.js +1 -1
  28. package/lib/cjs/styles/themes/next-gen/customProperties/index.d.ts +3 -0
  29. package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +27 -6
  30. package/lib/cjs/styles/themes/next-gen/next-gen.js +1 -1
  31. package/lib/cjs/styles/themes/next-gen/variants/button.d.ts +3 -0
  32. package/lib/cjs/styles/themes/next-gen/variants/button.js +3 -0
  33. package/lib/cjs/styles/themes/next-gen/variants/iconWrapper.d.ts +10 -0
  34. package/lib/cjs/styles/themes/next-gen/variants/iconWrapper.js +2 -0
  35. package/lib/cjs/styles/themes/next-gen/variants/messages.d.ts +0 -1
  36. package/lib/cjs/styles/themes/next-gen/variants/messages.js +1 -2
  37. package/lib/cjs/styles/themes/next-gen/variants/panelHeader.d.ts +0 -3
  38. package/lib/cjs/styles/themes/next-gen/variants/panelHeader.js +1 -5
  39. package/lib/cjs/styles/themes/next-gen/variants/text.d.ts +7 -0
  40. package/lib/cjs/styles/themes/next-gen/variants/text.js +4 -0
  41. package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +14 -5
  42. package/lib/cjs/styles/themes/next-gen/variants/variants.js +5 -2
  43. package/lib/cjs/types/Modal.d.ts +2 -0
  44. package/lib/components/ComboBox/ComboBoxInput.js +3 -2
  45. package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.js +1 -1
  46. package/lib/components/HelpHint/HelpHint.js +4 -19
  47. package/lib/components/IconWrapper/IconWrapper.js +1 -3
  48. package/lib/components/LinkSelectField/LinkSelectField.js +9 -6
  49. package/lib/components/LinkSelectField/LinkSelectField.test.js +18 -0
  50. package/lib/components/Modal/Modal.styles.js +1 -3
  51. package/lib/components/Modal/ModalHeader.js +15 -7
  52. package/lib/components/MultivaluesField/CondensedMultivaluesField.js +3 -3
  53. package/lib/components/PanelHeader/PanelHeader.js +2 -2
  54. package/lib/styles/themeOverrides/nextGenDarkMode/colors.js +2 -2
  55. package/lib/styles/themeOverrides/onyxDarkUiLibraryOverride.js +3 -1
  56. package/lib/styles/themes/astro/customProperties/icons.js +21 -1
  57. package/lib/styles/themes/astro/customProperties/index.js +3 -1
  58. package/lib/styles/themes/next-gen/colors/colors.js +1 -1
  59. package/lib/styles/themes/next-gen/customProperties/customSizes.js +3 -1
  60. package/lib/styles/themes/next-gen/customProperties/icons.js +1 -1
  61. package/lib/styles/themes/next-gen/next-gen.js +1 -1
  62. package/lib/styles/themes/next-gen/variants/button.js +3 -0
  63. package/lib/styles/themes/next-gen/variants/iconWrapper.js +2 -0
  64. package/lib/styles/themes/next-gen/variants/messages.js +1 -2
  65. package/lib/styles/themes/next-gen/variants/panelHeader.js +1 -5
  66. package/lib/styles/themes/next-gen/variants/text.js +4 -0
  67. package/lib/styles/themes/next-gen/variants/variants.js +5 -2
  68. package/package.json +1 -1
@@ -53,9 +53,9 @@ var PanelHeader = /*#__PURE__*/forwardRef(function (_ref, ref) {
53
53
  var renderAvatar = ___EmotionJSX(Avatar, _extends({
54
54
  src: image === null || image === void 0 ? void 0 : image.src,
55
55
  isSquare: !!(image !== null && image !== void 0 && image.src),
56
- size: "avatar.lg",
56
+ size: "sm",
57
57
  defaultText: avatarDefaultText,
58
- mr: "lg"
58
+ mr: "md"
59
59
  }, avatarProps));
60
60
  var renderImage = !icon && image && ___EmotionJSX(Box, {
61
61
  variant: "panelHeader.iconWrapper"
@@ -144,8 +144,8 @@ export var colors = _objectSpread(_objectSpread({
144
144
  darkteal: astroTokensDark.color.teal[100],
145
145
  darkcyan: astroTokensDark.color.cyan[100],
146
146
  text: {
147
- primary: astroTokensDark.color.gray[400],
148
- secondary: astroTokensDark.color.gray[100],
147
+ primary: astroTokensDark.color.font.base,
148
+ secondary: astroTokensDark.color.font.light,
149
149
  message: 'white',
150
150
  fieldHelper: astroTokensDark.color.gray[400]
151
151
  },
@@ -87,11 +87,13 @@ var forms = {
87
87
  borderColor: '#caced3 !important'
88
88
  },
89
89
  '&[type=password]:focus': {
90
+ outline: '1px solid',
91
+ outlineColor: 'accent.60',
92
+ outlineOffset: '0px',
90
93
  borderColor: "".concat(astroTokens.color.blue[500], " !important")
91
94
  },
92
95
  numberField: _objectSpread(_objectSpread(_objectSpread({}, theme.input), theme.numberFieldStyles), {}, {
93
96
  '&[type=text]': _objectSpread(_objectSpread({}, theme.text.inputValue), {}, {
94
- backgroundColor: 'white',
95
97
  borderColor: astroTokensDark.color.gray[500]
96
98
  }),
97
99
  '&[type=text]:focus': {
@@ -1,5 +1,6 @@
1
1
  import _defineProperty from "@babel/runtime-corejs3/helpers/esm/defineProperty";
2
2
  var _statuses$DEFAULT$sta;
3
+ import React from 'react';
3
4
  import mdiAccountCog from '@pingux/mdi-react/AccountCogIcon';
4
5
  import AccountMultiple from '@pingux/mdi-react/AccountMultipleIcon';
5
6
  import AlertCircleIcon from '@pingux/mdi-react/AlertCircleIcon';
@@ -14,6 +15,7 @@ import DefaultCircle from '@pingux/mdi-react/CheckboxBlankCircleOutlineIcon';
14
15
  import CheckCircleIcon from '@pingux/mdi-react/CheckCircleIcon';
15
16
  import CheckCircleOutlineIcon from '@pingux/mdi-react/CheckCircleOutlineIcon';
16
17
  import Clipboard from '@pingux/mdi-react/ClipboardIcon';
18
+ import CloseIcon from '@pingux/mdi-react/CloseIcon';
17
19
  import CloseOctagonOutlineIcon from '@pingux/mdi-react/CloseOctagonOutlineIcon';
18
20
  import ConnectionIcon from '@pingux/mdi-react/ConnectionIcon';
19
21
  import CreateIcon from '@pingux/mdi-react/CreateIcon';
@@ -38,7 +40,25 @@ import ShieldStarOutlineIcon from '@pingux/mdi-react/ShieldStarOutlineIcon';
38
40
  import TransitConnection from '@pingux/mdi-react/TransitConnectionVariantIcon';
39
41
  import ViewDashboard from '@pingux/mdi-react/ViewDashboardIcon';
40
42
  import WebIcon from '@pingux/mdi-react/WebIcon';
43
+ import { v4 as uuid } from 'uuid';
41
44
  import { pingLogoHorizontalSmallWhite } from '../../../../utils/devUtils/constants/logos';
42
45
  import statuses, { statusIcon } from '../../../../utils/devUtils/constants/statuses';
43
46
  import { Aic, Credentials, DaVinci, PamIcon, Protect, Verify } from './navBarIcons';
44
- export default (_statuses$DEFAULT$sta = {}, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_statuses$DEFAULT$sta, statuses.DEFAULT, InformationIcon), statuses.ERROR, AlertCircleIcon), statuses.SUCCESS, CheckCircleIcon), statuses.WARNING, AlertIcon), statusIcon.CRITICAL, AlertCircleOutlineIcon), statusIcon.FATAL, CloseOctagonOutlineIcon), statusIcon.INFO, InformationOutlineIcon), statusIcon.MAJOR, ArrowUpIcon), statusIcon.MINOR, ArrowDownIcon), statusIcon.WARNING_NEUTRAL, WarningIcon), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_statuses$DEFAULT$sta, "aic", Aic), "applicationsIcon", ApplicationOutlineIcon), "Ascending", MenuUp), "authenticationIcon", CheckCircleOutlineIcon), "clipboard", Clipboard), "CreateIcon", CreateIcon), "daVinci", DaVinci), "DefaultCircle", DefaultCircle), "Descending", MenuDown), "popoverMenuIcon", MoreVertIcon), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_statuses$DEFAULT$sta, "ErrorCircle", AlertCircleIcon), "integrationsIcon", ConnectionIcon), "listViewMenu", MoreVertIcon), "mdiAccountCog", mdiAccountCog), "mdiAccountMultiple", AccountMultiple), "mdiEarth", Earth), "mdiEmoticonHappyOutline", EmoticonHappy), "mdiFingerprint", Fingerprint), "mdiPlayCircleIcon", PlayCircle), "mdiScaleBalance", ScaleBalance), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_statuses$DEFAULT$sta, "mdiShoCard", Credentials), "mdiTransitConnectionVariant", TransitConnection), "mdiViewDashboard", ViewDashboard), "mdiWeb", GlobeIcon), "MenuDown", MenuDown), "MenuUp", MenuUp), "monitoringIcon", PulseIcon), "openInNew", OpenInNew), "overviewIcon", WebIcon), "p1verify", Verify), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_statuses$DEFAULT$sta, "pam", PamIcon), "PingAuthorize", KeyChainVariant), "HomeIcon", HomeIcon), "pingLogoHorizontalSmall", pingLogoHorizontalSmallWhite), "protect", Protect), "rocketLaunchIcon", RocketLaunchIcon), "shareFeedbackIcon", ChatIcon), "shieldStar", ShieldStarOutlineIcon), "SuccessCircle", CheckCircleIcon), "userExperienceIcon", MonitorScreenshotIcon), _defineProperty(_statuses$DEFAULT$sta, "WarningIcon", WarningIcon));
47
+ import { jsx as ___EmotionJSX } from "@emotion/react";
48
+ var HelpIcon = function HelpIcon() {
49
+ var uid = uuid();
50
+ return ___EmotionJSX("svg", {
51
+ width: "7",
52
+ height: "9",
53
+ viewBox: "0 0 7 9",
54
+ fill: "none",
55
+ xmlns: "http://www.w3.org/2000/svg",
56
+ "aria-labelledby": uid
57
+ }, ___EmotionJSX("title", {
58
+ id: uid
59
+ }, "Help Icon"), ___EmotionJSX("path", {
60
+ d: "M2.56685 7.306V9H4.29385V7.306H2.56685ZM0.795848 3.676H2.41285C2.41285 3.478 2.43485 3.29467 2.47885 3.126C2.52285 2.95 2.58885 2.79967 2.67685 2.675C2.77218 2.543 2.88951 2.44033 3.02885 2.367C3.17551 2.28633 3.34785 2.246 3.54585 2.246C3.83918 2.246 4.06651 2.32667 4.22785 2.488C4.39651 2.64933 4.48085 2.89867 4.48085 3.236C4.48818 3.434 4.45151 3.599 4.37085 3.731C4.29751 3.863 4.19851 3.984 4.07385 4.094C3.94918 4.204 3.81351 4.314 3.66685 4.424C3.52018 4.534 3.38085 4.666 3.24885 4.82C3.11685 4.96667 2.99951 5.14633 2.89685 5.359C2.80151 5.57167 2.74285 5.83567 2.72085 6.151V6.646H4.20585V6.228C4.23518 6.008 4.30485 5.82467 4.41485 5.678C4.53218 5.53133 4.66418 5.403 4.81085 5.293C4.95751 5.17567 5.11151 5.062 5.27285 4.952C5.44151 4.83467 5.59185 4.69533 5.72385 4.534C5.86318 4.37267 5.97685 4.17833 6.06485 3.951C6.16018 3.72367 6.20785 3.434 6.20785 3.082C6.20785 2.86933 6.16018 2.642 6.06485 2.4C5.97685 2.15067 5.82651 1.91967 5.61385 1.707C5.40118 1.49433 5.11885 1.31833 4.76685 1.179C4.42218 1.03233 3.98951 0.959 3.46885 0.959C3.06551 0.959 2.69885 1.02867 2.36885 1.168C2.04618 1.3 1.76751 1.487 1.53285 1.729C1.30551 1.971 1.12585 2.257 0.993848 2.587C0.869181 2.917 0.803181 3.28 0.795848 3.676Z",
61
+ fill: "#3B4A58"
62
+ }));
63
+ };
64
+ export default (_statuses$DEFAULT$sta = {}, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_statuses$DEFAULT$sta, statuses.DEFAULT, InformationIcon), statuses.ERROR, AlertCircleIcon), statuses.SUCCESS, CheckCircleIcon), statuses.WARNING, AlertIcon), statusIcon.CRITICAL, AlertCircleOutlineIcon), statusIcon.FATAL, CloseOctagonOutlineIcon), statusIcon.INFO, InformationOutlineIcon), statusIcon.MAJOR, ArrowUpIcon), statusIcon.MINOR, ArrowDownIcon), statusIcon.WARNING_NEUTRAL, WarningIcon), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_statuses$DEFAULT$sta, "aic", Aic), "applicationsIcon", ApplicationOutlineIcon), "Ascending", MenuUp), "authenticationIcon", CheckCircleOutlineIcon), "clipboard", Clipboard), "CreateIcon", CreateIcon), "daVinci", DaVinci), "DefaultCircle", DefaultCircle), "Descending", MenuDown), "popoverMenuIcon", MoreVertIcon), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_statuses$DEFAULT$sta, "ErrorCircle", AlertCircleIcon), "integrationsIcon", ConnectionIcon), "listViewMenu", MoreVertIcon), "mdiAccountCog", mdiAccountCog), "mdiAccountMultiple", AccountMultiple), "mdiEarth", Earth), "mdiEmoticonHappyOutline", EmoticonHappy), "mdiFingerprint", Fingerprint), "mdiPlayCircleIcon", PlayCircle), "mdiScaleBalance", ScaleBalance), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_statuses$DEFAULT$sta, "mdiShoCard", Credentials), "mdiTransitConnectionVariant", TransitConnection), "mdiViewDashboard", ViewDashboard), "mdiWeb", GlobeIcon), "MenuDown", MenuDown), "MenuUp", MenuUp), "monitoringIcon", PulseIcon), "openInNew", OpenInNew), "overviewIcon", WebIcon), "p1verify", Verify), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_statuses$DEFAULT$sta, "pam", PamIcon), "PingAuthorize", KeyChainVariant), "HomeIcon", HomeIcon), "pingLogoHorizontalSmall", pingLogoHorizontalSmallWhite), "protect", Protect), "rocketLaunchIcon", RocketLaunchIcon), "shareFeedbackIcon", ChatIcon), "shieldStar", ShieldStarOutlineIcon), "SuccessCircle", CheckCircleIcon), "userExperienceIcon", MonitorScreenshotIcon), _defineProperty(_defineProperty(_defineProperty(_statuses$DEFAULT$sta, "WarningIcon", WarningIcon), "helpHint", HelpIcon), "ModalCloseIcon", CloseIcon));
@@ -23,6 +23,7 @@ var linkSelectFieldWidth = '10em';
23
23
  var calendarIconSize = 25;
24
24
  var navBarIconSize = 18;
25
25
  var badgeTextFontSize = '';
26
+ var modalCloseIconSize = 'sm';
26
27
  export var astroThemeValues = {
27
28
  accordionHoveredState: hoveredState,
28
29
  accordionItemDefaultLabelTag: accordionItemDefaultLabelTag,
@@ -55,5 +56,6 @@ export var astroThemeValues = {
55
56
  greyText: '#FFFFFF'
56
57
  },
57
58
  linkSelectFieldWidth: linkSelectFieldWidth,
58
- badgeTextFontSize: badgeTextFontSize
59
+ badgeTextFontSize: badgeTextFontSize,
60
+ modalCloseIconSize: modalCloseIconSize
59
61
  };
@@ -86,7 +86,7 @@ export var info = {
86
86
  };
87
87
  var text = {
88
88
  primary: astroTokens.color.font.base,
89
- secondary: astroTokens.color.gray[500],
89
+ secondary: astroTokens.color.font.light,
90
90
  message: astroTokens.color.gray[700],
91
91
  fieldHelper: astroTokens.color.gray[500]
92
92
  };
@@ -6,6 +6,7 @@ var pageHeaderTitleMargin = 'sm';
6
6
  var pageHeaderAddIconMargin = 'md';
7
7
  var pageHeaderAddIconSize = 'md';
8
8
  var defaultLoaderSize = 32;
9
+ var modalCloseIconSize = 'md';
9
10
  export default {
10
11
  copyButtonSize: copyButtonSize,
11
12
  breadcrumbIconSize: breadcrumbIconSize,
@@ -14,5 +15,6 @@ export default {
14
15
  pageHeaderTitleMargin: pageHeaderTitleMargin,
15
16
  pageHeaderAddIconMargin: pageHeaderAddIconMargin,
16
17
  pageHeaderAddIconSize: pageHeaderAddIconSize,
17
- defaultLoaderSize: defaultLoaderSize
18
+ defaultLoaderSize: defaultLoaderSize,
19
+ modalCloseIconSize: modalCloseIconSize
18
20
  };
@@ -8,5 +8,5 @@ import TransitConnection from '@pingux/mdi-react/TransitConnectionVariantIcon';
8
8
  import { pingLogoHorizontalSmall } from '../../../../utils/devUtils/constants/logos';
9
9
  import statuses, { statusIcon } from '../../../../utils/devUtils/constants/statuses';
10
10
  import { Aic, PamIcon, Protect } from '../../astro/customProperties/navBarIcons';
11
- var icons = (_icons = {}, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_icons, statuses.DEFAULT, 'info'), statuses.ERROR, 'error'), statuses.SUCCESS, 'check_circle'), statuses.WARNING, 'warning'), statusIcon.CRITICAL, 'error'), statusIcon.FATAL, 'dangerous'), statusIcon.INFO, 'info'), statusIcon.MAJOR, 'arrow_upward'), statusIcon.MINOR, 'arrow_downward'), statusIcon.WARNING_NEUTRAL, 'warning'), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_icons, "aic", Aic), "applicationsIcon", 'apps'), "Ascending", 'arrow_upward'), "authenticationIcon", 'check_circle'), "clipboard", 'content_paste'), "CreateIcon", 'edit'), "daVinci", 'account_tree'), "DefaultCircle", 'circle'), "Descending", 'arrow_downward'), "popoverMenuIcon", 'more_horiz'), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_icons, "ErrorCircle", 'error'), "HomeIcon", 'home'), "integrationsIcon", 'widgets'), "listViewMenu", 'more_horiz'), "mdiAccountCog", 'manage_accounts'), "mdiAccountMultiple", 'group'), "mdiEarth", Settings), "mdiEmoticonHappyOutline", EmoticonHappy), "mdiFingerprint", 'fingerprint'), "mdiPlayCircleIcon", 'play_circle'), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_icons, "mdiScaleBalance", 'balance'), "mdiShoCard", 'id_card'), "mdiTransitConnectionVariant", TransitConnection), "mdiViewDashboard", 'dashboard'), "mdiWeb", 'globe'), "MenuDown", 'keyboard_arrow_down'), "MenuUp", 'keyboard_arrow_up'), "monitoringIcon", ShowChartIcon), "openInNew", 'open_in_new'), "overviewIcon", 'dashboard'), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_icons, "p1verify", 'person_check'), "pam", PamIcon), "PingAuthorize", 'key'), "pingLogoHorizontalSmall", pingLogoHorizontalSmall), "protect", Protect), "rocketLaunchIcon", 'rocket_launch'), "shareFeedbackIcon", 'chat'), "shieldStar", ShieldStarOutlineIcon), "SuccessCircle", 'check_circle'), "userExperienceIcon", 'palette'), _defineProperty(_icons, "WarningIcon", 'warning'));
11
+ var icons = (_icons = {}, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_icons, statuses.DEFAULT, 'info'), statuses.ERROR, 'error'), statuses.SUCCESS, 'check_circle'), statuses.WARNING, 'warning'), statusIcon.CRITICAL, 'error'), statusIcon.FATAL, 'dangerous'), statusIcon.INFO, 'info'), statusIcon.MAJOR, 'arrow_upward'), statusIcon.MINOR, 'arrow_downward'), statusIcon.WARNING_NEUTRAL, 'warning'), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_icons, "aic", Aic), "applicationsIcon", 'apps'), "Ascending", 'arrow_upward'), "authenticationIcon", 'check_circle'), "clipboard", 'content_paste'), "CreateIcon", 'edit'), "daVinci", 'account_tree'), "DefaultCircle", 'circle'), "Descending", 'arrow_downward'), "popoverMenuIcon", 'more_horiz'), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_icons, "ErrorCircle", 'error'), "HomeIcon", 'home'), "integrationsIcon", 'widgets'), "listViewMenu", 'more_horiz'), "mdiAccountCog", 'manage_accounts'), "mdiAccountMultiple", 'group'), "mdiEarth", Settings), "mdiEmoticonHappyOutline", EmoticonHappy), "mdiFingerprint", 'fingerprint'), "mdiPlayCircleIcon", 'play_circle'), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_icons, "mdiScaleBalance", 'balance'), "mdiShoCard", 'id_card'), "mdiTransitConnectionVariant", TransitConnection), "mdiViewDashboard", 'dashboard'), "mdiWeb", 'globe'), "MenuDown", 'keyboard_arrow_down'), "MenuUp", 'keyboard_arrow_up'), "monitoringIcon", ShowChartIcon), "openInNew", 'open_in_new'), "overviewIcon", 'dashboard'), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_icons, "p1verify", 'person_check'), "pam", PamIcon), "PingAuthorize", 'key'), "pingLogoHorizontalSmall", pingLogoHorizontalSmall), "protect", Protect), "rocketLaunchIcon", 'rocket_launch'), "shareFeedbackIcon", 'chat'), "shieldStar", ShieldStarOutlineIcon), "SuccessCircle", 'check_circle'), "userExperienceIcon", 'palette'), _defineProperty(_defineProperty(_defineProperty(_icons, "WarningIcon", 'warning'), "helpHint", 'help_outline'), "ModalCloseIcon", 'close'));
12
12
  export default icons;
@@ -41,7 +41,7 @@ var nextGenTheme = {
41
41
  fontWeights: fontWeights,
42
42
  lineHeights: {
43
43
  body: astroTokens["default"]['line-height'].base,
44
- xs: '1.2',
44
+ xs: astroTokens["default"]['line-height'].xs,
45
45
  sm: '1.4',
46
46
  md: '1.75'
47
47
  },
@@ -403,6 +403,9 @@ var onyxIconButton = _objectSpread(_objectSpread({}, baseIconButton), {}, {
403
403
  '&.is-focused': _objectSpread({}, defaultFocus)
404
404
  });
405
405
  var hintButton = {
406
+ maxWidth: 'unset',
407
+ maxHeight: 'unset',
408
+ borderRadius: '28px',
406
409
  backgroundColor: 'transparent',
407
410
  path: {
408
411
  fill: 'dark'
@@ -11,6 +11,8 @@ function ownKeys(e, r) { var t = _Object$keys(e); if (_Object$getOwnPropertySymb
11
11
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var _context, _context2; var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? _forEachInstanceProperty(_context = ownKeys(Object(t), !0)).call(_context, function (r) { _defineProperty(e, r, t[r]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(e, _Object$getOwnPropertyDescriptors(t)) : _forEachInstanceProperty(_context2 = ownKeys(Object(t))).call(_context2, function (r) { _Object$defineProperty(e, r, _Object$getOwnPropertyDescriptor(t, r)); }); } return e; }
12
12
  import sizes from '../sizes';
13
13
  var circle = {
14
+ justifyContent: 'center',
15
+ alignItems: 'center',
14
16
  '&.is-circle': {
15
17
  borderRadius: '50%'
16
18
  }
@@ -1,8 +1,7 @@
1
1
  import { astroTokens } from '@pingux/onyx-tokens';
2
2
  export var message = {
3
3
  wrapper: {
4
- gap: 'md',
5
- right: 'unset'
4
+ gap: 'md'
6
5
  },
7
6
  item: {
8
7
  maxWidth: 400,
@@ -10,11 +10,7 @@ var controls = {
10
10
  alignSelf: 'start',
11
11
  mr: '0'
12
12
  };
13
- var wrapper = {
14
- mr: 'md'
15
- };
16
13
  export default {
17
14
  container: container,
18
- controls: controls,
19
- wrapper: wrapper
15
+ controls: controls
20
16
  };
@@ -116,10 +116,14 @@ var stepperTabContent = {
116
116
  var stepperTabContentHeader = _objectSpread(_objectSpread({}, hTags.H2), {}, {
117
117
  color: 'font.base'
118
118
  });
119
+ var modalTitle = _objectSpread(_objectSpread({}, hTags.H3), {}, {
120
+ lineHeight: '2rem'
121
+ });
119
122
  export var text = _objectSpread(_objectSpread({
120
123
  base: {
121
124
  lineHeight: 'body'
122
125
  },
126
+ modalTitle: modalTitle,
123
127
  buttonSubtitle: buttonSubtitle,
124
128
  buttonTitle: buttonTitle,
125
129
  pageHeaderBody: {
@@ -139,7 +139,8 @@ var modal = {
139
139
  borderTop: '1px solid',
140
140
  borderTopColor: 'gray-200',
141
141
  borderRadius: '0px 0px 1em 1em',
142
- p: 'lg'
142
+ p: 'lg',
143
+ flexDirection: 'row-reverse !important'
143
144
  },
144
145
  footerContainer: {
145
146
  borderTop: '1px solid',
@@ -149,13 +150,15 @@ var modal = {
149
150
  };
150
151
  var listBox = {
151
152
  container: {
152
- px: 'sm',
153
+ pl: 'sm',
154
+ pr: 0,
153
155
  py: 'xs'
154
156
  },
155
157
  option: {
156
158
  py: '.75rem',
157
159
  pl: '.75rem',
158
160
  pr: 'md',
161
+ mr: 'sm',
159
162
  justifyContent: 'space-between',
160
163
  borderRadius: '4px',
161
164
  lineHeight: 'body',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pingux/astro",
3
- "version": "2.196.0",
3
+ "version": "2.198.7-alpha.0",
4
4
  "description": "React component library for Ping Identity's design system",
5
5
  "repository": {
6
6
  "type": "git",