@extscreen/es-core 2.2.64 → 2.2.65
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/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -5248,17 +5248,17 @@ function ESSeekBarViewComponent() {
|
|
5248
5248
|
});
|
5249
5249
|
},
|
5250
5250
|
setMaxProgress(progress) {
|
5251
|
-
Vue.Native.callUIFunction(this.$refs.
|
5251
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5252
5252
|
'setMaxProgress', [progress], (res) => {
|
5253
5253
|
});
|
5254
5254
|
},
|
5255
5255
|
setSecondProgress(progress) {
|
5256
|
-
Vue.Native.callUIFunction(this.$refs.
|
5256
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5257
5257
|
'setSecondProgress', [progress], (res) => {
|
5258
5258
|
});
|
5259
5259
|
},
|
5260
5260
|
show(value) {
|
5261
|
-
Vue.Native.callUIFunction(this.$refs.
|
5261
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5262
5262
|
'show', [value], (res) => {
|
5263
5263
|
});
|
5264
5264
|
},
|
@@ -5279,7 +5279,7 @@ function ESSeekBarViewComponent() {
|
|
5279
5279
|
return h('TVSeekBarViewComponent',
|
5280
5280
|
{
|
5281
5281
|
on,
|
5282
|
-
ref: '
|
5282
|
+
ref: 'seekbar',
|
5283
5283
|
}, this.$slots.default);
|
5284
5284
|
},
|
5285
5285
|
});
|