@nine-lab/nine-mu 0.1.49 → 0.1.51

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.
@@ -814,13 +814,12 @@
814
814
  outline: none;
815
815
  }
816
816
 
817
- --dialog { --dialog-width: 90vw; --dialog-height: 85vh; }
818
817
  dialog { width: calc(100% - 50px); height: calc(100% - 50px); }
819
818
  .main-layout { width: 100%; height: 100%; display: flex; flex-direction: column; }
820
819
  .diff-area { flex: 1; min-height: 0; }
821
820
  .footer {
822
821
  display: flex; justify-content: flex-end; gap: 10px;
823
- padding: 12px; background: #f9f9f9; border-top: 1px solid #eee;
822
+ padding: 12px;
824
823
  }
825
824
  .btn { padding: 8px 20px; cursor: pointer; border-radius: 4px; border: 1px solid #ccc; font-weight: bold; }
826
825
  .btn-confirm { background: #007bff; color: white; border: none; }
package/dist/nine-mu.js CHANGED
@@ -183,7 +183,7 @@ render_fn = function() {
183
183
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
184
184
  this.shadowRoot.innerHTML = `
185
185
  <style>
186
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.48"}/dist/css/nine-mu.css";
186
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.50"}/dist/css/nine-mu.css";
187
187
  ${customImport}
188
188
  </style>
189
189
  <div class="wrapper">
@@ -26396,7 +26396,7 @@ class NineDiff extends HTMLElement {
26396
26396
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
26397
26397
  this.shadowRoot.innerHTML = `
26398
26398
  <style>
26399
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.48"}/dist/css/nine-mu.css";
26399
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.50"}/dist/css/nine-mu.css";
26400
26400
  ${customImport}
26401
26401
  </style>
26402
26402
 
@@ -26461,7 +26461,7 @@ class NineDiffPopup extends HTMLElement {
26461
26461
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
26462
26462
  this.shadowRoot.innerHTML = `
26463
26463
  <style>
26464
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.48"}/dist/css/nine-mu.css";
26464
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.50"}/dist/css/nine-mu.css";
26465
26465
  ${customImport}
26466
26466
  </style>
26467
26467
 
@@ -26626,11 +26626,9 @@ _init = new WeakMap();
26626
26626
  _onMouseDown = new WeakMap();
26627
26627
  _onMouseMove = new WeakMap();
26628
26628
  _onMouseUp = new WeakMap();
26629
- if (!customElements.get("nine-dialog")) {
26630
- customElements.define("nine-dialog", NineDialog);
26631
- }
26629
+ if (!customElements.get("nine-dialog")) ;
26632
26630
  const NineMu = {
26633
- version: "0.1.48",
26631
+ version: "0.1.50",
26634
26632
  init: (config) => {
26635
26633
  trace.log("🛠️ Nine-Mu Engine initialized", config);
26636
26634
  }