@weni/unnnic-system 1.16.36-develop.0 → 1.16.37-develop.0

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": "1.16.36-develop.0",
3
+ "version": "1.16.37-develop.0",
4
4
  "main": "./dist/unnnic.common.js",
5
5
  "files": [
6
6
  "dist/*",
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div @keydown="onKeyDownSelect" v-click-outside="onClickOutside" class="unnnic-select-smart">
3
- <dropdown-skeleton type="manual" :value="active" position="bottom">
3
+ <dropdown-skeleton type="manual" :value="active" position="bottom" ref="dropdown-skeleton">
4
4
  <text-input
5
5
  class="unnnic-select-smart__input"
6
6
  ref="selectSmartInput"
@@ -175,6 +175,8 @@ export default {
175
175
 
176
176
  watch: {
177
177
  active(newValue) {
178
+ this.$refs['dropdown-skeleton'].calculatePosition();
179
+
178
180
  this.$nextTick(() => {
179
181
  if (newValue && !this.multiple) {
180
182
  const activeOptionIndex = this.getOptionIndex('active');