@v1nt1248/3nclient-lib 0.1.32 → 0.1.33

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.32",
5
+ "version": "0.1.33",
6
6
  "description": "Library for 3NWeb clients",
7
7
  "type": "module",
8
8
  "files": [
@@ -185,7 +185,7 @@ function change(ev: Event) {
185
185
  display: flex;
186
186
  justify-content: flex-start;
187
187
  align-items: center;
188
- min-height: var(--spacing-vl);
188
+ min-height: var(--spacing-m);
189
189
  gap: var(--spacing-s);
190
190
  }
191
191
 
@@ -47,7 +47,7 @@ const mainCssClasses = computed(() => {
47
47
  <template>
48
48
  <div :class="mainCssClasses">
49
49
  <div :class="$style.ui3nChipIcon">
50
- <slot name="left" :size="iconHeight" :color="props.textColor" />
50
+ <slot name="left" :size="iconHeight" :color="textColor" />
51
51
  </div>
52
52
 
53
53
  <div :class="$style.ui3nChipBody">
@@ -145,7 +145,7 @@ function handleEvent(event: Event, eventName: Ui3nDialogEvent) {
145
145
  />
146
146
 
147
147
  <div
148
- v-if="props.component"
148
+ v-if="component"
149
149
  :class="[$style.content, ...dialogProps.contentCssClass]"
150
150
  :style="dialogProps.contentCssStyle"
151
151
  @click.stop
@@ -86,7 +86,7 @@ onMounted(() => {
86
86
  </div>
87
87
 
88
88
  <ui3n-button
89
- v-if="!props.duration"
89
+ v-if="!duration"
90
90
  type="icon"
91
91
  size="small"
92
92
  color="transparent"
@@ -110,7 +110,7 @@ watch(isPositioned, val => {
110
110
  >
111
111
  <slot name="content">
112
112
  <div :class="$style.content">
113
- {{ props.content }}
113
+ {{ content }}
114
114
  <div
115
115
  ref="floatingArrowEl"
116
116
  :class="[$style.arrow, $style[`arrow-${mainPlacement}`]]"