@extscreen/es-core 2.3.0 → 2.3.2

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 +12 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -4637,6 +4637,9 @@ var ESApplication = {
4637
4637
  },
4638
4638
  methods: {
4639
4639
  _initES() {
4640
+ if (ESLog.isLoggable(ESLog.DEBUG)) {
4641
+ ESLog.d(TAG, '---------_initES----invoke------>>>>');
4642
+ }
4640
4643
  Promise.resolve()
4641
4644
  .then(() => ES$1.init({
4642
4645
  router: this.$router
@@ -4651,6 +4654,9 @@ var ESApplication = {
4651
4654
  );
4652
4655
  },
4653
4656
  _initESApplication() {
4657
+ if (ESLog.isLoggable(ESLog.DEBUG)) {
4658
+ ESLog.d(TAG, '---------_initESApplication----invoke------>>>>');
4659
+ }
4654
4660
  ESLaunchManager$1.setRouteListener(this._routeListener);
4655
4661
  this._initESAppParams();
4656
4662
  },
@@ -4658,11 +4664,14 @@ var ESApplication = {
4658
4664
  this.onLaunchESPage(url, params);
4659
4665
  },
4660
4666
  _initESAppParams() {
4667
+ if (ESLog.isLoggable(ESLog.DEBUG)) {
4668
+ ESLog.d(TAG, '---------_initESAppParams----invoke------>>>>');
4669
+ }
4661
4670
  //
4662
- this.appInitProps = ESApp$1.$options.$superProps;
4671
+ this.appInitProps = ESApp$1.getInstance().$options.$superProps;
4663
4672
  //
4664
- this.appInitUrl = ESApp$1.$options.$superProps.url;
4665
- this.appInitParams = ESApp$1.$options.$superProps.params;
4673
+ this.appInitUrl = ESApp$1.getInstance().$options.$superProps.url;
4674
+ this.appInitParams = ESApp$1.getInstance().$options.$superProps.params;
4666
4675
 
4667
4676
  if (ESLog.isLoggable(ESLog.DEBUG)) {
4668
4677
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@extscreen/es-core",
3
- "version": "2.3.0",
3
+ "version": "2.3.2",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {