@spaced-out/ui-design-system 0.6.14 → 0.6.15
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
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.6.15](https://github.com/spaced-out/ui-design-system/compare/v0.6.14...v0.6.15) (2026-05-07)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* removed extra space for error but no errorText case ([#482](https://github.com/spaced-out/ui-design-system/issues/482)) ([1572b30](https://github.com/spaced-out/ui-design-system/commit/1572b309739e11d2c873ef8875712752474d1934))
|
|
11
|
+
* update panel footer and header gap ([#481](https://github.com/spaced-out/ui-design-system/issues/481)) ([8b0a1ae](https://github.com/spaced-out/ui-design-system/commit/8b0a1aeb6a2c4803573b00ca98a1891829c6835d))
|
|
12
|
+
|
|
5
13
|
### [0.6.14](https://github.com/spaced-out/ui-design-system/compare/v0.6.13...v0.6.14) (2026-04-30)
|
|
6
14
|
|
|
7
15
|
|
|
@@ -248,7 +248,7 @@ const Input_ = (props, ref) => {
|
|
|
248
248
|
className: classNames?.iconRight
|
|
249
249
|
})]
|
|
250
250
|
})
|
|
251
|
-
}), (Boolean(helperText) || error) && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
251
|
+
}), (Boolean(helperText) || error && !!errorText) && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
252
252
|
"data-testid": (0, _qa.generateTestId)({
|
|
253
253
|
base: testId,
|
|
254
254
|
slot: 'helperText'
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
min-height: size60;
|
|
50
50
|
display: flex;
|
|
51
51
|
align-items: center;
|
|
52
|
-
gap:
|
|
52
|
+
gap: spaceSmall;
|
|
53
53
|
background-color: colorBackgroundTertiary;
|
|
54
54
|
}
|
|
55
55
|
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
display: flex;
|
|
77
77
|
justify-content: flex-end;
|
|
78
78
|
align-items: center;
|
|
79
|
-
gap:
|
|
79
|
+
gap: spaceSmall;
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
.panelFooterActions {
|
package/mcp/package.json
CHANGED