@sproutsocial/seeds-react-menu 1.11.5 → 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.
- package/.turbo/turbo-build.log +10 -10
- package/CHANGELOG.md +6 -0
- package/dist/esm/v3/index.js +3 -3
- package/dist/esm/v3/index.js.map +1 -1
- package/dist/v3/index.js +3 -3
- package/dist/v3/index.js.map +1 -1
- package/package.json +1 -1
- package/src/v3/Common/ComboboxStyles.tsx +2 -2
- package/src/v3/Common/VirtualizedComboboxList.tsx +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -9,27 +9,27 @@ $ tsup --dts
|
|
|
9
9
|
[34mCJS[39m Build start
|
|
10
10
|
[34mESM[39m Build start
|
|
11
11
|
[32mCJS[39m [1mdist/index.js [22m[32m92.62 KB[39m
|
|
12
|
+
[32mCJS[39m [1mdist/v3/index.js [22m[32m93.66 KB[39m
|
|
12
13
|
[32mCJS[39m [1mdist/v2/index.js [22m[32m73.18 KB[39m
|
|
13
|
-
[32mCJS[39m [1mdist/v3/index.js [22m[32m93.61 KB[39m
|
|
14
14
|
[32mCJS[39m [1mdist/index.js.map [22m[32m180.20 KB[39m
|
|
15
|
+
[32mCJS[39m [1mdist/v3/index.js.map [22m[32m161.60 KB[39m
|
|
15
16
|
[32mCJS[39m [1mdist/v2/index.js.map [22m[32m152.19 KB[39m
|
|
16
|
-
[32mCJS[39m
|
|
17
|
-
[
|
|
18
|
-
[32mESM[39m [1mdist/esm/v2/index.js [22m[32m62.63 KB[39m
|
|
17
|
+
[32mCJS[39m ⚡️ Build success in 144ms
|
|
18
|
+
[32mESM[39m [1mdist/esm/v3/index.js [22m[32m82.51 KB[39m
|
|
19
19
|
[32mESM[39m [1mdist/esm/index.js [22m[32m73.57 KB[39m
|
|
20
20
|
[32mESM[39m [1mdist/esm/chunk-ROQATIB7.js [22m[32m9.15 KB[39m
|
|
21
|
-
[32mESM[39m [1mdist/esm/
|
|
22
|
-
[32mESM[39m [1mdist/esm/
|
|
21
|
+
[32mESM[39m [1mdist/esm/v2/index.js [22m[32m62.63 KB[39m
|
|
22
|
+
[32mESM[39m [1mdist/esm/v3/index.js.map [22m[32m161.65 KB[39m
|
|
23
23
|
[32mESM[39m [1mdist/esm/index.js.map [22m[32m156.22 KB[39m
|
|
24
24
|
[32mESM[39m [1mdist/esm/chunk-ROQATIB7.js.map [22m[32m22.93 KB[39m
|
|
25
|
-
[32mESM[39m [1mdist/esm/
|
|
26
|
-
[32mESM[39m ⚡️ Build success in
|
|
25
|
+
[32mESM[39m [1mdist/esm/v2/index.js.map [22m[32m132.57 KB[39m
|
|
26
|
+
[32mESM[39m ⚡️ Build success in 189ms
|
|
27
27
|
[34mDTS[39m Build start
|
|
28
|
-
[32mDTS[39m ⚡️ Build success in
|
|
28
|
+
[32mDTS[39m ⚡️ Build success in 6756ms
|
|
29
29
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m39.08 KB[39m
|
|
30
30
|
[32mDTS[39m [1mdist/v2/index.d.ts [22m[32m5.55 KB[39m
|
|
31
31
|
[32mDTS[39m [1mdist/v3/index.d.ts [22m[32m17.65 KB[39m
|
|
32
32
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m39.08 KB[39m
|
|
33
33
|
[32mDTS[39m [1mdist/v2/index.d.mts [22m[32m5.55 KB[39m
|
|
34
34
|
[32mDTS[39m [1mdist/v3/index.d.mts [22m[32m17.65 KB[39m
|
|
35
|
-
Done in
|
|
35
|
+
Done in 7.78s.
|
package/CHANGELOG.md
CHANGED
package/dist/esm/v3/index.js
CHANGED
|
@@ -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
|
);
|