@extscreen/es-core 1.0.9 → 1.0.10
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 +10 -10
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -1843,22 +1843,22 @@ function ESSeekBarViewComponent() {
|
|
1843
1843
|
|
1844
1844
|
methods: {
|
1845
1845
|
setMaxProgress(progress) {
|
1846
|
-
Vue.Native.callUIFunction(this.$refs.
|
1846
|
+
Vue.Native.callUIFunction(this.$refs.seekBar,
|
1847
1847
|
'setMaxProgress', [progress], (res) => {
|
1848
1848
|
});
|
1849
1849
|
},
|
1850
1850
|
setProgress(progress) {
|
1851
|
-
Vue.Native.callUIFunction(this.$refs.
|
1851
|
+
Vue.Native.callUIFunction(this.$refs.seekBar,
|
1852
1852
|
'setProgress', [progress], (res) => {
|
1853
1853
|
});
|
1854
1854
|
},
|
1855
1855
|
setSecondProgress(progress) {
|
1856
|
-
Vue.Native.callUIFunction(this.$refs.
|
1856
|
+
Vue.Native.callUIFunction(this.$refs.seekBar,
|
1857
1857
|
'setSecondProgress', [progress], (res) => {
|
1858
1858
|
});
|
1859
1859
|
},
|
1860
1860
|
show(value) {
|
1861
|
-
Vue.Native.callUIFunction(this.$refs.
|
1861
|
+
Vue.Native.callUIFunction(this.$refs.seekBar,
|
1862
1862
|
'show', [value], (res) => {
|
1863
1863
|
});
|
1864
1864
|
},
|
@@ -1879,7 +1879,7 @@ function ESSeekBarViewComponent() {
|
|
1879
1879
|
return h('TVSeekBarViewComponent',
|
1880
1880
|
{
|
1881
1881
|
on,
|
1882
|
-
ref: '
|
1882
|
+
ref: 'seekBar',
|
1883
1883
|
}, this.$slots.default);
|
1884
1884
|
},
|
1885
1885
|
});
|
@@ -1895,22 +1895,22 @@ function ESProgressBarViewComponent() {
|
|
1895
1895
|
Vue.component('es-progress-bar-view-component', {
|
1896
1896
|
methods: {
|
1897
1897
|
setMaxProgress(progress) {
|
1898
|
-
Vue.Native.callUIFunction(this.$refs.
|
1898
|
+
Vue.Native.callUIFunction(this.$refs.progressBar,
|
1899
1899
|
'setMaxProgress', [progress], (res) => {
|
1900
1900
|
});
|
1901
1901
|
},
|
1902
1902
|
setProgress(progress) {
|
1903
|
-
Vue.Native.callUIFunction(this.$refs.
|
1903
|
+
Vue.Native.callUIFunction(this.$refs.progressBar,
|
1904
1904
|
'setProgress', [progress], (res) => {
|
1905
1905
|
});
|
1906
1906
|
},
|
1907
1907
|
setSecondProgress(progress) {
|
1908
|
-
Vue.Native.callUIFunction(this.$refs.
|
1908
|
+
Vue.Native.callUIFunction(this.$refs.progressBar,
|
1909
1909
|
'setSecondProgress', [progress], (res) => {
|
1910
1910
|
});
|
1911
1911
|
},
|
1912
1912
|
show(value) {
|
1913
|
-
Vue.Native.callUIFunction(this.$refs.
|
1913
|
+
Vue.Native.callUIFunction(this.$refs.progressBar,
|
1914
1914
|
'show', [value], (res) => {
|
1915
1915
|
});
|
1916
1916
|
},
|
@@ -1918,7 +1918,7 @@ function ESProgressBarViewComponent() {
|
|
1918
1918
|
render(h) {
|
1919
1919
|
return h('TVProgressBarViewComponent',
|
1920
1920
|
{
|
1921
|
-
ref: '
|
1921
|
+
ref: 'progressBar'
|
1922
1922
|
}, this.$slots.default
|
1923
1923
|
);
|
1924
1924
|
}
|