@v1nt1248/3nclient-lib 0.1.55 → 0.1.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/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.1.55",
5
+ "version": "0.1.56",
6
6
  "description": "Library for 3NWeb clients",
7
7
  "type": "module",
8
8
  "files": [
@@ -141,11 +141,11 @@
141
141
  @keydown.esc="cancel"
142
142
  />
143
143
 
144
- <div v-ui3n-ripple :class="[$style.btn, $style.doneBtn]" @click="done">
144
+ <div v-ui3n-ripple :class="[$style.btn, $style.doneBtn]" @click.stop.prevent="done">
145
145
  <ui3n-icon icon="round-done" size="12" color="var(--color-icon-table-accent-default)" />
146
146
  </div>
147
147
 
148
- <div v-ui3n-ripple :class="[$style.btn, $style.cancelBtn]" @click="cancel">
148
+ <div v-ui3n-ripple :class="[$style.btn, $style.cancelBtn]" @click.stop.prevent="cancel">
149
149
  <ui3n-icon icon="round-close" size="12" color="var(--color-icon-table-secondary-default)" />
150
150
  </div>
151
151
  </template>