@umami/react-zen 0.17.0 → 0.19.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/index.css +142 -4
- package/dist/index.d.ts +762 -804
- package/dist/index.js +336 -212
- package/dist/index.mjs +373 -1060
- package/dist/styles.css +154 -9
- package/dist/zen.css +142 -0
- package/package.json +6 -5
package/dist/index.css
CHANGED
|
@@ -92,6 +92,27 @@
|
|
|
92
92
|
.global_display-inline-flex {
|
|
93
93
|
display: inline-flex;
|
|
94
94
|
}
|
|
95
|
+
.global_display-grid {
|
|
96
|
+
display: grid;
|
|
97
|
+
}
|
|
98
|
+
.global_display-inline-grid {
|
|
99
|
+
display: inline-grid;
|
|
100
|
+
}
|
|
101
|
+
.global_position-absolute {
|
|
102
|
+
position: absolute;
|
|
103
|
+
}
|
|
104
|
+
.global_position-fixed {
|
|
105
|
+
position: fixed;
|
|
106
|
+
}
|
|
107
|
+
.global_position-stick {
|
|
108
|
+
position: sticky;
|
|
109
|
+
}
|
|
110
|
+
.global_position-static {
|
|
111
|
+
position: static;
|
|
112
|
+
}
|
|
113
|
+
.global_position-relative {
|
|
114
|
+
position: relative;
|
|
115
|
+
}
|
|
95
116
|
.global_font-size {
|
|
96
117
|
font-size: var(--font-size);
|
|
97
118
|
}
|
|
@@ -215,15 +236,30 @@
|
|
|
215
236
|
.global_background-color-950 {
|
|
216
237
|
background-color: var(--base-color-950);
|
|
217
238
|
}
|
|
218
|
-
.
|
|
239
|
+
.global_text-align-left {
|
|
219
240
|
text-align: left;
|
|
220
241
|
}
|
|
221
|
-
.
|
|
242
|
+
.global_text-align-center {
|
|
222
243
|
text-align: center;
|
|
223
244
|
}
|
|
224
|
-
.
|
|
245
|
+
.global_text-align-right {
|
|
225
246
|
text-align: right;
|
|
226
247
|
}
|
|
248
|
+
.global_text-wrap-wrap {
|
|
249
|
+
text-wrap: wrap;
|
|
250
|
+
}
|
|
251
|
+
.global_text-wrap-nowrap {
|
|
252
|
+
text-wrap: nowrap;
|
|
253
|
+
}
|
|
254
|
+
.global_text-wrap-balance {
|
|
255
|
+
text-wrap: balance;
|
|
256
|
+
}
|
|
257
|
+
.global_text-wrap-pretty {
|
|
258
|
+
text-wrap: pretty;
|
|
259
|
+
}
|
|
260
|
+
.global_text-wrap-stable {
|
|
261
|
+
text-wrap: stable;
|
|
262
|
+
}
|
|
227
263
|
.global_letter-spacing-tighter {
|
|
228
264
|
letter-spacing: -0.05em;
|
|
229
265
|
}
|
|
@@ -1121,10 +1157,25 @@
|
|
|
1121
1157
|
.global_align-self-unsafe-center {
|
|
1122
1158
|
align-self: unsafe center;
|
|
1123
1159
|
}
|
|
1160
|
+
.global_grid-auto-flow-row {
|
|
1161
|
+
grid-auto-flow: row;
|
|
1162
|
+
}
|
|
1163
|
+
.global_grid-auto-flow-column {
|
|
1164
|
+
grid-auto-flow: column;
|
|
1165
|
+
}
|
|
1166
|
+
.global_grid-auto-flow-row-dense {
|
|
1167
|
+
grid-auto-flow: row dense;
|
|
1168
|
+
}
|
|
1169
|
+
.global_grid-auto-flow-column-dense {
|
|
1170
|
+
grid-auto-flow: column dense;
|
|
1171
|
+
}
|
|
1124
1172
|
@media (min-width: 520px) {
|
|
1125
1173
|
.global_display-xs {
|
|
1126
1174
|
display: var(--display-xs);
|
|
1127
1175
|
}
|
|
1176
|
+
.global_position-xs {
|
|
1177
|
+
position: var(--position-xs);
|
|
1178
|
+
}
|
|
1128
1179
|
.global_font-size-xs {
|
|
1129
1180
|
font-size: var(--font-size-xs);
|
|
1130
1181
|
}
|
|
@@ -1243,11 +1294,29 @@
|
|
|
1243
1294
|
.global_align-self-xs {
|
|
1244
1295
|
align-self: var(--align-self-xs);
|
|
1245
1296
|
}
|
|
1297
|
+
.global_grid-template-rows-xs {
|
|
1298
|
+
grid-template-rows: var(--grid-template-rows-xs);
|
|
1299
|
+
}
|
|
1300
|
+
.global_grid-template-columns-xs {
|
|
1301
|
+
grid-template-columns: var(--grid-template-columns-xs);
|
|
1302
|
+
}
|
|
1303
|
+
.global_flex-basis-xs {
|
|
1304
|
+
flex-basis: var(--flex-basis-xs);
|
|
1305
|
+
}
|
|
1306
|
+
.global_flex-grow-xs {
|
|
1307
|
+
flex-basis: var(--flex-grow-xs);
|
|
1308
|
+
}
|
|
1309
|
+
.global_flex-shrink-xs {
|
|
1310
|
+
flex-basis: var(--flex-shrink-xs);
|
|
1311
|
+
}
|
|
1246
1312
|
}
|
|
1247
1313
|
@media (min-width: 768px) {
|
|
1248
1314
|
.global_display-sm {
|
|
1249
1315
|
display: var(--display-sm);
|
|
1250
1316
|
}
|
|
1317
|
+
.global_position-sm {
|
|
1318
|
+
position: var(--position-sm);
|
|
1319
|
+
}
|
|
1251
1320
|
.global_font-size-sm {
|
|
1252
1321
|
font-size: var(--font-size-sm);
|
|
1253
1322
|
}
|
|
@@ -1366,11 +1435,29 @@
|
|
|
1366
1435
|
.global_align-self-sm {
|
|
1367
1436
|
align-self: var(--align-self-sm);
|
|
1368
1437
|
}
|
|
1438
|
+
.global_grid-template-rows-sm {
|
|
1439
|
+
grid-template-rows: var(--grid-template-rows-sm);
|
|
1440
|
+
}
|
|
1441
|
+
.global_grid-template-columns-sm {
|
|
1442
|
+
grid-template-columns: var(--grid-template-columns-sm);
|
|
1443
|
+
}
|
|
1444
|
+
.global_flex-basis-sm {
|
|
1445
|
+
flex-basis: var(--flex-basis-sm);
|
|
1446
|
+
}
|
|
1447
|
+
.global_flex-grow-sm {
|
|
1448
|
+
flex-basis: var(--flex-grow-sm);
|
|
1449
|
+
}
|
|
1450
|
+
.global_flex-shrink-sm {
|
|
1451
|
+
flex-basis: var(--flex-shrink-sm);
|
|
1452
|
+
}
|
|
1369
1453
|
}
|
|
1370
1454
|
@media (min-width: 1024px) {
|
|
1371
1455
|
.global_display-md {
|
|
1372
1456
|
display: var(--display-md);
|
|
1373
1457
|
}
|
|
1458
|
+
.global_position-md {
|
|
1459
|
+
position: var(--position-md);
|
|
1460
|
+
}
|
|
1374
1461
|
.global_font-size-md {
|
|
1375
1462
|
font-size: var(--font-size-md);
|
|
1376
1463
|
}
|
|
@@ -1489,11 +1576,29 @@
|
|
|
1489
1576
|
.global_align-self-md {
|
|
1490
1577
|
align-self: var(--align-self-md);
|
|
1491
1578
|
}
|
|
1579
|
+
.global_grid-template-rows-md {
|
|
1580
|
+
grid-template-rows: var(--grid-template-rows-md);
|
|
1581
|
+
}
|
|
1582
|
+
.global_grid-template-columns-md {
|
|
1583
|
+
grid-template-columns: var(--grid-template-columns-md);
|
|
1584
|
+
}
|
|
1585
|
+
.global_flex-basis-md {
|
|
1586
|
+
flex-basis: var(--flex-basis-md);
|
|
1587
|
+
}
|
|
1588
|
+
.global_flex-grow-md {
|
|
1589
|
+
flex-basis: var(--flex-grow-md);
|
|
1590
|
+
}
|
|
1591
|
+
.global_flex-shrink-md {
|
|
1592
|
+
flex-basis: var(--flex-shrink-md);
|
|
1593
|
+
}
|
|
1492
1594
|
}
|
|
1493
1595
|
@media (min-width: 1280px) {
|
|
1494
1596
|
.global_display-lg {
|
|
1495
1597
|
display: var(--display-lg);
|
|
1496
1598
|
}
|
|
1599
|
+
.global_position-lg {
|
|
1600
|
+
position: var(--position-lg);
|
|
1601
|
+
}
|
|
1497
1602
|
.global_font-size-lg {
|
|
1498
1603
|
font-size: var(--font-size-lg);
|
|
1499
1604
|
}
|
|
@@ -1612,11 +1717,29 @@
|
|
|
1612
1717
|
.global_align-self-lg {
|
|
1613
1718
|
align-self: var(--align-self-lg);
|
|
1614
1719
|
}
|
|
1720
|
+
.global_grid-template-rows-lg {
|
|
1721
|
+
grid-template-rows: var(--grid-template-rows-lg);
|
|
1722
|
+
}
|
|
1723
|
+
.global_grid-template-columns-lg {
|
|
1724
|
+
grid-template-columns: var(--grid-template-columns-lg);
|
|
1725
|
+
}
|
|
1726
|
+
.global_flex-basis-lg {
|
|
1727
|
+
flex-basis: var(--flex-basis-lg);
|
|
1728
|
+
}
|
|
1729
|
+
.global_flex-grow-lg {
|
|
1730
|
+
flex-basis: var(--flex-grow-lg);
|
|
1731
|
+
}
|
|
1732
|
+
.global_flex-shrink-lg {
|
|
1733
|
+
flex-basis: var(--flex-shrink-lg);
|
|
1734
|
+
}
|
|
1615
1735
|
}
|
|
1616
1736
|
@media (min-width: 1640px) {
|
|
1617
1737
|
.global_display-xl {
|
|
1618
1738
|
display: var(--display-xl);
|
|
1619
1739
|
}
|
|
1740
|
+
.global_position-xl {
|
|
1741
|
+
position: var(--position-xl);
|
|
1742
|
+
}
|
|
1620
1743
|
.global_font-size-xl {
|
|
1621
1744
|
font-size: var(--font-size-xl);
|
|
1622
1745
|
}
|
|
@@ -1735,6 +1858,21 @@
|
|
|
1735
1858
|
.global_align-self-xl {
|
|
1736
1859
|
align-self: var(--align-self-xl);
|
|
1737
1860
|
}
|
|
1861
|
+
.global_grid-template-rows-xl {
|
|
1862
|
+
grid-template-rows: var(--grid-template-rows-xl);
|
|
1863
|
+
}
|
|
1864
|
+
.global_grid-template-columns-xl {
|
|
1865
|
+
grid-template-columns: var(--grid-template-columns-xl);
|
|
1866
|
+
}
|
|
1867
|
+
.global_flex-basis-xl {
|
|
1868
|
+
flex-basis: var(--flex-basis-xl);
|
|
1869
|
+
}
|
|
1870
|
+
.global_flex-grow-xl {
|
|
1871
|
+
flex-basis: var(--flex-grow-xl);
|
|
1872
|
+
}
|
|
1873
|
+
.global_flex-shrink-xl {
|
|
1874
|
+
flex-basis: var(--flex-shrink-xl);
|
|
1875
|
+
}
|
|
1738
1876
|
}
|
|
1739
1877
|
|
|
1740
1878
|
/* src/components/Text.module.css */
|
|
@@ -2074,7 +2212,7 @@ body a.Button_button {
|
|
|
2074
2212
|
align-items: center;
|
|
2075
2213
|
margin-bottom: var(--spacing-4);
|
|
2076
2214
|
}
|
|
2077
|
-
.Calendar_heading {
|
|
2215
|
+
.Calendar_calendar .Calendar_heading {
|
|
2078
2216
|
flex: 1;
|
|
2079
2217
|
margin: 0;
|
|
2080
2218
|
text-align: center;
|