@v1nt1248/3nclient-lib 0.1.55 → 0.1.57

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.
@@ -6,7 +6,7 @@
6
6
  --spacing-l: 32px;
7
7
  --spacing-xl: 40px;
8
8
  --spacing-xxl: 48px;
9
-
9
+
10
10
  --white-inf: rgba(255, 255, 255, 0);
11
11
  --white-100: #fff;
12
12
  --black-inf: rgba(0, 0, 0, 0);
@@ -100,7 +100,7 @@
100
100
  --files-pdf-secondary: #fdc7c3;
101
101
  --files-image-primary: #4744e4;
102
102
  --files-image-secondary: #c9c8ff;
103
-
103
+
104
104
  --font-6: 6px;
105
105
  --font-8: 8px;
106
106
  --font-9: 9px;
@@ -744,7 +744,7 @@
744
744
  --color-icon-chat-bubble-user-selected: var(--accent-content-default);
745
745
  --color-icon-chat-bubble-other-default: var(--default-content-default);
746
746
  --color-icon-chat-bubble-other-selected: var(--accent-content-selected);
747
-
747
+
748
748
  --effect-dropdown-shadow: 0 0 4px 0 var(--shadow-close), 0 4px 12px 0 var(--shadow-far);
749
749
  }
750
750
 
@@ -752,7 +752,7 @@ html {
752
752
  --shadow-key-umbra-opacity: rgba(0, 0, 0, 0.2);
753
753
  --shadow-key-penumbra-opacity: rgba(0, 0, 0, 0.14);
754
754
  --shadow-key-ambient-opacity: rgba(0, 0, 0, 0.12);
755
-
755
+
756
756
  overflow: hidden;
757
757
  font-family: Manrope, sans-serif;
758
758
  }
@@ -835,8 +835,7 @@ div {
835
835
  font-weight: 400;
836
836
  background-color: var(--color-bg-control-secondary-default);
837
837
  color: var(--color-text-control-primary-default);
838
- box-shadow:
839
- 0 2px 1px -1px rgba(0, 0, 0, 0.2),
840
- 0 1px 1px 0 rgba(0, 0, 0, 0.14),
841
- 0 1px 3px 0 rgba(0, 0, 0, 0.12);
838
+ box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2),
839
+ 0 1px 1px 0 rgba(0, 0, 0, 0.14),
840
+ 0 1px 3px 0 rgba(0, 0, 0, 0.12);
842
841
  }
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.57",
6
6
  "description": "Library for 3NWeb clients",
7
7
  "type": "module",
8
8
  "files": [
@@ -94,7 +94,7 @@
94
94
  "stylelint-config-standard": "36.0.1",
95
95
  "stylelint-scss": "6.5.0",
96
96
  "typescript": "5.7.3",
97
- "vite": "5.4.11",
97
+ "vite": "5.4.14",
98
98
  "vite-plugin-css-injected-by-js": "3.5.2",
99
99
  "vite-plugin-dts": "4.5.0",
100
100
  "vite-plugin-vue-devtools": "^7.7.0",
@@ -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>