@dao42/d42paas-front 0.5.58 → 0.5.62
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 +8 -34
- package/dist/DaoPaaS.umd.js +228 -228
- package/package.json +1 -1
package/dist/DaoPaaS.es.js
CHANGED
|
@@ -187604,31 +187604,6 @@ ${JSON.stringify(change, void 0, 4)}`);
|
|
|
187604
187604
|
__exportStar(monacoServices, exports2);
|
|
187605
187605
|
__exportStar(monacoConverter, exports2);
|
|
187606
187606
|
})(lib);
|
|
187607
|
-
function WorkerWrapper$4() {
|
|
187608
|
-
return new Worker("/assets/editor.worker.43309ac9.js", {
|
|
187609
|
-
"type": "module"
|
|
187610
|
-
});
|
|
187611
|
-
}
|
|
187612
|
-
function WorkerWrapper$3() {
|
|
187613
|
-
return new Worker("/assets/json.worker.66c12891.js", {
|
|
187614
|
-
"type": "module"
|
|
187615
|
-
});
|
|
187616
|
-
}
|
|
187617
|
-
function WorkerWrapper$2() {
|
|
187618
|
-
return new Worker("/assets/css.worker.5157db2f.js", {
|
|
187619
|
-
"type": "module"
|
|
187620
|
-
});
|
|
187621
|
-
}
|
|
187622
|
-
function WorkerWrapper$1() {
|
|
187623
|
-
return new Worker("/assets/html.worker.3f2697f1.js", {
|
|
187624
|
-
"type": "module"
|
|
187625
|
-
});
|
|
187626
|
-
}
|
|
187627
|
-
function WorkerWrapper() {
|
|
187628
|
-
return new Worker("/assets/ts.worker.d75e32f4.js", {
|
|
187629
|
-
"type": "module"
|
|
187630
|
-
});
|
|
187631
|
-
}
|
|
187632
187607
|
const EditorLayout = newStyled.div`
|
|
187633
187608
|
width: 100%;
|
|
187634
187609
|
.contentWidgets {
|
|
@@ -187675,21 +187650,20 @@ const ContentLayout = newStyled.div`
|
|
|
187675
187650
|
${(props2) => props2.userList.map((u2) => "." + u2.role + "-selection{background:" + u2.color + "a6;color: #fff;width: 2px !important;}")}
|
|
187676
187651
|
`;
|
|
187677
187652
|
self.MonacoEnvironment = {
|
|
187678
|
-
|
|
187679
|
-
getWorker(_2, label) {
|
|
187653
|
+
getWorkerUrl(_moduleId, label) {
|
|
187680
187654
|
if (label === "json") {
|
|
187681
|
-
return
|
|
187655
|
+
return "https://develop.1024paas.com/assets/json.worker.bundle.js";
|
|
187682
187656
|
}
|
|
187683
|
-
if (label === "css"
|
|
187684
|
-
return
|
|
187657
|
+
if (label === "css") {
|
|
187658
|
+
return "https://develop.1024paas.com/assets/css.worker.bundle.js";
|
|
187685
187659
|
}
|
|
187686
|
-
if (label === "html"
|
|
187687
|
-
return
|
|
187660
|
+
if (label === "html") {
|
|
187661
|
+
return "https://develop.1024paas.com/assets/html.worker.bundle.js";
|
|
187688
187662
|
}
|
|
187689
187663
|
if (label === "typescript" || label === "javascript") {
|
|
187690
|
-
return
|
|
187664
|
+
return "https://develop.1024paas.com/assets/ts.worker.bundle.js";
|
|
187691
187665
|
}
|
|
187692
|
-
return
|
|
187666
|
+
return "https://develop.1024paas.com/assets/editor.worker.43309ac9.js";
|
|
187693
187667
|
}
|
|
187694
187668
|
};
|
|
187695
187669
|
const APP_DIR = "/home/runner/app";
|