@intechstudio/grid-uikit 1.20240925.1114 → 1.20241017.1954
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/dist/ContextMenu.svelte +1 -1
- package/package.json +1 -1
package/dist/ContextMenu.svelte
CHANGED
|
@@ -35,7 +35,7 @@ function handleClickOutside() {
|
|
|
35
35
|
{#each items as item}
|
|
36
36
|
{@const disabled = item.isDisabled ? item.isDisabled() : false}
|
|
37
37
|
<button
|
|
38
|
-
class="text-white flex flex-row gap-2 {disabled
|
|
38
|
+
class="text-white text-xs flex flex-row gap-2 {disabled
|
|
39
39
|
? ''
|
|
40
40
|
: 'hover:bg-white/40 hover:text-white'} items-center whitespace-nowrap w-full px-2 py-2 text-left cursor-default"
|
|
41
41
|
class:opacity-75={!disabled}
|