@bagelink/vue 1.5.7 → 1.5.9

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/vue",
3
3
  "type": "module",
4
- "version": "1.5.7",
4
+ "version": "1.5.9",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Neveh Allon",
@@ -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'" type="button"
55
- class="border px-075 radius-2" @click="toggleOption(option.value)"
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>