@sproutsocial/seeds-react-menu 1.8.3 → 1.8.5

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.
@@ -8,22 +8,22 @@ $ tsup --dts
8
8
  CLI Cleaning output folder
9
9
  CJS Build start
10
10
  ESM Build start
11
- CJS dist/index.js 90.48 KB
12
- CJS dist/v2/index.js 71.31 KB
13
- CJS dist/index.js.map 176.30 KB
14
- CJS dist/v2/index.js.map 147.60 KB
15
- CJS ⚡️ Build success in 355ms
16
- ESM dist/esm/v2/index.js 60.76 KB
17
- ESM dist/esm/index.js 71.37 KB
11
+ CJS dist/index.js 90.52 KB
12
+ CJS dist/v2/index.js 71.41 KB
13
+ CJS dist/index.js.map 176.37 KB
14
+ CJS dist/v2/index.js.map 148.47 KB
15
+ CJS ⚡️ Build success in 380ms
16
+ ESM dist/esm/index.js 71.41 KB
17
+ ESM dist/esm/v2/index.js 60.86 KB
18
18
  ESM dist/esm/chunk-ROQATIB7.js 9.15 KB
19
- ESM dist/esm/v2/index.js.map 127.96 KB
20
- ESM dist/esm/index.js.map 152.31 KB
19
+ ESM dist/esm/index.js.map 152.38 KB
20
+ ESM dist/esm/v2/index.js.map 128.83 KB
21
21
  ESM dist/esm/chunk-ROQATIB7.js.map 22.93 KB
22
- ESM ⚡️ Build success in 355ms
22
+ ESM ⚡️ Build success in 381ms
23
23
  DTS Build start
24
- DTS ⚡️ Build success in 16914ms
24
+ DTS ⚡️ Build success in 17567ms
25
25
  DTS dist/index.d.ts 39.04 KB
26
26
  DTS dist/v2/index.d.ts 4.87 KB
27
27
  DTS dist/index.d.mts 39.04 KB
28
28
  DTS dist/v2/index.d.mts 4.87 KB
29
- Done in 18.37s.
29
+ Done in 19.14s.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @sproutsocial/seeds-react-menu
2
2
 
3
+ ## 1.8.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 65e410f: Expose `onPointerDownOutside` and `onInteractOutside` props on the v2 Popout component, passing them through to Radix UI's `Popover.Content`. This allows consumers to handle dismiss events when Popout is nested inside a Radix Dialog (e.g. ModalV2), preventing crashes from conflicting DismissableLayer instances.
8
+ - Updated dependencies [65e410f]
9
+ - @sproutsocial/seeds-react-popout@2.4.25
10
+
11
+ ## 1.8.4
12
+
13
+ ### Patch Changes
14
+
15
+ - 6f71236: fix(menu): add `type="button"` to MenuItem to prevent form auto-submit inside Modal V2
16
+ fix(modal): prevent Escape key from closing modal when a V1 Popout is open
17
+
3
18
  ## 1.8.3
4
19
 
5
20
  ### Patch Changes
package/dist/esm/index.js CHANGED
@@ -161,6 +161,7 @@ var MenuItem = ({
161
161
  ref: innerRef
162
162
  }),
163
163
  as: isListbox ? void 0 : href ? "a" : "button",
164
+ type: href ? void 0 : "button",
164
165
  href,
165
166
  children,
166
167
  tabIndex: -1,