@sparkvault/sdk 1.23.3 → 1.23.4

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.
@@ -1963,6 +1963,21 @@ function getStyles(options) {
1963
1963
  text-align: left;
1964
1964
  padding: 12px 14px;
1965
1965
  margin-bottom: 8px;
1966
+ /* Inset 2px on either side so the focus outline (drawn outside the
1967
+ border-box) has room to render without clipping against the
1968
+ dialog's container edges. width:auto pairs with this to prevent
1969
+ the row from forcing horizontal overflow. */
1970
+ margin-left: 2px;
1971
+ margin-right: 2px;
1972
+ width: calc(100% - 4px);
1973
+ }
1974
+
1975
+ /* The shared .sv-btn focus rule sets outline-offset:2px which sits
1976
+ outside the row's edges and gets clipped by the parent. Method
1977
+ rows are full-width by design, so render the focus indicator
1978
+ flush against the border instead. */
1979
+ .sv-btn-method:focus-visible {
1980
+ outline-offset: 0;
1966
1981
  }
1967
1982
 
1968
1983
  .sv-btn-method:hover:not(:disabled) {