@live-change/vue3-components 0.9.113 → 0.9.115
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 +3 -3
- package/view/RangeViewer.vue +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/vue3-components",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.115",
|
|
4
4
|
"description": "Live Change Framework - vue components",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
},
|
|
22
22
|
"homepage": "https://github.com/live-change/live-change-stack",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@live-change/vue3-ssr": "^0.9.
|
|
24
|
+
"@live-change/vue3-ssr": "^0.9.115",
|
|
25
25
|
"debug": "^4.3.4",
|
|
26
26
|
"mitt": "3.0.1",
|
|
27
27
|
"vue": "^3.5.12",
|
|
28
28
|
"vue3-scroll-border": "0.1.7"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "44fe0c1e9da339892bf9e1b9e0864637d015b1b5"
|
|
31
31
|
}
|
package/view/RangeViewer.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
2
|
+
<component :is="tag">
|
|
3
3
|
|
|
4
4
|
<scroll-border placement="top"
|
|
5
5
|
key="top-scroll-border"
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
:dropDelay="loadBottomDelay"
|
|
45
45
|
/>
|
|
46
46
|
|
|
47
|
-
</
|
|
47
|
+
</component>
|
|
48
48
|
</template>
|
|
49
49
|
|
|
50
50
|
<script setup>
|
|
@@ -125,7 +125,11 @@
|
|
|
125
125
|
frozen: {
|
|
126
126
|
type: Boolean,
|
|
127
127
|
default: false
|
|
128
|
-
}
|
|
128
|
+
},
|
|
129
|
+
tag: {
|
|
130
|
+
type: String,
|
|
131
|
+
default: 'div'
|
|
132
|
+
},
|
|
129
133
|
})
|
|
130
134
|
|
|
131
135
|
const {
|