@brickclay-org/ui 0.1.64 → 0.1.65

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brickclay-org/ui",
3
- "version": "0.1.64",
3
+ "version": "0.1.65",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "ng-add": {
6
6
  "save": "dependencies"
@@ -24,3 +24,12 @@
24
24
  .checkbox.lg svg {
25
25
  @apply size-[14px];
26
26
  }
27
+
28
+
29
+ /*---- Focus State: consistent 1px ring (box-shadow = no layout shift) ---- */
30
+ /* Both :focus and :focus-visible render the same 1px ring so neither disturbs it */
31
+ .group:focus .checkbox,
32
+ .group:focus-visible .checkbox {
33
+ outline: none;
34
+ box-shadow: 0 0 0 1px #000; /* black */
35
+ }
@@ -48,3 +48,12 @@
48
48
  .radio.lg .tick {
49
49
  @apply size-[14px] min-h-[14px] min-w-[14px];
50
50
  }
51
+
52
+
53
+ /*---- Focus State: consistent 1px ring (box-shadow = no layout shift) ---- */
54
+ /* Both :focus and :focus-visible render the same 1px ring so neither disturbs it */
55
+ .group:focus .radio,
56
+ .group:focus-visible .radio {
57
+ outline: none;
58
+ box-shadow: 0 0 0 1px #000; /* black */
59
+ }