@invopop/popui 0.0.34 → 0.0.36
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.
|
@@ -43,7 +43,7 @@ function handleSortBy(event) {
|
|
|
43
43
|
slot="trigger"
|
|
44
44
|
class="{headerStyles} w-full py-2 flex items-center justify-start space-x-1 text-left text-base tracking-normal whitespace-nowrap font-normal"
|
|
45
45
|
>
|
|
46
|
-
<span
|
|
46
|
+
<span>{field.headerLabel}</span>
|
|
47
47
|
{#if sortBy === field.slug}
|
|
48
48
|
<svg
|
|
49
49
|
viewBox="0 0 12 12"
|
|
@@ -71,7 +71,7 @@ function handleSortBy(event) {
|
|
|
71
71
|
<div
|
|
72
72
|
class="{headerStyles} py-2 text-left text-base font-normal tracking-normal whitespace-nowrap"
|
|
73
73
|
>
|
|
74
|
-
{field.headerLabel}
|
|
74
|
+
<div class="h-5">{field.headerLabel}</div>
|
|
75
75
|
</div>
|
|
76
76
|
{/if}
|
|
77
77
|
</span>
|
package/dist/BaseTableRow.svelte
CHANGED
|
@@ -56,7 +56,7 @@ function scrollIntoView() {
|
|
|
56
56
|
<td>
|
|
57
57
|
<button
|
|
58
58
|
bind:this={checkboxButton}
|
|
59
|
-
class="px-5 h-[
|
|
59
|
+
class="px-5 h-[36px] flex items-center outline-none group cursor-default"
|
|
60
60
|
on:click|stopPropagation={() => {
|
|
61
61
|
dispatch('checked', checked)
|
|
62
62
|
}}
|
package/dist/TagStatus.svelte
CHANGED
|
@@ -36,7 +36,10 @@ $:
|
|
|
36
36
|
});
|
|
37
37
|
</script>
|
|
38
38
|
|
|
39
|
-
<span
|
|
39
|
+
<span
|
|
40
|
+
class:h-5={Boolean(label)}
|
|
41
|
+
class="{tagStyles} rounded text-sm inline-flex items-center font-medium gap-1 box-border"
|
|
42
|
+
>
|
|
40
43
|
{#if dot}
|
|
41
44
|
<span class="{dotStyles} w-2 h-2 rounded-sm" />
|
|
42
45
|
{/if}
|