@melodicdev/components 1.0.20 → 1.0.22

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.
@@ -10265,6 +10265,7 @@ const cardStyles = () => css`
10265
10265
  background-color: var(--ml-color-surface);
10266
10266
  border-radius: var(--ml-radius-lg);
10267
10267
  overflow: hidden;
10268
+ height: 100%;
10268
10269
  }
10269
10270
 
10270
10271
  .ml-card--default {
@@ -18661,6 +18662,9 @@ var DialogComponent = class DialogComponent$1 {
18661
18662
  this._dialogID = newID();
18662
18663
  this._registered = false;
18663
18664
  }
18665
+ onCreate() {
18666
+ this.registerDialog();
18667
+ }
18664
18668
  registerDialog() {
18665
18669
  if (this._registered) return;
18666
18670
  const dialogEl = this.elementRef.shadowRoot?.querySelector("dialog");