@sproutsocial/seeds-react-menu 1.10.6 → 1.10.8

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 91.81 KB
11
+ CJS dist/index.js 91.85 KB
12
12
  CJS dist/v2/index.js 73.13 KB
13
- CJS dist/index.js.map 178.88 KB
13
+ CJS dist/index.js.map 178.96 KB
14
14
  CJS dist/v2/index.js.map 152.10 KB
15
- CJS ⚡️ Build success in 69ms
16
- ESM dist/esm/index.js 72.69 KB
17
- ESM dist/esm/v2/index.js 62.59 KB
15
+ CJS ⚡️ Build success in 61ms
16
+ ESM dist/esm/index.js 72.73 KB
18
17
  ESM dist/esm/chunk-ROQATIB7.js 9.15 KB
19
- ESM dist/esm/index.js.map 154.90 KB
20
- ESM dist/esm/v2/index.js.map 132.48 KB
18
+ ESM dist/esm/v2/index.js 62.59 KB
19
+ ESM dist/esm/index.js.map 154.97 KB
21
20
  ESM dist/esm/chunk-ROQATIB7.js.map 22.93 KB
22
- ESM ⚡️ Build success in 68ms
21
+ ESM dist/esm/v2/index.js.map 132.48 KB
22
+ ESM ⚡️ Build success in 62ms
23
23
  DTS Build start
24
- DTS ⚡️ Build success in 5028ms
25
- DTS dist/index.d.ts 39.08 KB
24
+ DTS ⚡️ Build success in 5339ms
25
+ DTS dist/index.d.ts 39.09 KB
26
26
  DTS dist/v2/index.d.ts 5.55 KB
27
- DTS dist/index.d.mts 39.08 KB
27
+ DTS dist/index.d.mts 39.09 KB
28
28
  DTS dist/v2/index.d.mts 5.55 KB
29
- Done in 5.75s.
29
+ Done in 6.05s.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @sproutsocial/seeds-react-menu
2
2
 
3
+ ## 1.10.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 1f8fc73: [ENTCAP-961] Call passed in onChange within filtering
8
+
9
+ ## 1.10.7
10
+
11
+ ### Patch Changes
12
+
13
+ - @sproutsocial/seeds-react-icon@2.3.3
14
+ - @sproutsocial/seeds-react-button@2.0.1
15
+ - @sproutsocial/seeds-react-checkbox@1.3.29
16
+ - @sproutsocial/seeds-react-input@1.5.12
17
+ - @sproutsocial/seeds-react-switch@1.2.28
18
+ - @sproutsocial/seeds-react-token-input@1.4.34
19
+ - @sproutsocial/seeds-react-popout@2.4.33
20
+
3
21
  ## 1.10.6
4
22
 
5
23
  ### Patch Changes
package/dist/esm/index.js CHANGED
@@ -851,6 +851,7 @@ import { jsx as jsx11 } from "react/jsx-runtime";
851
851
  var MenuSearchInput = ({
852
852
  getIsItemVisible,
853
853
  inputProps,
854
+ onChange,
854
855
  ...restInputProps
855
856
  }) => {
856
857
  const {
@@ -882,6 +883,7 @@ var MenuSearchInput = ({
882
883
  {
883
884
  onChange: (e, value) => {
884
885
  updateFilteredItems({ inputValue: value });
886
+ onChange?.(e, value);
885
887
  },
886
888
  onKeyDown: handleKeyDown,
887
889
  autoComplete: false,