@aivenio/aquarium 1.58.1 → 1.60.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 (43) hide show
  1. package/dist/_variables.scss +5 -3
  2. package/dist/atoms.cjs +31 -12
  3. package/dist/atoms.mjs +30 -12
  4. package/dist/charts.cjs +3 -3
  5. package/dist/charts.mjs +3 -3
  6. package/dist/src/atoms/Checkbox/Checkbox.d.ts +1 -1
  7. package/dist/src/atoms/DropdownMenu/DropdownMenu.js +3 -3
  8. package/dist/src/atoms/Navigation/Navigation.js +2 -2
  9. package/dist/src/atoms/ProgressBar/ProgressBar.js +2 -2
  10. package/dist/src/atoms/RadioButton/RadioButton.d.ts +1 -1
  11. package/dist/src/atoms/Select/Select.js +5 -5
  12. package/dist/src/atoms/Switch/Switch.d.ts +1 -1
  13. package/dist/src/atoms/Table/Table.js +3 -3
  14. package/dist/src/atoms/index.d.ts +1 -0
  15. package/dist/src/atoms/index.js +2 -1
  16. package/dist/src/charts/Container/Container.js +4 -4
  17. package/dist/src/icons/aivenEnterprise.d.ts +9 -0
  18. package/dist/src/icons/aivenEnterprise.js +11 -0
  19. package/dist/src/icons/index.d.ts +1 -0
  20. package/dist/src/icons/index.js +2 -1
  21. package/dist/src/molecules/Box/Box.d.ts +3 -3
  22. package/dist/src/molecules/Button/Button.d.ts +1 -1
  23. package/dist/src/molecules/Button/Button.js +2 -2
  24. package/dist/src/molecules/Card/Compact.js +2 -2
  25. package/dist/src/molecules/Chip/Chip.js +4 -4
  26. package/dist/src/molecules/ControlLabel/ControlLabel.js +2 -2
  27. package/dist/src/molecules/Dropdown/Dropdown.js +3 -3
  28. package/dist/src/molecules/Element/Element.d.ts +1 -1
  29. package/dist/src/molecules/MultiInput/InputChip.js +1 -1
  30. package/dist/src/molecules/NativeSelect/NativeSelect.d.ts +1 -0
  31. package/dist/src/molecules/NativeSelect/NativeSelect.js +4 -4
  32. package/dist/src/utils/constants.js +2 -2
  33. package/dist/src/utils/form/InputAdornment/InputAdornment.js +2 -2
  34. package/dist/src/utils/form/Label/Label.js +4 -4
  35. package/dist/styles.css +40 -18
  36. package/dist/system.cjs +49 -33
  37. package/dist/system.mjs +49 -33
  38. package/dist/tailwind.config.js +16 -8
  39. package/dist/tailwind.theme.json +2 -2
  40. package/dist/tsconfig.module.tsbuildinfo +1 -1
  41. package/dist/types/tailwindGenerated.d.ts +1 -1
  42. package/dist/types/utils.d.ts +1 -1
  43. package/package.json +4 -4
@@ -21,12 +21,27 @@ const originalTheme = {
21
21
  zIndex: {
22
22
  modal: '100',
23
23
  },
24
+ textColor: {
25
+ muted: 'var(--aquarium-colors-grey-40)',
26
+ default: 'var(--aquarium-colors-grey-70)',
27
+ },
28
+ ringWidth: {
29
+ DEFAULT: '2px',
30
+ 1: '1px',
31
+ 2: '2px',
32
+ },
24
33
  },
25
34
  borderRadius: {
26
35
  ...defaultTheme.borderRadius,
27
36
  DEFAULT: '4px',
28
37
  },
29
- colors: { ...theme.colors, transparent: 'transparent', white: 'white', black: 'black', current: 'currentColor' },
38
+ colors: {
39
+ ...theme.colors,
40
+ transparent: 'transparent',
41
+ current: 'currentColor',
42
+ white: 'white',
43
+ black: 'black',
44
+ },
30
45
  spacing,
31
46
  margin: {
32
47
  ...spacing,
@@ -78,13 +93,6 @@ module.exports = {
78
93
  display: ['children'],
79
94
  opacity: ['sibling-input-focus', 'focus'],
80
95
  },
81
- extend: {
82
- ringWidth: {
83
- DEFAULT: '2px',
84
- 1: '1px',
85
- 2: '2px',
86
- },
87
- },
88
96
  content: ['./src/**/*.tsx', './src/**/*.ts'],
89
97
  safelist: [
90
98
  ...theme.typography.sizes.map((s) => s.className),
@@ -355,9 +355,9 @@
355
355
  "primary-5": "var(--aquarium-colors-primary-5, #f3f6ff)",
356
356
  "primary-0": "var(--aquarium-colors-primary-0, #ffffff)",
357
357
  "transparent": "var(--aquarium-colors-transparent, transparent)",
358
+ "current": "var(--aquarium-colors-current, currentColor)",
358
359
  "white": "var(--aquarium-colors-white, white)",
359
- "black": "var(--aquarium-colors-black, black)",
360
- "current": "var(--aquarium-colors-current, currentColor)"
360
+ "black": "var(--aquarium-colors-black, black)"
361
361
  },
362
362
  "gap": {
363
363
  "0": "0",