@bagelink/vue 1.2.54 → 1.2.56

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/dist/index.cjs CHANGED
@@ -33177,7 +33177,7 @@ const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
33177
33177
  });
33178
33178
  return (_ctx, _cache) => {
33179
33179
  return vue.openBlock(), vue.createElementBlock("div", {
33180
- class: vue.normalizeClass(["bg-dark-modal", { "is-side": _ctx.side, "is-active": vue.unref(isVisible), "bg-lignt": false }]),
33180
+ class: vue.normalizeClass(["bg-dark", { "is-side": _ctx.side, "is-active": vue.unref(isVisible), "bg-lignt": false }]),
33181
33181
  onClick: _cache[1] || (_cache[1] = () => _ctx.dismissable ? closeModal() : ""),
33182
33182
  onKeydown: vue.withKeys(closeModal, ["esc"])
33183
33183
  }, [
package/dist/index.mjs CHANGED
@@ -33175,7 +33175,7 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
33175
33175
  });
33176
33176
  return (_ctx, _cache) => {
33177
33177
  return openBlock(), createElementBlock("div", {
33178
- class: normalizeClass(["bg-dark-modal", { "is-side": _ctx.side, "is-active": unref(isVisible), "bg-lignt": false }]),
33178
+ class: normalizeClass(["bg-dark", { "is-side": _ctx.side, "is-active": unref(isVisible), "bg-lignt": false }]),
33179
33179
  onClick: _cache[1] || (_cache[1] = () => _ctx.dismissable ? closeModal() : ""),
33180
33180
  onKeydown: withKeys(closeModal, ["esc"])
33181
33181
  }, [
package/dist/style.css CHANGED
@@ -3787,7 +3787,7 @@ svg.leaflet-image-layer.leaflet-interactive path {
3787
3787
  .leaflet-marker-icon {
3788
3788
  cursor: pointer;
3789
3789
  }
3790
- .bg-dark-modal {
3790
+ .bg-dark {
3791
3791
  position: fixed;
3792
3792
  top: 0;
3793
3793
  right: 0;
@@ -3894,16 +3894,16 @@ svg.leaflet-image-layer.leaflet-interactive path {
3894
3894
  transform: translateX(0%);
3895
3895
  }
3896
3896
 
3897
- .bg-dark-modal.is-active {
3897
+ .bg-dark.is-active {
3898
3898
  opacity: 1;
3899
3899
  pointer-events: all;
3900
3900
  }
3901
3901
 
3902
- body:has(.bg-dark-modal.is-active) {
3902
+ body:has(.bg-dark.is-active) {
3903
3903
  overflow: hidden;
3904
3904
  }
3905
3905
 
3906
- .is-side.bg-dark-modal.is-active {
3906
+ .is-side.bg-dark.is-active {
3907
3907
  opacity: 1;
3908
3908
  align-items: stretch;
3909
3909
  }
@@ -16481,7 +16481,7 @@ select {
16481
16481
  color: var(--bgl-blue-light) !important;
16482
16482
  }.bg-bg {
16483
16483
  background: var(--bgl-bg) !important;
16484
- }.bg-dark {
16484
+ }.bg-dark-bg {
16485
16485
  background: var(--bgl-dark-bg);
16486
16486
  }.color-bg {
16487
16487
  color: var(--bgl-bg) !important;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/vue",
3
3
  "type": "module",
4
- "version": "1.2.54",
4
+ "version": "1.2.56",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Neveh Allon",
@@ -70,7 +70,7 @@ onUnmounted(() => {
70
70
 
71
71
  <template>
72
72
  <div
73
- class="bg-dark-modal"
73
+ class="bg-dark"
74
74
  :class="{ 'is-side': side, 'is-active': isVisible, 'bg-lignt': false }"
75
75
  @click="() => (dismissable ? closeModal() : '')"
76
76
  @keydown.esc="closeModal"
@@ -173,7 +173,7 @@
173
173
  background: var(--bgl-bg) !important;
174
174
  }
175
175
 
176
- .bg-dark {
176
+ .bg-dark-bg {
177
177
  background: var(--bgl-dark-bg);
178
178
  }
179
179
 
@@ -1,4 +1,4 @@
1
- .bg-dark-modal {
1
+ .bg-dark {
2
2
  position: fixed;
3
3
  top: 0;
4
4
  right: 0;
@@ -105,16 +105,16 @@
105
105
  transform: translateX(0%);
106
106
  }
107
107
 
108
- .bg-dark-modal.is-active {
108
+ .bg-dark.is-active {
109
109
  opacity: 1;
110
110
  pointer-events: all;
111
111
  }
112
112
 
113
- body:has(.bg-dark-modal.is-active) {
113
+ body:has(.bg-dark.is-active) {
114
114
  overflow: hidden;
115
115
  }
116
116
 
117
- .is-side.bg-dark-modal.is-active {
117
+ .is-side.bg-dark.is-active {
118
118
  opacity: 1;
119
119
  align-items: stretch;
120
120
  }