@extscreen/es-core 2.3.3 → 2.3.5

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.
Files changed (2) hide show
  1. package/dist/index.js +2293 -267
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1123,6 +1123,7 @@ class ESModule {
1123
1123
  pageTag: params.pageTag,
1124
1124
  pageLimit: params.pageLimit,
1125
1125
  backgroundColor: params.backgroundColor,
1126
+ splash: params.splash,
1126
1127
  });
1127
1128
  }
1128
1129
 
@@ -1677,6 +1678,11 @@ class ESSharedPreferencesModule {
1677
1678
  'initSharedPreferences', name);
1678
1679
  }
1679
1680
 
1681
+ initESSharedPreferences(name) {
1682
+ return Vue.Native.callNativeWithPromise('AndroidSharedPreferencesModule',
1683
+ 'initESSharedPreferences', name);
1684
+ }
1685
+
1680
1686
  //----------------------------------------------------
1681
1687
  getBoolean(key, defValue) {
1682
1688
  return Vue.Native.callNativeWithPromise('AndroidSharedPreferencesModule',
@@ -1745,6 +1751,11 @@ class ESSharedPreferencesManager {
1745
1751
  return ESSharedPreferencesModule$1.initSharedPreferences(name);
1746
1752
  }
1747
1753
 
1754
+ initESSharedPreferences(name) {
1755
+ this._sharedPreferencesName = name;
1756
+ return ESSharedPreferencesModule$1.initESSharedPreferences(name);
1757
+ }
1758
+
1748
1759
  //----------------------------------------------------
1749
1760
  getBoolean(key, defValue) {
1750
1761
  if (!this._sharedPreferencesName) {
@@ -2007,51 +2018,20 @@ class ESUsbDeviceManager {
2007
2018
 
2008
2019
  var ESUsbDeviceManager$1 = new ESUsbDeviceManager();
2009
2020
 
2010
- /**
2011
- * ESApplication instance
2012
- */
2013
- class ESApp {
2014
- //instance
2015
- _application = null;
2016
-
2017
- newInstance(appName, app, rootView, router) {
2018
- const application = new Vue({
2019
- appName: appName,
2020
- rootView: rootView,
2021
- render: h => h(app),
2022
- router,
2023
- });
2024
-
2025
- application.$start((/* app */) => {
2026
- // 这里干一点 Hippy 启动后的需要干的事情,比如通知终端前端已经准备完毕,可以开始发消息了。
2027
- // setApp(app);
2028
- });
2029
- this._application = application;
2030
- }
2031
-
2032
- getInstance() {
2033
- return this._application;
2034
- }
2035
-
2036
- $off(event, args) {
2037
- if (this._application) {
2038
- this._application.$off(event, args);
2039
- }
2040
- }
2021
+ let ESApp;
2041
2022
 
2042
- $on(event, callback) {
2043
- if (this._application) {
2044
- this._application.$on(event, callback);
2045
- }
2046
- }
2023
+ function setESApp(app) {
2024
+ ESApp = app;
2047
2025
  }
2048
2026
 
2049
- var ESApp$1 = new ESApp();
2027
+ function getESApp() {
2028
+ return ESApp;
2029
+ }
2050
2030
 
2051
2031
  var ESUsbDevice = {
2052
2032
  mounted() {
2053
- ESApp$1.$on('onUsbDeviceAttached', this.onUsbDeviceAttached);
2054
- ESApp$1.$on('onUsbDeviceDetached', this.onUsbDeviceDetached);
2033
+ ESApp.$on('onUsbDeviceAttached', this.onUsbDeviceAttached);
2034
+ ESApp.$on('onUsbDeviceDetached', this.onUsbDeviceDetached);
2055
2035
  },
2056
2036
 
2057
2037
  methods: {
@@ -2073,8 +2053,8 @@ var ESUsbDevice = {
2073
2053
  },
2074
2054
 
2075
2055
  beforeDestroy() {
2076
- ESApp$1.$off('onUsbDeviceAttached', this.onUsbDeviceAttached);
2077
- ESApp$1.$off('onUsbDeviceDetached', this.onUsbDeviceDetached);
2056
+ ESApp.$off('onUsbDeviceAttached', this.onUsbDeviceAttached);
2057
+ ESApp.$off('onUsbDeviceDetached', this.onUsbDeviceDetached);
2078
2058
  },
2079
2059
  };
2080
2060
 
@@ -2083,11 +2063,6 @@ var ESUsbDevice = {
2083
2063
  */
2084
2064
  class ESMMapModule {
2085
2065
 
2086
- initESPackageName(packageName) {
2087
- return Vue.Native.callNativeWithPromise('AndroidMMapModule', 'initESPackageName',
2088
- packageName);
2089
- }
2090
-
2091
2066
  //
2092
2067
  getBoolean(packageName, key, defValue) {
2093
2068
  return Vue.Native.callNativeWithPromise('AndroidMMapModule', 'getBoolean',
@@ -2157,6 +2132,92 @@ class ESMMapModule {
2157
2132
 
2158
2133
  var ESMMapModule$1 = new ESMMapModule();
2159
2134
 
2135
+ /**
2136
+ *
2137
+ */
2138
+
2139
+ class ESManager {
2140
+
2141
+ _esSdkVersionCode = null;
2142
+ _esSdkVersionName = null;
2143
+ _esSdkPackageName = null;
2144
+ _esMiniProgramPath = null;
2145
+ _esKitVersionCode = -1;
2146
+ _esSdkSchemes = [];
2147
+ _runtimePath = null;
2148
+
2149
+ _esSdkInfo = null;
2150
+
2151
+
2152
+ init() {
2153
+ return Promise.resolve()
2154
+ .then(() => this.initESInfoPromise())
2155
+ }
2156
+
2157
+ initESInfoPromise() {
2158
+ return ESModule$1.getESSDKInfo()
2159
+ .then((result) => {
2160
+ this._esSdkInfo = result;
2161
+ if (result) {
2162
+ this._esSdkVersionCode = result.versionCode;
2163
+ this._esSdkVersionName = result.versionName;
2164
+ this._esSdkPackageName = result.packageName;
2165
+ this._esMiniProgramPath = result.miniProgramPath;
2166
+ this._esSdkSchemes = result.schemes;
2167
+ if (result.eskit_ver_code) {
2168
+ this._esKitVersionCode = result.eskit_ver_code;
2169
+ }
2170
+ //
2171
+ this._runtimePath = result.runtimePath;
2172
+ }
2173
+ return Promise.resolve();
2174
+ }
2175
+ );
2176
+ }
2177
+
2178
+ getESSDKInfo() {
2179
+ return this._esSdkInfo;
2180
+ }
2181
+
2182
+ getESSDKVersionCode() {
2183
+ return this._esKitVersionCode;
2184
+ }
2185
+
2186
+ getESSDKVersionName() {
2187
+ return this._esSdkVersionName;
2188
+ }
2189
+
2190
+ getESPackageName() {
2191
+ return this._esSdkPackageName;
2192
+ }
2193
+
2194
+ getESVersionCode() {
2195
+ return this._esSdkVersionCode;
2196
+ }
2197
+
2198
+ getESVersionName() {
2199
+ return this._esSdkVersionName;
2200
+ }
2201
+
2202
+ getESMiniProgramPath() {
2203
+ return this._esMiniProgramPath;
2204
+ }
2205
+
2206
+ getESAppPath() {
2207
+ return this._esMiniProgramPath;
2208
+ }
2209
+
2210
+ getESAppRuntimePath() {
2211
+ return this._runtimePath;
2212
+ }
2213
+
2214
+ getESSDKSupportSchemes() {
2215
+ return this._esSdkSchemes;
2216
+ }
2217
+ }
2218
+
2219
+ var ESManager$1 = new ESManager();
2220
+
2160
2221
  /**
2161
2222
  *
2162
2223
  */
@@ -2166,6 +2227,7 @@ class ESMMapManager {
2166
2227
  _packageName = "";
2167
2228
 
2168
2229
  init() {
2230
+ this._packageName = ESManager$1.getESPackageName();
2169
2231
  return Promise.resolve();
2170
2232
  }
2171
2233
 
@@ -2173,12 +2235,7 @@ class ESMMapManager {
2173
2235
  return this._packageName;
2174
2236
  }
2175
2237
 
2176
- initESPackageName(packageName) {
2177
- this._packageName = packageName;
2178
- return ESMMapModule$1.initESPackageName(packageName);
2179
- }
2180
-
2181
- //-----------------------------------------------------------
2238
+ //---------------------------操作自己的共享内存--------------------------------
2182
2239
  //
2183
2240
  getBoolean(key, defValue) {
2184
2241
  return ESMMapModule$1.getBoolean(this.getPackageName(), key, defValue);
@@ -2233,7 +2290,7 @@ class ESMMapManager {
2233
2290
  return ESMMapModule$1.putMap(this.getPackageName(), key, value, mode);
2234
2291
  }
2235
2292
 
2236
- //---------------------------------------------------------------
2293
+ //----------------------------操作其他APP的共享内存-----------------------------------
2237
2294
  //
2238
2295
  getSharedBoolean(packageName, key, defValue) {
2239
2296
  return ESMMapModule$1.getBoolean(packageName, key, defValue);
@@ -2332,81 +2389,6 @@ class ESDisplayManager {
2332
2389
 
2333
2390
  var ESDisplayManager$1 = new ESDisplayManager();
2334
2391
 
2335
- /**
2336
- *
2337
- */
2338
-
2339
- class ESManager {
2340
-
2341
- _esSdkVersionCode = null;
2342
- _esSdkVersionName = null;
2343
- _esSdkPackageName = null;
2344
- _esMiniProgramPath = null;
2345
- _esKitVersionCode = -1;
2346
- _esSdkSchemes = [];
2347
-
2348
- _esSdkInfo = null;
2349
-
2350
-
2351
- init() {
2352
- return Promise.resolve()
2353
- .then(() => this.initESInfoPromise())
2354
- }
2355
-
2356
- initESInfoPromise() {
2357
- return ESModule$1.getESSDKInfo()
2358
- .then((result) => {
2359
- this._esSdkInfo = result;
2360
- if (result) {
2361
- this._esSdkVersionCode = result.versionCode;
2362
- this._esSdkVersionName = result.versionName;
2363
- this._esSdkPackageName = result.packageName;
2364
- this._esMiniProgramPath = result.miniProgramPath;
2365
- this._esSdkSchemes = result.schemes;
2366
- if (result.eskit_ver_code) {
2367
- this._esKitVersionCode = result.eskit_ver_code;
2368
- }
2369
- }
2370
- return Promise.resolve();
2371
- }
2372
- );
2373
- }
2374
-
2375
- getESSDKInfo() {
2376
- return this._esSdkInfo;
2377
- }
2378
-
2379
- getESSDKVersionCode() {
2380
- return this._esKitVersionCode;
2381
- }
2382
-
2383
- getESSDKVersionName() {
2384
- return this._esSdkVersionName;
2385
- }
2386
-
2387
- getESPackageName() {
2388
- return this._esSdkPackageName;
2389
- }
2390
-
2391
- getESVersionCode() {
2392
- return this._esSdkVersionCode;
2393
- }
2394
-
2395
- getESVersionName() {
2396
- return this._esSdkVersionName;
2397
- }
2398
-
2399
- getESMiniProgramPath() {
2400
- return this._esMiniProgramPath;
2401
- }
2402
-
2403
- getESSDKSupportSchemes() {
2404
- return this._esSdkSchemes;
2405
- }
2406
- }
2407
-
2408
- var ESManager$1 = new ESManager();
2409
-
2410
2392
  const ES_SDK_VERSION_20 = -1;
2411
2393
  const ES_SDK_VERSION_21 = 2.1;
2412
2394
  const ES_SDK_VERSION_22 = 2.2;
@@ -2511,6 +2493,9 @@ class ESLaunchManager {
2511
2493
  pageTag: intent.pageTag,
2512
2494
  pageLimit: intent.pageLimit,
2513
2495
  backgroundColor: intent.backgroundColor,
2496
+ //
2497
+ pkg: intent.packageName,
2498
+ splash: intent.splash,
2514
2499
  });
2515
2500
  }
2516
2501
 
@@ -2694,7 +2679,7 @@ const TAG$7 = "ESBroadcast";
2694
2679
 
2695
2680
  var ESBroadcast = {
2696
2681
  mounted() {
2697
- ESApp$1.$on('onESBroadcastReceive', this.__onBroadcastReceive);
2682
+ ESApp.$on('onESBroadcastReceive', this.__onBroadcastReceive);
2698
2683
  },
2699
2684
  data() {
2700
2685
  return {
@@ -2702,7 +2687,7 @@ var ESBroadcast = {
2702
2687
  }
2703
2688
  },
2704
2689
  beforeDestroy() {
2705
- ESApp$1.$off('onESBroadcastReceive', this.__onBroadcastReceive);
2690
+ ESApp.$off('onESBroadcastReceive', this.__onBroadcastReceive);
2706
2691
  },
2707
2692
  methods: {
2708
2693
  __registerReceiver(interFilter, receiverId) {
@@ -2988,16 +2973,16 @@ var ESRouter = {
2988
2973
 
2989
2974
  mounted() {
2990
2975
  Vue.Native.callNative('DeviceEventModule', 'setListenBackPress', true);
2991
- ESApp$1.$on('hardwareBackPress', this.onESRouterBackPressed);
2992
- ESApp$1.$on('DispatchKeyEvent', this.onESRouterDispatchKeyEvent);
2993
- ESApp$1.$on('LifecycleChange', this.onESRouterLifecycleChanged);
2994
- ESApp$1.$on('OnNewIntent', this.onESRouterLifecycleNewIntent);
2976
+ ESApp.$on('hardwareBackPress', this.onESRouterBackPressed);
2977
+ ESApp.$on('DispatchKeyEvent', this.onESRouterDispatchKeyEvent);
2978
+ ESApp.$on('LifecycleChange', this.onESRouterLifecycleChanged);
2979
+ ESApp.$on('OnNewIntent', this.onESRouterLifecycleNewIntent);
2995
2980
  },
2996
2981
  beforeDestroy() {
2997
- ESApp$1.$off('hardwareBackPress', this.onESRouterBackPressed);
2998
- ESApp$1.$off('DispatchKeyEvent', this.onESRouterDispatchKeyEvent);
2999
- ESApp$1.$off('LifecycleChange', this.onESRouterLifecycleChanged);
3000
- ESApp$1.$off('OnNewIntent', this.onESRouterLifecycleNewIntent);
2982
+ ESApp.$off('hardwareBackPress', this.onESRouterBackPressed);
2983
+ ESApp.$off('DispatchKeyEvent', this.onESRouterDispatchKeyEvent);
2984
+ ESApp.$off('LifecycleChange', this.onESRouterLifecycleChanged);
2985
+ ESApp.$off('OnNewIntent', this.onESRouterLifecycleNewIntent);
3001
2986
  },
3002
2987
 
3003
2988
  methods: {
@@ -3007,7 +2992,8 @@ var ESRouter = {
3007
2992
  ESLog.d(TAG$4, '#-------onESRouterBackPressed----->>>>>');
3008
2993
  }
3009
2994
  let router = this.$router;
3010
- if (router) {
2995
+ if (router && router.history && router.history.stack
2996
+ && router.history.stack.length > 0) {
3011
2997
  let route = router.currentRoute;
3012
2998
  ESRouterKeyManager$1.dispatchBackPressed(route);
3013
2999
  }
@@ -3018,7 +3004,8 @@ var ESRouter = {
3018
3004
  ESLog.d(TAG$4, '#-------onESRouterDispatchKeyEvent----->>>>>' + keyEvent);
3019
3005
  }
3020
3006
  let router = this.$router;
3021
- if (router) {
3007
+ if (router && router.history && router.history.stack
3008
+ && router.history.stack.length > 0) {
3022
3009
  let route = router.currentRoute;
3023
3010
  ESRouterKeyManager$1.dispatchKeyEvent(route, keyEvent);
3024
3011
  }
@@ -3030,7 +3017,8 @@ var ESRouter = {
3030
3017
  ESLog.d(TAG$4, '#-------onESRouterLifecycleChanged----->>>>>' + event);
3031
3018
  }
3032
3019
  let router = this.$router;
3033
- if (router) {
3020
+ if (router && router.history && router.history.stack
3021
+ && router.history.stack.length > 0) {
3034
3022
  let route = router.currentRoute;
3035
3023
  ESRouterLifecycleManager$1.onESRouterLifecycleChanged(route, event);
3036
3024
  }
@@ -3042,7 +3030,8 @@ var ESRouter = {
3042
3030
  ESLog.d(TAG$4, '#-------onESRouterLifecycleNewIntent----->>>>>' + intent);
3043
3031
  }
3044
3032
  let router = this.$router;
3045
- if (router) {
3033
+ if (router && router.history && router.history.stack
3034
+ && router.history.stack.length > 0) {
3046
3035
  let route = router.currentRoute;
3047
3036
  ESRouterLifecycleManager$1.onESRouterLifecycleNewIntent(route, intent.params);
3048
3037
  }
@@ -3405,10 +3394,10 @@ var ESPlugin = {
3405
3394
 
3406
3395
  methods: {
3407
3396
  onESEventPlugin() {
3408
- ESApp$1.$on('onESPluginStateChanged', this.onESPluginStateChanged);
3397
+ ESApp.$on('onESPluginStateChanged', this.onESPluginStateChanged);
3409
3398
  },
3410
3399
  offESEventPlugin() {
3411
- ESApp$1.$off('onESPluginStateChanged', this.onESPluginStateChanged);
3400
+ ESApp.$off('onESPluginStateChanged', this.onESPluginStateChanged);
3412
3401
  },
3413
3402
  onESPluginStateChanged(status) {
3414
3403
  if (ESLog.isLoggable(ESLog.DEBUG)) {
@@ -3572,10 +3561,10 @@ const TAG$2 = "ESEventBus";
3572
3561
 
3573
3562
  var ESEventBusEvent = {
3574
3563
  mounted() {
3575
- ESApp$1.$on('ESEventBusEvent', this.onESEventBusEvent);
3564
+ ESApp.$on('ESEventBusEvent', this.onESEventBusEvent);
3576
3565
  },
3577
3566
  beforeDestroy() {
3578
- ESApp$1.$off('ESEventBusEvent', this.onESEventBusEvent);
3567
+ ESApp.$off('ESEventBusEvent', this.onESEventBusEvent);
3579
3568
  },
3580
3569
  methods: {
3581
3570
  onESEventBusEvent(event) {
@@ -4233,89 +4222,1094 @@ staticRenderFns: [],
4233
4222
  },
4234
4223
  getSeekBarMode() {
4235
4224
  return this.seekBarMode;
4236
- }
4237
- }
4238
- };
4239
-
4240
- function ESSeekBarViewComponent() {
4241
- //
4242
- Vue.component(ESSeekBar.name, ESSeekBar);
4243
- //
4244
- Vue.registerElement('TVSeekBarViewComponent', {
4245
- component: {
4246
- name: 'TVSeekBarViewComponent',
4247
- processEventData(event, nativeEventName, nativeEventParams) {
4248
- switch (nativeEventName) {
4249
- case 'onFocus':
4250
- event.isFocused = nativeEventParams.isFocused;
4251
- break;
4252
- case 'onSeekBarChange':
4253
- event.fromUser = nativeEventParams.fromUser;
4254
- event.progress = nativeEventParams.progress;
4255
- break;
4256
- }
4257
- return event;
4258
- },
4259
4225
  },
4260
- });
4261
-
4262
- Vue.component('es-seek-bar-view-component', {
4263
-
4264
- methods: {
4265
- setMaxProgress(progress) {
4266
- Vue.Native.callUIFunction(this.$refs.seekBar,
4267
- 'setMaxProgress', [progress], (res) => {
4268
- });
4269
- },
4270
- setProgress(progress) {
4271
- Vue.Native.callUIFunction(this.$refs.seekBar,
4272
- 'setProgress', [progress], (res) => {
4273
- });
4274
- },
4275
- setSecondProgress(progress) {
4276
- Vue.Native.callUIFunction(this.$refs.seekBar,
4277
- 'setSecondProgress', [progress], (res) => {
4278
- });
4279
- },
4280
- show(value) {
4281
- Vue.Native.callUIFunction(this.$refs.seekBar,
4282
- 'show', [value], (res) => {
4283
- });
4284
- },
4285
- onFocusChange(evt) {
4286
- this.$emit('focus', evt);
4287
- },
4288
- onSeekBarChange(evt) {
4289
- this.$emit('seek-change', evt);
4290
- },
4291
-
4226
+ //----------------------------------------------------------
4227
+ invalidateSeekBar() {
4228
+ this.$refs.es_seek_bar.invalidateSeekBar();
4292
4229
  },
4293
-
4294
- render(h) {
4295
- const on = getEventRedirector.call(this, [
4296
- ['focus', 'focusChange'],
4297
- ['seek-change', 'seekBarChange'],
4298
- ]);
4299
- return h('TVSeekBarViewComponent',
4300
- {
4301
- on,
4302
- ref: 'seekBar',
4303
- }, this.$slots.default);
4230
+ setFocusable(focusable) {
4231
+ this.$refs.es_seek_bar.setFocusable(focusable);
4304
4232
  },
4305
- });
4306
- }
4307
-
4308
- var ESProgressBar = {
4309
- render: function(){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('es-progress-bar-view-component',{ref:"es_progress_bar",attrs:{"maxProgress":_vm.maxProgress,"progress":_vm.progress,"secondProgress":_vm.secondaryProgress,"backgroundColor":_vm.backgroundColor,"secondColor":_vm.secondaryColor,"cornerRadius":_vm.cornerRadius,"color":_vm.primaryColor}})},
4310
- staticRenderFns: [],
4311
- name: "ProgressBar",
4312
- props: {
4313
- maxProgress: {
4314
- type: Number,
4315
- default: 0
4233
+ setClickable(clickable) {
4234
+ this.$refs.es_seek_bar.setClickable(clickable);
4316
4235
  },
4317
- progress: {
4318
- type: Number,
4236
+ requestFocus() {
4237
+ this.$refs.es_seek_bar.requestFocus();
4238
+ },
4239
+ requestLayout() {
4240
+ this.$refs.es_seek_bar.requestLayout();
4241
+ },
4242
+ invalidate() {
4243
+ this.$refs.es_seek_bar.invalidate();
4244
+ },
4245
+ setVisible(visible) {
4246
+ this.$refs.es_seek_bar.setVisible(visible);
4247
+ },
4248
+ setLeftSeekBarVisible(visible) {
4249
+ this.$refs.es_seek_bar.setLeftSeekBarVisible(visible);
4250
+ },
4251
+ setRightSeekBarVisible(visible) {
4252
+ this.$refs.es_seek_bar.setRightSeekBarVisible(visible);
4253
+ },
4254
+ setSeekBarMode(mode) {
4255
+ this.$refs.es_seek_bar.setSeekBarMode(mode);
4256
+ },
4257
+ setRangeProgress(leftValue, rightValue) {
4258
+ this.$refs.es_seek_bar.setRangeProgress(leftValue, rightValue);
4259
+ },
4260
+ getProgress() {
4261
+ this.$refs.es_seek_bar.getProgress();
4262
+ },
4263
+ getLeftProgress() {
4264
+ this.$refs.es_seek_bar.getLeftProgress();
4265
+ },
4266
+ getRightProgress() {
4267
+ this.$refs.es_seek_bar.getRightProgress();
4268
+ },
4269
+ setRange(min, max, minInterval) {
4270
+ this.$refs.es_seek_bar.setRange(min, max, minInterval);
4271
+ },
4272
+ setGravity(gravity) {
4273
+ this.$refs.es_seek_bar.setGravity(gravity);
4274
+ },
4275
+ setProgressWidth(progressWidth) {
4276
+ this.$refs.es_seek_bar.setProgressWidth(progressWidth);
4277
+ },
4278
+ setProgressHeight(progressHeight) {
4279
+ this.$refs.es_seek_bar.setProgressHeight(progressHeight);
4280
+ },
4281
+ setProgressRadius(progressRadius) {
4282
+ this.$refs.es_seek_bar.setProgressRadius(progressRadius);
4283
+ },
4284
+ setProgressColor(progressColor) {
4285
+ this.$refs.es_seek_bar.setProgressColor(progressColor);
4286
+ },
4287
+ setProgressDefaultColor(defaultProgressColor) {
4288
+ this.$refs.es_seek_bar.setProgressDefaultColor(defaultProgressColor);
4289
+ },
4290
+ setProgressDrawable(progressDrawable) {
4291
+ this.$refs.es_seek_bar.setProgressDrawable(progressDrawable);
4292
+ },
4293
+ setProgressDefaultDrawable(progressDefaultDrawable) {
4294
+ this.$refs.es_seek_bar.setProgressDefaultDrawable(progressDefaultDrawable);
4295
+ },
4296
+ setProgressUrl(progressUrl) {
4297
+ this.$refs.es_seek_bar.setProgressUrl(progressUrl);
4298
+ },
4299
+ setProgressDefaultUrl(progressDefaultUrl) {
4300
+ this.$refs.es_seek_bar.setProgressDefaultUrl(progressDefaultUrl);
4301
+ },
4302
+ showIndicator(showIndicator) {
4303
+ this.$refs.es_seek_bar.showIndicator(showIndicator);
4304
+ },
4305
+ showLeftIndicator(showLeftIndicator) {
4306
+ this.$refs.es_seek_bar.showLeftIndicator(showLeftIndicator);
4307
+ },
4308
+ showRightIndicator(showRightIndicator) {
4309
+ this.$refs.es_seek_bar.showRightIndicator(showRightIndicator);
4310
+ },
4311
+ setIndicatorShowMode(indicatorShowMode) {
4312
+ this.$refs.es_seek_bar.setIndicatorShowMode(indicatorShowMode);
4313
+ },
4314
+ setLeftIndicatorShowMode(indicatorShowMode) {
4315
+ this.$refs.es_seek_bar.setLeftIndicatorShowMode(indicatorShowMode);
4316
+ },
4317
+ setRightIndicatorShowMode(indicatorShowMode) {
4318
+ this.$refs.es_seek_bar.setRightIndicatorShowMode(indicatorShowMode);
4319
+ },
4320
+ setIndicatorWidth(indicatorWidth) {
4321
+ this.$refs.es_seek_bar.setIndicatorWidth(indicatorWidth);
4322
+ },
4323
+ setLeftIndicatorWidth(indicatorWidth) {
4324
+ this.$refs.es_seek_bar.setLeftIndicatorWidth(indicatorWidth);
4325
+ },
4326
+ setRightIndicatorWidth(indicatorWidth) {
4327
+ this.$refs.es_seek_bar.setRightIndicatorWidth(indicatorWidth);
4328
+ },
4329
+ setIndicatorHeight(indicatorHeight) {
4330
+ this.$refs.es_seek_bar.setIndicatorHeight(indicatorHeight);
4331
+ },
4332
+ setLeftIndicatorHeight(indicatorHeight) {
4333
+ this.$refs.es_seek_bar.setLeftIndicatorHeight(indicatorHeight);
4334
+ },
4335
+ setRightIndicatorHeight(indicatorHeight) {
4336
+ this.$refs.es_seek_bar.setRightIndicatorHeight(indicatorHeight);
4337
+ },
4338
+ setIndicatorTextDecimalFormat(formatPattern) {
4339
+ this.$refs.es_seek_bar.setIndicatorTextDecimalFormat(formatPattern);
4340
+ },
4341
+ setLeftIndicatorTextDecimalFormat(formatPattern) {
4342
+ this.$refs.es_seek_bar.setLeftIndicatorTextDecimalFormat(formatPattern);
4343
+ },
4344
+ setRightIndicatorTextDecimalFormat(formatPattern) {
4345
+ this.$refs.es_seek_bar.setRightIndicatorTextDecimalFormat(formatPattern);
4346
+ },
4347
+ setIndicatorTextStringFormat(formatPattern) {
4348
+ this.$refs.es_seek_bar.setIndicatorTextStringFormat(formatPattern);
4349
+ },
4350
+ setLeftIndicatorTextStringFormat(formatPattern) {
4351
+ this.$refs.es_seek_bar.setLeftIndicatorTextStringFormat(formatPattern);
4352
+ },
4353
+ setRightIndicatorTextStringFormat(formatPattern) {
4354
+ this.$refs.es_seek_bar.setRightIndicatorTextStringFormat(formatPattern);
4355
+ },
4356
+ setIndicatorMargin(indicatorMargin) {
4357
+ this.$refs.es_seek_bar.setIndicatorMargin(indicatorMargin);
4358
+ },
4359
+ setLeftIndicatorMargin(indicatorMargin) {
4360
+ this.$refs.es_seek_bar.setLeftIndicatorMargin(indicatorMargin);
4361
+ },
4362
+ setRightIndicatorMargin(indicatorMargin) {
4363
+ this.$refs.es_seek_bar.setRightIndicatorMargin(indicatorMargin);
4364
+ },
4365
+ setIndicatorPaddingBottom(indicatorPaddingBottom) {
4366
+ this.$refs.es_seek_bar.setIndicatorPaddingBottom(indicatorPaddingBottom);
4367
+ },
4368
+ setLeftIndicatorPaddingBottom(indicatorPaddingBottom) {
4369
+ this.$refs.es_seek_bar.setLeftIndicatorPaddingBottom(indicatorPaddingBottom);
4370
+ },
4371
+ setRightIndicatorPaddingBottom(indicatorPaddingBottom) {
4372
+ this.$refs.es_seek_bar.setRightIndicatorPaddingBottom(indicatorPaddingBottom);
4373
+ },
4374
+ setIndicatorPaddingTop(indicatorPaddingTop) {
4375
+ this.$refs.es_seek_bar.setIndicatorPaddingTop(indicatorPaddingTop);
4376
+ },
4377
+ setLeftIndicatorPaddingTop(indicatorPaddingTop) {
4378
+ this.$refs.es_seek_bar.setLeftIndicatorPaddingTop(indicatorPaddingTop);
4379
+ },
4380
+ setRightIndicatorPaddingTop(indicatorPaddingTop) {
4381
+ this.$refs.es_seek_bar.setRightIndicatorPaddingTop(indicatorPaddingTop);
4382
+ },
4383
+ setIndicatorPaddingLeft(indicatorPaddingLeft) {
4384
+ this.$refs.es_seek_bar.setIndicatorPaddingLeft(indicatorPaddingLeft);
4385
+ },
4386
+ setLeftIndicatorPaddingLeft(indicatorPaddingLeft) {
4387
+ this.$refs.es_seek_bar.setLeftIndicatorPaddingLeft(indicatorPaddingLeft);
4388
+ },
4389
+ setRightIndicatorPaddingLeft(indicatorPaddingLeft) {
4390
+ this.$refs.es_seek_bar.setRightIndicatorPaddingLeft(indicatorPaddingLeft);
4391
+ },
4392
+ setIndicatorPaddingRight(indicatorPaddingRight) {
4393
+ this.$refs.es_seek_bar.setIndicatorPaddingRight(indicatorPaddingRight);
4394
+ },
4395
+ setLeftIndicatorPaddingRight(indicatorPaddingRight) {
4396
+ this.$refs.es_seek_bar.setLeftIndicatorPaddingRight(indicatorPaddingRight);
4397
+ },
4398
+ setRightIndicatorPaddingRight(indicatorPaddingRight) {
4399
+ this.$refs.es_seek_bar.setRightIndicatorPaddingRight(indicatorPaddingRight);
4400
+ },
4401
+ setIndicatorBackgroundColor(indicatorBackgroundColor) {
4402
+ this.$refs.es_seek_bar.setIndicatorBackgroundColor(indicatorBackgroundColor);
4403
+ },
4404
+ setLeftIndicatorBackgroundColor(indicatorBackgroundColor) {
4405
+ this.$refs.es_seek_bar.setLeftIndicatorBackgroundColor(indicatorBackgroundColor);
4406
+ },
4407
+ setRightIndicatorBackgroundColor(indicatorBackgroundColor) {
4408
+ this.$refs.es_seek_bar.setRightIndicatorBackgroundColor(indicatorBackgroundColor);
4409
+ },
4410
+ setIndicatorRadius(indicatorRadius) {
4411
+ this.$refs.es_seek_bar.setIndicatorRadius(indicatorRadius);
4412
+ },
4413
+ setLeftIndicatorRadius(indicatorRadius) {
4414
+ this.$refs.es_seek_bar.setLeftIndicatorRadius(indicatorRadius);
4415
+ },
4416
+ setRightIndicatorRadius(indicatorRadius) {
4417
+ this.$refs.es_seek_bar.setRightIndicatorRadius(indicatorRadius);
4418
+ },
4419
+ setIndicatorTextSize(indicatorTextSize) {
4420
+ this.$refs.es_seek_bar.setIndicatorTextSize(indicatorTextSize);
4421
+ },
4422
+ setLeftIndicatorTextSize(indicatorTextSize) {
4423
+ this.$refs.es_seek_bar.setLeftIndicatorTextSize(indicatorTextSize);
4424
+ },
4425
+ setRightIndicatorTextSize(indicatorTextSize) {
4426
+ this.$refs.es_seek_bar.setRightIndicatorTextSize(indicatorTextSize);
4427
+ },
4428
+ setIndicatorTextColor(indicatorTextColor) {
4429
+ this.$refs.es_seek_bar.setIndicatorTextColor(indicatorTextColor);
4430
+ },
4431
+ setLeftIndicatorTextColor(indicatorTextColor) {
4432
+ this.$refs.es_seek_bar.setLeftIndicatorTextColor(indicatorTextColor);
4433
+ },
4434
+ setRightIndicatorTextColor(indicatorTextColor) {
4435
+ this.$refs.es_seek_bar.setRightIndicatorTextColor(indicatorTextColor);
4436
+ },
4437
+ setIndicatorArrowSize(indicatorArrowSize) {
4438
+ this.$refs.es_seek_bar.setIndicatorArrowSize(indicatorArrowSize);
4439
+ },
4440
+ setLeftIndicatorArrowSize(indicatorArrowSize) {
4441
+ this.$refs.es_seek_bar.setLeftIndicatorArrowSize(indicatorArrowSize);
4442
+ },
4443
+ setRightIndicatorArrowSize(indicatorArrowSize) {
4444
+ this.$refs.es_seek_bar.setRightIndicatorArrowSize(indicatorArrowSize);
4445
+ },
4446
+ setIndicatorDrawable(indicatorDrawable) {
4447
+ this.$refs.es_seek_bar.setIndicatorDrawable(indicatorDrawable);
4448
+ },
4449
+ setLeftIndicatorDrawable(leftIndicatorDrawable) {
4450
+ this.$refs.es_seek_bar.setLeftIndicatorDrawable(leftIndicatorDrawable);
4451
+ },
4452
+ setRightIndicatorDrawable(rightIndicatorDrawable) {
4453
+ this.$refs.es_seek_bar.setRightIndicatorDrawable(rightIndicatorDrawable);
4454
+ },
4455
+ setIndicatorUrl(indicatorUrl) {
4456
+ this.$refs.es_seek_bar.setIndicatorUrl(indicatorUrl);
4457
+ },
4458
+ setLeftIndicatorUrl(leftIndicatorUrl) {
4459
+ this.$refs.es_seek_bar.setLeftIndicatorUrl(leftIndicatorUrl);
4460
+ },
4461
+ setRightIndicatorUrl(rightIndicatorUrl) {
4462
+ this.$refs.es_seek_bar.setRightIndicatorUrl(rightIndicatorUrl);
4463
+ },
4464
+ setThumbWidth(thumbWidth) {
4465
+ this.$refs.es_seek_bar.setThumbWidth(thumbWidth);
4466
+ },
4467
+ setLeftThumbWidth(thumbWidth) {
4468
+ this.$refs.es_seek_bar.setLeftThumbWidth(thumbWidth);
4469
+ },
4470
+ setRightThumbWidth(thumbWidth) {
4471
+ this.$refs.es_seek_bar.setRightThumbWidth(thumbWidth);
4472
+ },
4473
+ setThumbHeight(thumbHeight) {
4474
+ this.$refs.es_seek_bar.setThumbHeight(thumbHeight);
4475
+ },
4476
+ setLeftThumbHeight(thumbHeight) {
4477
+ this.$refs.es_seek_bar.setLeftThumbHeight(thumbHeight);
4478
+ },
4479
+ setRightThumbHeight(thumbHeight) {
4480
+ this.$refs.es_seek_bar.setRightThumbHeight(thumbHeight);
4481
+ },
4482
+ scaleThumb() {
4483
+ this.$refs.es_seek_bar.scaleThumb();
4484
+ },
4485
+ scaleLeftThumb() {
4486
+ this.$refs.es_seek_bar.scaleLeftThumb();
4487
+ },
4488
+ scaleRightThumb() {
4489
+ this.$refs.es_seek_bar.scaleRightThumb();
4490
+ },
4491
+ resetThumb() {
4492
+ this.$refs.es_seek_bar.resetThumb();
4493
+ },
4494
+ resetLeftThumb() {
4495
+ this.$refs.es_seek_bar.resetLeftThumb();
4496
+ },
4497
+ resetRightThumb() {
4498
+ this.$refs.es_seek_bar.resetRightThumb();
4499
+ },
4500
+ setThumbScaleRatio(thumbScaleRatio) {
4501
+ this.$refs.es_seek_bar.setThumbScaleRatio(thumbScaleRatio);
4502
+ },
4503
+ setLeftThumbScaleRatio(thumbScaleRatio) {
4504
+ this.$refs.es_seek_bar.setLeftThumbScaleRatio(thumbScaleRatio);
4505
+ },
4506
+ setRightThumbScaleRatio(thumbScaleRatio) {
4507
+ this.$refs.es_seek_bar.setRightThumbScaleRatio(thumbScaleRatio);
4508
+ },
4509
+ setThumbActivate(activate) {
4510
+ this.$refs.es_seek_bar.setThumbActivate(activate);
4511
+ },
4512
+ setLeftThumbActivate(activate) {
4513
+ this.$refs.es_seek_bar.setLeftThumbActivate(activate);
4514
+ },
4515
+ setRightThumbActivate(activate) {
4516
+ this.$refs.es_seek_bar.setRightThumbActivate(activate);
4517
+ },
4518
+ setThumbDrawable(drawable) {
4519
+ this.$refs.es_seek_bar.setThumbDrawable(drawable);
4520
+ },
4521
+ setLeftThumbDrawable(drawable) {
4522
+ this.$refs.es_seek_bar.setLeftThumbDrawable(drawable);
4523
+ },
4524
+ setRightThumbDrawable(drawable) {
4525
+ this.$refs.es_seek_bar.setRightThumbDrawable(drawable);
4526
+ },
4527
+ setThumbUrl(url) {
4528
+ this.$refs.es_seek_bar.setThumbUrl(url);
4529
+ },
4530
+ setLeftThumbUrl(url) {
4531
+ this.$refs.es_seek_bar.setLeftThumbUrl(url);
4532
+ },
4533
+ setRightThumbUrl(url) {
4534
+ this.$refs.es_seek_bar.setRightThumbUrl(url);
4535
+ },
4536
+ setThumbInactivatedDrawable(drawable) {
4537
+ this.$refs.es_seek_bar.setThumbInactivatedDrawable(drawable);
4538
+ },
4539
+ setLeftThumbInactivatedDrawable(drawable) {
4540
+ this.$refs.es_seek_bar.setLeftThumbInactivatedDrawable(drawable);
4541
+ },
4542
+ setRightThumbInactivatedDrawable(drawable) {
4543
+ this.$refs.es_seek_bar.setRightThumbInactivatedDrawable(drawable);
4544
+ },
4545
+ setThumbInactivatedUrl(url) {
4546
+ this.$refs.es_seek_bar.setThumbInactivatedUrl(url);
4547
+ },
4548
+ setLeftThumbInactivatedUrl(url) {
4549
+ this.$refs.es_seek_bar.setLeftThumbInactivatedUrl(url);
4550
+ },
4551
+ setRightThumbInactivatedUrl(url) {
4552
+ this.$refs.es_seek_bar.setRightThumbInactivatedUrl(url);
4553
+ },
4554
+ setTickMarkMode(tickMarkMode) {
4555
+ this.$refs.es_seek_bar.setTickMarkMode(tickMarkMode);
4556
+ },
4557
+ setTickMarkGravity(tickMarkGravity) {
4558
+ this.$refs.es_seek_bar.setTickMarkGravity(tickMarkGravity);
4559
+ },
4560
+ setTickMarkLayoutGravity(tickMarkLayoutGravity) {
4561
+ this.$refs.es_seek_bar.setTickMarkLayoutGravity(tickMarkLayoutGravity);
4562
+ },
4563
+ setTickMarkTextArray(tickMarkTextArray) {
4564
+ this.$refs.es_seek_bar.setTickMarkTextArray(tickMarkTextArray);
4565
+ },
4566
+ setTickMarkTextMargin(tickMarkTextMargin) {
4567
+ this.$refs.es_seek_bar.setTickMarkTextMargin(tickMarkTextMargin);
4568
+ },
4569
+ setTickMarkTextSize(tickMarkTextSize) {
4570
+ this.$refs.es_seek_bar.setTickMarkTextSize(tickMarkTextSize);
4571
+ },
4572
+ setTickMarkTextColor(tickMarkTextColor) {
4573
+ this.$refs.es_seek_bar.setTickMarkTextColor(tickMarkTextColor);
4574
+ },
4575
+ setTickMarkInRangeTextColor(tickMarkInRangeTextColor) {
4576
+ this.$refs.es_seek_bar.setTickMarkInRangeTextColor(tickMarkInRangeTextColor);
4577
+ },
4578
+ setSteps(steps) {
4579
+ this.$refs.es_seek_bar.setSteps(steps);
4580
+ },
4581
+ setStepsWidth(stepsWidth) {
4582
+ this.$refs.es_seek_bar.setStepsWidth(stepsWidth);
4583
+ },
4584
+ setStepsHeight(stepsHeight) {
4585
+ this.$refs.es_seek_bar.setStepsHeight(stepsHeight);
4586
+ },
4587
+ setStepsRadius(stepsRadius) {
4588
+ this.$refs.es_seek_bar.setStepsRadius(stepsRadius);
4589
+ },
4590
+ setStepsColor(stepsColor) {
4591
+ this.$refs.es_seek_bar.setStepsColor(stepsColor);
4592
+ },
4593
+ setStepsAutoBonding(stepsAutoBonding) {
4594
+ this.$refs.es_seek_bar.setStepsAutoBonding(stepsAutoBonding);
4595
+ },
4596
+ setStepsDrawable(drawableArray) {
4597
+ this.$refs.es_seek_bar.setStepsDrawable(drawableArray);
4598
+ },
4599
+ setStepsUrl(urlArray) {
4600
+ this.$refs.es_seek_bar.setStepsUrl(urlArray);
4601
+ },
4602
+ }
4603
+ };
4604
+
4605
+ function ESSeekBarViewComponent() {
4606
+ //
4607
+ Vue.component(ESSeekBar.name, ESSeekBar);
4608
+ //
4609
+ Vue.registerElement('TVSeekBarViewComponent', {
4610
+ component: {
4611
+ name: 'TVSeekBarViewComponent',
4612
+ processEventData(event, nativeEventName, nativeEventParams) {
4613
+ switch (nativeEventName) {
4614
+ case 'onFocus':
4615
+ event.isFocused = nativeEventParams.isFocused;
4616
+ break;
4617
+ case 'onSeekBarChange':
4618
+ event.fromUser = nativeEventParams.fromUser;
4619
+ event.progress = nativeEventParams.progress;
4620
+ event.leftProgress = nativeEventParams.leftProgress;
4621
+ event.rightProgress = nativeEventParams.rightProgress;
4622
+ break;
4623
+ }
4624
+ return event;
4625
+ },
4626
+ },
4627
+ });
4628
+
4629
+ Vue.component('es-seek-bar-view-component', {
4630
+
4631
+ methods: {
4632
+ invalidateSeekBar() {
4633
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4634
+ 'invalidateSeekBar', [], (res) => {
4635
+ });
4636
+ },
4637
+ setFocusable(focusable) {
4638
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4639
+ 'setFocusable', [focusable], (res) => {
4640
+ });
4641
+ },
4642
+ setClickable(clickable) {
4643
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4644
+ 'setClickable', [clickable], (res) => {
4645
+ });
4646
+ },
4647
+ requestFocus() {
4648
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4649
+ 'requestFocus', [], (res) => {
4650
+ });
4651
+ },
4652
+ requestLayout() {
4653
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4654
+ 'requestLayout', [], (res) => {
4655
+ });
4656
+ },
4657
+ invalidate() {
4658
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4659
+ 'invalidate', [], (res) => {
4660
+ });
4661
+ },
4662
+ setVisible(visible) {
4663
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4664
+ 'setVisible', [visible], (res) => {
4665
+ });
4666
+ },
4667
+ setLeftSeekBarVisible(visible) {
4668
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4669
+ 'setLeftSeekBarVisible', [visible], (res) => {
4670
+ });
4671
+ },
4672
+ setRightSeekBarVisible(visible) {
4673
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4674
+ 'setRightSeekBarVisible', [visible], (res) => {
4675
+ });
4676
+ },
4677
+ setSeekBarMode(mode) {
4678
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4679
+ 'setSeekBarMode', [mode], (res) => {
4680
+ });
4681
+ },
4682
+ setProgress(progress) {
4683
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4684
+ 'setProgress', [progress], (res) => {
4685
+ });
4686
+ },
4687
+ setRangeProgress(leftValue, rightValue) {
4688
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4689
+ 'setProgress', [leftValue, rightValue], (res) => {
4690
+ });
4691
+ },
4692
+ getProgress() {
4693
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4694
+ 'getProgress', [], (progress) => {
4695
+ });
4696
+ },
4697
+ getLeftProgress() {
4698
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4699
+ 'getLeftProgress', [], (progress) => {
4700
+ });
4701
+ },
4702
+ getRightProgress() {
4703
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4704
+ 'getRightProgress', [], (progress) => {
4705
+ });
4706
+ },
4707
+ setRange(min, max, minInterval) {
4708
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4709
+ 'setRange', [min, max, minInterval], (value) => {
4710
+ });
4711
+ },
4712
+ setGravity(gravity) {
4713
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4714
+ 'setGravity', [gravity], (value) => {
4715
+ });
4716
+ },
4717
+ setProgressWidth(progressWidth) {
4718
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4719
+ 'setProgressWidth', [progressWidth], (value) => {
4720
+ });
4721
+ },
4722
+ setProgressHeight(progressHeight) {
4723
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4724
+ 'setProgressHeight', [progressHeight], (value) => {
4725
+ });
4726
+ },
4727
+ setProgressRadius(progressRadius) {
4728
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4729
+ 'setProgressRadius', [progressRadius], (value) => {
4730
+ });
4731
+ },
4732
+ setProgressColor(progressColor) {
4733
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4734
+ 'setProgressColor', [progressColor], (value) => {
4735
+ });
4736
+ },
4737
+ setProgressDefaultColor(defaultProgressColor) {
4738
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4739
+ 'setProgressDefaultColor', [defaultProgressColor], (value) => {
4740
+ });
4741
+ },
4742
+ setProgressDrawable(progressDrawable) {
4743
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4744
+ 'setProgressDrawable', [progressDrawable], (value) => {
4745
+ });
4746
+ },
4747
+ setProgressDefaultDrawable(progressDefaultDrawable) {
4748
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4749
+ 'setProgressDefaultDrawable', [progressDefaultDrawable], (value) => {
4750
+ });
4751
+ },
4752
+ setProgressUrl(progressUrl) {
4753
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4754
+ 'setProgressUrl', [progressUrl], (value) => {
4755
+ });
4756
+ },
4757
+ setProgressDefaultUrl(progressDefaultUrl) {
4758
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4759
+ 'setProgressDefaultUrl', [progressDefaultUrl], (value) => {
4760
+ });
4761
+ },
4762
+ showIndicator(showIndicator) {
4763
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4764
+ 'showIndicator', [showIndicator], (value) => {
4765
+ });
4766
+ },
4767
+ showLeftIndicator(showLeftIndicator) {
4768
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4769
+ 'showLeftIndicator', [showLeftIndicator], (value) => {
4770
+ });
4771
+ },
4772
+ showRightIndicator(showRightIndicator) {
4773
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4774
+ 'showRightIndicator', [showRightIndicator], (value) => {
4775
+ });
4776
+ },
4777
+ setIndicatorShowMode(indicatorShowMode) {
4778
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4779
+ 'setIndicatorShowMode', [indicatorShowMode], (value) => {
4780
+ });
4781
+ },
4782
+ setLeftIndicatorShowMode(indicatorShowMode) {
4783
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4784
+ 'setLeftIndicatorShowMode', [indicatorShowMode], (value) => {
4785
+ });
4786
+ },
4787
+ setRightIndicatorShowMode(indicatorShowMode) {
4788
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4789
+ 'setRightIndicatorShowMode', [indicatorShowMode], (value) => {
4790
+ });
4791
+ },
4792
+ setIndicatorWidth(indicatorWidth) {
4793
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4794
+ 'setIndicatorWidth', [indicatorWidth], (value) => {
4795
+ });
4796
+ },
4797
+ setLeftIndicatorWidth(indicatorWidth) {
4798
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4799
+ 'setLeftIndicatorWidth', [indicatorWidth], (value) => {
4800
+ });
4801
+ },
4802
+ setRightIndicatorWidth(indicatorWidth) {
4803
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4804
+ 'setRightIndicatorWidth', [indicatorWidth], (value) => {
4805
+ });
4806
+ },
4807
+
4808
+ setIndicatorHeight(indicatorHeight) {
4809
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4810
+ 'setIndicatorHeight', [indicatorHeight], (value) => {
4811
+ });
4812
+ },
4813
+ setLeftIndicatorHeight(indicatorHeight) {
4814
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4815
+ 'setLeftIndicatorHeight', [indicatorHeight], (value) => {
4816
+ });
4817
+ },
4818
+ setRightIndicatorHeight(indicatorHeight) {
4819
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4820
+ 'setRightIndicatorHeight', [indicatorHeight], (value) => {
4821
+ });
4822
+ },
4823
+ setIndicatorTextDecimalFormat(formatPattern) {
4824
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4825
+ 'setIndicatorTextDecimalFormat', [formatPattern], (value) => {
4826
+ });
4827
+ },
4828
+ setLeftIndicatorTextDecimalFormat(formatPattern) {
4829
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4830
+ 'setLeftIndicatorTextDecimalFormat', [formatPattern], (value) => {
4831
+ });
4832
+ },
4833
+ setRightIndicatorTextDecimalFormat(formatPattern) {
4834
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4835
+ 'setRightIndicatorTextDecimalFormat', [formatPattern], (value) => {
4836
+ });
4837
+ },
4838
+ setIndicatorTextStringFormat(formatPattern) {
4839
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4840
+ 'setIndicatorTextStringFormat', [formatPattern], (value) => {
4841
+ });
4842
+ },
4843
+ setLeftIndicatorTextStringFormat(formatPattern) {
4844
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4845
+ 'setLeftIndicatorTextStringFormat', [formatPattern], (value) => {
4846
+ });
4847
+ },
4848
+ setRightIndicatorTextStringFormat(formatPattern) {
4849
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4850
+ 'setRightIndicatorTextStringFormat', [formatPattern], (value) => {
4851
+ });
4852
+ },
4853
+ setIndicatorMargin(indicatorMargin) {
4854
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4855
+ 'setIndicatorMargin', [indicatorMargin], (value) => {
4856
+ });
4857
+ },
4858
+ setLeftIndicatorMargin(indicatorMargin) {
4859
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4860
+ 'setLeftIndicatorMargin', [indicatorMargin], (value) => {
4861
+ });
4862
+ },
4863
+ setRightIndicatorMargin(indicatorMargin) {
4864
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4865
+ 'setRightIndicatorMargin', [indicatorMargin], (value) => {
4866
+ });
4867
+ },
4868
+ setIndicatorPaddingBottom(indicatorPaddingBottom) {
4869
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4870
+ 'setIndicatorPaddingBottom', [indicatorPaddingBottom], (value) => {
4871
+ });
4872
+ },
4873
+ setLeftIndicatorPaddingBottom(indicatorPaddingBottom) {
4874
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4875
+ 'setLeftIndicatorPaddingBottom', [indicatorPaddingBottom], (value) => {
4876
+ });
4877
+ },
4878
+ setRightIndicatorPaddingBottom(indicatorPaddingBottom) {
4879
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4880
+ 'setRightIndicatorPaddingBottom', [indicatorPaddingBottom], (value) => {
4881
+ });
4882
+ },
4883
+ setIndicatorPaddingTop(indicatorPaddingTop) {
4884
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4885
+ 'setIndicatorPaddingTop', [indicatorPaddingTop], (value) => {
4886
+ });
4887
+ },
4888
+ setLeftIndicatorPaddingTop(indicatorPaddingTop) {
4889
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4890
+ 'setLeftIndicatorPaddingTop', [indicatorPaddingTop], (value) => {
4891
+ });
4892
+ },
4893
+ setRightIndicatorPaddingTop(indicatorPaddingTop) {
4894
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4895
+ 'setRightIndicatorPaddingTop', [indicatorPaddingTop], (value) => {
4896
+ });
4897
+ },
4898
+
4899
+ setIndicatorPaddingLeft(indicatorPaddingLeft) {
4900
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4901
+ 'setIndicatorPaddingLeft', [indicatorPaddingLeft], (value) => {
4902
+ });
4903
+ },
4904
+ setLeftIndicatorPaddingLeft(indicatorPaddingLeft) {
4905
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4906
+ 'setLeftIndicatorPaddingLeft', [indicatorPaddingLeft], (value) => {
4907
+ });
4908
+ },
4909
+ setRightIndicatorPaddingLeft(indicatorPaddingLeft) {
4910
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4911
+ 'setRightIndicatorPaddingLeft', [indicatorPaddingLeft], (value) => {
4912
+ });
4913
+ },
4914
+ setIndicatorPaddingRight(indicatorPaddingRight) {
4915
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4916
+ 'setIndicatorPaddingRight', [indicatorPaddingRight], (value) => {
4917
+ });
4918
+ },
4919
+ setLeftIndicatorPaddingRight(indicatorPaddingRight) {
4920
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4921
+ 'setLeftIndicatorPaddingRight', [indicatorPaddingRight], (value) => {
4922
+ });
4923
+ },
4924
+ setRightIndicatorPaddingRight(indicatorPaddingRight) {
4925
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4926
+ 'setRightIndicatorPaddingRight', [indicatorPaddingRight], (value) => {
4927
+ });
4928
+ },
4929
+ setIndicatorBackgroundColor(indicatorBackgroundColor) {
4930
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4931
+ 'setIndicatorBackgroundColor', [indicatorBackgroundColor], (value) => {
4932
+ });
4933
+ },
4934
+ setLeftIndicatorBackgroundColor(indicatorBackgroundColor) {
4935
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4936
+ 'setLeftIndicatorBackgroundColor', [indicatorBackgroundColor], (value) => {
4937
+ });
4938
+ },
4939
+ setRightIndicatorBackgroundColor(indicatorBackgroundColor) {
4940
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4941
+ 'setRightIndicatorBackgroundColor', [indicatorBackgroundColor], (value) => {
4942
+ });
4943
+ },
4944
+ setIndicatorRadius(indicatorRadius) {
4945
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4946
+ 'setIndicatorRadius', [indicatorRadius], (value) => {
4947
+ });
4948
+ },
4949
+ setLeftIndicatorRadius(indicatorRadius) {
4950
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4951
+ 'setLeftIndicatorRadius', [indicatorRadius], (value) => {
4952
+ });
4953
+ },
4954
+ setRightIndicatorRadius(indicatorRadius) {
4955
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4956
+ 'setRightIndicatorRadius', [indicatorRadius], (value) => {
4957
+ });
4958
+ },
4959
+ setIndicatorTextSize(indicatorTextSize) {
4960
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4961
+ 'setIndicatorTextSize', [indicatorTextSize], (value) => {
4962
+ });
4963
+ },
4964
+ setLeftIndicatorTextSize(indicatorTextSize) {
4965
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4966
+ 'setLeftIndicatorTextSize', [indicatorTextSize], (value) => {
4967
+ });
4968
+ },
4969
+ setRightIndicatorTextSize(indicatorTextSize) {
4970
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4971
+ 'setRightIndicatorTextSize', [indicatorTextSize], (value) => {
4972
+ });
4973
+ },
4974
+ setIndicatorTextColor(indicatorTextColor) {
4975
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4976
+ 'setIndicatorTextColor', [indicatorTextColor], (value) => {
4977
+ });
4978
+ },
4979
+ setLeftIndicatorTextColor(indicatorTextColor) {
4980
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4981
+ 'setLeftIndicatorTextColor', [indicatorTextColor], (value) => {
4982
+ });
4983
+ },
4984
+ setRightIndicatorTextColor(indicatorTextColor) {
4985
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4986
+ 'setRightIndicatorTextColor', [indicatorTextColor], (value) => {
4987
+ });
4988
+ },
4989
+ setIndicatorArrowSize(indicatorArrowSize) {
4990
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4991
+ 'setIndicatorArrowSize', [indicatorArrowSize], (value) => {
4992
+ });
4993
+ },
4994
+ setLeftIndicatorArrowSize(indicatorArrowSize) {
4995
+ Vue.Native.callUIFunction(this.$refs.seekbar,
4996
+ 'setLeftIndicatorArrowSize', [indicatorArrowSize], (value) => {
4997
+ });
4998
+ },
4999
+ setRightIndicatorArrowSize(indicatorArrowSize) {
5000
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5001
+ 'setRightIndicatorArrowSize', [indicatorArrowSize], (value) => {
5002
+ });
5003
+ },
5004
+ setIndicatorDrawable(indicatorDrawable) {
5005
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5006
+ 'setIndicatorDrawable', [indicatorDrawable], (value) => {
5007
+ });
5008
+ },
5009
+ setLeftIndicatorDrawable(leftIndicatorDrawable) {
5010
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5011
+ 'setLeftIndicatorDrawable', [leftIndicatorDrawable], (value) => {
5012
+ });
5013
+ },
5014
+ setRightIndicatorDrawable(rightIndicatorDrawable) {
5015
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5016
+ 'setRightIndicatorDrawable', [rightIndicatorDrawable], (value) => {
5017
+ });
5018
+ },
5019
+ setIndicatorUrl(indicatorUrl) {
5020
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5021
+ 'setIndicatorUrl', [indicatorUrl], (value) => {
5022
+ });
5023
+ },
5024
+ setLeftIndicatorUrl(leftIndicatorUrl) {
5025
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5026
+ 'setLeftIndicatorUrl', [leftIndicatorUrl], (value) => {
5027
+ });
5028
+ },
5029
+ setRightIndicatorUrl(rightIndicatorUrl) {
5030
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5031
+ 'setRightIndicatorUrl', [rightIndicatorUrl], (value) => {
5032
+ });
5033
+ },
5034
+ setThumbWidth(thumbWidth) {
5035
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5036
+ 'setThumbWidth', [thumbWidth], (value) => {
5037
+ });
5038
+ },
5039
+ setLeftThumbWidth(thumbWidth) {
5040
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5041
+ 'setLeftThumbWidth', [thumbWidth], (value) => {
5042
+ });
5043
+ },
5044
+ setRightThumbWidth(thumbWidth) {
5045
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5046
+ 'setRightThumbWidth', [thumbWidth], (value) => {
5047
+ });
5048
+ },
5049
+ setThumbHeight(thumbHeight) {
5050
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5051
+ 'setThumbHeight', [thumbHeight], (value) => {
5052
+ });
5053
+ },
5054
+ setLeftThumbHeight(thumbHeight) {
5055
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5056
+ 'setLeftThumbHeight', [thumbHeight], (value) => {
5057
+ });
5058
+ },
5059
+ setRightThumbHeight(thumbHeight) {
5060
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5061
+ 'setRightThumbHeight', [thumbHeight], (value) => {
5062
+ });
5063
+ },
5064
+ scaleThumb() {
5065
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5066
+ 'scaleThumb', [], (value) => {
5067
+ });
5068
+ },
5069
+ scaleLeftThumb() {
5070
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5071
+ 'scaleLeftThumb', [], (value) => {
5072
+ });
5073
+ },
5074
+ scaleRightThumb() {
5075
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5076
+ 'scaleLeftThumb', [], (value) => {
5077
+ });
5078
+ },
5079
+ resetThumb() {
5080
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5081
+ 'resetThumb', [], (value) => {
5082
+ });
5083
+ },
5084
+ resetLeftThumb() {
5085
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5086
+ 'resetLeftThumb', [], (value) => {
5087
+ });
5088
+ },
5089
+ resetRightThumb() {
5090
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5091
+ 'resetRightThumb', [], (value) => {
5092
+ });
5093
+ },
5094
+ setThumbScaleRatio(thumbScaleRatio) {
5095
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5096
+ 'setThumbScaleRatio', [thumbScaleRatio], (value) => {
5097
+ });
5098
+ },
5099
+ setLeftThumbScaleRatio(thumbScaleRatio) {
5100
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5101
+ 'setLeftThumbScaleRatio', [thumbScaleRatio], (value) => {
5102
+ });
5103
+ },
5104
+ setRightThumbScaleRatio(thumbScaleRatio) {
5105
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5106
+ 'setRightThumbScaleRatio', [thumbScaleRatio], (value) => {
5107
+ });
5108
+ },
5109
+ setThumbActivate(activate) {
5110
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5111
+ 'setThumbActivate', [activate], (value) => {
5112
+ });
5113
+ },
5114
+ setLeftThumbActivate(activate) {
5115
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5116
+ 'setLeftThumbActivate', [activate], (value) => {
5117
+ });
5118
+ },
5119
+ setRightThumbActivate(activate) {
5120
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5121
+ 'setRightThumbActivate', [activate], (value) => {
5122
+ });
5123
+ },
5124
+ setThumbDrawable(drawable) {
5125
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5126
+ 'setThumbDrawable', [drawable], (value) => {
5127
+ });
5128
+ },
5129
+ setLeftThumbDrawable(drawable) {
5130
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5131
+ 'setLeftThumbDrawable', [drawable], (value) => {
5132
+ });
5133
+ },
5134
+ setRightThumbDrawable(drawable) {
5135
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5136
+ 'setRightThumbDrawable', [drawable], (value) => {
5137
+ });
5138
+ },
5139
+ setThumbUrl(url) {
5140
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5141
+ 'setThumbUrl', [url], (value) => {
5142
+ });
5143
+ },
5144
+ setLeftThumbUrl(url) {
5145
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5146
+ 'setLeftThumbUrl', [url], (value) => {
5147
+ });
5148
+ },
5149
+ setRightThumbUrl(url) {
5150
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5151
+ 'setRightThumbUrl', [url], (value) => {
5152
+ });
5153
+ },
5154
+ setThumbInactivatedDrawable(drawable) {
5155
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5156
+ 'setThumbInactivatedDrawable', [drawable], (value) => {
5157
+ });
5158
+ },
5159
+ setLeftThumbInactivatedDrawable(drawable) {
5160
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5161
+ 'setLeftThumbInactivatedDrawable', [drawable], (value) => {
5162
+ });
5163
+ },
5164
+ setRightThumbInactivatedDrawable(drawable) {
5165
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5166
+ 'setRightThumbInactivatedDrawable', [drawable], (value) => {
5167
+ });
5168
+ },
5169
+ setThumbInactivatedUrl(url) {
5170
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5171
+ 'setThumbInactivatedUrl', [url], (value) => {
5172
+ });
5173
+ },
5174
+ setLeftThumbInactivatedUrl(url) {
5175
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5176
+ 'setLeftThumbInactivatedUrl', [url], (value) => {
5177
+ });
5178
+ },
5179
+ setRightThumbInactivatedUrl(url) {
5180
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5181
+ 'setRightThumbInactivatedUrl', [url], (value) => {
5182
+ });
5183
+ },
5184
+ setTickMarkMode(tickMarkMode) {
5185
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5186
+ 'setTickMarkMode', [tickMarkMode], (value) => {
5187
+ });
5188
+ },
5189
+ setTickMarkGravity(tickMarkGravity) {
5190
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5191
+ 'setTickMarkGravity', [tickMarkGravity], (value) => {
5192
+ });
5193
+ },
5194
+ setTickMarkLayoutGravity(tickMarkLayoutGravity) {
5195
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5196
+ 'setTickMarkLayoutGravity', [tickMarkLayoutGravity], (value) => {
5197
+ });
5198
+ },
5199
+ setTickMarkTextArray(tickMarkTextArray) {
5200
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5201
+ 'setTickMarkTextArray', [tickMarkTextArray], (value) => {
5202
+ });
5203
+ },
5204
+ setTickMarkTextMargin(tickMarkTextMargin) {
5205
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5206
+ 'setTickMarkTextMargin', [tickMarkTextMargin], (value) => {
5207
+ });
5208
+ },
5209
+ setTickMarkTextSize(tickMarkTextSize) {
5210
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5211
+ 'setTickMarkTextSize', [tickMarkTextSize], (value) => {
5212
+ });
5213
+ },
5214
+ setTickMarkTextColor(tickMarkTextColor) {
5215
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5216
+ 'setTickMarkTextColor', [tickMarkTextColor], (value) => {
5217
+ });
5218
+ },
5219
+ setTickMarkInRangeTextColor(tickMarkInRangeTextColor) {
5220
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5221
+ 'setTickMarkInRangeTextColor', [tickMarkInRangeTextColor], (value) => {
5222
+ });
5223
+ },
5224
+ setSteps(steps) {
5225
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5226
+ 'setSteps', [steps], (value) => {
5227
+ });
5228
+ },
5229
+ setStepsWidth(stepsWidth) {
5230
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5231
+ 'setStepsWidth', [stepsWidth], (value) => {
5232
+ });
5233
+ },
5234
+ setStepsHeight(stepsHeight) {
5235
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5236
+ 'setStepsHeight', [stepsHeight], (value) => {
5237
+ });
5238
+ },
5239
+ setStepsRadius(stepsRadius) {
5240
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5241
+ 'setStepsRadius', [stepsRadius], (value) => {
5242
+ });
5243
+ },
5244
+ setStepsColor(stepsColor) {
5245
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5246
+ 'setStepsColor', [stepsColor], (value) => {
5247
+ });
5248
+ },
5249
+ setStepsAutoBonding(stepsAutoBonding) {
5250
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5251
+ 'setStepsAutoBonding', [stepsAutoBonding], (value) => {
5252
+ });
5253
+ },
5254
+ setStepsDrawable(drawableArray) {
5255
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5256
+ 'setStepsDrawable', [drawableArray], (value) => {
5257
+ });
5258
+ },
5259
+ setStepsUrl(urlArray) {
5260
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5261
+ 'setStepsUrl', [urlArray], (value) => {
5262
+ });
5263
+ },
5264
+ setMaxProgress(progress) {
5265
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5266
+ 'setMaxProgress', [progress], (res) => {
5267
+ });
5268
+ },
5269
+ setSecondProgress(progress) {
5270
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5271
+ 'setSecondProgress', [progress], (res) => {
5272
+ });
5273
+ },
5274
+ show(value) {
5275
+ Vue.Native.callUIFunction(this.$refs.seekbar,
5276
+ 'show', [value], (res) => {
5277
+ });
5278
+ },
5279
+ onFocusChange(evt) {
5280
+ this.$emit('focus', evt);
5281
+ },
5282
+ onSeekBarChange(evt) {
5283
+ this.$emit('seek-change', evt);
5284
+ },
5285
+
5286
+ },
5287
+
5288
+ render(h) {
5289
+ const on = getEventRedirector.call(this, [
5290
+ ['focus', 'focusChange'],
5291
+ ['seek-change', 'seekBarChange'],
5292
+ ]);
5293
+ return h('TVSeekBarViewComponent',
5294
+ {
5295
+ on,
5296
+ ref: 'seekbar',
5297
+ }, this.$slots.default);
5298
+ },
5299
+ });
5300
+ }
5301
+
5302
+ var ESProgressBar = {
5303
+ render: function(){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('es-progress-bar-view-component',{ref:"es_progress_bar",attrs:{"maxProgress":_vm.maxProgress,"progress":_vm.progress,"secondProgress":_vm.secondaryProgress,"backgroundColor":_vm.backgroundColor,"secondColor":_vm.secondaryColor,"cornerRadius":_vm.cornerRadius,"color":_vm.primaryColor}})},
5304
+ staticRenderFns: [],
5305
+ name: "ProgressBar",
5306
+ props: {
5307
+ maxProgress: {
5308
+ type: Number,
5309
+ default: 0
5310
+ },
5311
+ progress: {
5312
+ type: Number,
4319
5313
  default: 0
4320
5314
  },
4321
5315
  secondaryProgress: {
@@ -4352,6 +5346,383 @@ staticRenderFns: [],
4352
5346
  show(value) {
4353
5347
  this.$refs.es_progress_bar.show(value);
4354
5348
  },
5349
+ //------------------------------------------------------------
5350
+ //----------------------------------------------------------
5351
+ invalidateSeekBar() {
5352
+ this.$refs.es_progress_bar.invalidateSeekBar();
5353
+ },
5354
+ setFocusable(focusable) {
5355
+ this.$refs.es_progress_bar.setFocusable(focusable);
5356
+ },
5357
+ setClickable(clickable) {
5358
+ this.$refs.es_progress_bar.setClickable(clickable);
5359
+ },
5360
+ requestFocus() {
5361
+ this.$refs.es_progress_bar.requestFocus();
5362
+ },
5363
+ requestLayout() {
5364
+ this.$refs.es_progress_bar.requestLayout();
5365
+ },
5366
+ invalidate() {
5367
+ this.$refs.es_progress_bar.invalidate();
5368
+ },
5369
+ setVisible(visible) {
5370
+ this.$refs.es_progress_bar.setVisible(visible);
5371
+ },
5372
+ setLeftSeekBarVisible(visible) {
5373
+ this.$refs.es_progress_bar.setLeftSeekBarVisible(visible);
5374
+ },
5375
+ setRightSeekBarVisible(visible) {
5376
+ this.$refs.es_progress_bar.setRightSeekBarVisible(visible);
5377
+ },
5378
+ setSeekBarMode(mode) {
5379
+ this.$refs.es_progress_bar.setSeekBarMode(mode);
5380
+ },
5381
+ setRangeProgress(leftValue, rightValue) {
5382
+ this.$refs.es_progress_bar.setRangeProgress(leftValue, rightValue);
5383
+ },
5384
+ getProgress() {
5385
+ this.$refs.es_progress_bar.getProgress();
5386
+ },
5387
+ getLeftProgress() {
5388
+ this.$refs.es_progress_bar.getLeftProgress();
5389
+ },
5390
+ getRightProgress() {
5391
+ this.$refs.es_progress_bar.getRightProgress();
5392
+ },
5393
+ setRange(min, max, minInterval) {
5394
+ this.$refs.es_progress_bar.setRange(min, max, minInterval);
5395
+ },
5396
+ setGravity(gravity) {
5397
+ this.$refs.es_progress_bar.setGravity(gravity);
5398
+ },
5399
+ setProgressWidth(progressWidth) {
5400
+ this.$refs.es_progress_bar.setProgressWidth(progressWidth);
5401
+ },
5402
+ setProgressHeight(progressHeight) {
5403
+ this.$refs.es_progress_bar.setProgressHeight(progressHeight);
5404
+ },
5405
+ setProgressRadius(progressRadius) {
5406
+ this.$refs.es_progress_bar.setProgressRadius(progressRadius);
5407
+ },
5408
+ setProgressColor(progressColor) {
5409
+ this.$refs.es_progress_bar.setProgressColor(progressColor);
5410
+ },
5411
+ setProgressDefaultColor(defaultProgressColor) {
5412
+ this.$refs.es_progress_bar.setProgressDefaultColor(defaultProgressColor);
5413
+ },
5414
+ setProgressDrawable(progressDrawable) {
5415
+ this.$refs.es_progress_bar.setProgressDrawable(progressDrawable);
5416
+ },
5417
+ setProgressDefaultDrawable(progressDefaultDrawable) {
5418
+ this.$refs.es_progress_bar.setProgressDefaultDrawable(progressDefaultDrawable);
5419
+ },
5420
+ setProgressUrl(progressUrl) {
5421
+ this.$refs.es_progress_bar.setProgressUrl(progressUrl);
5422
+ },
5423
+ setProgressDefaultUrl(progressDefaultUrl) {
5424
+ this.$refs.es_progress_bar.setProgressDefaultUrl(progressDefaultUrl);
5425
+ },
5426
+ showIndicator(showIndicator) {
5427
+ this.$refs.es_progress_bar.showIndicator(showIndicator);
5428
+ },
5429
+ showLeftIndicator(showLeftIndicator) {
5430
+ this.$refs.es_progress_bar.showLeftIndicator(showLeftIndicator);
5431
+ },
5432
+ showRightIndicator(showRightIndicator) {
5433
+ this.$refs.es_progress_bar.showRightIndicator(showRightIndicator);
5434
+ },
5435
+ setIndicatorShowMode(indicatorShowMode) {
5436
+ this.$refs.es_progress_bar.setIndicatorShowMode(indicatorShowMode);
5437
+ },
5438
+ setLeftIndicatorShowMode(indicatorShowMode) {
5439
+ this.$refs.es_progress_bar.setLeftIndicatorShowMode(indicatorShowMode);
5440
+ },
5441
+ setRightIndicatorShowMode(indicatorShowMode) {
5442
+ this.$refs.es_progress_bar.setRightIndicatorShowMode(indicatorShowMode);
5443
+ },
5444
+ setIndicatorWidth(indicatorWidth) {
5445
+ this.$refs.es_progress_bar.setIndicatorWidth(indicatorWidth);
5446
+ },
5447
+ setLeftIndicatorWidth(indicatorWidth) {
5448
+ this.$refs.es_progress_bar.setLeftIndicatorWidth(indicatorWidth);
5449
+ },
5450
+ setRightIndicatorWidth(indicatorWidth) {
5451
+ this.$refs.es_progress_bar.setRightIndicatorWidth(indicatorWidth);
5452
+ },
5453
+ setIndicatorHeight(indicatorHeight) {
5454
+ this.$refs.es_progress_bar.setIndicatorHeight(indicatorHeight);
5455
+ },
5456
+ setLeftIndicatorHeight(indicatorHeight) {
5457
+ this.$refs.es_progress_bar.setLeftIndicatorHeight(indicatorHeight);
5458
+ },
5459
+ setRightIndicatorHeight(indicatorHeight) {
5460
+ this.$refs.es_progress_bar.setRightIndicatorHeight(indicatorHeight);
5461
+ },
5462
+ setIndicatorTextDecimalFormat(formatPattern) {
5463
+ this.$refs.es_progress_bar.setIndicatorTextDecimalFormat(formatPattern);
5464
+ },
5465
+ setLeftIndicatorTextDecimalFormat(formatPattern) {
5466
+ this.$refs.es_progress_bar.setLeftIndicatorTextDecimalFormat(formatPattern);
5467
+ },
5468
+ setRightIndicatorTextDecimalFormat(formatPattern) {
5469
+ this.$refs.es_progress_bar.setRightIndicatorTextDecimalFormat(formatPattern);
5470
+ },
5471
+ setIndicatorTextStringFormat(formatPattern) {
5472
+ this.$refs.es_progress_bar.setIndicatorTextStringFormat(formatPattern);
5473
+ },
5474
+ setLeftIndicatorTextStringFormat(formatPattern) {
5475
+ this.$refs.es_progress_bar.setLeftIndicatorTextStringFormat(formatPattern);
5476
+ },
5477
+ setRightIndicatorTextStringFormat(formatPattern) {
5478
+ this.$refs.es_progress_bar.setRightIndicatorTextStringFormat(formatPattern);
5479
+ },
5480
+ setIndicatorMargin(indicatorMargin) {
5481
+ this.$refs.es_progress_bar.setIndicatorMargin(indicatorMargin);
5482
+ },
5483
+ setLeftIndicatorMargin(indicatorMargin) {
5484
+ this.$refs.es_progress_bar.setLeftIndicatorMargin(indicatorMargin);
5485
+ },
5486
+ setRightIndicatorMargin(indicatorMargin) {
5487
+ this.$refs.es_progress_bar.setRightIndicatorMargin(indicatorMargin);
5488
+ },
5489
+ setIndicatorPaddingBottom(indicatorPaddingBottom) {
5490
+ this.$refs.es_progress_bar.setIndicatorPaddingBottom(indicatorPaddingBottom);
5491
+ },
5492
+ setLeftIndicatorPaddingBottom(indicatorPaddingBottom) {
5493
+ this.$refs.es_progress_bar.setLeftIndicatorPaddingBottom(indicatorPaddingBottom);
5494
+ },
5495
+ setRightIndicatorPaddingBottom(indicatorPaddingBottom) {
5496
+ this.$refs.es_progress_bar.setRightIndicatorPaddingBottom(indicatorPaddingBottom);
5497
+ },
5498
+ setIndicatorPaddingTop(indicatorPaddingTop) {
5499
+ this.$refs.es_progress_bar.setIndicatorPaddingTop(indicatorPaddingTop);
5500
+ },
5501
+ setLeftIndicatorPaddingTop(indicatorPaddingTop) {
5502
+ this.$refs.es_progress_bar.setLeftIndicatorPaddingTop(indicatorPaddingTop);
5503
+ },
5504
+ setRightIndicatorPaddingTop(indicatorPaddingTop) {
5505
+ this.$refs.es_progress_bar.setRightIndicatorPaddingTop(indicatorPaddingTop);
5506
+ },
5507
+ setIndicatorPaddingLeft(indicatorPaddingLeft) {
5508
+ this.$refs.es_progress_bar.setIndicatorPaddingLeft(indicatorPaddingLeft);
5509
+ },
5510
+ setLeftIndicatorPaddingLeft(indicatorPaddingLeft) {
5511
+ this.$refs.es_progress_bar.setLeftIndicatorPaddingLeft(indicatorPaddingLeft);
5512
+ },
5513
+ setRightIndicatorPaddingLeft(indicatorPaddingLeft) {
5514
+ this.$refs.es_progress_bar.setRightIndicatorPaddingLeft(indicatorPaddingLeft);
5515
+ },
5516
+ setIndicatorPaddingRight(indicatorPaddingRight) {
5517
+ this.$refs.es_progress_bar.setIndicatorPaddingRight(indicatorPaddingRight);
5518
+ },
5519
+ setLeftIndicatorPaddingRight(indicatorPaddingRight) {
5520
+ this.$refs.es_progress_bar.setLeftIndicatorPaddingRight(indicatorPaddingRight);
5521
+ },
5522
+ setRightIndicatorPaddingRight(indicatorPaddingRight) {
5523
+ this.$refs.es_progress_bar.setRightIndicatorPaddingRight(indicatorPaddingRight);
5524
+ },
5525
+ setIndicatorBackgroundColor(indicatorBackgroundColor) {
5526
+ this.$refs.es_progress_bar.setIndicatorBackgroundColor(indicatorBackgroundColor);
5527
+ },
5528
+ setLeftIndicatorBackgroundColor(indicatorBackgroundColor) {
5529
+ this.$refs.es_progress_bar.setLeftIndicatorBackgroundColor(indicatorBackgroundColor);
5530
+ },
5531
+ setRightIndicatorBackgroundColor(indicatorBackgroundColor) {
5532
+ this.$refs.es_progress_bar.setRightIndicatorBackgroundColor(indicatorBackgroundColor);
5533
+ },
5534
+ setIndicatorRadius(indicatorRadius) {
5535
+ this.$refs.es_progress_bar.setIndicatorRadius(indicatorRadius);
5536
+ },
5537
+ setLeftIndicatorRadius(indicatorRadius) {
5538
+ this.$refs.es_progress_bar.setLeftIndicatorRadius(indicatorRadius);
5539
+ },
5540
+ setRightIndicatorRadius(indicatorRadius) {
5541
+ this.$refs.es_progress_bar.setRightIndicatorRadius(indicatorRadius);
5542
+ },
5543
+ setIndicatorTextSize(indicatorTextSize) {
5544
+ this.$refs.es_progress_bar.setIndicatorTextSize(indicatorTextSize);
5545
+ },
5546
+ setLeftIndicatorTextSize(indicatorTextSize) {
5547
+ this.$refs.es_progress_bar.setLeftIndicatorTextSize(indicatorTextSize);
5548
+ },
5549
+ setRightIndicatorTextSize(indicatorTextSize) {
5550
+ this.$refs.es_progress_bar.setRightIndicatorTextSize(indicatorTextSize);
5551
+ },
5552
+ setIndicatorTextColor(indicatorTextColor) {
5553
+ this.$refs.es_progress_bar.setIndicatorTextColor(indicatorTextColor);
5554
+ },
5555
+ setLeftIndicatorTextColor(indicatorTextColor) {
5556
+ this.$refs.es_progress_bar.setLeftIndicatorTextColor(indicatorTextColor);
5557
+ },
5558
+ setRightIndicatorTextColor(indicatorTextColor) {
5559
+ this.$refs.es_progress_bar.setRightIndicatorTextColor(indicatorTextColor);
5560
+ },
5561
+ setIndicatorArrowSize(indicatorArrowSize) {
5562
+ this.$refs.es_progress_bar.setIndicatorArrowSize(indicatorArrowSize);
5563
+ },
5564
+ setLeftIndicatorArrowSize(indicatorArrowSize) {
5565
+ this.$refs.es_progress_bar.setLeftIndicatorArrowSize(indicatorArrowSize);
5566
+ },
5567
+ setRightIndicatorArrowSize(indicatorArrowSize) {
5568
+ this.$refs.es_progress_bar.setRightIndicatorArrowSize(indicatorArrowSize);
5569
+ },
5570
+ setIndicatorDrawable(indicatorDrawable) {
5571
+ this.$refs.es_progress_bar.setIndicatorDrawable(indicatorDrawable);
5572
+ },
5573
+ setLeftIndicatorDrawable(leftIndicatorDrawable) {
5574
+ this.$refs.es_progress_bar.setLeftIndicatorDrawable(leftIndicatorDrawable);
5575
+ },
5576
+ setRightIndicatorDrawable(rightIndicatorDrawable) {
5577
+ this.$refs.es_progress_bar.setRightIndicatorDrawable(rightIndicatorDrawable);
5578
+ },
5579
+ setIndicatorUrl(indicatorUrl) {
5580
+ this.$refs.es_progress_bar.setIndicatorUrl(indicatorUrl);
5581
+ },
5582
+ setLeftIndicatorUrl(leftIndicatorUrl) {
5583
+ this.$refs.es_progress_bar.setLeftIndicatorUrl(leftIndicatorUrl);
5584
+ },
5585
+ setRightIndicatorUrl(rightIndicatorUrl) {
5586
+ this.$refs.es_progress_bar.setRightIndicatorUrl(rightIndicatorUrl);
5587
+ },
5588
+ setThumbWidth(thumbWidth) {
5589
+ this.$refs.es_progress_bar.setThumbWidth(thumbWidth);
5590
+ },
5591
+ setLeftThumbWidth(thumbWidth) {
5592
+ this.$refs.es_progress_bar.setLeftThumbWidth(thumbWidth);
5593
+ },
5594
+ setRightThumbWidth(thumbWidth) {
5595
+ this.$refs.es_progress_bar.setRightThumbWidth(thumbWidth);
5596
+ },
5597
+ setThumbHeight(thumbHeight) {
5598
+ this.$refs.es_progress_bar.setThumbHeight(thumbHeight);
5599
+ },
5600
+ setLeftThumbHeight(thumbHeight) {
5601
+ this.$refs.es_progress_bar.setLeftThumbHeight(thumbHeight);
5602
+ },
5603
+ setRightThumbHeight(thumbHeight) {
5604
+ this.$refs.es_progress_bar.setRightThumbHeight(thumbHeight);
5605
+ },
5606
+ scaleThumb() {
5607
+ this.$refs.es_progress_bar.scaleThumb();
5608
+ },
5609
+ scaleLeftThumb() {
5610
+ this.$refs.es_progress_bar.scaleLeftThumb();
5611
+ },
5612
+ scaleRightThumb() {
5613
+ this.$refs.es_progress_bar.scaleRightThumb();
5614
+ },
5615
+ resetThumb() {
5616
+ this.$refs.es_progress_bar.resetThumb();
5617
+ },
5618
+ resetLeftThumb() {
5619
+ this.$refs.es_progress_bar.resetLeftThumb();
5620
+ },
5621
+ resetRightThumb() {
5622
+ this.$refs.es_progress_bar.resetRightThumb();
5623
+ },
5624
+ setThumbScaleRatio(thumbScaleRatio) {
5625
+ this.$refs.es_progress_bar.setThumbScaleRatio(thumbScaleRatio);
5626
+ },
5627
+ setLeftThumbScaleRatio(thumbScaleRatio) {
5628
+ this.$refs.es_progress_bar.setLeftThumbScaleRatio(thumbScaleRatio);
5629
+ },
5630
+ setRightThumbScaleRatio(thumbScaleRatio) {
5631
+ this.$refs.es_progress_bar.setRightThumbScaleRatio(thumbScaleRatio);
5632
+ },
5633
+ setThumbActivate(activate) {
5634
+ this.$refs.es_progress_bar.setThumbActivate(activate);
5635
+ },
5636
+ setLeftThumbActivate(activate) {
5637
+ this.$refs.es_progress_bar.setLeftThumbActivate(activate);
5638
+ },
5639
+ setRightThumbActivate(activate) {
5640
+ this.$refs.es_progress_bar.setRightThumbActivate(activate);
5641
+ },
5642
+ setThumbDrawable(drawable) {
5643
+ this.$refs.es_progress_bar.setThumbDrawable(drawable);
5644
+ },
5645
+ setLeftThumbDrawable(drawable) {
5646
+ this.$refs.es_progress_bar.setLeftThumbDrawable(drawable);
5647
+ },
5648
+ setRightThumbDrawable(drawable) {
5649
+ this.$refs.es_progress_bar.setRightThumbDrawable(drawable);
5650
+ },
5651
+ setThumbUrl(url) {
5652
+ this.$refs.es_progress_bar.setThumbUrl(url);
5653
+ },
5654
+ setLeftThumbUrl(url) {
5655
+ this.$refs.es_progress_bar.setLeftThumbUrl(url);
5656
+ },
5657
+ setRightThumbUrl(url) {
5658
+ this.$refs.es_progress_bar.setRightThumbUrl(url);
5659
+ },
5660
+ setThumbInactivatedDrawable(drawable) {
5661
+ this.$refs.es_progress_bar.setThumbInactivatedDrawable(drawable);
5662
+ },
5663
+ setLeftThumbInactivatedDrawable(drawable) {
5664
+ this.$refs.es_progress_bar.setLeftThumbInactivatedDrawable(drawable);
5665
+ },
5666
+ setRightThumbInactivatedDrawable(drawable) {
5667
+ this.$refs.es_progress_bar.setRightThumbInactivatedDrawable(drawable);
5668
+ },
5669
+ setThumbInactivatedUrl(url) {
5670
+ this.$refs.es_progress_bar.setThumbInactivatedUrl(url);
5671
+ },
5672
+ setLeftThumbInactivatedUrl(url) {
5673
+ this.$refs.es_progress_bar.setLeftThumbInactivatedUrl(url);
5674
+ },
5675
+ setRightThumbInactivatedUrl(url) {
5676
+ this.$refs.es_progress_bar.setRightThumbInactivatedUrl(url);
5677
+ },
5678
+ setTickMarkMode(tickMarkMode) {
5679
+ this.$refs.es_progress_bar.setTickMarkMode(tickMarkMode);
5680
+ },
5681
+ setTickMarkGravity(tickMarkGravity) {
5682
+ this.$refs.es_progress_bar.setTickMarkGravity(tickMarkGravity);
5683
+ },
5684
+ setTickMarkLayoutGravity(tickMarkLayoutGravity) {
5685
+ this.$refs.es_progress_bar.setTickMarkLayoutGravity(tickMarkLayoutGravity);
5686
+ },
5687
+ setTickMarkTextArray(tickMarkTextArray) {
5688
+ this.$refs.es_progress_bar.setTickMarkTextArray(tickMarkTextArray);
5689
+ },
5690
+ setTickMarkTextMargin(tickMarkTextMargin) {
5691
+ this.$refs.es_progress_bar.setTickMarkTextMargin(tickMarkTextMargin);
5692
+ },
5693
+ setTickMarkTextSize(tickMarkTextSize) {
5694
+ this.$refs.es_progress_bar.setTickMarkTextSize(tickMarkTextSize);
5695
+ },
5696
+ setTickMarkTextColor(tickMarkTextColor) {
5697
+ this.$refs.es_progress_bar.setTickMarkTextColor(tickMarkTextColor);
5698
+ },
5699
+ setTickMarkInRangeTextColor(tickMarkInRangeTextColor) {
5700
+ this.$refs.es_progress_bar.setTickMarkInRangeTextColor(tickMarkInRangeTextColor);
5701
+ },
5702
+ setSteps(steps) {
5703
+ this.$refs.es_progress_bar.setSteps(steps);
5704
+ },
5705
+ setStepsWidth(stepsWidth) {
5706
+ this.$refs.es_progress_bar.setStepsWidth(stepsWidth);
5707
+ },
5708
+ setStepsHeight(stepsHeight) {
5709
+ this.$refs.es_progress_bar.setStepsHeight(stepsHeight);
5710
+ },
5711
+ setStepsRadius(stepsRadius) {
5712
+ this.$refs.es_progress_bar.setStepsRadius(stepsRadius);
5713
+ },
5714
+ setStepsColor(stepsColor) {
5715
+ this.$refs.es_progress_bar.setStepsColor(stepsColor);
5716
+ },
5717
+ setStepsAutoBonding(stepsAutoBonding) {
5718
+ this.$refs.es_progress_bar.setStepsAutoBonding(stepsAutoBonding);
5719
+ },
5720
+ setStepsDrawable(drawableArray) {
5721
+ this.$refs.es_progress_bar.setStepsDrawable(drawableArray);
5722
+ },
5723
+ setStepsUrl(urlArray) {
5724
+ this.$refs.es_progress_bar.setStepsUrl(urlArray);
5725
+ },
4355
5726
  }
4356
5727
  };
4357
5728
 
@@ -4359,39 +5730,684 @@ function ESProgressBarViewComponent() {
4359
5730
  //
4360
5731
  Vue.component(ESProgressBar.name, ESProgressBar);
4361
5732
 
4362
- Vue.registerElement('TVProgressBarViewComponent', {
4363
- component: {
4364
- name: 'TVProgressBarViewComponent',
4365
- },
4366
- });
5733
+ Vue.registerElement('TVProgressBarViewComponent', {
5734
+ component: {
5735
+ name: 'TVProgressBarViewComponent',
5736
+ processEventData(event, nativeEventName, nativeEventParams) {
5737
+ switch (nativeEventName) {
5738
+ case 'onSeekBarChange':
5739
+ event.fromUser = nativeEventParams.fromUser;
5740
+ event.progress = nativeEventParams.progress;
5741
+ event.leftProgress = nativeEventParams.leftProgress;
5742
+ event.rightProgress = nativeEventParams.rightProgress;
5743
+ break;
5744
+ }
5745
+ return event;
5746
+ },
5747
+ },
5748
+ });
5749
+
5750
+ Vue.component('es-progress-bar-view-component', {
5751
+ methods: {
5752
+ invalidateSeekBar() {
5753
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5754
+ 'invalidateSeekBar', [], (res) => {
5755
+ });
5756
+ },
5757
+ setFocusable(focusable) {
5758
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5759
+ 'setFocusable', [focusable], (res) => {
5760
+ });
5761
+ },
5762
+ setClickable(clickable) {
5763
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5764
+ 'setClickable', [clickable], (res) => {
5765
+ });
5766
+ },
5767
+ requestFocus() {
5768
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5769
+ 'requestFocus', [], (res) => {
5770
+ });
5771
+ },
5772
+ requestLayout() {
5773
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5774
+ 'requestLayout', [], (res) => {
5775
+ });
5776
+ },
5777
+ invalidate() {
5778
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5779
+ 'invalidate', [], (res) => {
5780
+ });
5781
+ },
5782
+ setVisible(visible) {
5783
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5784
+ 'setVisible', [visible], (res) => {
5785
+ });
5786
+ },
5787
+ setLeftSeekBarVisible(visible) {
5788
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5789
+ 'setLeftSeekBarVisible', [visible], (res) => {
5790
+ });
5791
+ },
5792
+ setRightSeekBarVisible(visible) {
5793
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5794
+ 'setRightSeekBarVisible', [visible], (res) => {
5795
+ });
5796
+ },
5797
+ setSeekBarMode(mode) {
5798
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5799
+ 'setSeekBarMode', [mode], (res) => {
5800
+ });
5801
+ },
5802
+ setProgress(progress) {
5803
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5804
+ 'setProgress', [progress], (res) => {
5805
+ });
5806
+ },
5807
+ setRangeProgress(leftValue, rightValue) {
5808
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5809
+ 'setProgress', [leftValue, rightValue], (res) => {
5810
+ });
5811
+ },
5812
+ getProgress() {
5813
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5814
+ 'getProgress', [], (progress) => {
5815
+ });
5816
+ },
5817
+ getLeftProgress() {
5818
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5819
+ 'getLeftProgress', [], (progress) => {
5820
+ });
5821
+ },
5822
+ getRightProgress() {
5823
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5824
+ 'getRightProgress', [], (progress) => {
5825
+ });
5826
+ },
5827
+ setRange(min, max, minInterval) {
5828
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5829
+ 'setRange', [min, max, minInterval], (value) => {
5830
+ });
5831
+ },
5832
+ setGravity(gravity) {
5833
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5834
+ 'setGravity', [gravity], (value) => {
5835
+ });
5836
+ },
5837
+ setProgressWidth(progressWidth) {
5838
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5839
+ 'setProgressWidth', [progressWidth], (value) => {
5840
+ });
5841
+ },
5842
+ setProgressHeight(progressHeight) {
5843
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5844
+ 'setProgressHeight', [progressHeight], (value) => {
5845
+ });
5846
+ },
5847
+ setProgressRadius(progressRadius) {
5848
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5849
+ 'setProgressRadius', [progressRadius], (value) => {
5850
+ });
5851
+ },
5852
+ setProgressColor(progressColor) {
5853
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5854
+ 'setProgressColor', [progressColor], (value) => {
5855
+ });
5856
+ },
5857
+ setProgressDefaultColor(defaultProgressColor) {
5858
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5859
+ 'setProgressDefaultColor', [defaultProgressColor], (value) => {
5860
+ });
5861
+ },
5862
+ setProgressDrawable(progressDrawable) {
5863
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5864
+ 'setProgressDrawable', [progressDrawable], (value) => {
5865
+ });
5866
+ },
5867
+ setProgressDefaultDrawable(progressDefaultDrawable) {
5868
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5869
+ 'setProgressDefaultDrawable', [progressDefaultDrawable], (value) => {
5870
+ });
5871
+ },
5872
+ setProgressUrl(progressUrl) {
5873
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5874
+ 'setProgressUrl', [progressUrl], (value) => {
5875
+ });
5876
+ },
5877
+ setProgressDefaultUrl(progressDefaultUrl) {
5878
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5879
+ 'setProgressDefaultUrl', [progressDefaultUrl], (value) => {
5880
+ });
5881
+ },
5882
+ showIndicator(showIndicator) {
5883
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5884
+ 'showIndicator', [showIndicator], (value) => {
5885
+ });
5886
+ },
5887
+ showLeftIndicator(showLeftIndicator) {
5888
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5889
+ 'showLeftIndicator', [showLeftIndicator], (value) => {
5890
+ });
5891
+ },
5892
+ showRightIndicator(showRightIndicator) {
5893
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5894
+ 'showRightIndicator', [showRightIndicator], (value) => {
5895
+ });
5896
+ },
5897
+ setIndicatorShowMode(indicatorShowMode) {
5898
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5899
+ 'setIndicatorShowMode', [indicatorShowMode], (value) => {
5900
+ });
5901
+ },
5902
+ setLeftIndicatorShowMode(indicatorShowMode) {
5903
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5904
+ 'setLeftIndicatorShowMode', [indicatorShowMode], (value) => {
5905
+ });
5906
+ },
5907
+ setRightIndicatorShowMode(indicatorShowMode) {
5908
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5909
+ 'setRightIndicatorShowMode', [indicatorShowMode], (value) => {
5910
+ });
5911
+ },
5912
+ setIndicatorWidth(indicatorWidth) {
5913
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5914
+ 'setIndicatorWidth', [indicatorWidth], (value) => {
5915
+ });
5916
+ },
5917
+ setLeftIndicatorWidth(indicatorWidth) {
5918
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5919
+ 'setLeftIndicatorWidth', [indicatorWidth], (value) => {
5920
+ });
5921
+ },
5922
+ setRightIndicatorWidth(indicatorWidth) {
5923
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5924
+ 'setRightIndicatorWidth', [indicatorWidth], (value) => {
5925
+ });
5926
+ },
5927
+
5928
+ setIndicatorHeight(indicatorHeight) {
5929
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5930
+ 'setIndicatorHeight', [indicatorHeight], (value) => {
5931
+ });
5932
+ },
5933
+ setLeftIndicatorHeight(indicatorHeight) {
5934
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5935
+ 'setLeftIndicatorHeight', [indicatorHeight], (value) => {
5936
+ });
5937
+ },
5938
+ setRightIndicatorHeight(indicatorHeight) {
5939
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5940
+ 'setRightIndicatorHeight', [indicatorHeight], (value) => {
5941
+ });
5942
+ },
5943
+ setIndicatorTextDecimalFormat(formatPattern) {
5944
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5945
+ 'setIndicatorTextDecimalFormat', [formatPattern], (value) => {
5946
+ });
5947
+ },
5948
+ setLeftIndicatorTextDecimalFormat(formatPattern) {
5949
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5950
+ 'setLeftIndicatorTextDecimalFormat', [formatPattern], (value) => {
5951
+ });
5952
+ },
5953
+ setRightIndicatorTextDecimalFormat(formatPattern) {
5954
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5955
+ 'setRightIndicatorTextDecimalFormat', [formatPattern], (value) => {
5956
+ });
5957
+ },
5958
+ setIndicatorTextStringFormat(formatPattern) {
5959
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5960
+ 'setIndicatorTextStringFormat', [formatPattern], (value) => {
5961
+ });
5962
+ },
5963
+ setLeftIndicatorTextStringFormat(formatPattern) {
5964
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5965
+ 'setLeftIndicatorTextStringFormat', [formatPattern], (value) => {
5966
+ });
5967
+ },
5968
+ setRightIndicatorTextStringFormat(formatPattern) {
5969
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5970
+ 'setRightIndicatorTextStringFormat', [formatPattern], (value) => {
5971
+ });
5972
+ },
5973
+ setIndicatorMargin(indicatorMargin) {
5974
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5975
+ 'setIndicatorMargin', [indicatorMargin], (value) => {
5976
+ });
5977
+ },
5978
+ setLeftIndicatorMargin(indicatorMargin) {
5979
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5980
+ 'setLeftIndicatorMargin', [indicatorMargin], (value) => {
5981
+ });
5982
+ },
5983
+ setRightIndicatorMargin(indicatorMargin) {
5984
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5985
+ 'setRightIndicatorMargin', [indicatorMargin], (value) => {
5986
+ });
5987
+ },
5988
+ setIndicatorPaddingBottom(indicatorPaddingBottom) {
5989
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5990
+ 'setIndicatorPaddingBottom', [indicatorPaddingBottom], (value) => {
5991
+ });
5992
+ },
5993
+ setLeftIndicatorPaddingBottom(indicatorPaddingBottom) {
5994
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5995
+ 'setLeftIndicatorPaddingBottom', [indicatorPaddingBottom], (value) => {
5996
+ });
5997
+ },
5998
+ setRightIndicatorPaddingBottom(indicatorPaddingBottom) {
5999
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6000
+ 'setRightIndicatorPaddingBottom', [indicatorPaddingBottom], (value) => {
6001
+ });
6002
+ },
6003
+ setIndicatorPaddingTop(indicatorPaddingTop) {
6004
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6005
+ 'setIndicatorPaddingTop', [indicatorPaddingTop], (value) => {
6006
+ });
6007
+ },
6008
+ setLeftIndicatorPaddingTop(indicatorPaddingTop) {
6009
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6010
+ 'setLeftIndicatorPaddingTop', [indicatorPaddingTop], (value) => {
6011
+ });
6012
+ },
6013
+ setRightIndicatorPaddingTop(indicatorPaddingTop) {
6014
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6015
+ 'setRightIndicatorPaddingTop', [indicatorPaddingTop], (value) => {
6016
+ });
6017
+ },
4367
6018
 
