@invopop/popui 0.0.103 → 0.0.104

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
- >{getCountryName(item.country)}</span
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-5 h-5 text-workspace-accent text-neutral-500" />
94
+ <Icon src={Tick} class="w-5 h-5 text-workspace-accent" />
95
95
  {:else if item.rightIcon}
96
- <Icon src={item.rightIcon} class="w-5 h-5 text-neutral-500" />
96
+ <Icon src={item.rightIcon} class="w-5 h-5 text-neutral-400" />
97
97
  {/if}
98
98
  </div>
99
99
  </button>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@invopop/popui",
3
3
  "license": "MIT",
4
- "version": "0.0.103",
4
+ "version": "0.0.104",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
7
  "build": "vite build && npm run package",