@pingux/astro 2.197.0-alpha.0 → 2.198.8-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 (62) 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/Modal/Modal.styles.d.ts +0 -4
  7. package/lib/cjs/components/Modal/Modal.styles.js +1 -3
  8. package/lib/cjs/components/Modal/ModalHeader.js +15 -7
  9. package/lib/cjs/components/MultivaluesField/CondensedMultivaluesField.js +3 -3
  10. package/lib/cjs/components/PanelHeader/PanelHeader.js +2 -2
  11. package/lib/cjs/hooks/useGetTheme/useGetTheme.d.ts +6 -0
  12. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.js +2 -2
  13. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/icons.d.ts +2 -0
  14. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.d.ts +3 -0
  15. package/lib/cjs/styles/themeOverrides/onyxSideNav.d.ts +2 -0
  16. package/lib/cjs/styles/themes/astro/customProperties/icons.d.ts +2 -0
  17. package/lib/cjs/styles/themes/astro/customProperties/icons.js +21 -1
  18. package/lib/cjs/styles/themes/astro/customProperties/index.d.ts +3 -0
  19. package/lib/cjs/styles/themes/astro/customProperties/index.js +3 -1
  20. package/lib/cjs/styles/themes/next-gen/colors/colors.js +1 -1
  21. package/lib/cjs/styles/themes/next-gen/customProperties/customSizes.d.ts +1 -0
  22. package/lib/cjs/styles/themes/next-gen/customProperties/customSizes.js +3 -1
  23. package/lib/cjs/styles/themes/next-gen/customProperties/icons.d.ts +2 -0
  24. package/lib/cjs/styles/themes/next-gen/customProperties/icons.js +1 -1
  25. package/lib/cjs/styles/themes/next-gen/customProperties/index.d.ts +3 -0
  26. package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +27 -6
  27. package/lib/cjs/styles/themes/next-gen/next-gen.js +1 -1
  28. package/lib/cjs/styles/themes/next-gen/variants/button.d.ts +3 -0
  29. package/lib/cjs/styles/themes/next-gen/variants/button.js +3 -0
  30. package/lib/cjs/styles/themes/next-gen/variants/iconWrapper.d.ts +10 -0
  31. package/lib/cjs/styles/themes/next-gen/variants/iconWrapper.js +2 -0
  32. package/lib/cjs/styles/themes/next-gen/variants/messages.d.ts +0 -1
  33. package/lib/cjs/styles/themes/next-gen/variants/messages.js +1 -2
  34. package/lib/cjs/styles/themes/next-gen/variants/panelHeader.d.ts +0 -3
  35. package/lib/cjs/styles/themes/next-gen/variants/panelHeader.js +1 -5
  36. package/lib/cjs/styles/themes/next-gen/variants/text.d.ts +7 -0
  37. package/lib/cjs/styles/themes/next-gen/variants/text.js +4 -0
  38. package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +14 -5
  39. package/lib/cjs/styles/themes/next-gen/variants/variants.js +5 -2
  40. package/lib/cjs/types/Modal.d.ts +2 -0
  41. package/lib/components/ComboBox/ComboBoxInput.js +3 -2
  42. package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.js +1 -1
  43. package/lib/components/HelpHint/HelpHint.js +4 -19
  44. package/lib/components/IconWrapper/IconWrapper.js +1 -3
  45. package/lib/components/Modal/Modal.styles.js +1 -3
  46. package/lib/components/Modal/ModalHeader.js +15 -7
  47. package/lib/components/MultivaluesField/CondensedMultivaluesField.js +3 -3
  48. package/lib/components/PanelHeader/PanelHeader.js +2 -2
  49. package/lib/styles/themeOverrides/nextGenDarkMode/colors.js +2 -2
  50. package/lib/styles/themes/astro/customProperties/icons.js +21 -1
  51. package/lib/styles/themes/astro/customProperties/index.js +3 -1
  52. package/lib/styles/themes/next-gen/colors/colors.js +1 -1
  53. package/lib/styles/themes/next-gen/customProperties/customSizes.js +3 -1
  54. package/lib/styles/themes/next-gen/customProperties/icons.js +1 -1
  55. package/lib/styles/themes/next-gen/next-gen.js +1 -1
  56. package/lib/styles/themes/next-gen/variants/button.js +3 -0
  57. package/lib/styles/themes/next-gen/variants/iconWrapper.js +2 -0
  58. package/lib/styles/themes/next-gen/variants/messages.js +1 -2
  59. package/lib/styles/themes/next-gen/variants/panelHeader.js +1 -5
  60. package/lib/styles/themes/next-gen/variants/text.js +4 -0
  61. package/lib/styles/themes/next-gen/variants/variants.js +5 -2
  62. package/package.json +1 -1
@@ -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.197.0-alpha.0",
3
+ "version": "2.198.8-alpha.0",
4
4
  "description": "React component library for Ping Identity's design system",
5
5
  "repository": {
6
6
  "type": "git",