@2112-lab/central-plant 0.1.98 → 0.2.1
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/bundle/index.js +2 -2
- package/dist/cjs/src/core/centralPlant.js +1 -1
- package/dist/cjs/src/managers/system/performanceMonitorManager.js +1 -1
- package/dist/esm/src/core/centralPlant.js +1 -1
- package/dist/esm/src/managers/system/performanceMonitorManager.js +1 -1
- package/package.json +1 -1
package/dist/bundle/index.js
CHANGED
|
@@ -6645,7 +6645,7 @@ var PerformanceMonitorManager = /*#__PURE__*/function (_BaseDisposable) {
|
|
|
6645
6645
|
value: function createContainer() {
|
|
6646
6646
|
this.container = document.createElement('div');
|
|
6647
6647
|
this.container.id = 'performance-monitor';
|
|
6648
|
-
this.container.style.cssText = "\n position: fixed;\n bottom: 30px;\n
|
|
6648
|
+
this.container.style.cssText = "\n position: fixed;\n bottom: 30px;\n left: 30px;\n z-index: 10000;\n display: flex;\n flex-direction: column;\n gap: 5px;\n pointer-events: none;\n font-family: 'Courier New', monospace;\n font-size: 10px;\n ";
|
|
6649
6649
|
document.body.appendChild(this.container);
|
|
6650
6650
|
|
|
6651
6651
|
// Register DOM element for cleanup
|
|
@@ -37233,7 +37233,7 @@ var CentralPlant = /*#__PURE__*/function (_BaseDisposable) {
|
|
|
37233
37233
|
* Initialize the CentralPlant manager
|
|
37234
37234
|
*
|
|
37235
37235
|
* @constructor
|
|
37236
|
-
* @version 0.1
|
|
37236
|
+
* @version 0.2.1
|
|
37237
37237
|
* @updated 2025-10-22
|
|
37238
37238
|
*
|
|
37239
37239
|
* @description Creates a new CentralPlant instance and initializes internal managers and utilities.
|
|
@@ -19,7 +19,7 @@ var CentralPlant = /*#__PURE__*/function (_BaseDisposable) {
|
|
|
19
19
|
* Initialize the CentralPlant manager
|
|
20
20
|
*
|
|
21
21
|
* @constructor
|
|
22
|
-
* @version 0.1
|
|
22
|
+
* @version 0.2.1
|
|
23
23
|
* @updated 2025-10-22
|
|
24
24
|
*
|
|
25
25
|
* @description Creates a new CentralPlant instance and initializes internal managers and utilities.
|
|
@@ -75,7 +75,7 @@ var PerformanceMonitorManager = /*#__PURE__*/function (_BaseDisposable) {
|
|
|
75
75
|
value: function createContainer() {
|
|
76
76
|
this.container = document.createElement('div');
|
|
77
77
|
this.container.id = 'performance-monitor';
|
|
78
|
-
this.container.style.cssText = "\n position: fixed;\n bottom: 30px;\n
|
|
78
|
+
this.container.style.cssText = "\n position: fixed;\n bottom: 30px;\n left: 30px;\n z-index: 10000;\n display: flex;\n flex-direction: column;\n gap: 5px;\n pointer-events: none;\n font-family: 'Courier New', monospace;\n font-size: 10px;\n ";
|
|
79
79
|
document.body.appendChild(this.container);
|
|
80
80
|
|
|
81
81
|
// Register DOM element for cleanup
|
|
@@ -15,7 +15,7 @@ var CentralPlant = /*#__PURE__*/function (_BaseDisposable) {
|
|
|
15
15
|
* Initialize the CentralPlant manager
|
|
16
16
|
*
|
|
17
17
|
* @constructor
|
|
18
|
-
* @version 0.1
|
|
18
|
+
* @version 0.2.1
|
|
19
19
|
* @updated 2025-10-22
|
|
20
20
|
*
|
|
21
21
|
* @description Creates a new CentralPlant instance and initializes internal managers and utilities.
|
|
@@ -71,7 +71,7 @@ var PerformanceMonitorManager = /*#__PURE__*/function (_BaseDisposable) {
|
|
|
71
71
|
value: function createContainer() {
|
|
72
72
|
this.container = document.createElement('div');
|
|
73
73
|
this.container.id = 'performance-monitor';
|
|
74
|
-
this.container.style.cssText = "\n position: fixed;\n bottom: 30px;\n
|
|
74
|
+
this.container.style.cssText = "\n position: fixed;\n bottom: 30px;\n left: 30px;\n z-index: 10000;\n display: flex;\n flex-direction: column;\n gap: 5px;\n pointer-events: none;\n font-family: 'Courier New', monospace;\n font-size: 10px;\n ";
|
|
75
75
|
document.body.appendChild(this.container);
|
|
76
76
|
|
|
77
77
|
// Register DOM element for cleanup
|