@onereach/ui-components-vue2 25.2.0 → 25.2.1-beta.5781.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.
@@ -940,9 +940,11 @@ var script = defineComponent({
940
940
  const value = Array.isArray(proxyModelValue.value) ? proxyModelValue.value[0] : proxyModelValue.value;
941
941
  const selectedOptionElement = document.querySelector(`[data-value="${value}"]`);
942
942
  if (selectedOptionElement) {
943
- selectedOptionElement.scrollIntoView({
944
- behavior: 'auto',
945
- block: 'start'
943
+ setTimeout(() => {
944
+ selectedOptionElement.scrollIntoView({
945
+ behavior: 'auto',
946
+ block: 'start'
947
+ });
946
948
  });
947
949
  }
948
950
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onereach/ui-components-vue2",
3
- "version": "25.2.0",
3
+ "version": "25.2.1-beta.5781.0",
4
4
  "description": "Vue components library for v2",
5
5
  "license": "Apache-2.0",
6
6
  "sideEffects": false,
@@ -40,8 +40,8 @@
40
40
  "@codemirror/view": "^6",
41
41
  "@floating-ui/dom": "1.5.3",
42
42
  "@lezer/highlight": "*",
43
- "@onereach/styles": "^25.2.0",
44
- "@onereach/ui-components-common": "^25.2.0",
43
+ "@onereach/styles": "^25.2.1-beta.5781.0",
44
+ "@onereach/ui-components-common": "^25.2.1-beta.5781.0",
45
45
  "@splidejs/splide": "4.0.6",
46
46
  "@tiptap/core": "2.0.3",
47
47
  "@tiptap/extension-blockquote": "2.0.3",
@@ -102,6 +102,5 @@
102
102
  "publishConfig": {
103
103
  "access": "public"
104
104
  },
105
- "npmUnpacked": "4.15.2",
106
- "gitHead": "fb2440da49ca032fcbdf6ff67dd0cd1741e00114"
105
+ "npmUnpacked": "4.15.2"
107
106
  }