@nswds/app 1.62.2 → 1.63.0
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/dist/globals.css +8 -8
- package/dist/index.cjs +14121 -12423
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +12 -3
- package/dist/index.d.ts +12 -3
- package/dist/index.js +14120 -12425
- package/dist/index.js.map +1 -1
- package/dist/styles.css +8 -8
- package/dist/styles.css.map +1 -1
- package/package.json +2 -2
package/dist/globals.css
CHANGED
|
@@ -1834,6 +1834,9 @@
|
|
|
1834
1834
|
.auto-rows-min {
|
|
1835
1835
|
grid-auto-rows: min-content;
|
|
1836
1836
|
}
|
|
1837
|
+
.\[grid-template-columns\:repeat\(6\,minmax\(0\,1fr\)\)\] {
|
|
1838
|
+
grid-template-columns: repeat(6,minmax(0,1fr));
|
|
1839
|
+
}
|
|
1837
1840
|
.grid-cols-1 {
|
|
1838
1841
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1839
1842
|
}
|
|
@@ -1843,9 +1846,6 @@
|
|
|
1843
1846
|
.grid-cols-4 {
|
|
1844
1847
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1845
1848
|
}
|
|
1846
|
-
.grid-cols-6 {
|
|
1847
|
-
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
1848
|
-
}
|
|
1849
1849
|
.grid-cols-\[--spacing\(5\)_1fr\] {
|
|
1850
1850
|
grid-template-columns: calc(var(--spacing) * 5) 1fr;
|
|
1851
1851
|
}
|
|
@@ -8345,6 +8345,11 @@
|
|
|
8345
8345
|
flex-grow: 1;
|
|
8346
8346
|
}
|
|
8347
8347
|
}
|
|
8348
|
+
.md\:\[grid-template-columns\:repeat\(var\(--cols\)\,minmax\(0\,1fr\)\)\] {
|
|
8349
|
+
@media (width >= 48rem) {
|
|
8350
|
+
grid-template-columns: repeat(var(--cols),minmax(0,1fr));
|
|
8351
|
+
}
|
|
8352
|
+
}
|
|
8348
8353
|
.md\:grid-cols-2 {
|
|
8349
8354
|
@media (width >= 48rem) {
|
|
8350
8355
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
@@ -8360,11 +8365,6 @@
|
|
|
8360
8365
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
8361
8366
|
}
|
|
8362
8367
|
}
|
|
8363
|
-
.md\:grid-cols-19 {
|
|
8364
|
-
@media (width >= 48rem) {
|
|
8365
|
-
grid-template-columns: repeat(19, minmax(0, 1fr));
|
|
8366
|
-
}
|
|
8367
|
-
}
|
|
8368
8368
|
.md\:flex-row {
|
|
8369
8369
|
@media (width >= 48rem) {
|
|
8370
8370
|
flex-direction: row;
|