4368
- Vue.component('es-progress-bar-view-component', {
4369
- methods: {
4370
- setMaxProgress(progress) {
4371
- Vue.Native.callUIFunction(this.$refs.progressBar,
4372
- 'setMaxProgress', [progress], (res) => {
6019
+ setIndicatorPaddingLeft(indicatorPaddingLeft) {
6020
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6021
+ 'setIndicatorPaddingLeft', [indicatorPaddingLeft], (value) => {
4373
6022
  });
4374
6023
  },
4375
- setProgress(progress) {
4376
- Vue.Native.callUIFunction(this.$refs.progressBar,
4377
- 'setProgress', [progress], (res) => {
6024
+ setLeftIndicatorPaddingLeft(indicatorPaddingLeft) {
6025
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6026
+ 'setLeftIndicatorPaddingLeft', [indicatorPaddingLeft], (value) => {
6027
+ });
6028
+ },
6029
+ setRightIndicatorPaddingLeft(indicatorPaddingLeft) {
6030
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6031
+ 'setRightIndicatorPaddingLeft', [indicatorPaddingLeft], (value) => {
6032
+ });
6033
+ },
6034
+ setIndicatorPaddingRight(indicatorPaddingRight) {
6035
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6036
+ 'setIndicatorPaddingRight', [indicatorPaddingRight], (value) => {
6037
+ });
6038
+ },
6039
+ setLeftIndicatorPaddingRight(indicatorPaddingRight) {
6040
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6041
+ 'setLeftIndicatorPaddingRight', [indicatorPaddingRight], (value) => {
6042
+ });
6043
+ },
6044
+ setRightIndicatorPaddingRight(indicatorPaddingRight) {
6045
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6046
+ 'setRightIndicatorPaddingRight', [indicatorPaddingRight], (value) => {
6047
+ });
6048
+ },
6049
+ setIndicatorBackgroundColor(indicatorBackgroundColor) {
6050
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6051
+ 'setIndicatorBackgroundColor', [indicatorBackgroundColor], (value) => {
6052
+ });
6053
+ },
6054
+ setLeftIndicatorBackgroundColor(indicatorBackgroundColor) {
6055
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6056
+ 'setLeftIndicatorBackgroundColor', [indicatorBackgroundColor], (value) => {
6057
+ });
6058
+ },
6059
+ setRightIndicatorBackgroundColor(indicatorBackgroundColor) {
6060
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6061
+ 'setRightIndicatorBackgroundColor', [indicatorBackgroundColor], (value) => {
6062
+ });
6063
+ },
6064
+ setIndicatorRadius(indicatorRadius) {
6065
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6066
+ 'setIndicatorRadius', [indicatorRadius], (value) => {
6067
+ });
6068
+ },
6069
+ setLeftIndicatorRadius(indicatorRadius) {
6070
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6071
+ 'setLeftIndicatorRadius', [indicatorRadius], (value) => {
6072
+ });
6073
+ },
6074
+ setRightIndicatorRadius(indicatorRadius) {
6075
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6076
+ 'setRightIndicatorRadius', [indicatorRadius], (value) => {
6077
+ });
6078
+ },
6079
+ setIndicatorTextSize(indicatorTextSize) {
6080
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6081
+ 'setIndicatorTextSize', [indicatorTextSize], (value) => {
6082
+ });
6083
+ },
6084
+ setLeftIndicatorTextSize(indicatorTextSize) {
6085
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6086
+ 'setLeftIndicatorTextSize', [indicatorTextSize], (value) => {
6087
+ });
6088
+ },
6089
+ setRightIndicatorTextSize(indicatorTextSize) {
6090
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6091
+ 'setRightIndicatorTextSize', [indicatorTextSize], (value) => {
6092
+ });
6093
+ },
6094
+ setIndicatorTextColor(indicatorTextColor) {
6095
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6096
+ 'setIndicatorTextColor', [indicatorTextColor], (value) => {
6097
+ });
6098
+ },
6099
+ setLeftIndicatorTextColor(indicatorTextColor) {
6100
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6101
+ 'setLeftIndicatorTextColor', [indicatorTextColor], (value) => {
6102
+ });
6103
+ },
6104
+ setRightIndicatorTextColor(indicatorTextColor) {
6105
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6106
+ 'setRightIndicatorTextColor', [indicatorTextColor], (value) => {
6107
+ });
6108
+ },
6109
+ setIndicatorArrowSize(indicatorArrowSize) {
6110
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6111
+ 'setIndicatorArrowSize', [indicatorArrowSize], (value) => {
6112
+ });
6113
+ },
6114
+ setLeftIndicatorArrowSize(indicatorArrowSize) {
6115
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6116
+ 'setLeftIndicatorArrowSize', [indicatorArrowSize], (value) => {
6117
+ });
6118
+ },
6119
+ setRightIndicatorArrowSize(indicatorArrowSize) {
6120
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6121
+ 'setRightIndicatorArrowSize', [indicatorArrowSize], (value) => {
6122
+ });
6123
+ },
6124
+ setIndicatorDrawable(indicatorDrawable) {
6125
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6126
+ 'setIndicatorDrawable', [indicatorDrawable], (value) => {
6127
+ });
6128
+ },
6129
+ setLeftIndicatorDrawable(leftIndicatorDrawable) {
6130
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6131
+ 'setLeftIndicatorDrawable', [leftIndicatorDrawable], (value) => {
6132
+ });
6133
+ },
6134
+ setRightIndicatorDrawable(rightIndicatorDrawable) {
6135
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6136
+ 'setRightIndicatorDrawable', [rightIndicatorDrawable], (value) => {
6137
+ });
6138
+ },
6139
+ setIndicatorUrl(indicatorUrl) {
6140
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6141
+ 'setIndicatorUrl', [indicatorUrl], (value) => {
6142
+ });
6143
+ },
6144
+ setLeftIndicatorUrl(leftIndicatorUrl) {
6145
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6146
+ 'setLeftIndicatorUrl', [leftIndicatorUrl], (value) => {
6147
+ });
6148
+ },
6149
+ setRightIndicatorUrl(rightIndicatorUrl) {
6150
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6151
+ 'setRightIndicatorUrl', [rightIndicatorUrl], (value) => {
6152
+ });
6153
+ },
6154
+ setThumbWidth(thumbWidth) {
6155
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6156
+ 'setThumbWidth', [thumbWidth], (value) => {
6157
+ });
6158
+ },
6159
+ setLeftThumbWidth(thumbWidth) {
6160
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6161
+ 'setLeftThumbWidth', [thumbWidth], (value) => {
6162
+ });
6163
+ },
6164
+ setRightThumbWidth(thumbWidth) {
6165
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6166
+ 'setRightThumbWidth', [thumbWidth], (value) => {
6167
+ });
6168
+ },
6169
+ setThumbHeight(thumbHeight) {
6170
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6171
+ 'setThumbHeight', [thumbHeight], (value) => {
6172
+ });
6173
+ },
6174
+ setLeftThumbHeight(thumbHeight) {
6175
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6176
+ 'setLeftThumbHeight', [thumbHeight], (value) => {
6177
+ });
6178
+ },
6179
+ setRightThumbHeight(thumbHeight) {
6180
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6181
+ 'setRightThumbHeight', [thumbHeight], (value) => {
6182
+ });
6183
+ },
6184
+ scaleThumb() {
6185
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6186
+ 'scaleThumb', [], (value) => {
6187
+ });
6188
+ },
6189
+ scaleLeftThumb() {
6190
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6191
+ 'scaleLeftThumb', [], (value) => {
6192
+ });
6193
+ },
6194
+ scaleRightThumb() {
6195
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6196
+ 'scaleLeftThumb', [], (value) => {
6197
+ });
6198
+ },
6199
+ resetThumb() {
6200
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6201
+ 'resetThumb', [], (value) => {
6202
+ });
6203
+ },
6204
+ resetLeftThumb() {
6205
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6206
+ 'resetLeftThumb', [], (value) => {
6207
+ });
6208
+ },
6209
+ resetRightThumb() {
6210
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6211
+ 'resetRightThumb', [], (value) => {
6212
+ });
6213
+ },
6214
+ setThumbScaleRatio(thumbScaleRatio) {
6215
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6216
+ 'setThumbScaleRatio', [thumbScaleRatio], (value) => {
6217
+ });
6218
+ },
6219
+ setLeftThumbScaleRatio(thumbScaleRatio) {
6220
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6221
+ 'setLeftThumbScaleRatio', [thumbScaleRatio], (value) => {
6222
+ });
6223
+ },
6224
+ setRightThumbScaleRatio(thumbScaleRatio) {
6225
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6226
+ 'setRightThumbScaleRatio', [thumbScaleRatio], (value) => {
6227
+ });
6228
+ },
6229
+ setThumbActivate(activate) {
6230
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6231
+ 'setThumbActivate', [activate], (value) => {
6232
+ });
6233
+ },
6234
+ setLeftThumbActivate(activate) {
6235
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6236
+ 'setLeftThumbActivate', [activate], (value) => {
6237
+ });
6238
+ },
6239
+ setRightThumbActivate(activate) {
6240
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6241
+ 'setRightThumbActivate', [activate], (value) => {
6242
+ });
6243
+ },
6244
+ setThumbDrawable(drawable) {
6245
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6246
+ 'setThumbDrawable', [drawable], (value) => {
6247
+ });
6248
+ },
6249
+ setLeftThumbDrawable(drawable) {
6250
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6251
+ 'setLeftThumbDrawable', [drawable], (value) => {
6252
+ });
6253
+ },
6254
+ setRightThumbDrawable(drawable) {
6255
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6256
+ 'setRightThumbDrawable', [drawable], (value) => {
6257
+ });
6258
+ },
6259
+ setThumbUrl(url) {
6260
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6261
+ 'setThumbUrl', [url], (value) => {
6262
+ });
6263
+ },
6264
+ setLeftThumbUrl(url) {
6265
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6266
+ 'setLeftThumbUrl', [url], (value) => {
6267
+ });
6268
+ },
6269
+ setRightThumbUrl(url) {
6270
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6271
+ 'setRightThumbUrl', [url], (value) => {
6272
+ });
6273
+ },
6274
+ setThumbInactivatedDrawable(drawable) {
6275
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6276
+ 'setThumbInactivatedDrawable', [drawable], (value) => {
6277
+ });
6278
+ },
6279
+ setLeftThumbInactivatedDrawable(drawable) {
6280
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6281
+ 'setLeftThumbInactivatedDrawable', [drawable], (value) => {
6282
+ });
6283
+ },
6284
+ setRightThumbInactivatedDrawable(drawable) {
6285
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6286
+ 'setRightThumbInactivatedDrawable', [drawable], (value) => {
6287
+ });
6288
+ },
6289
+ setThumbInactivatedUrl(url) {
6290
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6291
+ 'setThumbInactivatedUrl', [url], (value) => {
6292
+ });
6293
+ },
6294
+ setLeftThumbInactivatedUrl(url) {
6295
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6296
+ 'setLeftThumbInactivatedUrl', [url], (value) => {
6297
+ });
6298
+ },
6299
+ setRightThumbInactivatedUrl(url) {
6300
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6301
+ 'setRightThumbInactivatedUrl', [url], (value) => {
6302
+ });
6303
+ },
6304
+ setTickMarkMode(tickMarkMode) {
6305
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6306
+ 'setTickMarkMode', [tickMarkMode], (value) => {
6307
+ });
6308
+ },
6309
+ setTickMarkGravity(tickMarkGravity) {
6310
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6311
+ 'setTickMarkGravity', [tickMarkGravity], (value) => {
6312
+ });
6313
+ },
6314
+ setTickMarkLayoutGravity(tickMarkLayoutGravity) {
6315
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6316
+ 'setTickMarkLayoutGravity', [tickMarkLayoutGravity], (value) => {
6317
+ });
6318
+ },
6319
+ setTickMarkTextArray(tickMarkTextArray) {
6320
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6321
+ 'setTickMarkTextArray', [tickMarkTextArray], (value) => {
6322
+ });
6323
+ },
6324
+ setTickMarkTextMargin(tickMarkTextMargin) {
6325
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6326
+ 'setTickMarkTextMargin', [tickMarkTextMargin], (value) => {
6327
+ });
6328
+ },
6329
+ setTickMarkTextSize(tickMarkTextSize) {
6330
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6331
+ 'setTickMarkTextSize', [tickMarkTextSize], (value) => {
6332
+ });
6333
+ },
6334
+ setTickMarkTextColor(tickMarkTextColor) {
6335
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6336
+ 'setTickMarkTextColor', [tickMarkTextColor], (value) => {
6337
+ });
6338
+ },
6339
+ setTickMarkInRangeTextColor(tickMarkInRangeTextColor) {
6340
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6341
+ 'setTickMarkInRangeTextColor', [tickMarkInRangeTextColor], (value) => {
6342
+ });
6343
+ },
6344
+ setSteps(steps) {
6345
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6346
+ 'setSteps', [steps], (value) => {
6347
+ });
6348
+ },
6349
+ setStepsWidth(stepsWidth) {
6350
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6351
+ 'setStepsWidth', [stepsWidth], (value) => {
6352
+ });
6353
+ },
6354
+ setStepsHeight(stepsHeight) {
6355
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6356
+ 'setStepsHeight', [stepsHeight], (value) => {
6357
+ });
6358
+ },
6359
+ setStepsRadius(stepsRadius) {
6360
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6361
+ 'setStepsRadius', [stepsRadius], (value) => {
6362
+ });
6363
+ },
6364
+ setStepsColor(stepsColor) {
6365
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6366
+ 'setStepsColor', [stepsColor], (value) => {
6367
+ });
6368
+ },
6369
+ setStepsAutoBonding(stepsAutoBonding) {
6370
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6371
+ 'setStepsAutoBonding', [stepsAutoBonding], (value) => {
6372
+ });
6373
+ },
6374
+ setStepsDrawable(drawableArray) {
6375
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6376
+ 'setStepsDrawable', [drawableArray], (value) => {
6377
+ });
6378
+ },
6379
+ setStepsUrl(urlArray) {
6380
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6381
+ 'setStepsUrl', [urlArray], (value) => {
6382
+ });
6383
+ },
6384
+ setMaxProgress(progress) {
6385
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6386
+ 'setMaxProgress', [progress], (res) => {
4378
6387
  });
