@v1nt1248/3nclient-lib 0.2.0 → 0.2.2

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
@@ -2,7 +2,7 @@
2
2
  "name": "@v1nt1248/3nclient-lib",
3
3
  "license": "AGPL-3.0-or-later",
4
4
  "author": "v1nt1248",
5
- "version": "0.2.0",
5
+ "version": "0.2.2",
6
6
  "description": "Library for 3NWeb clients",
7
7
  "type": "module",
8
8
  "files": [
@@ -211,7 +211,7 @@
211
211
  v-if="show"
212
212
  ref="dialogOverlayElement"
213
213
  :class="$style.overlay"
214
- @click="startEmit('click-overlay', $event)"
214
+ @click.self.prevent="startEmit('click-overlay', $event)"
215
215
  >
216
216
  <div
217
217
  :id="dialogProps?.id"
@@ -238,7 +238,6 @@
238
238
  <div
239
239
  v-if="currentDialogProps.title"
240
240
  :class="$style.title"
241
- @click.stop
242
241
  >
243
242
  <ui3n-icon
244
243
  v-if="iconData"
@@ -264,7 +263,6 @@
264
263
  v-if="component"
265
264
  :class="[$style.content, ...currentDialogProps.contentCssClass!]"
266
265
  :style="currentDialogProps.contentCssStyle"
267
- @click.stop
268
266
  >
269
267
  <!-- @vue-ignore -->
270
268
  <component
@@ -284,7 +282,6 @@
284
282
  $style.actions,
285
283
  currentDialogProps.confirmButton && currentDialogProps.cancelButton && $style.bothBtns,
286
284
  ]"
287
- @click.stop
288
285
  >
289
286
  <ui3n-button
290
287
  v-if="currentDialogProps.cancelButton"