@dosgato/dialog 1.1.5 → 1.1.6

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.
@@ -106,11 +106,6 @@ $: 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
-
114
109
  @media (max-width: 430px) {
115
110
  section.tiny, section.small, section.normal, section.large, section.xl {
116
111
  width: 95vw;
@@ -172,25 +167,17 @@ $: describedby = [title ? labelid : undefined, descid].filter(isNotBlank).join('
172
167
  border-bottom: 0px !important;
173
168
  }
174
169
 
175
- footer.actions {
176
- container-type: inline-size;
177
- container-name: dosgato-dialog-actions
178
- }
179
-
180
170
  footer.actions :global(.prev) {
181
171
  margin-right: auto;
182
172
  }
183
173
 
184
- @container dosgato-dialog-actions (max-width: 450px) {
185
- footer.actions :global(button span.prev-next) {
186
- display: none;
187
- }
188
- }
189
-
190
- @container dosgato-dialog-section (max-width: 350px) {
174
+ @media (max-width: 475px) {
191
175
  footer.actions {
192
176
  padding: 0.5em;
193
177
  }
178
+ footer.actions :global(button span.prev-next) {
179
+ display: none;
180
+ }
194
181
  }
195
182
 
196
183
  .header-buttons {
@@ -242,6 +242,7 @@ $: void updateSelected($value);
242
242
  display: flex;
243
243
  align-items: flex-start;
244
244
  margin-top: 0.2em;
245
+ gap: 0.3em;
245
246
  }
246
247
  :global([data-eq~="400px"]) .dialog-chooser-entry {
247
248
  flex-direction: column;
@@ -252,7 +253,7 @@ $: void updateSelected($value);
252
253
  border: 0;
253
254
  background-color: var(--dg-button-bg, #501214);
254
255
  color: var(--dg-button-text, #fff);
255
- padding: 0.5em 1em;
256
+ padding: 0.4em 1em;
256
257
  font-size: 0.8em;
257
258
  }
258
259
  .dialog-chooser-entry-input {
@@ -260,7 +261,6 @@ $: void updateSelected($value);
260
261
  flex-grow: 1;
261
262
  }
262
263
  :global([data-eq~="400px"]) .dialog-chooser-entry-input {
263
- margin-bottom: 0.2em;
264
264
  width: 100%;
265
265
  }
266
266
  .dialog-chooser-entry-input input {
@@ -159,7 +159,7 @@ function onKeyDown(e) {
159
159
  border: 0px;
160
160
  background-color: var(--dg-button-bg, #501214);
161
161
  color: var(--dg-button-text, #fff);
162
- padding: 0.5em 1em;
162
+ padding: 0.4em 1em;
163
163
  font-size: 0.8em;
164
164
  }
165
165
  section {
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.5",
4
+ "version": "1.1.6",
5
5
  "scripts": {
6
6
  "prepublishOnly": "svelte-package",
7
7
  "dev": "vite dev --force",