@progressiveui/styles 11.0.10 → 11.0.11

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [11.0.11](https://github.com/Polyxo/pui/compare/@progressiveui/styles@11.0.10...@progressiveui/styles@11.0.11) (2026-01-18)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **Modal:** correct naming ([f7b972b](https://github.com/Polyxo/pui/commit/f7b972b4912bdc5b81a57637ab93edf9f144a07a))
12
+
13
+
14
+
15
+
16
+
6
17
  # 10.30.0 (2024-10-30)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progressiveui/styles",
3
3
  "description": "Styles for the Progressive UI Design System",
4
- "version": "11.0.10",
4
+ "version": "11.0.11",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Robert Gühne <polyxo.de>",
7
7
  "homepage": "https://www.polyxo.de",
@@ -35,5 +35,5 @@
35
35
  "@carbon/test-utils": "^10.3.0",
36
36
  "css": "^3.0.0"
37
37
  },
38
- "gitHead": "240d128ee95e59d457c54348e3a71ec6dc80f398"
38
+ "gitHead": "a99c63996bdce5473c35de5a0fdb8bb09f6c6fbc"
39
39
  }
@@ -272,6 +272,14 @@ $modal-footer-background-color: $layer-primary !default; //TODO use $layer token
272
272
  }
273
273
  }
274
274
 
275
+ .#{$prefix}--modal--desktop-dialog {
276
+ @include breakpoint-up("md") {
277
+ .#{$prefix}--modal-container {
278
+ max-height: 85vh;
279
+ }
280
+ }
281
+ }
282
+
275
283
  .#{$prefix}--modal--scroll-inside {
276
284
  .#{$prefix}--modal-content {
277
285
  overflow-y: auto;
@@ -288,16 +296,13 @@ $modal-footer-background-color: $layer-primary !default; //TODO use $layer token
288
296
  align-self: center;
289
297
  width: 100%;
290
298
  height: 100%;
291
- border-radius: 0;
292
299
  }
293
300
  .#{$prefix}--modal-container {
294
301
  width: 100%;
295
302
  height: 100%;
296
- border-radius: 0;
297
303
  max-width: 100%;
298
304
  width: 100%;
299
305
  height: 100%;
300
- max-height: 85vh;
301
306
  }
302
307
  }
303
308
  }