@dao42/d42paas-front 0.5.60 → 0.5.61

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.
@@ -187675,6 +187675,21 @@ const ContentLayout = newStyled.div`
187675
187675
  ${(props2) => props2.userList.map((u2) => "." + u2.role + "-selection{background:" + u2.color + "a6;color: #fff;width: 2px !important;}")}
187676
187676
  `;
187677
187677
  self.MonacoEnvironment = {
187678
+ getWorkerUrl(_moduleId, label) {
187679
+ if (label === "json") {
187680
+ return "./https://develop.1024paas.com/assets/json.worker.bundle.js";
187681
+ }
187682
+ if (label === "css") {
187683
+ return "./https://develop.1024paas.com/assets/css.worker.bundle.js";
187684
+ }
187685
+ if (label === "html") {
187686
+ return "./https://develop.1024paas.com/assets/html.worker.bundle.js";
187687
+ }
187688
+ if (label === "typescript" || label === "javascript") {
187689
+ return "./https://develop.1024paas.com/assets/ts.worker.bundle.js";
187690
+ }
187691
+ return "./https://develop.1024paas.com/assets/editor.worker.43309ac9.js";
187692
+ },
187678
187693
  getWorker(_2, label) {
187679
187694
  if (label === "json") {
187680
187695
  return new WorkerWrapper$3();