@intechstudio/grid-uikit 1.20260805.1241 → 1.20260825.1204
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
CHANGED
|
@@ -68,12 +68,7 @@
|
|
|
68
68
|
on:click={() => handleItemClicked(item)}
|
|
69
69
|
>
|
|
70
70
|
{#if item.iconPath}
|
|
71
|
-
<SvgIcon
|
|
72
|
-
width={12}
|
|
73
|
-
height={12}
|
|
74
|
-
fill="#FFF"
|
|
75
|
-
iconPath={item.iconPath}
|
|
76
|
-
/>
|
|
71
|
+
<SvgIcon fill="#FFF" iconPath={item.iconPath} />
|
|
77
72
|
{/if}
|
|
78
73
|
<span>{item.text[0]}</span>
|
|
79
74
|
<!-- Spacer for alignment -->
|
package/dist/MeltCheckbox.svelte
CHANGED
package/dist/MeltRadio.svelte
CHANGED
|
@@ -166,10 +166,13 @@
|
|
|
166
166
|
}
|
|
167
167
|
div.style-radio-inside {
|
|
168
168
|
position: absolute;
|
|
169
|
+
top: 50%;
|
|
170
|
+
left: 50%;
|
|
169
171
|
border-radius: 9999px;
|
|
170
172
|
background-color: var(--foreground);
|
|
171
173
|
width: 0.75em;
|
|
172
174
|
height: 0.75em;
|
|
175
|
+
transform: translate(-50%, -50%);
|
|
173
176
|
}
|
|
174
177
|
button {
|
|
175
178
|
font-family: inherit; /* 1 */
|