@rettangoli/ui 0.1.6 → 0.1.7

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.
@@ -333,14 +333,18 @@ var rettangoli=(()=>{function a(i,...t){let e="";return i.forEach((s,o)=>{e+=s+(
333
333
  :host([sh]:not([sv])) {
334
334
  overflow-x: scroll;
335
335
  flex-wrap: nowrap;
336
+ min-width: 0;
336
337
  }
337
338
  :host([sv]:not([sh])) {
338
339
  overflow-y: scroll;
339
340
  flex-wrap: nowrap;
341
+ min-height: 0;
340
342
  }
341
343
  :host([sh][sv]) {
342
344
  overflow: scroll;
343
345
  flex-wrap: nowrap;
346
+ min-height: 0;
347
+ min-width: 0;
344
348
  }
345
349
  :host([overflow="hidden"]) {
346
350
  overflow: hidden;
@@ -333,14 +333,18 @@ var rettangoli=(()=>{var ei=Object.defineProperty;var V=(e,t)=>{for(var r in t)e
333
333
  :host([sh]:not([sv])) {
334
334
  overflow-x: scroll;
335
335
  flex-wrap: nowrap;
336
+ min-width: 0;
336
337
  }
337
338
  :host([sv]:not([sh])) {
338
339
  overflow-y: scroll;
339
340
  flex-wrap: nowrap;
341
+ min-height: 0;
340
342
  }
341
343
  :host([sh][sv]) {
342
344
  overflow: scroll;
343
345
  flex-wrap: nowrap;
346
+ min-height: 0;
347
+ min-width: 0;
344
348
  }
345
349
  :host([overflow="hidden"]) {
346
350
  overflow: hidden;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rettangoli/ui",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "A UI component library for building web interfaces.",
5
5
  "main": "dist/rettangoli-esm.min.js",
6
6
  "type": "module",
@@ -5,18 +5,22 @@ export default css`
5
5
  :host([sh]:not([sv])) {
6
6
  overflow-x: scroll;
7
7
  flex-wrap: nowrap;
8
+ min-width: 0;
8
9
  }
9
10
  :host([sv]:not([sh])) {
10
11
  overflow-y: scroll;
11
12
  flex-wrap: nowrap;
13
+ min-height: 0;
12
14
  }
13
15
  :host([sh][sv]) {
14
16
  overflow: scroll;
15
17
  flex-wrap: nowrap;
18
+ min-height: 0;
19
+ min-width: 0;
16
20
  }
17
21
  :host([overflow="hidden"]) {
18
22
  overflow: hidden;
19
23
  flex-wrap: nowrap;
20
24
  }
21
25
 
22
- `
26
+ `