4379
6388
  },
4380
6389
  setSecondProgress(progress) {
4381
- Vue.Native.callUIFunction(this.$refs.progressBar,
6390
+ Vue.Native.callUIFunction(this.$refs.progressbar,
4382
6391
  'setSecondProgress', [progress], (res) => {
4383
6392
  });
4384
6393
  },
4385
6394
  show(value) {
4386
- Vue.Native.callUIFunction(this.$refs.progressBar,
6395
+ Vue.Native.callUIFunction(this.$refs.progressbar,
4387
6396
  'show', [value], (res) => {
4388
6397
  });
4389
6398
  },
6399
+ onSeekBarChange(evt) {
6400
+ this.$emit('seek-change', evt);
6401
+ },
4390
6402
  },
4391
6403
  render(h) {
6404
+ const on = getEventRedirector.call(this, [
6405
+ ['seek-change', 'seekBarChange'],
6406
+ ]);
4392
6407
  return h('TVProgressBarViewComponent',
4393
6408
  {
4394
- ref: 'progressBar'
6409
+ on,
6410
+ ref: 'progressbar'
4395
6411
  }, this.$slots.default
4396
6412
  );
4397
6413
  }
@@ -4630,6 +6646,7 @@ var ESApplication = {
4630
6646
  appInitProps: {},
4631
6647
  appInitUrl: '',
4632
6648
  appInitParams: {},
6649
+ autoLaunchMainESPage: true,
4633
6650
  };
4634
6651
  },
