@powerhousedao/common 1.10.38-staging.0 → 1.10.39-dev.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/editors/styles.css +189 -171
- package/dist/editors/utils/uiNodes.d.ts.map +1 -1
- package/dist/editors/utils/uiNodes.js +2 -1
- package/dist/editors/utils/uiNodes.js.map +1 -1
- package/dist/hooks/index.d.ts +2 -0
- package/dist/hooks/index.d.ts.map +1 -0
- package/dist/hooks/index.js +2 -0
- package/dist/hooks/index.js.map +1 -0
- package/dist/hooks/useTimelineItems.d.ts +8 -0
- package/dist/hooks/useTimelineItems.d.ts.map +1 -0
- package/dist/hooks/useTimelineItems.js +106 -0
- package/dist/hooks/useTimelineItems.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/package.json +5 -6
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/index.d.ts +3 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/index.js +10 -0
- package/dist/utils/index.js.map +1 -0
- package/package.json +13 -14
package/dist/editors/styles.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! tailwindcss v4.1.
|
|
1
|
+
/*! tailwindcss v4.1.5 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
4
|
@layer theme {
|
|
@@ -7,52 +7,55 @@
|
|
|
7
7
|
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
8
8
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
9
9
|
"Courier New", monospace;
|
|
10
|
-
--color-red-400: oklch(
|
|
11
|
-
--color-red-500: oklch(
|
|
12
|
-
--color-red-600: oklch(
|
|
13
|
-
--color-red-700: oklch(
|
|
14
|
-
--color-red-800: oklch(
|
|
15
|
-
--color-red-900: oklch(
|
|
16
|
-
--color-orange-100: oklch(
|
|
17
|
-
--color-orange-700: oklch(
|
|
18
|
-
--color-orange-800: oklch(47
|
|
19
|
-
--color-orange-900: oklch(
|
|
20
|
-
--color-yellow-100: oklch(
|
|
21
|
-
--color-yellow-300: oklch(
|
|
22
|
-
--color-yellow-400: oklch(
|
|
23
|
-
--color-yellow-900: oklch(
|
|
24
|
-
--color-green-100: oklch(
|
|
25
|
-
--color-green-500: oklch(
|
|
26
|
-
--color-green-
|
|
27
|
-
--color-green-
|
|
28
|
-
--color-green-
|
|
29
|
-
--color-
|
|
30
|
-
--color-blue-
|
|
31
|
-
--color-blue-
|
|
32
|
-
--color-blue-
|
|
33
|
-
--color-blue-
|
|
34
|
-
--color-blue-
|
|
35
|
-
--color-blue-
|
|
36
|
-
--color-
|
|
37
|
-
--color-
|
|
38
|
-
--color-
|
|
39
|
-
--color-
|
|
40
|
-
--color-slate-
|
|
41
|
-
--color-slate-
|
|
42
|
-
--color-slate-
|
|
43
|
-
--color-slate-
|
|
44
|
-
--color-slate-
|
|
45
|
-
--color-slate-
|
|
46
|
-
--color-
|
|
47
|
-
--color-
|
|
48
|
-
--color-
|
|
49
|
-
--color-gray-
|
|
50
|
-
--color-gray-
|
|
51
|
-
--color-gray-
|
|
52
|
-
--color-gray-
|
|
53
|
-
--color-gray-
|
|
54
|
-
--color-gray-
|
|
55
|
-
--color-gray-
|
|
10
|
+
--color-red-400: oklch(0.704 0.191 22.216);
|
|
11
|
+
--color-red-500: oklch(0.637 0.237 25.331);
|
|
12
|
+
--color-red-600: oklch(0.577 0.245 27.325);
|
|
13
|
+
--color-red-700: oklch(0.505 0.213 27.518);
|
|
14
|
+
--color-red-800: oklch(0.444 0.177 26.899);
|
|
15
|
+
--color-red-900: oklch(0.396 0.141 25.723);
|
|
16
|
+
--color-orange-100: oklch(0.954 0.038 75.164);
|
|
17
|
+
--color-orange-700: oklch(0.553 0.195 38.402);
|
|
18
|
+
--color-orange-800: oklch(0.47 0.157 37.304);
|
|
19
|
+
--color-orange-900: oklch(0.408 0.123 38.172);
|
|
20
|
+
--color-yellow-100: oklch(0.973 0.071 103.193);
|
|
21
|
+
--color-yellow-300: oklch(0.905 0.182 98.111);
|
|
22
|
+
--color-yellow-400: oklch(0.852 0.199 91.936);
|
|
23
|
+
--color-yellow-900: oklch(0.421 0.095 57.708);
|
|
24
|
+
--color-green-100: oklch(0.962 0.044 156.743);
|
|
25
|
+
--color-green-500: oklch(0.723 0.219 149.579);
|
|
26
|
+
--color-green-600: oklch(0.627 0.194 149.214);
|
|
27
|
+
--color-green-700: oklch(0.527 0.154 150.069);
|
|
28
|
+
--color-green-800: oklch(0.448 0.119 151.328);
|
|
29
|
+
--color-green-900: oklch(0.393 0.095 152.535);
|
|
30
|
+
--color-blue-50: oklch(0.97 0.014 254.604);
|
|
31
|
+
--color-blue-100: oklch(0.932 0.032 255.585);
|
|
32
|
+
--color-blue-200: oklch(0.882 0.059 254.128);
|
|
33
|
+
--color-blue-300: oklch(0.809 0.105 251.813);
|
|
34
|
+
--color-blue-400: oklch(0.707 0.165 254.624);
|
|
35
|
+
--color-blue-500: oklch(0.623 0.214 259.815);
|
|
36
|
+
--color-blue-600: oklch(0.546 0.245 262.881);
|
|
37
|
+
--color-blue-800: oklch(0.424 0.199 265.638);
|
|
38
|
+
--color-blue-900: oklch(0.379 0.146 265.522);
|
|
39
|
+
--color-purple-900: oklch(0.381 0.176 304.987);
|
|
40
|
+
--color-slate-50: oklch(0.984 0.003 247.858);
|
|
41
|
+
--color-slate-100: oklch(0.968 0.007 247.896);
|
|
42
|
+
--color-slate-200: oklch(0.929 0.013 255.508);
|
|
43
|
+
--color-slate-300: oklch(0.869 0.022 252.894);
|
|
44
|
+
--color-slate-500: oklch(0.554 0.046 257.417);
|
|
45
|
+
--color-slate-600: oklch(0.446 0.043 257.281);
|
|
46
|
+
--color-slate-700: oklch(0.372 0.044 257.287);
|
|
47
|
+
--color-slate-800: oklch(0.279 0.041 260.031);
|
|
48
|
+
--color-slate-900: oklch(0.208 0.042 265.755);
|
|
49
|
+
--color-gray-50: oklch(0.985 0.002 247.839);
|
|
50
|
+
--color-gray-100: oklch(0.967 0.003 264.542);
|
|
51
|
+
--color-gray-200: oklch(0.928 0.006 264.531);
|
|
52
|
+
--color-gray-300: oklch(0.872 0.01 258.338);
|
|
53
|
+
--color-gray-400: oklch(0.707 0.022 261.325);
|
|
54
|
+
--color-gray-500: oklch(0.551 0.027 264.364);
|
|
55
|
+
--color-gray-600: oklch(0.446 0.03 256.802);
|
|
56
|
+
--color-gray-700: oklch(0.373 0.034 259.733);
|
|
57
|
+
--color-gray-800: oklch(0.278 0.033 256.848);
|
|
58
|
+
--color-gray-900: oklch(0.21 0.034 264.665);
|
|
56
59
|
--color-black: #000;
|
|
57
60
|
--color-white: #fff;
|
|
58
61
|
--spacing: 0.25rem;
|
|
@@ -200,9 +203,9 @@
|
|
|
200
203
|
}
|
|
201
204
|
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
202
205
|
::placeholder {
|
|
203
|
-
color:
|
|
206
|
+
color: currentColor;
|
|
204
207
|
@supports (color: color-mix(in lab, red, red)) {
|
|
205
|
-
color: color-mix(in oklab,
|
|
208
|
+
color: color-mix(in oklab, currentColor 50%, transparent);
|
|
206
209
|
}
|
|
207
210
|
}
|
|
208
211
|
}
|
|
@@ -397,9 +400,8 @@
|
|
|
397
400
|
color: var(--color-gray-600);
|
|
398
401
|
}
|
|
399
402
|
}
|
|
400
|
-
/*! tailwindcss v4.
|
|
403
|
+
/*! tailwindcss v4.0.17 | MIT License | https://tailwindcss.com */
|
|
401
404
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
|
|
402
|
-
@layer properties;
|
|
403
405
|
:root {
|
|
404
406
|
--toastify-color-light: #fff;
|
|
405
407
|
--toastify-color-dark: #121212;
|
|
@@ -1087,8 +1089,6 @@
|
|
|
1087
1089
|
@layer theme {
|
|
1088
1090
|
:root, :host {
|
|
1089
1091
|
--font-sans: "Inter", sans-serif;
|
|
1090
|
-
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
1091
|
-
"Courier New", monospace;
|
|
1092
1092
|
--color-red-100: hsl(3 82% 96%);
|
|
1093
1093
|
--color-red-400: hsl(5 82% 83%);
|
|
1094
1094
|
--color-red-500: hsl(5 80% 78%);
|
|
@@ -1106,11 +1106,14 @@
|
|
|
1106
1106
|
--color-yellow-900: hsl(47 100% 49%);
|
|
1107
1107
|
--color-green-100: hsl(134 51% 89%);
|
|
1108
1108
|
--color-green-500: hsl(136 53% 66%);
|
|
1109
|
+
--color-green-600: hsl(136 53% 60%);
|
|
1109
1110
|
--color-green-700: hsl(136 52% 55%);
|
|
1110
1111
|
--color-green-800: hsl(136 53% 49%);
|
|
1111
1112
|
--color-green-900: hsl(136 53% 43%);
|
|
1112
|
-
--color-blue-50: oklch(97
|
|
1113
|
+
--color-blue-50: oklch(0.97 0.014 254.604);
|
|
1113
1114
|
--color-blue-100: hsl(209 100% 90%);
|
|
1115
|
+
--color-blue-200: hsl(209 97% 85%);
|
|
1116
|
+
--color-blue-300: hsl(209 100% 80%);
|
|
1114
1117
|
--color-blue-400: hsl(209 100% 75%);
|
|
1115
1118
|
--color-blue-500: hsl(209 100% 70%);
|
|
1116
1119
|
--color-blue-600: hsl(209 100% 65%);
|
|
@@ -1172,8 +1175,6 @@
|
|
|
1172
1175
|
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
1173
1176
|
--default-transition-duration: 150ms;
|
|
1174
1177
|
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1175
|
-
--default-font-family: var(--font-sans);
|
|
1176
|
-
--default-mono-font-family: var(--font-mono);
|
|
1177
1178
|
--color-charcoal-300: hsl(221 17% 67%);
|
|
1178
1179
|
--color-charcoal-700: hsl(219 17% 34%);
|
|
1179
1180
|
--color-charcoal-800: hsl(221 17% 26%);
|
|
@@ -1199,9 +1200,9 @@
|
|
|
1199
1200
|
line-height: 1.5;
|
|
1200
1201
|
-webkit-text-size-adjust: 100%;
|
|
1201
1202
|
tab-size: 4;
|
|
1202
|
-
font-family:
|
|
1203
|
-
font-feature-settings:
|
|
1204
|
-
font-variation-settings:
|
|
1203
|
+
font-family: "Inter", sans-serif;
|
|
1204
|
+
font-feature-settings: initial;
|
|
1205
|
+
font-variation-settings: initial;
|
|
1205
1206
|
-webkit-tap-highlight-color: transparent;
|
|
1206
1207
|
}
|
|
1207
1208
|
hr {
|
|
@@ -1226,9 +1227,9 @@
|
|
|
1226
1227
|
font-weight: bolder;
|
|
1227
1228
|
}
|
|
1228
1229
|
code, kbd, samp, pre {
|
|
1229
|
-
font-family:
|
|
1230
|
-
font-feature-settings:
|
|
1231
|
-
font-variation-settings:
|
|
1230
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1231
|
+
font-feature-settings: initial;
|
|
1232
|
+
font-variation-settings: initial;
|
|
1232
1233
|
font-size: 1em;
|
|
1233
1234
|
}
|
|
1234
1235
|
small {
|
|
@@ -1295,12 +1296,9 @@
|
|
|
1295
1296
|
}
|
|
1296
1297
|
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
1297
1298
|
::placeholder {
|
|
1298
|
-
color:
|
|
1299
|
+
color: currentColor;
|
|
1299
1300
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1300
|
-
color:
|
|
1301
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1302
|
-
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
1303
|
-
}
|
|
1301
|
+
color: color-mix(in oklab, currentColor 50%, transparent);
|
|
1304
1302
|
}
|
|
1305
1303
|
}
|
|
1306
1304
|
}
|
|
@@ -1372,6 +1370,9 @@
|
|
|
1372
1370
|
.relative {
|
|
1373
1371
|
position: relative;
|
|
1374
1372
|
}
|
|
1373
|
+
.static {
|
|
1374
|
+
position: static;
|
|
1375
|
+
}
|
|
1375
1376
|
.sticky {
|
|
1376
1377
|
position: sticky;
|
|
1377
1378
|
}
|
|
@@ -1381,6 +1382,9 @@
|
|
|
1381
1382
|
.inset-8 {
|
|
1382
1383
|
inset: calc(var(--spacing) * 8);
|
|
1383
1384
|
}
|
|
1385
|
+
.inset-x-0 {
|
|
1386
|
+
inset-inline: calc(var(--spacing) * 0);
|
|
1387
|
+
}
|
|
1384
1388
|
.inset-y-0 {
|
|
1385
1389
|
inset-block: calc(var(--spacing) * 0);
|
|
1386
1390
|
}
|
|
@@ -1411,6 +1415,12 @@
|
|
|
1411
1415
|
.top-\[-2px\] {
|
|
1412
1416
|
top: -2px;
|
|
1413
1417
|
}
|
|
1418
|
+
.top-\[-11px\] {
|
|
1419
|
+
top: -11px;
|
|
1420
|
+
}
|
|
1421
|
+
.top-\[11px\] {
|
|
1422
|
+
top: 11px;
|
|
1423
|
+
}
|
|
1414
1424
|
.top-\[48px\] {
|
|
1415
1425
|
top: 48px;
|
|
1416
1426
|
}
|
|
@@ -1435,6 +1445,9 @@
|
|
|
1435
1445
|
.right-\[-2px\] {
|
|
1436
1446
|
right: -2px;
|
|
1437
1447
|
}
|
|
1448
|
+
.right-\[0px\] {
|
|
1449
|
+
right: 0px;
|
|
1450
|
+
}
|
|
1438
1451
|
.bottom-0 {
|
|
1439
1452
|
bottom: calc(var(--spacing) * 0);
|
|
1440
1453
|
}
|
|
@@ -1465,6 +1478,9 @@
|
|
|
1465
1478
|
.left-\[-2px\] {
|
|
1466
1479
|
left: -2px;
|
|
1467
1480
|
}
|
|
1481
|
+
.left-\[0px\] {
|
|
1482
|
+
left: 0px;
|
|
1483
|
+
}
|
|
1468
1484
|
.isolate {
|
|
1469
1485
|
isolation: isolate;
|
|
1470
1486
|
}
|
|
@@ -1474,9 +1490,15 @@
|
|
|
1474
1490
|
.z-10 {
|
|
1475
1491
|
z-index: 10;
|
|
1476
1492
|
}
|
|
1493
|
+
.z-40 {
|
|
1494
|
+
z-index: 40;
|
|
1495
|
+
}
|
|
1477
1496
|
.z-50 {
|
|
1478
1497
|
z-index: 50;
|
|
1479
1498
|
}
|
|
1499
|
+
.z-\[20\] {
|
|
1500
|
+
z-index: 20;
|
|
1501
|
+
}
|
|
1480
1502
|
.container {
|
|
1481
1503
|
width: 100%;
|
|
1482
1504
|
@media (width >= 40rem) {
|
|
@@ -1504,6 +1526,9 @@
|
|
|
1504
1526
|
.m-8 {
|
|
1505
1527
|
margin: calc(var(--spacing) * 8);
|
|
1506
1528
|
}
|
|
1529
|
+
.mx-0\.5 {
|
|
1530
|
+
margin-inline: calc(var(--spacing) * 0.5);
|
|
1531
|
+
}
|
|
1507
1532
|
.mx-1 {
|
|
1508
1533
|
margin-inline: calc(var(--spacing) * 1);
|
|
1509
1534
|
}
|
|
@@ -1567,6 +1592,9 @@
|
|
|
1567
1592
|
.mt-\[5px\] {
|
|
1568
1593
|
margin-top: 5px;
|
|
1569
1594
|
}
|
|
1595
|
+
.mt-\[11px\] {
|
|
1596
|
+
margin-top: 11px;
|
|
1597
|
+
}
|
|
1570
1598
|
.mt-\[14px\] {
|
|
1571
1599
|
margin-top: 14px;
|
|
1572
1600
|
}
|
|
@@ -1675,9 +1703,6 @@
|
|
|
1675
1703
|
.block {
|
|
1676
1704
|
display: block;
|
|
1677
1705
|
}
|
|
1678
|
-
.contents {
|
|
1679
|
-
display: contents;
|
|
1680
|
-
}
|
|
1681
1706
|
.flex {
|
|
1682
1707
|
display: flex;
|
|
1683
1708
|
}
|
|
@@ -1734,6 +1759,10 @@
|
|
|
1734
1759
|
width: calc(var(--spacing) * 10);
|
|
1735
1760
|
height: calc(var(--spacing) * 10);
|
|
1736
1761
|
}
|
|
1762
|
+
.size-\[3px\] {
|
|
1763
|
+
width: 3px;
|
|
1764
|
+
height: 3px;
|
|
1765
|
+
}
|
|
1737
1766
|
.size-\[18px\] {
|
|
1738
1767
|
width: 18px;
|
|
1739
1768
|
height: 18px;
|
|
@@ -1785,18 +1814,42 @@
|
|
|
1785
1814
|
.h-48 {
|
|
1786
1815
|
height: calc(var(--spacing) * 48);
|
|
1787
1816
|
}
|
|
1817
|
+
.h-\[1px\] {
|
|
1818
|
+
height: 1px;
|
|
1819
|
+
}
|
|
1820
|
+
.h-\[3px\] {
|
|
1821
|
+
height: 3px;
|
|
1822
|
+
}
|
|
1823
|
+
.h-\[6px\] {
|
|
1824
|
+
height: 6px;
|
|
1825
|
+
}
|
|
1826
|
+
.h-\[9px\] {
|
|
1827
|
+
height: 9px;
|
|
1828
|
+
}
|
|
1829
|
+
.h-\[12px\] {
|
|
1830
|
+
height: 12px;
|
|
1831
|
+
}
|
|
1832
|
+
.h-\[17px\] {
|
|
1833
|
+
height: 17px;
|
|
1834
|
+
}
|
|
1788
1835
|
.h-\[20px\] {
|
|
1789
1836
|
height: 20px;
|
|
1790
1837
|
}
|
|
1791
1838
|
.h-\[22px\] {
|
|
1792
1839
|
height: 22px;
|
|
1793
1840
|
}
|
|
1841
|
+
.h-\[25px\] {
|
|
1842
|
+
height: 25px;
|
|
1843
|
+
}
|
|
1794
1844
|
.h-\[28px\] {
|
|
1795
1845
|
height: 28px;
|
|
1796
1846
|
}
|
|
1797
1847
|
.h-\[34px\] {
|
|
1798
1848
|
height: 34px;
|
|
1799
1849
|
}
|
|
1850
|
+
.h-\[36px\] {
|
|
1851
|
+
height: 36px;
|
|
1852
|
+
}
|
|
1800
1853
|
.h-\[37px\] {
|
|
1801
1854
|
height: 37px;
|
|
1802
1855
|
}
|
|
@@ -1881,6 +1934,18 @@
|
|
|
1881
1934
|
.w-\(--radix-popover-trigger-width\) {
|
|
1882
1935
|
width: var(--radix-popover-trigger-width);
|
|
1883
1936
|
}
|
|
1937
|
+
.w-0\.5 {
|
|
1938
|
+
width: calc(var(--spacing) * 0.5);
|
|
1939
|
+
}
|
|
1940
|
+
.w-1 {
|
|
1941
|
+
width: calc(var(--spacing) * 1);
|
|
1942
|
+
}
|
|
1943
|
+
.w-1\.5 {
|
|
1944
|
+
width: calc(var(--spacing) * 1.5);
|
|
1945
|
+
}
|
|
1946
|
+
.w-2 {
|
|
1947
|
+
width: calc(var(--spacing) * 2);
|
|
1948
|
+
}
|
|
1884
1949
|
.w-4 {
|
|
1885
1950
|
width: calc(var(--spacing) * 4);
|
|
1886
1951
|
}
|
|
@@ -1923,6 +1988,9 @@
|
|
|
1923
1988
|
.w-\[--radix-popover-trigger-width\] {
|
|
1924
1989
|
width: --radix-popover-trigger-width;
|
|
1925
1990
|
}
|
|
1991
|
+
.w-\[6px\] {
|
|
1992
|
+
width: 6px;
|
|
1993
|
+
}
|
|
1926
1994
|
.w-\[10px\] {
|
|
1927
1995
|
width: 10px;
|
|
1928
1996
|
}
|
|
@@ -2116,7 +2184,7 @@
|
|
|
2116
2184
|
rotate: 270deg;
|
|
2117
2185
|
}
|
|
2118
2186
|
.transform {
|
|
2119
|
-
transform: var(--tw-rotate-x
|
|
2187
|
+
transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y);
|
|
2120
2188
|
}
|
|
2121
2189
|
.animate-pulse {
|
|
2122
2190
|
animation: var(--animate-pulse);
|
|
@@ -2196,6 +2264,9 @@
|
|
|
2196
2264
|
.items-center {
|
|
2197
2265
|
align-items: center;
|
|
2198
2266
|
}
|
|
2267
|
+
.items-end {
|
|
2268
|
+
align-items: flex-end;
|
|
2269
|
+
}
|
|
2199
2270
|
.items-start {
|
|
2200
2271
|
align-items: flex-start;
|
|
2201
2272
|
}
|
|
@@ -2328,6 +2399,9 @@
|
|
|
2328
2399
|
.rounded-3xl {
|
|
2329
2400
|
border-radius: var(--radius-3xl);
|
|
2330
2401
|
}
|
|
2402
|
+
.rounded-\[2px\] {
|
|
2403
|
+
border-radius: 2px;
|
|
2404
|
+
}
|
|
2331
2405
|
.rounded-\[4px\] {
|
|
2332
2406
|
border-radius: 4px;
|
|
2333
2407
|
}
|
|
@@ -2361,6 +2435,10 @@
|
|
|
2361
2435
|
border-top-left-radius: 0.25rem;
|
|
2362
2436
|
border-top-right-radius: 0.25rem;
|
|
2363
2437
|
}
|
|
2438
|
+
.rounded-t-full {
|
|
2439
|
+
border-top-left-radius: calc(infinity * 1px);
|
|
2440
|
+
border-top-right-radius: calc(infinity * 1px);
|
|
2441
|
+
}
|
|
2364
2442
|
.rounded-t-md {
|
|
2365
2443
|
border-top-left-radius: var(--radius-md);
|
|
2366
2444
|
border-top-right-radius: var(--radius-md);
|
|
@@ -2377,6 +2455,9 @@
|
|
|
2377
2455
|
border-top-left-radius: 0;
|
|
2378
2456
|
border-bottom-left-radius: 0;
|
|
2379
2457
|
}
|
|
2458
|
+
.rounded-tl-md {
|
|
2459
|
+
border-top-left-radius: var(--radius-md);
|
|
2460
|
+
}
|
|
2380
2461
|
.rounded-r-md {
|
|
2381
2462
|
border-top-right-radius: var(--radius-md);
|
|
2382
2463
|
border-bottom-right-radius: var(--radius-md);
|
|
@@ -2385,6 +2466,13 @@
|
|
|
2385
2466
|
border-top-right-radius: 0;
|
|
2386
2467
|
border-bottom-right-radius: 0;
|
|
2387
2468
|
}
|
|
2469
|
+
.rounded-tr-md {
|
|
2470
|
+
border-top-right-radius: var(--radius-md);
|
|
2471
|
+
}
|
|
2472
|
+
.rounded-b-full {
|
|
2473
|
+
border-bottom-right-radius: calc(infinity * 1px);
|
|
2474
|
+
border-bottom-left-radius: calc(infinity * 1px);
|
|
2475
|
+
}
|
|
2388
2476
|
.border {
|
|
2389
2477
|
border-style: var(--tw-border-style);
|
|
2390
2478
|
border-width: 1px;
|
|
@@ -2530,6 +2618,12 @@
|
|
|
2530
2618
|
.bg-blue-100 {
|
|
2531
2619
|
background-color: var(--color-blue-100);
|
|
2532
2620
|
}
|
|
2621
|
+
.bg-blue-200 {
|
|
2622
|
+
background-color: var(--color-blue-200);
|
|
2623
|
+
}
|
|
2624
|
+
.bg-blue-300 {
|
|
2625
|
+
background-color: var(--color-blue-300);
|
|
2626
|
+
}
|
|
2533
2627
|
.bg-blue-500 {
|
|
2534
2628
|
background-color: var(--color-blue-500);
|
|
2535
2629
|
}
|
|
@@ -2569,6 +2663,9 @@
|
|
|
2569
2663
|
.bg-green-500 {
|
|
2570
2664
|
background-color: var(--color-green-500);
|
|
2571
2665
|
}
|
|
2666
|
+
.bg-green-600 {
|
|
2667
|
+
background-color: var(--color-green-600);
|
|
2668
|
+
}
|
|
2572
2669
|
.bg-green-900 {
|
|
2573
2670
|
background-color: var(--color-green-900);
|
|
2574
2671
|
}
|
|
@@ -2594,12 +2691,9 @@
|
|
|
2594
2691
|
background-color: var(--color-slate-100);
|
|
2595
2692
|
}
|
|
2596
2693
|
.bg-slate-900\/50 {
|
|
2597
|
-
background-color: color-mix(in srgb,
|
|
2694
|
+
background-color: color-mix(in srgb, oklch(0.208 0.042 265.755) 50%, transparent);
|
|
2598
2695
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2599
|
-
background-color: color-mix(in
|
|
2600
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2601
|
-
background-color: color-mix(in oklab, var(--color-slate-900) 50%, transparent);
|
|
2602
|
-
}
|
|
2696
|
+
background-color: color-mix(in oklab, var(--color-slate-900) 50%, transparent);
|
|
2603
2697
|
}
|
|
2604
2698
|
}
|
|
2605
2699
|
.bg-transparent {
|
|
@@ -2953,7 +3047,7 @@
|
|
|
2953
3047
|
color: var(--color-blue-900);
|
|
2954
3048
|
}
|
|
2955
3049
|
.text-current {
|
|
2956
|
-
color:
|
|
3050
|
+
color: currentColor;
|
|
2957
3051
|
}
|
|
2958
3052
|
.text-gray-50 {
|
|
2959
3053
|
color: var(--color-gray-50);
|
|
@@ -3108,16 +3202,13 @@
|
|
|
3108
3202
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3109
3203
|
}
|
|
3110
3204
|
.ring-0 {
|
|
3111
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color,
|
|
3205
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
3112
3206
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3113
3207
|
}
|
|
3114
3208
|
.shadow-black\/\[\.04\] {
|
|
3115
|
-
--tw-shadow-color: color-mix(in srgb,
|
|
3209
|
+
--tw-shadow-color: color-mix(in srgb, #000 4%, transparent);
|
|
3116
3210
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3117
|
-
--tw-shadow-color: color-mix(in
|
|
3118
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
3119
|
-
--tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--color-black) 4%, transparent) var(--tw-shadow-alpha), transparent);
|
|
3120
|
-
}
|
|
3211
|
+
--tw-shadow-color: color-mix(in oklab, var(--color-black) 4%, transparent);
|
|
3121
3212
|
}
|
|
3122
3213
|
}
|
|
3123
3214
|
.ring-gray-900 {
|
|
@@ -3730,7 +3821,7 @@
|
|
|
3730
3821
|
}
|
|
3731
3822
|
.focus-within\:ring-1 {
|
|
3732
3823
|
&:focus-within {
|
|
3733
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,
|
|
3824
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
3734
3825
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3735
3826
|
}
|
|
3736
3827
|
}
|
|
@@ -3830,6 +3921,13 @@
|
|
|
3830
3921
|
}
|
|
3831
3922
|
}
|
|
3832
3923
|
}
|
|
3924
|
+
.hover\:bg-blue-300 {
|
|
3925
|
+
&:hover {
|
|
3926
|
+
@media (hover: hover) {
|
|
3927
|
+
background-color: var(--color-blue-300);
|
|
3928
|
+
}
|
|
3929
|
+
}
|
|
3930
|
+
}
|
|
3833
3931
|
.hover\:bg-gray-50 {
|
|
3834
3932
|
&:hover {
|
|
3835
3933
|
@media (hover: hover) {
|
|
@@ -4073,7 +4171,7 @@
|
|
|
4073
4171
|
}
|
|
4074
4172
|
.focus\:ring-1 {
|
|
4075
4173
|
&:focus {
|
|
4076
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,
|
|
4174
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
4077
4175
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
4078
4176
|
}
|
|
4079
4177
|
}
|
|
@@ -4096,19 +4194,19 @@
|
|
|
4096
4194
|
}
|
|
4097
4195
|
.focus-visible\:ring-0 {
|
|
4098
4196
|
&:focus-visible {
|
|
4099
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color,
|
|
4197
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
4100
4198
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
4101
4199
|
}
|
|
4102
4200
|
}
|
|
4103
4201
|
.focus-visible\:ring-1 {
|
|
4104
4202
|
&:focus-visible {
|
|
4105
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,
|
|
4203
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
4106
4204
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
4107
4205
|
}
|
|
4108
4206
|
}
|
|
4109
4207
|
.focus-visible\:ring-2 {
|
|
4110
4208
|
&:focus-visible {
|
|
4111
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,
|
|
4209
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
4112
4210
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
4113
4211
|
}
|
|
4114
4212
|
}
|
|
@@ -5495,6 +5593,9 @@ input[type="number"] {
|
|
|
5495
5593
|
h1, h2, h3, h4, h5, h6, p {
|
|
5496
5594
|
color: var(--color-gray-900);
|
|
5497
5595
|
}
|
|
5596
|
+
button {
|
|
5597
|
+
cursor: pointer;
|
|
5598
|
+
}
|
|
5498
5599
|
}
|
|
5499
5600
|
@layer base {
|
|
5500
5601
|
* {
|
|
@@ -5564,11 +5665,6 @@ input[type="number"] {
|
|
|
5564
5665
|
syntax: "*";
|
|
5565
5666
|
inherits: false;
|
|
5566
5667
|
}
|
|
5567
|
-
@property --tw-shadow-alpha {
|
|
5568
|
-
syntax: "<percentage>";
|
|
5569
|
-
inherits: false;
|
|
5570
|
-
initial-value: 100%;
|
|
5571
|
-
}
|
|
5572
5668
|
@property --tw-inset-shadow {
|
|
5573
5669
|
syntax: "*";
|
|
5574
5670
|
inherits: false;
|
|
@@ -5578,11 +5674,6 @@ input[type="number"] {
|
|
|
5578
5674
|
syntax: "*";
|
|
5579
5675
|
inherits: false;
|
|
5580
5676
|
}
|
|
5581
|
-
@property --tw-inset-shadow-alpha {
|
|
5582
|
-
syntax: "<percentage>";
|
|
5583
|
-
inherits: false;
|
|
5584
|
-
initial-value: 100%;
|
|
5585
|
-
}
|
|
5586
5677
|
@property --tw-ring-color {
|
|
5587
5678
|
syntax: "*";
|
|
5588
5679
|
inherits: false;
|
|
@@ -5665,19 +5756,6 @@ input[type="number"] {
|
|
|
5665
5756
|
syntax: "*";
|
|
5666
5757
|
inherits: false;
|
|
5667
5758
|
}
|
|
5668
|
-
@property --tw-drop-shadow-color {
|
|
5669
|
-
syntax: "*";
|
|
5670
|
-
inherits: false;
|
|
5671
|
-
}
|
|
5672
|
-
@property --tw-drop-shadow-alpha {
|
|
5673
|
-
syntax: "<percentage>";
|
|
5674
|
-
inherits: false;
|
|
5675
|
-
initial-value: 100%;
|
|
5676
|
-
}
|
|
5677
|
-
@property --tw-drop-shadow-size {
|
|
5678
|
-
syntax: "*";
|
|
5679
|
-
inherits: false;
|
|
5680
|
-
}
|
|
5681
5759
|
@property --tw-duration {
|
|
5682
5760
|
syntax: "*";
|
|
5683
5761
|
inherits: false;
|
|
@@ -5765,61 +5843,6 @@ input[type="number"] {
|
|
|
5765
5843
|
transform: translateX(0);
|
|
5766
5844
|
}
|
|
5767
5845
|
}
|
|
5768
|
-
@layer properties {
|
|
5769
|
-
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
5770
|
-
*, ::before, ::after, ::backdrop {
|
|
5771
|
-
--tw-translate-x: 0;
|
|
5772
|
-
--tw-translate-y: 0;
|
|
5773
|
-
--tw-translate-z: 0;
|
|
5774
|
-
--tw-scale-x: 1;
|
|
5775
|
-
--tw-scale-y: 1;
|
|
5776
|
-
--tw-scale-z: 1;
|
|
5777
|
-
--tw-rotate-x: initial;
|
|
5778
|
-
--tw-rotate-y: initial;
|
|
5779
|
-
--tw-rotate-z: initial;
|
|
5780
|
-
--tw-skew-x: initial;
|
|
5781
|
-
--tw-skew-y: initial;
|
|
5782
|
-
--tw-space-y-reverse: 0;
|
|
5783
|
-
--tw-space-x-reverse: 0;
|
|
5784
|
-
--tw-divide-y-reverse: 0;
|
|
5785
|
-
--tw-border-style: solid;
|
|
5786
|
-
--tw-leading: initial;
|
|
5787
|
-
--tw-font-weight: initial;
|
|
5788
|
-
--tw-tracking: initial;
|
|
5789
|
-
--tw-shadow: 0 0 #0000;
|
|
5790
|
-
--tw-shadow-color: initial;
|
|
5791
|
-
--tw-shadow-alpha: 100%;
|
|
5792
|
-
--tw-inset-shadow: 0 0 #0000;
|
|
5793
|
-
--tw-inset-shadow-color: initial;
|
|
5794
|
-
--tw-inset-shadow-alpha: 100%;
|
|
5795
|
-
--tw-ring-color: initial;
|
|
5796
|
-
--tw-ring-shadow: 0 0 #0000;
|
|
5797
|
-
--tw-inset-ring-color: initial;
|
|
5798
|
-
--tw-inset-ring-shadow: 0 0 #0000;
|
|
5799
|
-
--tw-ring-inset: initial;
|
|
5800
|
-
--tw-ring-offset-width: 0px;
|
|
5801
|
-
--tw-ring-offset-color: #fff;
|
|
5802
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
|
5803
|
-
--tw-outline-style: solid;
|
|
5804
|
-
--tw-blur: initial;
|
|
5805
|
-
--tw-brightness: initial;
|
|
5806
|
-
--tw-contrast: initial;
|
|
5807
|
-
--tw-grayscale: initial;
|
|
5808
|
-
--tw-hue-rotate: initial;
|
|
5809
|
-
--tw-invert: initial;
|
|
5810
|
-
--tw-opacity: initial;
|
|
5811
|
-
--tw-saturate: initial;
|
|
5812
|
-
--tw-sepia: initial;
|
|
5813
|
-
--tw-drop-shadow: initial;
|
|
5814
|
-
--tw-drop-shadow-color: initial;
|
|
5815
|
-
--tw-drop-shadow-alpha: 100%;
|
|
5816
|
-
--tw-drop-shadow-size: initial;
|
|
5817
|
-
--tw-duration: initial;
|
|
5818
|
-
--tw-ease: initial;
|
|
5819
|
-
--tw-content: "";
|
|
5820
|
-
}
|
|
5821
|
-
}
|
|
5822
|
-
}
|
|
5823
5846
|
@property --tw-rotate-x {
|
|
5824
5847
|
syntax: "*";
|
|
5825
5848
|
inherits: false;
|
|
@@ -5882,10 +5905,8 @@ input[type="number"] {
|
|
|
5882
5905
|
--tw-tracking: initial;
|
|
5883
5906
|
--tw-shadow: 0 0 #0000;
|
|
5884
5907
|
--tw-shadow-color: initial;
|
|
5885
|
-
--tw-shadow-alpha: 100%;
|
|
5886
5908
|
--tw-inset-shadow: 0 0 #0000;
|
|
5887
5909
|
--tw-inset-shadow-color: initial;
|
|
5888
|
-
--tw-inset-shadow-alpha: 100%;
|
|
5889
5910
|
--tw-ring-color: initial;
|
|
5890
5911
|
--tw-ring-shadow: 0 0 #0000;
|
|
5891
5912
|
--tw-inset-ring-color: initial;
|
|
@@ -5905,9 +5926,6 @@ input[type="number"] {
|
|
|
5905
5926
|
--tw-saturate: initial;
|
|
5906
5927
|
--tw-sepia: initial;
|
|
5907
5928
|
--tw-drop-shadow: initial;
|
|
5908
|
-
--tw-drop-shadow-color: initial;
|
|
5909
|
-
--tw-drop-shadow-alpha: 100%;
|
|
5910
|
-
--tw-drop-shadow-size: initial;
|
|
5911
5929
|
--tw-duration: initial;
|
|
5912
5930
|
--tw-ease: initial;
|
|
5913
5931
|
--tw-content: "";
|