@ultraviolet/ui 1.3.2 → 1.4.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/index.d.ts +69 -44
- package/dist/src/components/ActionBar/index.js +7 -12
- package/dist/src/components/Alert/index.js +1 -1
- package/dist/src/components/Badge/index.js +3 -3
- package/dist/src/components/Bullet/index.js +52 -83
- package/dist/src/components/Button/index.js +5 -5
- package/dist/src/components/Carousel/index.js +30 -27
- package/dist/src/components/Checkbox/index.js +3 -3
- package/dist/src/components/CopyButton/index.js +15 -73
- package/dist/src/components/EmptyState/index.js +1 -1
- package/dist/src/components/NumberInput/index.js +1 -1
- package/dist/src/components/Radio/index.js +4 -4
- package/dist/src/components/SelectInput/index.js +1 -1
- package/dist/src/components/SelectableCard/index.js +34 -29
- package/dist/src/components/Snippet/index.js +4 -4
- package/dist/src/components/Stepper/index.js +43 -96
- package/dist/src/components/Table/index.js +1 -1
- package/dist/src/components/Tabs/Tab.js +14 -17
- package/dist/src/components/Tabs/index.js +1 -1
- package/dist/src/components/TagInput/index.js +2 -2
- package/dist/src/components/TextInput/index.js +1 -1
- package/dist/src/components/Toggle/index.js +3 -3
- package/dist/src/components/VerificationCode/index.js +1 -1
- package/package.json +2 -2
|
@@ -28,7 +28,7 @@ const StyledToggle = /*#__PURE__*/_styled("div", {
|
|
|
28
28
|
let {
|
|
29
29
|
theme
|
|
30
30
|
} = _ref2;
|
|
31
|
-
return theme.colors.neutral.
|
|
31
|
+
return theme.colors.neutral.backgroundStrong;
|
|
32
32
|
}, ";width:", _ref3 => {
|
|
33
33
|
let {
|
|
34
34
|
size
|
|
@@ -63,7 +63,7 @@ const StyledToggle = /*#__PURE__*/_styled("div", {
|
|
|
63
63
|
let {
|
|
64
64
|
theme
|
|
65
65
|
} = _ref9;
|
|
66
|
-
return theme.colors.neutral.
|
|
66
|
+
return theme.colors.neutral.background;
|
|
67
67
|
}, ";transition:all 300ms;}&:focus-within,&:focus{box-shadow:", _ref10 => {
|
|
68
68
|
let {
|
|
69
69
|
theme
|
|
@@ -93,7 +93,7 @@ const StyledToggle = /*#__PURE__*/_styled("div", {
|
|
|
93
93
|
let {
|
|
94
94
|
theme
|
|
95
95
|
} = _ref15;
|
|
96
|
-
return theme.colors.neutral.
|
|
96
|
+
return theme.colors.neutral.backgroundStrongDisabled;
|
|
97
97
|
}, ";&[data-checked='true']{background:", _ref16 => {
|
|
98
98
|
let {
|
|
99
99
|
theme
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ultraviolet/ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "Ultraviolet UI",
|
|
5
5
|
"homepage": "https://github.com/scaleway/ultraviolet#readme",
|
|
6
6
|
"repository": {
|
|
@@ -65,6 +65,6 @@
|
|
|
65
65
|
"react-toastify": "9.1.3",
|
|
66
66
|
"react-use-clipboard": "1.0.9",
|
|
67
67
|
"reakit": "1.3.11",
|
|
68
|
-
"@ultraviolet/themes": "1.
|
|
68
|
+
"@ultraviolet/themes": "1.1.0"
|
|
69
69
|
}
|
|
70
70
|
}
|