@synerise/ds-short-cuts 1.0.25 → 1.0.27
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/CHANGELOG.md +8 -0
- package/dist/ShortCuts.style.js +3 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.0.27](https://github.com/Synerise/synerise-design/compare/@synerise/ds-short-cuts@1.0.26...@synerise/ds-short-cuts@1.0.27) (2026-01-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-short-cuts
|
|
9
|
+
|
|
10
|
+
## [1.0.26](https://github.com/Synerise/synerise-design/compare/@synerise/ds-short-cuts@1.0.25...@synerise/ds-short-cuts@1.0.26) (2026-01-07)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @synerise/ds-short-cuts
|
|
13
|
+
|
|
6
14
|
## [1.0.25](https://github.com/Synerise/synerise-design/compare/@synerise/ds-short-cuts@1.0.24...@synerise/ds-short-cuts@1.0.25) (2025-12-15)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @synerise/ds-short-cuts
|
package/dist/ShortCuts.style.js
CHANGED
|
@@ -25,7 +25,7 @@ var getWidth = function getWidth(props) {
|
|
|
25
25
|
export var Wrapper = styled.div.withConfig({
|
|
26
26
|
displayName: "ShortCutsstyle__Wrapper",
|
|
27
27
|
componentId: "sc-vo5qxe-0"
|
|
28
|
-
})(["box-sizing:border-box;display:flex;align-items:center;justify-content:center;height:", ";width:", ";background-color:", ";border-bottom:1px solid ", ";border-radius:3px;color:", ";padding:", ";font-size:11px;"], function (props) {
|
|
28
|
+
})(["box-sizing:border-box;display:flex;align-items:center;justify-content:center;height:", ";width:", ";background-color:", ";border-bottom:1px solid ", ";border-radius:3px;color:", ";padding:", ";font-size:11px;box-shadow:0px 1px 8px 0px rgba( 35,41,54,", " );"], function (props) {
|
|
29
29
|
return props.size === 'S' ? '18px' : '24px';
|
|
30
30
|
}, function (props) {
|
|
31
31
|
return getWidth(props);
|
|
@@ -37,4 +37,6 @@ export var Wrapper = styled.div.withConfig({
|
|
|
37
37
|
return props.color === 'dark' ? props.theme.palette.white : props.theme.palette['grey-600'];
|
|
38
38
|
}, function (props) {
|
|
39
39
|
return getPadding(props);
|
|
40
|
+
}, function (props) {
|
|
41
|
+
return props.color === 'dark' ? '0.5' : '0.08';
|
|
40
42
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-short-cuts",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.27",
|
|
4
4
|
"description": "ShortCuts UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -35,15 +35,15 @@
|
|
|
35
35
|
],
|
|
36
36
|
"types": "dist/index.d.ts",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@synerise/ds-icon": "^1.9.
|
|
39
|
-
"@synerise/ds-typography": "^1.0.
|
|
38
|
+
"@synerise/ds-icon": "^1.9.3",
|
|
39
|
+
"@synerise/ds-typography": "^1.0.27"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@synerise/ds-utils": "^1.5.
|
|
42
|
+
"@synerise/ds-utils": "^1.5.3"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"@synerise/ds-core": "*",
|
|
46
46
|
"react": ">=16.9.0 <= 18.3.1"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "70a5256c87ef38313eedb9a004d1c6980082b2f5"
|
|
49
49
|
}
|