@thepassle/app-tools 0.8.0 → 0.8.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/dialog/index.js CHANGED
@@ -136,7 +136,7 @@ export class Dialog extends EventTarget {
136
136
  parameters,
137
137
  }
138
138
  document.body.appendChild(this.__dialog);
139
-
139
+
140
140
  log(`Openening dialog "${id}"`, this.context);
141
141
  this.__dialog.setAttribute('opening', '');
142
142
  this.dispatchEvent(new DialogStateEvent('opening', this.context));
package/dialog/utils.js CHANGED
@@ -14,6 +14,11 @@ export function setupGlobalDialogStyles() {
14
14
  overflow: hidden;
15
15
  }
16
16
 
17
+ dialog[${APP_TOOLS}][version="${VERSION}"]:modal {
18
+ max-width: 100%;
19
+ max-height: 100%;
20
+ }
21
+
17
22
  dialog[${APP_TOOLS}][version="${VERSION}"] {
18
23
  pointer-events: none;
19
24
  inset: 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thepassle/app-tools",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "type": "module",