@live-change/vue3-components 0.9.86 → 0.9.87
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 +5 -4
- package/view/RangeViewer.vue +16 -8
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.87",
|
|
4
4
|
"description": "Live Change Framework - vue components",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -21,10 +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.87",
|
|
25
25
|
"debug": "^4.3.4",
|
|
26
26
|
"mitt": "3.0.1",
|
|
27
|
-
"vue": "^3.5.12"
|
|
27
|
+
"vue": "^3.5.12",
|
|
28
|
+
"vue3-scroll-border": "0.1.7"
|
|
28
29
|
},
|
|
29
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "7a7694ad2801b7ffa16f347aed441ca5f81ab5fd"
|
|
30
31
|
}
|
package/view/RangeViewer.vue
CHANGED
|
@@ -146,12 +146,12 @@
|
|
|
146
146
|
async function createBuckets() {
|
|
147
147
|
try {
|
|
148
148
|
return await rangeBuckets(
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
149
|
+
(range, p) => pathFunction.value(range, p),
|
|
150
|
+
{
|
|
151
|
+
bucketSize: bucketSize.value,
|
|
152
|
+
initialPosition: initialPosition.value,
|
|
153
|
+
softClose: softClose.value
|
|
154
|
+
}
|
|
155
155
|
)
|
|
156
156
|
} catch(e) {
|
|
157
157
|
console.error("Error creating buckets", e)
|
|
@@ -218,6 +218,7 @@
|
|
|
218
218
|
}
|
|
219
219
|
|
|
220
220
|
async function loadBottom() {
|
|
221
|
+
console.log("LOAD BOTTOM!!!")
|
|
221
222
|
if(!props.canLoadBottom) return
|
|
222
223
|
if(!buckets.value.canLoadBottom()) return
|
|
223
224
|
emit('loadBottom')
|
|
@@ -254,6 +255,13 @@
|
|
|
254
255
|
|
|
255
256
|
</script>
|
|
256
257
|
|
|
257
|
-
<style
|
|
258
|
-
|
|
258
|
+
<style>
|
|
259
|
+
/* .load-sensor {
|
|
260
|
+
visibility: visible !important;
|
|
261
|
+
border: 2px solid red !important;
|
|
262
|
+
}
|
|
263
|
+
.drop-sensor {
|
|
264
|
+
visibility: visible !important;
|
|
265
|
+
border: 1px solid blue !important;
|
|
266
|
+
} */
|
|
259
267
|
</style>
|