4635
6652
  mounted() {
@@ -4637,9 +6654,6 @@ var ESApplication = {
4637
6654
  },
4638
6655
  methods: {
4639
6656
  _initES() {
4640
- if (ESLog.isLoggable(ESLog.DEBUG)) {
4641
- ESLog.d(TAG, '---------_initES----invoke------>>>>');
4642
- }
4643
6657
  Promise.resolve()
4644
6658
  .then(() => ES$1.init({
4645
6659
  router: this.$router
@@ -4654,9 +6668,6 @@ var ESApplication = {
4654
6668
  );
4655
6669
  },
4656
6670
  _initESApplication() {
4657
- if (ESLog.isLoggable(ESLog.DEBUG)) {
4658
- ESLog.d(TAG, '---------_initESApplication----invoke------>>>>');
4659
- }
4660
6671
  ESLaunchManager$1.setRouteListener(this._routeListener);
4661
6672
  this._initESAppParams();
4662
6673
  },
@@ -4664,14 +6675,11 @@ var ESApplication = {
4664
6675
  this.onLaunchESPage(url, params);
4665
6676
  },
4666
6677
  _initESAppParams() {
4667
- if (ESLog.isLoggable(ESLog.DEBUG)) {
4668
- ESLog.d(TAG, '---------_initESAppParams----invoke------>>>>');
4669
- }
4670
6678
  //
4671
- this.appInitProps = ESApp$1.getInstance().$options.$superProps;
6679
+ this.appInitProps = ESApp.$options.$superProps;
4672
6680
  //
4673
- this.appInitUrl = ESApp$1.getInstance().$options.$superProps.url;
4674
- this.appInitParams = ESApp$1.getInstance().$options.$superProps.params;
6681
+ this.appInitUrl = ESApp.$options.$superProps.url;
6682
+ this.appInitParams = ESApp.$options.$superProps.params;
4675
6683
 
4676
6684
  if (ESLog.isLoggable(ESLog.DEBUG)) {
4677
6685
  try {
@@ -4704,13 +6712,13 @@ var ESApplication = {
4704
6712
  if (ESLog.isLoggable(ESLog.DEBUG)) {
4705
6713
  ESLog.d(TAG, '---------onESCreate---Promise---success---->>>>');
4706
6714
  }
4707
- this._initPage();
6715
+ this._onESCreated(true);
4708
6716
  },
4709
6717
  error => {
4710
6718
  if (ESLog.isLoggable(ESLog.DEBUG)) {
4711
6719
  console.log(TAG, '---------onESCreate---Promise---error---->>>>', error);
4712
6720
  }
4713
- this._initPage();
6721
+ this._onESCreated(false);
4714
6722
  }
4715
6723
  );
4716
6724
  }
@@ -4719,7 +6727,7 @@ var ESApplication = {
4719
6727
  if (ESLog.isLoggable(ESLog.DEBUG)) {
4720
6728
  ESLog.d(TAG, '---------onESCreate--return-Not Promise----->>>>');
4721
6729
  }
4722
- this._initPage();
6730
+ this._onESCreated(true);
4723
6731
  }
4724
6732
  }
4725
6733
  //
@@ -4727,10 +6735,22 @@ var ESApplication = {
4727
6735
  if (ESLog.isLoggable(ESLog.DEBUG)) {
4728
6736
  ESLog.d(TAG, '---------onESCreate---Not Function----->>>>');
4729
6737
  }
4730
- this._initPage();
6738
+ this._onESCreated(true);
6739
+ }
6740
+ },
6741
+ _onESCreated(success) {
6742
+ try {
6743
+ this.onESCreated(success);
6744
+ } catch (e) {
6745
+ if (ESLog.isLoggable(ESLog.DEBUG)) {
6746
+ ESLog.d(TAG, '---------onESCreated---error---->>>>');
6747
+ }
6748
+ }
6749
+ if (this.autoLaunchMainESPage) {
6750
+ this.launchMainESPage();
4731
6751
  }
4732
6752
  },
4733
- _initPage() {
6753
+ launchMainESPage() {//launchESPage
4734
6754
  let route = {
4735
6755
  name: this.appInitUrl,
4736
6756
  params: this.appInitParams,
@@ -4762,15 +6782,21 @@ var ESApplication = {
4762
6782
  return false;
4763
6783
  },
4764
6784
  //---------------------------下面的方法给使用者覆写-----------------------------
6785
+ onESCreated(success) {
6786
+
6787
+ },
4765
6788
  onLaunchESPage(url, params) {
4766
6789
 
6790
+ },
6791
+ setAutoLaunchMainESPage(auto) {
6792
+ this.autoLaunchMainESPage = auto;
4767
6793
  }
4768
6794
  },
4769
6795
  };
4770
6796
 
4771
6797
  var ESNetworkMixin = {
4772
6798
  mounted() {
4773
- ESApp$1.$on('onConnectivityChanged', this.onConnectivityChanged);
6799
+ ESApp.$on('onConnectivityChanged', this.onConnectivityChanged);
4774
6800
  },
4775
6801
 
4776
6802
  methods: {
@@ -4785,13 +6811,13 @@ var ESNetworkMixin = {
4785
6811
  },
4786
6812
 
4787
6813
  beforeDestroy() {
4788
- ESApp$1.$off('onConnectivityChanged', this.onConnectivityChanged);
6814
+ ESApp.$off('onConnectivityChanged', this.onConnectivityChanged);
4789
6815
  },
4790
6816
  };
4791
6817
 
4792
6818
  var ESNetwork = {
4793
6819
  mounted() {
4794
- ESApp$1.$on('onConnectivityChanged', this.onConnectivityChanged);
6820
+ ESApp.$on('onConnectivityChanged', this.onConnectivityChanged);
4795
6821
  },
4796
6822
 
4797
6823
  methods: {
@@ -4806,14 +6832,14 @@ var ESNetwork = {
4806
6832
  },
4807
6833
 
4808
6834
  beforeDestroy() {
4809
- ESApp$1.$off('onConnectivityChanged', this.onConnectivityChanged);
6835
+ ESApp.$off('onConnectivityChanged', this.onConnectivityChanged);
4810
6836
  },
4811
6837
  };
4812
6838
 
4813
6839
  var ESUsbDeviceMixin = {
4814
6840
  mounted() {
4815
- ESApp$1.$on('onUsbDeviceAttached', this.onUsbDeviceAttached);
4816
- ESApp$1.$on('onUsbDeviceDetached', this.onUsbDeviceDetached);
6841
+ ESApp.$on('onUsbDeviceAttached', this.onUsbDeviceAttached);
6842
+ ESApp.$on('onUsbDeviceDetached', this.onUsbDeviceDetached);
4817
6843
  },
4818
6844
 
4819
6845
  methods: {
@@ -4835,8 +6861,8 @@ var ESUsbDeviceMixin = {
4835
6861
  },
4836
6862
 
4837
6863
  beforeDestroy() {
4838
- ESApp$1.$off('onUsbDeviceAttached', this.onUsbDeviceAttached);
4839
- ESApp$1.$off('onUsbDeviceDetached', this.onUsbDeviceDetached);
6864
+ ESApp.$off('onUsbDeviceAttached', this.onUsbDeviceAttached);
6865
+ ESApp.$off('onUsbDeviceDetached', this.onUsbDeviceDetached);
4840
6866
  },
4841
6867
  };
4842
6868
 
@@ -4966,4 +6992,4 @@ const ES_FAST_OUT_LINEAR_IN_INTERPOLATOR = 10;
4966
6992
  const ES_FAST_OUT_SLOW_IN_INTERPOLATOR = 11;
4967
6993
  const ES_PATH_INTERPOLATOR = 12;
4968
6994
 
4969
- export { AUDIO_CONTENT_TYPE_MOVIE, AUDIO_CONTENT_TYPE_MUSIC, AUDIO_CONTENT_TYPE_SONIFICATION, AUDIO_CONTENT_TYPE_SPEECH, AUDIO_CONTENT_TYPE_UNKNOWN, AUDIO_MANAGER_FLAG_ACTIVE_MEDIA_ONLY, AUDIO_MANAGER_FLAG_ALLOW_RINGER_MODES, AUDIO_MANAGER_FLAG_BLUETOOTH_ABS_VOLUME, AUDIO_MANAGER_FLAG_FIXED_VOLUME, AUDIO_MANAGER_FLAG_HDMI_SYSTEM_AUDIO_VOLUME, AUDIO_MANAGER_FLAG_PLAY_SOUND, AUDIO_MANAGER_FLAG_REMOVE_SOUND_AND_VIBRATE, AUDIO_MANAGER_FLAG_SHOW_SILENT_HINT, AUDIO_MANAGER_FLAG_SHOW_UI, AUDIO_MANAGER_FLAG_SHOW_UI_WARNINGS, AUDIO_MANAGER_FLAG_SHOW_VIBRATE_HINT, AUDIO_MANAGER_FLAG_VIBRATE, AUDIO_STREAM_ACCESSIBILITY, AUDIO_STREAM_ALARM, AUDIO_STREAM_ASSISTANT, AUDIO_STREAM_BLUETOOTH_SCO, AUDIO_STREAM_DEFAULT, AUDIO_STREAM_DTMF, AUDIO_STREAM_MUSIC, AUDIO_STREAM_NOTIFICATION, AUDIO_STREAM_RING, AUDIO_STREAM_SYSTEM, AUDIO_STREAM_SYSTEM_ENFORCED, AUDIO_STREAM_TTS, AUDIO_STREAM_VOICE_CALL, AUDIO_USAGE_ALARM, AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY, AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE, AUDIO_USAGE_ASSISTANCE_SONIFICATION, AUDIO_USAGE_ASSISTANT, AUDIO_USAGE_GAME, AUDIO_USAGE_INVALID, AUDIO_USAGE_MEDIA, AUDIO_USAGE_NOTIFICATION, AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED, AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT, AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST, AUDIO_USAGE_NOTIFICATION_EVENT, AUDIO_USAGE_NOTIFICATION_RINGTONE, AUDIO_USAGE_UNKNOWN, AUDIO_USAGE_VIRTUAL_SOURCE, AUDIO_USAGE_VOICE_COMMUNICATION, AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING, ES$1 as ES, ESAnimationViewComponent, ESApp$1 as ESApp, ESAppManager$1 as ESAppManager, ESAppModule$1 as ESAppModule, ESApplication, ESAudioManager$1 as ESAudioManager, ESAudioModule$1 as ESAudioModule, ESBackPress, ESBackPressMixin, ESBroadcast, ESBroadcastManager$1 as ESBroadcastManager, ESDevelopManager$1 as ESDevelopManager, ESDevelopModule$1 as ESDevelopModule, ESDeviceManager$1 as ESDeviceManager, ESDeviceModule$1 as ESDeviceModule, ESDisplayManager$1 as ESDisplayManager, ESEventBus$1 as ESEventBus, ESEventBusEvent, ESFile, ESFileModule$1 as ESFileModule, ESFocusManager$1 as ESFocusManager, ESFocusModule$1 as ESFocusModule, ESKeyEvent, ESKeyEventMixin, ESLaunchManager$1 as ESLaunchManager, ESLoadingViewComponent, ESMMapManager$1 as ESMMapManager, ESMMapModule$1 as ESMMapModule, ESManager$1 as ESManager, ESModule$1 as ESModule, ESNetwork, ESNetworkManager$1 as ESNetworkManager, ESNetworkMixin, ESNetworkModule$1 as ESNetworkModule, ESPage, ESPageLifecycle, ESPageRootViewComponent, ESPageRouterViewComponent, ESPermissionManager$1 as ESPermissionManager, ESPermissionModule$1 as ESPermissionModule, ESPlugin, ESPluginManager$1 as ESPluginManager, ESPluginModule$1 as ESPluginModule, ESPowerManager$1 as ESPowerManager, ESPowerModule$1 as ESPowerModule, ESProgressBarViewComponent, ESQRCodeViewComponent, ESRouter, ESScrollViewComponent, ESSeekBarViewComponent, ESSharedPreferencesManager$1 as ESSharedPreferencesManager, ESSharedPreferencesModule$1 as ESSharedPreferencesModule, ESStorageManager$1 as ESStorageManager, ESStorageModule$1 as ESStorageModule, ESSurfaceViewComponent, ESTextViewComponent, ESToast$1 as ESToast, ToastModule as ESToastModule, ESTransitionImageViewComponent, ESUsbDevice, ESUsbDeviceManager$1 as ESUsbDeviceManager, ESUsbDeviceMixin, ESUsbDeviceModule$1 as ESUsbDeviceModule, ES_ACCELERATE_DECELERATE_INTERPOLATOR, ES_ACCELERATE_INTERPOLATOR, ES_ANIMATION_PROPERTY_NAME_ALPHA, ES_ANIMATION_PROPERTY_NAME_ROTATION, ES_ANIMATION_PROPERTY_NAME_SCALE_X, ES_ANIMATION_PROPERTY_NAME_SCALE_Y, ES_ANIMATION_PROPERTY_NAME_TRANSLATION_X, ES_ANIMATION_PROPERTY_NAME_TRANSLATION_Y, ES_ANIMATION_REPEAT_MODE_INFINITE, ES_ANIMATION_REPEAT_MODE_RESTART, ES_ANIMATION_REPEAT_MODE_REVERSE, ES_ANIMATION_TYPE_AFTER, ES_ANIMATION_TYPE_AFTER_DELAY, ES_ANIMATION_TYPE_BEFORE, ES_ANIMATION_TYPE_NONE, ES_ANIMATION_TYPE_PLAY, ES_ANIMATION_TYPE_PLAY_SEQUENTIALLY, ES_ANIMATION_TYPE_PLAY_TOGETHER, ES_ANIMATION_TYPE_WITH, ES_ANIMATION_VALUE_TYPE_FLOAT, ES_ANIMATION_VALUE_TYPE_INT, ES_ANTICIPATE_INTERPOLATOR, ES_ANTICIPATE_OVERSHOOT_INTERPOLATOR, ES_BOUNCE_INTERPOLATOR, ES_CYCLE_INTERPOLATOR, ES_DECELERATE_INTERPOLATOR, ES_FAST_OUT_LINEAR_IN_INTERPOLATOR, ES_FAST_OUT_SLOW_IN_INTERPOLATOR, ES_KEYCODE_BACK, ES_KEYCODE_DPAD_CENTER, ES_KEYCODE_DPAD_DOWN, ES_KEYCODE_DPAD_LEFT, ES_KEYCODE_DPAD_RIGHT, ES_KEYCODE_DPAD_UP, ES_KEYCODE_ENTER, ES_KEYCODE_ESCAPE, ES_KEYCODE_MENU, ES_KEYCODE_SEARCH, ES_KEY_ACTION_DOWN, ES_KEY_ACTION_UP, ES_LIFECYCLE_ON_CREATE, ES_LIFECYCLE_ON_DESTROY, ES_LIFECYCLE_ON_INITIALIZED, ES_LIFECYCLE_ON_PAUSE, ES_LIFECYCLE_ON_RESTART, ES_LIFECYCLE_ON_RESTORE_INSTANCE_SATE, ES_LIFECYCLE_ON_RESUME, ES_LIFECYCLE_ON_SAVE_INSTANCE_SATE, ES_LIFECYCLE_ON_START, ES_LIFECYCLE_ON_STOP, ES_LIFECYCLE_ON_UNINITIALIZED, ES_LINEAR_INTERPOLATOR, ES_MMP_MODE_PRIVATE, ES_MMP_MODE_WORLD_READABLE, ES_MMP_MODE_WORLD_WRITEABLE, ES_NETWORK_INFO_STATE_CONNECTED, ES_NETWORK_INFO_STATE_CONNECTING, ES_NETWORK_INFO_STATE_DISCONNECTED, ES_NETWORK_INFO_STATE_DISCONNECTING, ES_NETWORK_INFO_STATE_SUSPENDED, ES_NETWORK_INFO_STATE_UNKNOWN, ES_NETWORK_INFO_TYPE_ETHERNET, ES_NETWORK_INFO_TYPE_MOBILE, ES_NETWORK_INFO_TYPE_NONE, ES_NETWORK_INFO_TYPE_WIFI, ES_OVERSHOOT_INTERPOLATOR, ES_PATH_INTERPOLATOR, ES_SDK_VERSION_20, ES_SDK_VERSION_21, ES_SDK_VERSION_22, ES_SEEK_BAR_MODE_DISABLED, ES_SEEK_BAR_MODE_PROGRESS, ES_SEEK_BAR_MODE_SEEK, KEYCODE_BACK, KEYCODE_DPAD_CENTER, KEYCODE_DPAD_DOWN, KEYCODE_DPAD_LEFT, KEYCODE_DPAD_RIGHT, KEYCODE_DPAD_UP, KEYCODE_ENTER, KEYCODE_ESCAPE, KEYCODE_MENU, KEYCODE_SEARCH, KEY_ACTION_DOWN, KEY_ACTION_UP };
6995
+ export { AUDIO_CONTENT_TYPE_MOVIE, AUDIO_CONTENT_TYPE_MUSIC, AUDIO_CONTENT_TYPE_SONIFICATION, AUDIO_CONTENT_TYPE_SPEECH, AUDIO_CONTENT_TYPE_UNKNOWN, AUDIO_MANAGER_FLAG_ACTIVE_MEDIA_ONLY, AUDIO_MANAGER_FLAG_ALLOW_RINGER_MODES, AUDIO_MANAGER_FLAG_BLUETOOTH_ABS_VOLUME, AUDIO_MANAGER_FLAG_FIXED_VOLUME, AUDIO_MANAGER_FLAG_HDMI_SYSTEM_AUDIO_VOLUME, AUDIO_MANAGER_FLAG_PLAY_SOUND, AUDIO_MANAGER_FLAG_REMOVE_SOUND_AND_VIBRATE, AUDIO_MANAGER_FLAG_SHOW_SILENT_HINT, AUDIO_MANAGER_FLAG_SHOW_UI, AUDIO_MANAGER_FLAG_SHOW_UI_WARNINGS, AUDIO_MANAGER_FLAG_SHOW_VIBRATE_HINT, AUDIO_MANAGER_FLAG_VIBRATE, AUDIO_STREAM_ACCESSIBILITY, AUDIO_STREAM_ALARM, AUDIO_STREAM_ASSISTANT, AUDIO_STREAM_BLUETOOTH_SCO, AUDIO_STREAM_DEFAULT, AUDIO_STREAM_DTMF, AUDIO_STREAM_MUSIC, AUDIO_STREAM_NOTIFICATION, AUDIO_STREAM_RING, AUDIO_STREAM_SYSTEM, AUDIO_STREAM_SYSTEM_ENFORCED, AUDIO_STREAM_TTS, AUDIO_STREAM_VOICE_CALL, AUDIO_USAGE_ALARM, AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY, AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE, AUDIO_USAGE_ASSISTANCE_SONIFICATION, AUDIO_USAGE_ASSISTANT, AUDIO_USAGE_GAME, AUDIO_USAGE_INVALID, AUDIO_USAGE_MEDIA, AUDIO_USAGE_NOTIFICATION, AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED, AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT, AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST, AUDIO_USAGE_NOTIFICATION_EVENT, AUDIO_USAGE_NOTIFICATION_RINGTONE, AUDIO_USAGE_UNKNOWN, AUDIO_USAGE_VIRTUAL_SOURCE, AUDIO_USAGE_VOICE_COMMUNICATION, AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING, ES$1 as ES, ESAnimationViewComponent, ESApp, ESAppManager$1 as ESAppManager, ESAppModule$1 as ESAppModule, ESApplication, ESAudioManager$1 as ESAudioManager, ESAudioModule$1 as ESAudioModule, ESBackPress, ESBackPressMixin, ESBroadcast, ESBroadcastManager$1 as ESBroadcastManager, ESDevelopManager$1 as ESDevelopManager, ESDevelopModule$1 as ESDevelopModule, ESDeviceManager$1 as ESDeviceManager, ESDeviceModule$1 as ESDeviceModule, ESDisplayManager$1 as ESDisplayManager, ESEventBus$1 as ESEventBus, ESEventBusEvent, ESFile, ESFileModule$1 as ESFileModule, ESFocusManager$1 as ESFocusManager, ESFocusModule$1 as ESFocusModule, ESKeyEvent, ESKeyEventMixin, ESLaunchManager$1 as ESLaunchManager, ESLoadingViewComponent, ESMMapManager$1 as ESMMapManager, ESMMapModule$1 as ESMMapModule, ESManager$1 as ESManager, ESModule$1 as ESModule, ESNetwork, ESNetworkManager$1 as ESNetworkManager, ESNetworkMixin, ESNetworkModule$1 as ESNetworkModule, ESPage, ESPageLifecycle, ESPageRootViewComponent, ESPageRouterViewComponent, ESPermissionManager$1 as ESPermissionManager, ESPermissionModule$1 as ESPermissionModule, ESPlugin, ESPluginManager$1 as ESPluginManager, ESPluginModule$1 as ESPluginModule, ESPowerManager$1 as ESPowerManager, ESPowerModule$1 as ESPowerModule, ESProgressBarViewComponent, ESQRCodeViewComponent, ESRouter, ESScrollViewComponent, ESSeekBarViewComponent, ESSharedPreferencesManager$1 as ESSharedPreferencesManager, ESSharedPreferencesModule$1 as ESSharedPreferencesModule, ESStorageManager$1 as ESStorageManager, ESStorageModule$1 as ESStorageModule, ESSurfaceViewComponent, ESTextViewComponent, ESToast$1 as ESToast, ToastModule as ESToastModule, ESTransitionImageViewComponent, ESUsbDevice, ESUsbDeviceManager$1 as ESUsbDeviceManager, ESUsbDeviceMixin, ESUsbDeviceModule$1 as ESUsbDeviceModule, ES_ACCELERATE_DECELERATE_INTERPOLATOR, ES_ACCELERATE_INTERPOLATOR, ES_ANIMATION_PROPERTY_NAME_ALPHA, ES_ANIMATION_PROPERTY_NAME_ROTATION, ES_ANIMATION_PROPERTY_NAME_SCALE_X, ES_ANIMATION_PROPERTY_NAME_SCALE_Y, ES_ANIMATION_PROPERTY_NAME_TRANSLATION_X, ES_ANIMATION_PROPERTY_NAME_TRANSLATION_Y, ES_ANIMATION_REPEAT_MODE_INFINITE, ES_ANIMATION_REPEAT_MODE_RESTART, ES_ANIMATION_REPEAT_MODE_REVERSE, ES_ANIMATION_TYPE_AFTER, ES_ANIMATION_TYPE_AFTER_DELAY, ES_ANIMATION_TYPE_BEFORE, ES_ANIMATION_TYPE_NONE, ES_ANIMATION_TYPE_PLAY, ES_ANIMATION_TYPE_PLAY_SEQUENTIALLY, ES_ANIMATION_TYPE_PLAY_TOGETHER, ES_ANIMATION_TYPE_WITH, ES_ANIMATION_VALUE_TYPE_FLOAT, ES_ANIMATION_VALUE_TYPE_INT, ES_ANTICIPATE_INTERPOLATOR, ES_ANTICIPATE_OVERSHOOT_INTERPOLATOR, ES_BOUNCE_INTERPOLATOR, ES_CYCLE_INTERPOLATOR, ES_DECELERATE_INTERPOLATOR, ES_FAST_OUT_LINEAR_IN_INTERPOLATOR, ES_FAST_OUT_SLOW_IN_INTERPOLATOR, ES_KEYCODE_BACK, ES_KEYCODE_DPAD_CENTER, ES_KEYCODE_DPAD_DOWN, ES_KEYCODE_DPAD_LEFT, ES_KEYCODE_DPAD_RIGHT, ES_KEYCODE_DPAD_UP, ES_KEYCODE_ENTER, ES_KEYCODE_ESCAPE, ES_KEYCODE_MENU, ES_KEYCODE_SEARCH, ES_KEY_ACTION_DOWN, ES_KEY_ACTION_UP, ES_LIFECYCLE_ON_CREATE, ES_LIFECYCLE_ON_DESTROY, ES_LIFECYCLE_ON_INITIALIZED, ES_LIFECYCLE_ON_PAUSE, ES_LIFECYCLE_ON_RESTART, ES_LIFECYCLE_ON_RESTORE_INSTANCE_SATE, ES_LIFECYCLE_ON_RESUME, ES_LIFECYCLE_ON_SAVE_INSTANCE_SATE, ES_LIFECYCLE_ON_START, ES_LIFECYCLE_ON_STOP, ES_LIFECYCLE_ON_UNINITIALIZED, ES_LINEAR_INTERPOLATOR, ES_MMP_MODE_PRIVATE, ES_MMP_MODE_WORLD_READABLE, ES_MMP_MODE_WORLD_WRITEABLE, ES_NETWORK_INFO_STATE_CONNECTED, ES_NETWORK_INFO_STATE_CONNECTING, ES_NETWORK_INFO_STATE_DISCONNECTED, ES_NETWORK_INFO_STATE_DISCONNECTING, ES_NETWORK_INFO_STATE_SUSPENDED, ES_NETWORK_INFO_STATE_UNKNOWN, ES_NETWORK_INFO_TYPE_ETHERNET, ES_NETWORK_INFO_TYPE_MOBILE, ES_NETWORK_INFO_TYPE_NONE, ES_NETWORK_INFO_TYPE_WIFI, ES_OVERSHOOT_INTERPOLATOR, ES_PATH_INTERPOLATOR, ES_SDK_VERSION_20, ES_SDK_VERSION_21, ES_SDK_VERSION_22, ES_SEEK_BAR_MODE_DISABLED, ES_SEEK_BAR_MODE_PROGRESS, ES_SEEK_BAR_MODE_SEEK, KEYCODE_BACK, KEYCODE_DPAD_CENTER, KEYCODE_DPAD_DOWN, KEYCODE_DPAD_LEFT, KEYCODE_DPAD_RIGHT, KEYCODE_DPAD_UP, KEYCODE_ENTER, KEYCODE_ESCAPE, KEYCODE_MENU, KEYCODE_SEARCH, KEY_ACTION_DOWN, KEY_ACTION_UP, getESApp, setESApp };