@dosgato/dialog 1.1.4 → 1.1.5

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.
Files changed (2) hide show
  1. package/dist/Dialog.svelte +11 -0
  2. package/package.json +1 -1
@@ -106,6 +106,11 @@ $: describedby = [title ? labelid : undefined, descid].filter(isNotBlank).join('
106
106
  max-width: 2000px;
107
107
  }
108
108
 
109
+ section {
110
+ container-type: inline-size;
111
+ container-name: dosgato-dialog-section
112
+ }
113
+
109
114
  @media (max-width: 430px) {
110
115
  section.tiny, section.small, section.normal, section.large, section.xl {
111
116
  width: 95vw;
@@ -182,6 +187,12 @@ $: describedby = [title ? labelid : undefined, descid].filter(isNotBlank).join('
182
187
  }
183
188
  }
184
189
 
190
+ @container dosgato-dialog-section (max-width: 350px) {
191
+ footer.actions {
192
+ padding: 0.5em;
193
+ }
194
+ }
195
+
185
196
  .header-buttons {
186
197
  position: absolute;
187
198
  top: 0.1em;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dosgato/dialog",
3
3
  "description": "A component library for building forms that edit a JSON document.",
4
- "version": "1.1.4",
4
+ "version": "1.1.5",
5
5
  "scripts": {
6
6
  "prepublishOnly": "svelte-package",
7
7
  "dev": "vite dev --force",