File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @viamrobotics/prime-core" ,
3
- "version" : " 0.0.84 " ,
3
+ "version" : " 0.0.85 " ,
4
4
"publishConfig" : {
5
5
"access" : " public"
6
6
},
Original file line number Diff line number Diff line change 1
1
<!--
2
2
@component
3
-
3
+
4
4
A horizontal line divider within a context menu.
5
5
```svelte
6
6
<ContextMenuSeparator />
@@ -16,4 +16,4 @@ let extraClasses: cx.Argument = '';
16
16
export { extraClasses as cx };
17
17
</script >
18
18
19
- <hr class ={cx (' mb-0.5 mt-1 border-light drop- shadow-none' , extraClasses )} />
19
+ <hr class ={cx (' mb-0.5 mt-1 border-light shadow-none' , extraClasses )} />
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ const handleKeydown = createHandleKey({
218
218
id ={LIST_ID }
219
219
role =" listbox"
220
220
class:hidden ={! isExpanded }
221
- class =" max-h-36 flex-col overflow-y-auto border border-gray-9 bg-white py-1 drop- shadow-md "
221
+ class =" max-h-36 flex-col overflow-y-auto border border-gray-9 bg-white py-1 shadow-sm "
222
222
>
223
223
{#each allOptions as { option, highlight } (option )}
224
224
{@const isSelected = activeOption ?.option === option }
@@ -242,7 +242,7 @@ const handleKeydown = createHandleKey({
242
242
? [otherOptionPrefix , option ].filter (Boolean ).join (' ' )
243
243
: option }
244
244
class ={cx (
245
- ' flex h-7.5 w-full cursor-pointer items-center justify-start px-2.5 text-xs' ,
245
+ ' flex h-7.5 w-full cursor-pointer items-center justify-start px-2.5 text-xs' ,
246
246
isSelected ? ' bg-light' : ' hover:bg-light'
247
247
)}
248
248
on:pointerdown |preventDefault
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export { extraClasses as cx };
17
17
18
18
<div
19
19
class ={cx (
20
- ' absolute left-0 right -0 top-full z-max mt-1 w-full overflow-hidden border border-gray-9 bg-white drop- shadow-md' ,
20
+ ' absolute inset-x -0 top-full z-max mt-1 w-full overflow-hidden border border-gray-9 bg-white shadow-md' ,
21
21
{
22
22
invisible: ! open ,
23
23
},
You can’t perform that action at this time.
0 commit comments