@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.
- package/dist/_variables.scss +5 -3
- package/dist/atoms.cjs +31 -12
- package/dist/atoms.mjs +30 -12
- package/dist/charts.cjs +3 -3
- package/dist/charts.mjs +3 -3
- package/dist/src/atoms/Checkbox/Checkbox.d.ts +1 -1
- package/dist/src/atoms/DropdownMenu/DropdownMenu.js +3 -3
- package/dist/src/atoms/Navigation/Navigation.js +2 -2
- package/dist/src/atoms/ProgressBar/ProgressBar.js +2 -2
- package/dist/src/atoms/RadioButton/RadioButton.d.ts +1 -1
- package/dist/src/atoms/Select/Select.js +5 -5
- package/dist/src/atoms/Switch/Switch.d.ts +1 -1
- package/dist/src/atoms/Table/Table.js +3 -3
- package/dist/src/atoms/index.d.ts +1 -0
- package/dist/src/atoms/index.js +2 -1
- package/dist/src/charts/Container/Container.js +4 -4
- package/dist/src/icons/aivenEnterprise.d.ts +9 -0
- package/dist/src/icons/aivenEnterprise.js +11 -0
- package/dist/src/icons/index.d.ts +1 -0
- package/dist/src/icons/index.js +2 -1
- package/dist/src/molecules/Box/Box.d.ts +3 -3
- package/dist/src/molecules/Button/Button.d.ts +1 -1
- package/dist/src/molecules/Button/Button.js +2 -2
- package/dist/src/molecules/Card/Compact.js +2 -2
- package/dist/src/molecules/Chip/Chip.js +4 -4
- package/dist/src/molecules/ControlLabel/ControlLabel.js +2 -2
- package/dist/src/molecules/Dropdown/Dropdown.js +3 -3
- package/dist/src/molecules/Element/Element.d.ts +1 -1
- package/dist/src/molecules/MultiInput/InputChip.js +1 -1
- package/dist/src/molecules/NativeSelect/NativeSelect.d.ts +1 -0
- package/dist/src/molecules/NativeSelect/NativeSelect.js +4 -4
- package/dist/src/utils/constants.js +2 -2
- package/dist/src/utils/form/InputAdornment/InputAdornment.js +2 -2
- package/dist/src/utils/form/Label/Label.js +4 -4
- package/dist/styles.css +40 -18
- package/dist/system.cjs +49 -33
- package/dist/system.mjs +49 -33
- package/dist/tailwind.config.js +16 -8
- package/dist/tailwind.theme.json +2 -2
- package/dist/tsconfig.module.tsbuildinfo +1 -1
- package/dist/types/tailwindGenerated.d.ts +1 -1
- package/dist/types/utils.d.ts +1 -1
- package/package.json +4 -4
package/dist/tailwind.config.js
CHANGED
@@ -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: {
|
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),
|
package/dist/tailwind.theme.json
CHANGED
@@ -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",
|