@weni/unnnic-system 3.7.1-alpha.0 → 3.7.1-alpha.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@weni/unnnic-system",
3
- "version": "3.7.1-alpha.0",
3
+ "version": "3.7.1-alpha.2",
4
4
  "type": "commonjs",
5
5
  "files": [
6
6
  "dist",
@@ -27,7 +27,7 @@
27
27
  :filled="iconsFilled"
28
28
  :class="{ 'unnnic-button__icon-left': hasText }"
29
29
  :style="{ visibility: loading ? 'hidden' : 'visible' }"
30
- :next="next"
30
+ clickable
31
31
  data-testid="icon-left"
32
32
  />
33
33
 
@@ -38,7 +38,7 @@
38
38
  :style="{ visibility: loading ? 'hidden' : 'visible' }"
39
39
  :size="iconSize"
40
40
  :filled="iconsFilled"
41
- :next="next"
41
+ clickable
42
42
  data-testid="icon-center"
43
43
  />
44
44
 
@@ -59,7 +59,7 @@
59
59
  :filled="iconsFilled"
60
60
  :class="{ 'unnnic-button__icon-right': hasText }"
61
61
  :style="{ visibility: loading ? 'hidden' : 'visible' }"
62
- :next="next"
62
+ clickable
63
63
  data-testid="icon-right"
64
64
  />
65
65
  </button>
@@ -214,10 +214,6 @@ watch(
214
214
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
215
215
  transition-duration: 0.15s;
216
216
 
217
- * > {
218
- cursor: pointer;
219
- }
220
-
221
217
  &__icon {
222
218
  &-left {
223
219
  margin-right: $unnnic-inline-nano;
@@ -11,6 +11,7 @@
11
11
 
12
12
  &:focus,
13
13
  &.focus {
14
+ transition: border-color 0.1s ease-in-out;
14
15
  border-color: $unnnic-color-border-active;
15
16
  }
16
17
 
@@ -6,6 +6,7 @@
6
6
  icon="close-1"
7
7
  scheme="neutral-dark"
8
8
  size="sm"
9
+ clickable
9
10
  @click="$emit('close')"
10
11
  />
11
12
  </div>
@@ -128,6 +129,7 @@ export default {
128
129
  default: '',
129
130
  },
130
131
  },
132
+ emits: ['close', 'file-change', 'cancel', 'action'],
131
133
 
132
134
  data() {
133
135
  return {};