@onereach/ui-components-vue2 26.2.0 → 26.2.1-beta.5846.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.
|
@@ -5,6 +5,7 @@ import { defineComponent, ref, computed, toRef, watch } from 'vue-demi';
|
|
|
5
5
|
import { OrOverlayV3 as OrOverlay } from '../or-overlay-v3/index.js';
|
|
6
6
|
import { OrButtonV3 as OrButton } from '../or-button-v3/index.js';
|
|
7
7
|
import { OrInputV3 as OrInput } from '../or-input-v3/index.js';
|
|
8
|
+
import { OrTextV3 as OrText } from '../or-text-v3/index.js';
|
|
8
9
|
import { a as ButtonColor } from '../../props-bba3dca8.js';
|
|
9
10
|
import { n as normalizeComponent } from '../../normalize-component-cf2db48b.js';
|
|
10
11
|
import '../../dom-qGGG2YCX-4d4cca6e.js';
|
|
@@ -83,7 +84,8 @@ var script = defineComponent({
|
|
|
83
84
|
components: {
|
|
84
85
|
OrOverlay,
|
|
85
86
|
OrButton,
|
|
86
|
-
OrInput
|
|
87
|
+
OrInput,
|
|
88
|
+
OrText
|
|
87
89
|
},
|
|
88
90
|
inheritAttrs: false,
|
|
89
91
|
props: {
|
|
@@ -258,7 +260,12 @@ var __vue_render__ = function () {
|
|
|
258
260
|
}, 'div', _vm.$attrs, false), [_c('div', {
|
|
259
261
|
class: _vm.headerStyles
|
|
260
262
|
}, [_vm._t("header", function () {
|
|
261
|
-
return [
|
|
263
|
+
return [_c('OrText', {
|
|
264
|
+
attrs: {
|
|
265
|
+
"text": _vm.titleText,
|
|
266
|
+
"slice-index": 4
|
|
267
|
+
}
|
|
268
|
+
})];
|
|
262
269
|
})], 2), _vm._v(" "), _c('div', {
|
|
263
270
|
staticClass: "grow"
|
|
264
271
|
}, [_c('div', {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onereach/ui-components-vue2",
|
|
3
|
-
"version": "26.2.0",
|
|
3
|
+
"version": "26.2.1-beta.5846.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.2.0",
|
|
44
|
-
"@onereach/ui-components-common": "^26.2.0",
|
|
43
|
+
"@onereach/styles": "^26.2.1-beta.5846.0",
|
|
44
|
+
"@onereach/ui-components-common": "^26.2.1-beta.5846.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": "4474ca8f4df73034e7076a70696471b8d6052873"
|
|
105
|
+
"npmUnpacked": "4.15.2"
|
|
107
106
|
}
|