@bagelink/vue 1.5.7 → 1.5.11
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/package.json
CHANGED
|
@@ -51,8 +51,9 @@ function isSelected(value: string | number) {
|
|
|
51
51
|
<div class="flex flex-wrap gap-05 SelectBtn">
|
|
52
52
|
<Btn
|
|
53
53
|
v-for="option in options" :key="option.value" :thin="thin" :outline="outline"
|
|
54
|
-
:class="isSelected(option.value) ? 'primary' : 'bg-transparent'"
|
|
55
|
-
class="border px-075 radius-2"
|
|
54
|
+
:class="isSelected(option.value) ? 'primary color-white' : 'bg-transparent'"
|
|
55
|
+
:style="{ color: 'var(--bgl-border-color)' }" type="button" class="border px-075 radius-2"
|
|
56
|
+
@click="toggleOption(option.value)"
|
|
56
57
|
>
|
|
57
58
|
<Icon v-if="option.icon" :name="option.icon" weight="300" />
|
|
58
59
|
<p>{{ option.label }}</p>
|