@mml-io/mml-web-client 0.0.0-experimental-b41f621-20250714 → 0.0.0-experimental-c11afa5-20250723
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/build/index.js +8 -8
- package/build/index.js.map +2 -2
- package/package.json +5 -5
package/build/index.js
CHANGED
|
@@ -5191,14 +5191,14 @@
|
|
|
5191
5191
|
this.dispose();
|
|
5192
5192
|
}
|
|
5193
5193
|
});
|
|
5194
|
-
this.debugLabel = document.createElement("label");
|
|
5195
|
-
this.debugLabel.textContent = "Debug loading";
|
|
5196
|
-
this.debugLabel.style.fontFamily = "sans-serif";
|
|
5197
|
-
this.debugLabel.style.padding = "5px";
|
|
5198
|
-
this.debugLabel.style.display = "inline-block";
|
|
5199
|
-
this.debugLabel.style.userSelect = "none";
|
|
5200
|
-
this.debugLabel.append(this.debugCheckbox);
|
|
5201
5194
|
if (this.showDebugLoading) {
|
|
5195
|
+
this.debugLabel = document.createElement("label");
|
|
5196
|
+
this.debugLabel.textContent = "Debug loading";
|
|
5197
|
+
this.debugLabel.style.fontFamily = "sans-serif";
|
|
5198
|
+
this.debugLabel.style.padding = "5px";
|
|
5199
|
+
this.debugLabel.style.display = "inline-block";
|
|
5200
|
+
this.debugLabel.style.userSelect = "none";
|
|
5201
|
+
this.debugLabel.append(this.debugCheckbox);
|
|
5202
5202
|
this.progressDebugView.append(this.debugLabel);
|
|
5203
5203
|
}
|
|
5204
5204
|
this.progressDebugElement = document.createElement("pre");
|
|
@@ -8240,7 +8240,7 @@
|
|
|
8240
8240
|
this.element.style.width = "100%";
|
|
8241
8241
|
this.element.style.height = "100%";
|
|
8242
8242
|
this.element.style.position = "relative";
|
|
8243
|
-
this.showDebugLoading = options.showDebugLoading
|
|
8243
|
+
this.showDebugLoading = options.showDebugLoading ?? true;
|
|
8244
8244
|
this.createLoadingProgressBar();
|
|
8245
8245
|
this.configureWindowStyling();
|
|
8246
8246
|
}
|