@dao42/d42paas-front 0.7.53 → 0.7.55
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/DaoPaaS.es.js +2 -0
- package/dist/DaoPaaS.umd.js +102 -102
- package/dist/editor.d.ts +19 -0
- package/package.json +1 -1
package/dist/DaoPaaS.es.js
CHANGED
|
@@ -44782,9 +44782,11 @@ class DaoPaaS {
|
|
|
44782
44782
|
messageAndErrorInjection() {
|
|
44783
44783
|
dockerState.subscribe((state2) => state2, (pre, next2) => {
|
|
44784
44784
|
this.trigger(lodash$2.exports.pick(pre, ["dockerStatus"]), lodash$2.exports.pick(next2, ["dockerStatus"]));
|
|
44785
|
+
this.trigger(lodash$2.exports.pick(pre, ["lan"]), lodash$2.exports.pick(next2, ["dockerStatus"]));
|
|
44785
44786
|
});
|
|
44786
44787
|
oTStore.subscribe((state2) => state2, (pre, next2) => {
|
|
44787
44788
|
this.trigger(lodash$2.exports.pick(pre, ["playgroundStatus"]), lodash$2.exports.pick(next2, ["playgroundStatus"]));
|
|
44789
|
+
this.trigger(lodash$2.exports.pick(pre.dockerInfo, ["language"]), lodash$2.exports.pick(next2.dockerInfo, ["language"]));
|
|
44788
44790
|
});
|
|
44789
44791
|
ErrorMsgState.subscribe((state2) => state2, (next2, pre) => {
|
|
44790
44792
|
this.trigger("error", lodash$2.exports.pick(next2, "message"));
|