@extscreen/es-core 2.2.18 → 2.2.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +16 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -2722,6 +2722,10 @@ var ESPageLifecycle = {
|
|
2722
2722
|
this.onESStart();
|
2723
2723
|
}
|
2724
2724
|
//
|
2725
|
+
else if (event === 'onRestoreInstanceSate') {
|
2726
|
+
this.onESRestoreInstanceState(params);
|
2727
|
+
}
|
2728
|
+
//
|
2725
2729
|
else if (event === 'onResume') {
|
2726
2730
|
this.onESResume();
|
2727
2731
|
}
|
@@ -2730,6 +2734,10 @@ var ESPageLifecycle = {
|
|
2730
2734
|
this.onESPause();
|
2731
2735
|
}
|
2732
2736
|
//
|
2737
|
+
else if (event === 'onSaveInstanceSate') {
|
2738
|
+
this.onESSaveInstanceState(params);
|
2739
|
+
}
|
2740
|
+
//
|
2733
2741
|
else if (event === 'onStop') {
|
2734
2742
|
this.onESStop();
|
2735
2743
|
}
|
@@ -4282,6 +4290,10 @@ var ESLifecycleMixin = {
|
|
4282
4290
|
this.onESStart();
|
4283
4291
|
}
|
4284
4292
|
//
|
4293
|
+
else if (event === 'onRestoreInstanceSate') {
|
4294
|
+
this.onESRestoreInstanceState(params);
|
4295
|
+
}
|
4296
|
+
//
|
4285
4297
|
else if (event === 'onResume') {
|
4286
4298
|
this.onESResume();
|
4287
4299
|
}
|
@@ -4290,6 +4302,10 @@ var ESLifecycleMixin = {
|
|
4290
4302
|
this.onESPause();
|
4291
4303
|
}
|
4292
4304
|
//
|
4305
|
+
else if (event === 'onSaveInstanceSate') {
|
4306
|
+
this.onESSaveInstanceState(params);
|
4307
|
+
}
|
4308
|
+
//
|
4293
4309
|
else if (event === 'onStop') {
|
4294
4310
|
this.onESStop();
|
4295
4311
|
}
|