@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/dist/style.css +1 -1
- package/dist/ui3n-components.js +238 -244
- package/dist/ui3n-plugins.js +998 -1004
- package/package.json +1 -1
- package/src/components/ui3n-dialog/ui3n-dialog.vue +1 -4
package/package.json
CHANGED
|
@@ -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"
|