@extscreen/es-core 2.2.34 → 2.2.40

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 +152 -70
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -200,7 +200,7 @@ var ESDeviceModule$1 = new ESDeviceModule();
200
200
  *
201
201
  */
202
202
 
203
- const TAG$6 = 'ESDeviceManager';
203
+ const TAG$7 = 'ESDeviceManager';
204
204
 
205
205
  class ESDeviceManager {
206
206
 
@@ -259,7 +259,7 @@ class ESDeviceManager {
259
259
  ESDeviceModule$1.getDevice().then(
260
260
  (device) => {
261
261
  if (ESLog.isLoggable(ESLog.DEBUG)) {
262
- ESLog.d(TAG$6, '#----------init---------->>>>>' + JSON.stringify(device));
262
+ ESLog.d(TAG$7, '#----------init---------->>>>>' + JSON.stringify(device));
263
263
  }
264
264
  this._device = device;
265
265
 
@@ -312,7 +312,7 @@ class ESDeviceManager {
312
312
  }
313
313
  } catch (e) {
314
314
  if (ESLog.isLoggable(ESLog.DEBUG)) {
315
- ESLog.d(TAG$6, '#----------init---解析--error----->>>>>' + e);
315
+ ESLog.d(TAG$7, '#----------init---解析--error----->>>>>' + e);
316
316
  }
317
317
  }
318
318
  resolve(device);
@@ -320,7 +320,7 @@ class ESDeviceManager {
320
320
  //
321
321
  error => {
322
322
  if (ESLog.isLoggable(ESLog.DEBUG)) {
323
- ESLog.d(TAG$6, '#----------init-----error----->>>>>' + error);
323
+ ESLog.d(TAG$7, '#----------init-----error----->>>>>' + error);
324
324
  }
325
325
  resolve(error);
326
326
  }
@@ -571,77 +571,77 @@ var ESNetworkManager$1 = new ESNetworkManager();
571
571
  class ESToastModule {
572
572
 
573
573
  make() {
574
- Vue.Native.callNative('ToastModule', "make");
574
+ Vue.Native.callNative('ToastModule', 'make');
575
575
  }
576
576
 
577
577
  setMode(mode) {
578
- Vue.Native.callNative('ToastModule', "setMode", mode);
578
+ Vue.Native.callNative('ToastModule', 'setMode', mode);
579
579
  }
580
580
 
581
581
  setGravity(gravity, xOffset, yOffset) {
582
- Vue.Native.callNative('ToastModule', "setGravity", gravity, xOffset, yOffset);
582
+ Vue.Native.callNative('ToastModule', 'setGravity', gravity, xOffset, yOffset);
583
583
  }
584
584
 
585
585
  setBackgroundColor(backgroundColor) {
586
- Vue.Native.callNative('ToastModule', "setBgColor", backgroundColor);
586
+ Vue.Native.callNative('ToastModule', 'setBgColor', backgroundColor);
587
587
  }
588
588
 
589
589
  setTextColor(textColor) {
590
- Vue.Native.callNative('ToastModule', "setTextColor", textColor);
590
+ Vue.Native.callNative('ToastModule', 'setTextColor', textColor);
591
591
  }
592
592
 
593
593
  setTextSize(textSize) {
594
- Vue.Native.callNative('ToastModule', "setTextSize", textSize);
594
+ Vue.Native.callNative('ToastModule', 'setTextSize', textSize);
595
595
  }
596
596
 
597
597
  setLongDuration(isLong) {
598
- Vue.Native.callNative('ToastModule', "setLongDuration", isLong);
598
+ Vue.Native.callNative('ToastModule', 'setLongDuration', isLong);
599
599
  }
600
600
 
601
601
  setNotUseSystemToast() {
602
- Vue.Native.callNative('ToastModule', "setNotUseSystemToast");
602
+ Vue.Native.callNative('ToastModule', 'setNotUseSystemToast');
603
603
  }
604
604
 
605
605
  show(text) {
606
- Vue.Native.callNative('ToastModule', "show", text);
606
+ Vue.Native.callNative('ToastModule', 'show', text);
607
607
  }
608
608
 
609
609
  cancel() {
610
- Vue.Native.callNative('ToastModule', "cancel");
610
+ Vue.Native.callNative('ToastModule', 'cancel');
611
611
  }
612
612
 
613
613
  setBackground(url) {
614
- Vue.Native.callNative('ToastModule', "setBackground", {url: url});
614
+ Vue.Native.callNative('ToastModule', 'setBackground', { url: url });
615
615
  }
616
616
 
617
617
  setLeftIcon(url) {
618
- Vue.Native.callNative('ToastModule', "setLeftIcon", {url: url});
618
+ Vue.Native.callNative('ToastModule', 'setLeftIcon', { url: url });
619
619
  }
620
620
 
621
621
  setTopIcon(url) {
622
- Vue.Native.callNative('ToastModule', "setTopIcon", {url: url});
622
+ Vue.Native.callNative('ToastModule', 'setTopIcon', { url: url });
623
623
  }
624
624
 
625
625
  setRightIcon(url) {
626
- Vue.Native.callNative('ToastModule', "setRightIcon", {url: url});
626
+ Vue.Native.callNative('ToastModule', 'setRightIcon', { url: url });
627
627
  }
628
628
 
629
629
  setBottomIcon(url) {
630
- Vue.Native.callNative('ToastModule', "setBottomIcon", {url: url});
630
+ Vue.Native.callNative('ToastModule', 'setBottomIcon', { url: url });
631
631
  }
632
632
 
633
633
 
634
634
  //----------------------------------------------------------------------------------
635
635
  showToast(message) {
636
- Vue.Native.callNative('ToastModule', "showToast", message);
636
+ Vue.Native.callNative('ToastModule', 'showToast', message);
637
637
  }
638
638
 
639
639
  showLongToast(message) {
640
- Vue.Native.callNative('ToastModule', "showLongToast", message);
640
+ Vue.Native.callNative('ToastModule', 'showLongToast', message);
641
641
  }
642
642
 
643
643
  showShortToast(message) {
644
- Vue.Native.callNative('ToastModule', "showShortToast", message);
644
+ Vue.Native.callNative('ToastModule', 'showShortToast', message);
645
645
  }
646
646
  }
647
647
 
@@ -822,7 +822,7 @@ var ESAudioModule$1 = new ESAudioModule();
822
822
  *
823
823
  */
824
824
 
825
- const TAG$5 = 'ESAudioManager';
825
+ const TAG$6 = 'ESAudioManager';
826
826
 
827
827
  class ESAudioManager {
828
828
 
@@ -848,7 +848,7 @@ class ESAudioManager {
848
848
  initPromise() {
849
849
  return new Promise((resolve, reject) => {
850
850
  if (ESLog.isLoggable(ESLog.DEBUG)) {
851
- ESLog.d(TAG$5, '------------init----start----->>>>');
851
+ ESLog.d(TAG$6, '------------init----start----->>>>');
852
852
  }
853
853
  this.getStreamSystemMaxVolume();
854
854
  this.getStreamSystemVolume();
@@ -863,7 +863,7 @@ class ESAudioManager {
863
863
  ESAudioModule$1.getStreamVoiceCallMaxVolume()
864
864
  .then((volume) => {
865
865
  if (ESLog.isLoggable(ESLog.DEBUG)) {
866
- ESLog.d(TAG$5, '-----getStreamVoiceCallMaxVolume--->>>>' + volume);
866
+ ESLog.d(TAG$6, '-----getStreamVoiceCallMaxVolume--->>>>' + volume);
867
867
  }
868
868
  this._voiceCallMaxVolume = volume;
869
869
  });
@@ -877,7 +877,7 @@ class ESAudioManager {
877
877
  ESAudioModule$1.getStreamVoiceCallVolume()
878
878
  .then((volume) => {
879
879
  if (ESLog.isLoggable(ESLog.DEBUG)) {
880
- ESLog.d(TAG$5, '-----getStreamVoiceCallVolume--->>>>' + volume);
880
+ ESLog.d(TAG$6, '-----getStreamVoiceCallVolume--->>>>' + volume);
881
881
  }
882
882
  this._voiceCallVolume = volume;
883
883
  });
@@ -892,7 +892,7 @@ class ESAudioManager {
892
892
  ESAudioModule$1.getStreamSystemMaxVolume()
893
893
  .then((volume) => {
894
894
  if (ESLog.isLoggable(ESLog.DEBUG)) {
895
- ESLog.d(TAG$5, '-----getStreamSystemMaxVolume--->>>>' + volume);
895
+ ESLog.d(TAG$6, '-----getStreamSystemMaxVolume--->>>>' + volume);
896
896
  }
897
897
  this._systemMaxVolume = volume;
898
898
  });
@@ -906,7 +906,7 @@ class ESAudioManager {
906
906
  ESAudioModule$1.getStreamSystemVolume()
907
907
  .then((volume) => {
908
908
  if (ESLog.isLoggable(ESLog.DEBUG)) {
909
- ESLog.d(TAG$5, '-----getStreamSystemVolume--->>>>' + volume);
909
+ ESLog.d(TAG$6, '-----getStreamSystemVolume--->>>>' + volume);
910
910
  }
911
911
  this._systemVolume = volume;
912
912
  });
@@ -921,7 +921,7 @@ class ESAudioManager {
921
921
  ESAudioModule$1.getStreamRingMaxVolume()
922
922
  .then((volume) => {
923
923
  if (ESLog.isLoggable(ESLog.DEBUG)) {
924
- ESLog.d(TAG$5, '-----getStreamRingMaxVolume--->>>>' + volume);
924
+ ESLog.d(TAG$6, '-----getStreamRingMaxVolume--->>>>' + volume);
925
925
  }
926
926
  this._ringMaxVolume = volume;
927
927
  });
@@ -935,7 +935,7 @@ class ESAudioManager {
935
935
  ESAudioModule$1.getStreamRingVolume()
936
936
  .then((volume) => {
937
937
  if (ESLog.isLoggable(ESLog.DEBUG)) {
938
- ESLog.d(TAG$5, '-----getStreamRingVolume--->>>>' + volume);
938
+ ESLog.d(TAG$6, '-----getStreamRingVolume--->>>>' + volume);
939
939
  }
940
940
  this._ringVolume = volume;
941
941
  });
@@ -950,7 +950,7 @@ class ESAudioManager {
950
950
  ESAudioModule$1.getStreamMusicMaxVolume()
951
951
  .then((volume) => {
952
952
  if (ESLog.isLoggable(ESLog.DEBUG)) {
953
- ESLog.d(TAG$5, '-----getStreamMusicMaxVolume--->>>>' + volume);
953
+ ESLog.d(TAG$6, '-----getStreamMusicMaxVolume--->>>>' + volume);
954
954
  }
955
955
  this._musicMaxVolume = volume;
956
956
  });
@@ -964,7 +964,7 @@ class ESAudioManager {
964
964
  ESAudioModule$1.getStreamMusicVolume()
965
965
  .then((volume) => {
966
966
  if (ESLog.isLoggable(ESLog.DEBUG)) {
967
- ESLog.d(TAG$5, '-----getStreamMusicVolume--->>>>' + volume);
967
+ ESLog.d(TAG$6, '-----getStreamMusicVolume--->>>>' + volume);
968
968
  }
969
969
  this._musicVolume = volume;
970
970
  });
@@ -979,7 +979,7 @@ class ESAudioManager {
979
979
  ESAudioModule$1.getStreamAlarmMaxVolume()
980
980
  .then((volume) => {
981
981
  if (ESLog.isLoggable(ESLog.DEBUG)) {
982
- ESLog.d(TAG$5, '-----getStreamAlarmMaxVolume--->>>>' + volume);
982
+ ESLog.d(TAG$6, '-----getStreamAlarmMaxVolume--->>>>' + volume);
983
983
  }
984
984
  this._alarmMaxVolume = volume;
985
985
  });
@@ -993,7 +993,7 @@ class ESAudioManager {
993
993
  ESAudioModule$1.getStreamAlarmVolume()
994
994
  .then((volume) => {
995
995
  if (ESLog.isLoggable(ESLog.DEBUG)) {
996
- ESLog.d(TAG$5, '-----getStreamAlarmVolume--->>>>' + volume);
996
+ ESLog.d(TAG$6, '-----getStreamAlarmVolume--->>>>' + volume);
997
997
  }
998
998
  this._alarmVolume = volume;
999
999
  });
@@ -1008,7 +1008,7 @@ class ESAudioManager {
1008
1008
  ESAudioModule$1.getStreamMaxVolume(streamType)
1009
1009
  .then((volume) => {
1010
1010
  if (ESLog.isLoggable(ESLog.DEBUG)) {
1011
- ESLog.d(TAG$5, streamType + '-----getStreamMaxVolume--->>>>' + volume);
1011
+ ESLog.d(TAG$6, streamType + '-----getStreamMaxVolume--->>>>' + volume);
1012
1012
  }
1013
1013
  });
1014
1014
  }
@@ -1017,7 +1017,7 @@ class ESAudioManager {
1017
1017
  ESAudioModule$1.getStreamVolume(streamType)
1018
1018
  .then((volume) => {
1019
1019
  if (ESLog.isLoggable(ESLog.DEBUG)) {
1020
- ESLog.d(TAG$5, streamType + '-----getStreamVolume--->>>>' + volume);
1020
+ ESLog.d(TAG$6, streamType + '-----getStreamVolume--->>>>' + volume);
1021
1021
  }
1022
1022
  });
1023
1023
  }
@@ -2475,12 +2475,7 @@ class ESLaunchManager {
2475
2475
 
2476
2476
  launchNativePage(intent) {
2477
2477
  return ESModule$1.launchESPage({
2478
- pkg: intent.pkg,
2479
- args: intent.args,
2480
- flags: intent.flags,
2481
- pageTag: intent.pageTag,
2482
- pageLimit: intent.pageLimit,
2483
- backgroundColor: intent.backgroundColor,
2478
+ args: intent,
2484
2479
  });
2485
2480
  }
2486
2481
 
@@ -2572,7 +2567,7 @@ class ESLaunchManager {
2572
2567
 
2573
2568
  var ESLaunchManager$1 = new ESLaunchManager();
2574
2569
 
2575
- const TAG$4 = "ESRouter";
2570
+ const TAG$5 = "ESRouter";
2576
2571
 
2577
2572
  /**
2578
2573
  * router按键管理
@@ -2602,12 +2597,12 @@ class ESRouterKeyManager {
2602
2597
  if (keyEvent && keyEvent.action === 0) {
2603
2598
  if (this.isFunction(componentInstance.onKeyDown)) {
2604
2599
  if (ESLog.isLoggable(ESLog.DEBUG)) {
2605
- ESLog.d(TAG$4, '#-------onKeyDown---success------>>>>>');
2600
+ ESLog.d(TAG$5, '#-------onKeyDown---success------>>>>>');
2606
2601
  }
2607
2602
  componentInstance.onKeyDown(keyEvent);
2608
2603
  } else {
2609
2604
  if (ESLog.isLoggable(ESLog.DEBUG)) {
2610
- ESLog.d(TAG$4, '#-------onKeyDown---error------>>>>>');
2605
+ ESLog.d(TAG$5, '#-------onKeyDown---error------>>>>>');
2611
2606
  }
2612
2607
  }
2613
2608
  }
@@ -2615,19 +2610,19 @@ class ESRouterKeyManager {
2615
2610
  else if (keyEvent && keyEvent.action === 1) {
2616
2611
  if (this.isFunction(componentInstance.onKeyUp)) {
2617
2612
  if (ESLog.isLoggable(ESLog.DEBUG)) {
2618
- ESLog.d(TAG$4, '#-------onKeyUp---success------>>>>>');
2613
+ ESLog.d(TAG$5, '#-------onKeyUp---success------>>>>>');
2619
2614
  }
2620
2615
  componentInstance.onKeyUp(keyEvent);
2621
2616
  } else {
2622
2617
  if (ESLog.isLoggable(ESLog.DEBUG)) {
2623
- ESLog.d(TAG$4, '#-------onKeyUp---error------>>>>>');
2618
+ ESLog.d(TAG$5, '#-------onKeyUp---error------>>>>>');
2624
2619
  }
2625
2620
  }
2626
2621
  }
2627
2622
  }
2628
2623
  } else {
2629
2624
  if (ESLog.isLoggable(ESLog.DEBUG)) {
2630
- ESLog.d(TAG$4, '#-------dispatchInstanceKeyEvent-----实例对象为空------>>>>>');
2625
+ ESLog.d(TAG$5, '#-------dispatchInstanceKeyEvent-----实例对象为空------>>>>>');
2631
2626
  }
2632
2627
  }
2633
2628
  }
@@ -2642,17 +2637,17 @@ class ESRouterKeyManager {
2642
2637
  if (componentInstance) {
2643
2638
  if (this.isFunction(componentInstance.onBackPressed)) {
2644
2639
  if (ESLog.isLoggable(ESLog.DEBUG)) {
2645
- ESLog.d(TAG$4, '#-------onBackPressed---success------>>>>>');
2640
+ ESLog.d(TAG$5, '#-------onBackPressed---success------>>>>>');
2646
2641
  }
2647
2642
  componentInstance.onBackPressed();
2648
2643
  } else {
2649
2644
  if (ESLog.isLoggable(ESLog.DEBUG)) {
2650
- ESLog.d(TAG$4, '#-------onBackPressed---error------>>>>>');
2645
+ ESLog.d(TAG$5, '#-------onBackPressed---error------>>>>>');
2651
2646
  }
2652
2647
  }
2653
2648
  } else {
2654
2649
  if (ESLog.isLoggable(ESLog.DEBUG)) {
2655
- ESLog.d(TAG$4, '#-------dispatchInstanceBackPressed-----实例对象为空------>>>>>');
2650
+ ESLog.d(TAG$5, '#-------dispatchInstanceBackPressed-----实例对象为空------>>>>>');
2656
2651
  }
2657
2652
  }
2658
2653
  }
@@ -2677,7 +2672,7 @@ const ES_LIFECYCLE_ON_STOP = 7;
2677
2672
  const ES_LIFECYCLE_ON_SAVE_INSTANCE_SATE = 8;
2678
2673
  const ES_LIFECYCLE_ON_DESTROY = 9;
2679
2674
 
2680
- const TAG$3 = "ESRouter";
2675
+ const TAG$4 = "ESRouter";
2681
2676
 
2682
2677
  /**
2683
2678
  * router生命周期管理
@@ -2755,7 +2750,7 @@ class ESRouterLifecycleManager {
2755
2750
  }
2756
2751
  } else {
2757
2752
  if (ESLog.isLoggable(ESLog.DEBUG)) {
2758
- ESLog.d(TAG$3, '#-------onESRouterLifecycleChanged-----实例对象为空------>>>>>');
2753
+ ESLog.d(TAG$4, '#-------onESRouterLifecycleChanged-----实例对象为空------>>>>>');
2759
2754
  }
2760
2755
  }
2761
2756
  }
@@ -2772,7 +2767,7 @@ class ESRouterLifecycleManager {
2772
2767
  componentInstance.onESNewIntent(params);
2773
2768
  } else {
2774
2769
  if (ESLog.isLoggable(ESLog.DEBUG)) {
2775
- ESLog.d(TAG$3, '#-------onESRouterLifecycleNewIntent-----实例对象为空------>>>>>');
2770
+ ESLog.d(TAG$4, '#-------onESRouterLifecycleNewIntent-----实例对象为空------>>>>>');
2776
2771
  }
2777
2772
  }
2778
2773
  }
@@ -2784,7 +2779,7 @@ class ESRouterLifecycleManager {
2784
2779
 
2785
2780
  var ESRouterLifecycleManager$1 = new ESRouterLifecycleManager();
2786
2781
 
2787
- const TAG$2 = "ESRouter";
2782
+ const TAG$3 = "ESRouter";
2788
2783
 
2789
2784
  var ESRouter = {
2790
2785
 
@@ -2806,7 +2801,7 @@ var ESRouter = {
2806
2801
  //---------------------------返回键--------------------------------
2807
2802
  onESRouterBackPressed() {
2808
2803
  if (ESLog.isLoggable(ESLog.DEBUG)) {
2809
- ESLog.d(TAG$2, '#-------onESRouterBackPressed----->>>>>');
2804
+ ESLog.d(TAG$3, '#-------onESRouterBackPressed----->>>>>');
2810
2805
  }
2811
2806
  let router = this.$router;
2812
2807
  if (router) {
@@ -2817,7 +2812,7 @@ var ESRouter = {
2817
2812
  //----------------------------按键-------------------------------
2818
2813
  onESRouterDispatchKeyEvent(keyEvent) {
2819
2814
  if (ESLog.isLoggable(ESLog.DEBUG)) {
2820
- ESLog.d(TAG$2, '#-------onESRouterDispatchKeyEvent----->>>>>' + keyEvent);
2815
+ ESLog.d(TAG$3, '#-------onESRouterDispatchKeyEvent----->>>>>' + keyEvent);
2821
2816
  }
2822
2817
  let router = this.$router;
2823
2818
  if (router) {
@@ -2829,7 +2824,7 @@ var ESRouter = {
2829
2824
  //---------------------------生命周期--------------------------------
2830
2825
  onESRouterLifecycleChanged(event) {
2831
2826
  if (ESLog.isLoggable(ESLog.DEBUG)) {
2832
- ESLog.d(TAG$2, '#-------onESRouterLifecycleChanged----->>>>>' + event);
2827
+ ESLog.d(TAG$3, '#-------onESRouterLifecycleChanged----->>>>>' + event);
2833
2828
  }
2834
2829
  let router = this.$router;
2835
2830
  if (router) {
@@ -2841,7 +2836,7 @@ var ESRouter = {
2841
2836
  //---------------------------onNewIntent--------------------------------
2842
2837
  onESRouterLifecycleNewIntent(intent) {
2843
2838
  if (ESLog.isLoggable(ESLog.DEBUG)) {
2844
- ESLog.d(TAG$2, '#-------onESRouterLifecycleNewIntent----->>>>>' + intent);
2839
+ ESLog.d(TAG$3, '#-------onESRouterLifecycleNewIntent----->>>>>' + intent);
2845
2840
  }
2846
2841
  let router = this.$router;
2847
2842
  if (router) {
@@ -3098,6 +3093,67 @@ class ESPluginManager {
3098
3093
 
3099
3094
  var ESPluginManager$1 = new ESPluginManager();
3100
3095
 
3096
+ /**
3097
+ *
3098
+ */
3099
+ class ESEventBus {
3100
+ //
3101
+ _vueEventBusSupported = true;
3102
+
3103
+ init() {
3104
+ this._vue = new Vue();
3105
+ this._vueEventBusSupported = this.isVueEventBusSupported();
3106
+ if (ESLog.isLoggable(ESLog.DEBUG)) {
3107
+ ESLog.d('ESEventBus', '#-----init----->>>>>' + this._vueEventBusSupported);
3108
+ }
3109
+ return new Promise.resolve();
3110
+ }
3111
+
3112
+ isVueEventBusSupported() {
3113
+ return ESManager$1.getESSDKVersionCode() >= ES_SDK_VERSION_21;
3114
+ }
3115
+
3116
+ getVueEventBus() {
3117
+ return this._vue;
3118
+ }
3119
+
3120
+ $emit(event, args) {
3121
+ //vue
3122
+ if (this._vueEventBusSupported) {
3123
+ if (ESLog.isLoggable(ESLog.DEBUG)) {
3124
+ ESLog.d('ESEventBus', this._vue + '#---vue--$emit----->>>>>' + event);
3125
+ }
3126
+ this._vue.$emit(event, args);
3127
+ }
3128
+ //android
3129
+ else {
3130
+ if (ESLog.isLoggable(ESLog.DEBUG)) {
3131
+ ESLog.d('ESEventBus', '#---android--$emit----->>>>>' + event);
3132
+ }
3133
+ ESModule$1.sendESNativeMapEventAll('ESEventBusEvent', {
3134
+ event: event,
3135
+ args: args,
3136
+ });
3137
+ }
3138
+ }
3139
+
3140
+ $on(event, callback) {
3141
+ if (ESLog.isLoggable(ESLog.DEBUG)) {
3142
+ ESLog.d('ESEventBus', this._vue + '#---vue--$on----->>>>>' + event);
3143
+ }
3144
+ this._vue.$on(event, callback);
3145
+ }
3146
+
3147
+ $off(event, callback) {
3148
+ if (ESLog.isLoggable(ESLog.DEBUG)) {
3149
+ ESLog.d('ESEventBus', this._vue + '#---vue--$off----->>>>>' + event);
3150
+ }
3151
+ this._vue.$off(event, callback);
3152
+ }
3153
+ }
3154
+
3155
+ var ESEventBus$1 = new ESEventBus();
3156
+
3101
3157
  /**
3102
3158
  *
3103
3159
  */
@@ -3124,8 +3180,11 @@ class ES {
3124
3180
  ESMMapManager$1.init(),
3125
3181
  ESAudioManager$1.init(),
3126
3182
  ESAppManager$1.init(),
3183
+ ESEventBus$1.init(),
3127
3184
  ]))
3128
- } else {
3185
+ }
3186
+ //
3187
+ else {
3129
3188
  return Promise.reject('configuration can not be null!')
3130
3189
  }
3131
3190
  }
@@ -3787,7 +3846,7 @@ function ESAnimationViewComponent() {
3787
3846
  });
3788
3847
  }
3789
3848
 
3790
- const TAG$1 = "ESSeekBar";
3849
+ const TAG$2 = "ESSeekBar";
3791
3850
 
3792
3851
  var ESSeekBar = {
3793
3852
  render: function(){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('es-seek-bar-view-component',{ref:"es_seek_bar",attrs:{"secondProgress":_vm.secondaryProgress,"secondColor":_vm.secondaryColor,"backgroundColor":_vm.backgroundColor,"color":_vm.primaryColor,"cornerRadius":_vm.cornerRadius,"interceptKeyEvent":_vm.interceptKeyEvent,"listenProgress":_vm.listenProgress,"thumbColor":_vm.thumbColor},on:{"focus":_vm.onSeekBarFocusChanged}})},
@@ -3848,14 +3907,14 @@ staticRenderFns: [],
3848
3907
  methods: {
3849
3908
  show(value) {
3850
3909
  if (ESLog.isLoggable(ESLog.DEBUG)) {
3851
- ESLog.d(TAG$1, '--------show------>>>>>' + value);
3910
+ ESLog.d(TAG$2, '--------show------>>>>>' + value);
3852
3911
  }
3853
3912
  this.$refs.es_seek_bar.show(value);
3854
3913
  },
3855
3914
  setProgress(progress) {
3856
3915
  if (this.seekBarMode === ES_SEEK_BAR_MODE_PROGRESS) {
3857
3916
  if (ESLog.isLoggable(ESLog.DEBUG)) {
3858
- ESLog.d(TAG$1, '--------setProgress------>>>>>' + progress);
3917
+ ESLog.d(TAG$2, '--------setProgress------>>>>>' + progress);
3859
3918
  }
3860
3919
  this.progress = progress;
3861
3920
  this.$refs.es_seek_bar.setProgress(progress);
@@ -3864,7 +3923,7 @@ staticRenderFns: [],
3864
3923
  setMaxProgress(maxProgress) {
3865
3924
  if (this.seekBarMode === ES_SEEK_BAR_MODE_PROGRESS) {
3866
3925
  if (ESLog.isLoggable(ESLog.DEBUG)) {
3867
- ESLog.d(TAG$1, '--------setMaxProgress------>>>>>' + maxProgress);
3926
+ ESLog.d(TAG$2, '--------setMaxProgress------>>>>>' + maxProgress);
3868
3927
  }
3869
3928
  this.maxProgress = maxProgress;
3870
3929
  this.$refs.es_seek_bar.setMaxProgress(maxProgress);
@@ -3899,7 +3958,7 @@ staticRenderFns: [],
3899
3958
  }
3900
3959
  this.$refs.es_seek_bar.setProgress(this.progress);
3901
3960
  if (ESLog.isLoggable(ESLog.DEBUG)) {
3902
- ESLog.d(TAG$1, '----Seek----setProgress------>>>>>' + this.progress);
3961
+ ESLog.d(TAG$2, '----Seek----setProgress------>>>>>' + this.progress);
3903
3962
  }
3904
3963
  if (this.onProgressChanged) {
3905
3964
  let now = new Date().getTime();
@@ -3912,13 +3971,13 @@ staticRenderFns: [],
3912
3971
  //
3913
3972
  else {
3914
3973
  if (ESLog.isLoggable(ESLog.DEBUG)) {
3915
- ESLog.d(TAG$1, '--------SeekBarNotFocused------>>>>>');
3974
+ ESLog.d(TAG$2, '--------SeekBarNotFocused------>>>>>');
3916
3975
  }
3917
3976
  }
3918
3977
  },
3919
3978
  stopSeek() {
3920
3979
  if (ESLog.isLoggable(ESLog.DEBUG)) {
3921
- ESLog.d(TAG$1, '--------stopSeek------>>>>>');
3980
+ ESLog.d(TAG$2, '--------stopSeek------>>>>>');
3922
3981
  }
3923
3982
  this.seekCount = 0;
3924
3983
  this.seekBarMode = ES_SEEK_BAR_MODE_PROGRESS;
@@ -3927,7 +3986,7 @@ staticRenderFns: [],
3927
3986
  onSeekBarFocusChanged(e) {
3928
3987
  this.isSeekBarFocused = e.isFocused;
3929
3988
  if (ESLog.isLoggable(ESLog.DEBUG)) {
3930
- ESLog.d(TAG$1, '--------onSeekBarFocusChanged------>>>>>' + this.isSeekBarFocused);
3989
+ ESLog.d(TAG$2, '--------onSeekBarFocusChanged------>>>>>' + this.isSeekBarFocused);
3931
3990
  }
3932
3991
  this.$emit("onFocusChanged", e);
3933
3992
  },
@@ -4324,10 +4383,33 @@ const ES_NETWORK_INFO_TYPE_MOBILE = 0;
4324
4383
  const ES_NETWORK_INFO_TYPE_WIFI = 1;
4325
4384
  const ES_NETWORK_INFO_TYPE_ETHERNET = 9;
4326
4385
 
4386
+ const TAG$1 = "ESEventBus";
4387
+
4388
+ var ESEventBusEvent = {
4389
+ mounted() {
4390
+ ESApp.$on('ESEventBusEvent', this.onESEventBusEvent);
4391
+ },
4392
+ beforeDestroy() {
4393
+ ESApp.$off('ESEventBusEvent', this.onESEventBusEvent);
4394
+ },
4395
+ methods: {
4396
+ onESEventBusEvent(event) {
4397
+ if (ESLog.isLoggable(ESLog.DEBUG)) {
4398
+ ESLog.d(TAG$1, '#-------onESEventBusEvent----->>>>>' + JSON.stringify(event));
4399
+ }
4400
+ if (event && event.event) {
4401
+ let eventName = event.event;
4402
+ let eventArgs = event.args;
4403
+ ESEventBus$1.getVueEventBus().$emit(eventName, eventArgs);
4404
+ }
4405
+ },
4406
+ },
4407
+ };
4408
+
4327
4409
  const TAG = 'ESApplication';
4328
4410
 
4329
4411
  var ESApplication = {
4330
- mixins: [ESRouter],
4412
+ mixins: [ESRouter, ESEventBusEvent],
4331
4413
  data() {
4332
4414
  return {
4333
4415
  appInitProps: {},
@@ -4660,4 +4742,4 @@ const ES_FAST_OUT_LINEAR_IN_INTERPOLATOR = 10;
4660
4742
  const ES_FAST_OUT_SLOW_IN_INTERPOLATOR = 11;
4661
4743
  const ES_PATH_INTERPOLATOR = 12;
4662
4744
 
4663
- 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, ESDevelopManager$1 as ESDevelopManager, ESDevelopModule$1 as ESDevelopModule, ESDeviceManager$1 as ESDeviceManager, ESDeviceModule$1 as ESDeviceModule, ESDisplayManager$1 as ESDisplayManager, 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_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 };
4745
+ 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, ESDevelopManager$1 as ESDevelopManager, ESDevelopModule$1 as ESDevelopModule, ESDeviceManager$1 as ESDeviceManager, ESDeviceModule$1 as ESDeviceModule, ESDisplayManager$1 as ESDisplayManager, ESEventBus$1 as ESEventBus, 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_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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@extscreen/es-core",
3
- "version": "2.2.34",
3
+ "version": "2.2.40",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {