@sproutsocial/seeds-react-menu 1.11.4 → 1.11.6

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.
@@ -9,27 +9,27 @@ $ tsup --dts
9
9
  CJS Build start
10
10
  ESM Build start
11
11
  CJS dist/index.js 92.62 KB
12
+ CJS dist/v3/index.js 93.66 KB
12
13
  CJS dist/v2/index.js 73.18 KB
13
- CJS dist/v3/index.js 93.61 KB
14
14
  CJS dist/index.js.map 180.20 KB
15
+ CJS dist/v3/index.js.map 161.60 KB
15
16
  CJS dist/v2/index.js.map 152.19 KB
16
- CJS dist/v3/index.js.map 161.54 KB
17
- CJS ⚡️ Build success in 117ms
17
+ CJS ⚡️ Build success in 144ms
18
+ ESM dist/esm/v3/index.js 82.51 KB
18
19
  ESM dist/esm/index.js 73.57 KB
19
- ESM dist/esm/v3/index.js 82.46 KB
20
20
  ESM dist/esm/chunk-ROQATIB7.js 9.15 KB
21
21
  ESM dist/esm/v2/index.js 62.63 KB
22
+ ESM dist/esm/v3/index.js.map 161.65 KB
22
23
  ESM dist/esm/index.js.map 156.22 KB
23
24
  ESM dist/esm/chunk-ROQATIB7.js.map 22.93 KB
24
- ESM dist/esm/v3/index.js.map 161.58 KB
25
25
  ESM dist/esm/v2/index.js.map 132.57 KB
26
- ESM ⚡️ Build success in 117ms
26
+ ESM ⚡️ Build success in 189ms
27
27
  DTS Build start
28
- DTS ⚡️ Build success in 6908ms
28
+ DTS ⚡️ Build success in 6756ms
29
29
  DTS dist/index.d.ts 39.08 KB
30
30
  DTS dist/v2/index.d.ts 5.55 KB
31
31
  DTS dist/v3/index.d.ts 17.65 KB
32
32
  DTS dist/index.d.mts 39.08 KB
33
33
  DTS dist/v2/index.d.mts 5.55 KB
34
34
  DTS dist/v3/index.d.mts 17.65 KB
35
- Done in 7.71s.
35
+ Done in 7.78s.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @sproutsocial/seeds-react-menu
2
2
 
3
+ ## 1.11.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 3903a93: Fix virtualization bug and border in web-app-core
8
+
9
+ ## 1.11.5
10
+
11
+ ### Patch Changes
12
+
13
+ - @sproutsocial/seeds-react-icon@2.3.4
14
+ - @sproutsocial/seeds-react-button@2.0.2
15
+ - @sproutsocial/seeds-react-checkbox@1.3.30
16
+ - @sproutsocial/seeds-react-input@1.5.13
17
+ - @sproutsocial/seeds-react-switch@1.2.29
18
+ - @sproutsocial/seeds-react-token-input@1.4.35
19
+ - @sproutsocial/seeds-react-popout@2.4.35
20
+
3
21
  ## 1.11.4
4
22
 
5
23
  ### Patch Changes
@@ -579,7 +579,7 @@ var ComboboxInput = styled6(Combobox.Input)`
579
579
  flex: 1;
580
580
  min-width: 30px;
581
581
  padding: ${({ theme }) => theme.space[300]};
582
- border: none;
582
+ border: none !important;
583
583
  background: transparent;
584
584
  font-size: ${({ theme }) => theme.typography[200].fontSize};
585
585
  line-height: ${({ theme }) => theme.typography[200].lineHeight};
@@ -599,7 +599,7 @@ var ComboboxTokenInput = styled6(Combobox.Input)`
599
599
  min-width: 60px;
600
600
  padding: ${({ theme }) => theme.space[200]} ${({ theme }) => theme.space[300]}
601
601
  ${({ theme }) => theme.space[200]} ${({ theme }) => theme.space[350]};
602
- border: none;
602
+ border: none !important;
603
603
  background: transparent;
604
604
  font-size: ${({ theme }) => theme.typography[200].fontSize};
605
605
  line-height: ${({ theme }) => theme.typography[200].lineHeight};
@@ -1125,7 +1125,7 @@ function VirtualizedComboboxList({
1125
1125
  const handleScrollRef = React7.useCallback(
1126
1126
  (el) => {
1127
1127
  scrollElementRef.current = el;
1128
- if (el) virtualizer.measure();
1128
+ if (el) requestAnimationFrame(() => virtualizer.measure());
1129
1129
  },
1130
1130
  [virtualizer]
1131
1131
  );