@onereach/ui-components-vue2 26.8.0 → 26.8.1-beta.5974.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.
@@ -301,6 +301,10 @@ var script = defineComponent({
301
301
  keepAlive: {
302
302
  type: Boolean,
303
303
  default: true
304
+ },
305
+ mountTo: {
306
+ type: [String, Object],
307
+ default: 'body'
304
308
  }
305
309
  },
306
310
  emits: ['update:state', 'open', 'close'],
@@ -407,7 +411,11 @@ var __vue_render__ = function () {
407
411
  var _vm = this;
408
412
  var _h = _vm.$createElement;
409
413
  var _c = _vm._self._c || _h;
410
- return _vm.keepAlive || _vm.state === 'open' ? _c('OrTeleport', [_c('div', {
414
+ return _vm.keepAlive || _vm.state === 'open' ? _c('OrTeleport', {
415
+ attrs: {
416
+ "to": _vm.mountTo
417
+ }
418
+ }, [_c('div', {
411
419
  directives: [{
412
420
  name: "show",
413
421
  rawName: "v-show",
@@ -9,7 +9,7 @@ var script = defineComponent({
9
9
  },
10
10
  props: {
11
11
  to: {
12
- type: String,
12
+ type: [String, Object],
13
13
  default: 'body'
14
14
  },
15
15
  disabled: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onereach/ui-components-vue2",
3
- "version": "26.8.0",
3
+ "version": "26.8.1-beta.5974.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": "^26.8.0",
44
- "@onereach/ui-components-common": "^26.8.0",
43
+ "@onereach/styles": "^26.8.1-beta.5974.0",
44
+ "@onereach/ui-components-common": "^26.8.1-beta.5974.0",
45
45
  "@splidejs/splide": "4.0.6",
46
46
  "@tiptap/core": "2.27.1",
47
47
  "@tiptap/extension-blockquote": "2.27.1",
@@ -102,6 +102,5 @@
102
102
  "publishConfig": {
103
103
  "access": "public"
104
104
  },
105
- "npmUnpacked": "4.15.2",
106
- "gitHead": "0592687da00c9a1650a8748d9ef06e9f4055a04c"
105
+ "npmUnpacked": "4.15.2"
107
106
  }