@spaced-out/ui-design-system 0.5.39 → 0.5.40
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,13 @@
|
|
|
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.5.40](https://github.com/spaced-out/ui-design-system/compare/v0.5.39...v0.5.40) (2026-01-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* remove focus within unnecessary specificity ([#455](https://github.com/spaced-out/ui-design-system/issues/455)) ([97c108f](https://github.com/spaced-out/ui-design-system/commit/97c108fedcec080b45d2ad5553f1f5842e61728f))
|
|
11
|
+
|
|
5
12
|
### [0.5.39](https://github.com/spaced-out/ui-design-system/compare/v0.5.38...v0.5.39) (2026-01-16)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -44,8 +44,6 @@
|
|
|
44
44
|
overflow: auto;
|
|
45
45
|
cursor: pointer;
|
|
46
46
|
border: borderWidthPrimary solid colorBorderPrimary;
|
|
47
|
-
--box-shadow-focus: initial;
|
|
48
|
-
--box-shadow-error-focus: initial;
|
|
49
47
|
}
|
|
50
48
|
|
|
51
49
|
.box:not(.withError):not(.inputDisabled):not(.inputLocked):not(.inputHidden) {
|
|
@@ -58,15 +56,10 @@
|
|
|
58
56
|
border-color: colorBorderTertiary;
|
|
59
57
|
}
|
|
60
58
|
|
|
61
|
-
.box:
|
|
62
|
-
.inputHidden
|
|
63
|
-
):focus-within {
|
|
59
|
+
.box:focus-within {
|
|
64
60
|
border-color: colorFillPrimary;
|
|
65
|
-
box-shadow:
|
|
66
|
-
|
|
67
|
-
borderWidthNone borderWidthNone borderWidthNone borderWidthTertiary
|
|
68
|
-
colorFocusPrimary
|
|
69
|
-
);
|
|
61
|
+
box-shadow: borderWidthNone borderWidthNone borderWidthNone
|
|
62
|
+
borderWidthTertiary colorFocusPrimary;
|
|
70
63
|
}
|
|
71
64
|
|
|
72
65
|
.box.withError {
|
|
@@ -75,11 +68,8 @@
|
|
|
75
68
|
|
|
76
69
|
.box.withError:focus-within {
|
|
77
70
|
border-color: colorBorderDanger;
|
|
78
|
-
box-shadow:
|
|
79
|
-
|
|
80
|
-
borderWidthNone borderWidthNone borderWidthNone borderWidthTertiary
|
|
81
|
-
colorFocusDanger
|
|
82
|
-
);
|
|
71
|
+
box-shadow: borderWidthNone borderWidthNone borderWidthNone
|
|
72
|
+
borderWidthTertiary colorFocusDanger;
|
|
83
73
|
}
|
|
84
74
|
|
|
85
75
|
.box.inputLocked {
|
package/mcp/package.json
CHANGED