@abgov/react-components 6.8.0-alpha.2 → 6.8.0-alpha.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.
package/index.js CHANGED
@@ -745,9 +745,6 @@ function stringify(value) {
745
745
  if (typeof value === "string") {
746
746
  return value;
747
747
  }
748
- if (typeof value === "number") {
749
- return "" + value;
750
- }
751
748
  return JSON.stringify(value);
752
749
  }
753
750
  function GoabDropdown(props) {
@@ -3313,7 +3310,7 @@ function GoabMenuButton({
3313
3310
  const current = el.current;
3314
3311
  const listener = (e) => {
3315
3312
  const detail = e.detail;
3316
- onAction(detail.action);
3313
+ onAction(detail);
3317
3314
  };
3318
3315
  current.addEventListener("_action", listener);
3319
3316
  return () => {
@@ -3506,7 +3503,6 @@ function GoabPopover({
3506
3503
  position,
3507
3504
  relative,
3508
3505
  children,
3509
- tabIndex = -1,
3510
3506
  mt,
3511
3507
  mr,
3512
3508
  mb,
@@ -3521,7 +3517,6 @@ function GoabPopover({
3521
3517
  padded: typeof padded === "undefined" ? void 0 : padded ? "true" : "false",
3522
3518
  position,
3523
3519
  relative: relative ? "true" : void 0,
3524
- tabindex: tabIndex,
3525
3520
  mt,
3526
3521
  mr,
3527
3522
  mb,