@invopop/popui 0.0.103 → 0.0.105
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.
|
@@ -77,9 +77,9 @@ onMount(() => {
|
|
|
77
77
|
{#if item.country}
|
|
78
78
|
<span class="flex space-x-1 items-center">
|
|
79
79
|
<BaseFlag country={item.country} width={10} />
|
|
80
|
-
<span class="text-sm text-neutral-500 tracking-normal"
|
|
81
|
-
|
|
82
|
-
>
|
|
80
|
+
<span class="text-sm text-neutral-500 tracking-normal">
|
|
81
|
+
{getCountryName(item.country)}
|
|
82
|
+
</span>
|
|
83
83
|
</span>
|
|
84
84
|
{/if}
|
|
85
85
|
</div>
|
|
@@ -91,9 +91,9 @@ onMount(() => {
|
|
|
91
91
|
}}
|
|
92
92
|
/>
|
|
93
93
|
{:else if item.selected}
|
|
94
|
-
<Icon src={Tick} class="w-
|
|
94
|
+
<Icon src={Tick} class="w-4 h-4 text-workspace-accent" />
|
|
95
95
|
{:else if item.rightIcon}
|
|
96
|
-
<Icon src={item.rightIcon} class="w-
|
|
96
|
+
<Icon src={item.rightIcon} class="w-4 h-4 text-neutral-400" />
|
|
97
97
|
{/if}
|
|
98
98
|
</div>
|
|
99
99
|
</button>
|