@citolab/qti-components 6.9.1-beta.32 → 6.9.1-beta.33

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/item.css +8 -1
  2. package/package.json +1 -1
package/dist/item.css CHANGED
@@ -1772,6 +1772,8 @@ https://www.imsglobal.org/spec/qti/v3p0/impl#h.e0onr51nghyl
1772
1772
  text-orientation: upright;
1773
1773
  }
1774
1774
 
1775
+ /* stylelint-disable number-max-precision */
1776
+
1775
1777
  @layer qti-base {
1776
1778
  .qti-layout-row {
1777
1779
  display: flex;
@@ -1780,10 +1782,15 @@ https://www.imsglobal.org/spec/qti/v3p0/impl#h.e0onr51nghyl
1780
1782
  gap: 2.1276595745%;
1781
1783
  }
1782
1784
 
1783
- .qti-layout-row [class*='qti-layout-col'] {
1785
+ .qti-layout-row [class*='qti-layout-col']:not(:empty) {
1784
1786
  box-sizing: border-box;
1785
1787
  }
1786
1788
 
1789
+ .qti-layout-row [class*='qti-layout-col']:empty {
1790
+ width: 0;
1791
+ overflow: hidden; /* to fully collapse if there’s padding or borders */
1792
+ }
1793
+
1787
1794
  .qti-layout-col1 {
1788
1795
  width: 6.3829787234%;
1789
1796
  }
package/package.json CHANGED
@@ -21,7 +21,7 @@
21
21
  "engines": {
22
22
  "node": ">=20.0.0"
23
23
  },
24
- "version": "6.9.1-beta.32",
24
+ "version": "6.9.1-beta.33",
25
25
  "type": "module",
26
26
  "exports": {
27
27
  "./qti-components": "./dist/qti-components/index.js",