@deframe-sdk/components 0.1.30 → 0.1.32
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.d.mts +178 -110
- package/dist/index.d.ts +178 -110
- package/dist/index.js +841 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +841 -11
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +68 -6
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -625,12 +625,18 @@
|
|
|
625
625
|
.h-\[32px\] {
|
|
626
626
|
height: 32px;
|
|
627
627
|
}
|
|
628
|
+
.h-\[36px\] {
|
|
629
|
+
height: 36px;
|
|
630
|
+
}
|
|
628
631
|
.h-\[38px\] {
|
|
629
632
|
height: 38px;
|
|
630
633
|
}
|
|
631
634
|
.h-\[42px\] {
|
|
632
635
|
height: 42px;
|
|
633
636
|
}
|
|
637
|
+
.h-\[48px\] {
|
|
638
|
+
height: 48px;
|
|
639
|
+
}
|
|
634
640
|
.h-\[50vh\] {
|
|
635
641
|
height: 50vh;
|
|
636
642
|
}
|
|
@@ -844,6 +850,9 @@
|
|
|
844
850
|
.w-\[40\%\] {
|
|
845
851
|
width: 40%;
|
|
846
852
|
}
|
|
853
|
+
.w-\[48px\] {
|
|
854
|
+
width: 48px;
|
|
855
|
+
}
|
|
847
856
|
.w-\[50px\] {
|
|
848
857
|
width: 50px;
|
|
849
858
|
}
|
|
@@ -937,6 +946,9 @@
|
|
|
937
946
|
.max-w-\[200px\] {
|
|
938
947
|
max-width: 200px;
|
|
939
948
|
}
|
|
949
|
+
.max-w-\[240px\] {
|
|
950
|
+
max-width: 240px;
|
|
951
|
+
}
|
|
940
952
|
.max-w-\[260px\] {
|
|
941
953
|
max-width: 260px;
|
|
942
954
|
}
|
|
@@ -949,6 +961,9 @@
|
|
|
949
961
|
.max-w-\[620px\] {
|
|
950
962
|
max-width: 620px;
|
|
951
963
|
}
|
|
964
|
+
.max-w-\[900px\] {
|
|
965
|
+
max-width: 900px;
|
|
966
|
+
}
|
|
952
967
|
.max-w-\[1400px\] {
|
|
953
968
|
max-width: 1400px;
|
|
954
969
|
}
|
|
@@ -1075,12 +1090,15 @@
|
|
|
1075
1090
|
.grid-cols-3 {
|
|
1076
1091
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1077
1092
|
}
|
|
1093
|
+
.grid-cols-\[1fr_100px_130px\] {
|
|
1094
|
+
grid-template-columns: 1fr 100px 130px;
|
|
1095
|
+
}
|
|
1096
|
+
.grid-cols-\[1fr_160px_130px\] {
|
|
1097
|
+
grid-template-columns: 1fr 160px 130px;
|
|
1098
|
+
}
|
|
1078
1099
|
.grid-cols-\[1fr_auto\] {
|
|
1079
1100
|
grid-template-columns: 1fr auto;
|
|
1080
1101
|
}
|
|
1081
|
-
.grid-cols-\[1fr_auto_auto\] {
|
|
1082
|
-
grid-template-columns: 1fr auto auto;
|
|
1083
|
-
}
|
|
1084
1102
|
.grid-cols-\[40px_1fr_auto\] {
|
|
1085
1103
|
grid-template-columns: 40px 1fr auto;
|
|
1086
1104
|
}
|
|
@@ -1370,6 +1388,10 @@
|
|
|
1370
1388
|
border-style: var(--tw-border-style);
|
|
1371
1389
|
border-width: var(--deframe-widget-size-border-xs);
|
|
1372
1390
|
}
|
|
1391
|
+
.border-x-0 {
|
|
1392
|
+
border-inline-style: var(--tw-border-style);
|
|
1393
|
+
border-inline-width: 0px;
|
|
1394
|
+
}
|
|
1373
1395
|
.border-t {
|
|
1374
1396
|
border-top-style: var(--tw-border-style);
|
|
1375
1397
|
border-top-width: 1px;
|
|
@@ -1386,6 +1408,10 @@
|
|
|
1386
1408
|
border-bottom-style: var(--tw-border-style);
|
|
1387
1409
|
border-bottom-width: 0px;
|
|
1388
1410
|
}
|
|
1411
|
+
.border-dashed {
|
|
1412
|
+
--tw-border-style: dashed;
|
|
1413
|
+
border-style: dashed;
|
|
1414
|
+
}
|
|
1389
1415
|
.border-none {
|
|
1390
1416
|
--tw-border-style: none;
|
|
1391
1417
|
border-style: none;
|
|
@@ -1685,6 +1711,9 @@
|
|
|
1685
1711
|
background-color: color-mix(in srgb,var(--deframe-widget-color-text-secondary) 12%,transparent);
|
|
1686
1712
|
}
|
|
1687
1713
|
}
|
|
1714
|
+
.bg-\[color\:var\(--deframe-widget-color-bg-secondary\)\] {
|
|
1715
|
+
background-color: var(--deframe-widget-color-bg-secondary);
|
|
1716
|
+
}
|
|
1688
1717
|
.bg-\[var\(--deframe-widget-color-bg-muted\)\] {
|
|
1689
1718
|
background-color: var(--deframe-widget-color-bg-muted);
|
|
1690
1719
|
}
|
|
@@ -1920,9 +1949,15 @@
|
|
|
1920
1949
|
--tw-gradient-to: transparent;
|
|
1921
1950
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
1922
1951
|
}
|
|
1952
|
+
.object-contain {
|
|
1953
|
+
object-fit: contain;
|
|
1954
|
+
}
|
|
1923
1955
|
.object-cover {
|
|
1924
1956
|
object-fit: cover;
|
|
1925
1957
|
}
|
|
1958
|
+
.object-center {
|
|
1959
|
+
object-position: center;
|
|
1960
|
+
}
|
|
1926
1961
|
.\!p-\[22px\] {
|
|
1927
1962
|
padding: 22px !important;
|
|
1928
1963
|
}
|
|
@@ -1998,9 +2033,6 @@
|
|
|
1998
2033
|
.px-\[6px\] {
|
|
1999
2034
|
padding-inline: 6px;
|
|
2000
2035
|
}
|
|
2001
|
-
.px-\[7px\] {
|
|
2002
|
-
padding-inline: 7px;
|
|
2003
|
-
}
|
|
2004
2036
|
.px-\[10px\] {
|
|
2005
2037
|
padding-inline: 10px;
|
|
2006
2038
|
}
|
|
@@ -2079,6 +2111,9 @@
|
|
|
2079
2111
|
.py-\[11px\] {
|
|
2080
2112
|
padding-block: 11px;
|
|
2081
2113
|
}
|
|
2114
|
+
.py-\[13px\] {
|
|
2115
|
+
padding-block: 13px;
|
|
2116
|
+
}
|
|
2082
2117
|
.py-\[14px\] {
|
|
2083
2118
|
padding-block: 14px;
|
|
2084
2119
|
}
|
|
@@ -2311,6 +2346,9 @@
|
|
|
2311
2346
|
.text-\[38px\] {
|
|
2312
2347
|
font-size: 38px;
|
|
2313
2348
|
}
|
|
2349
|
+
.text-\[length\:var\(--deframe-widget-font-size-lg\)\] {
|
|
2350
|
+
font-size: var(--deframe-widget-font-size-lg);
|
|
2351
|
+
}
|
|
2314
2352
|
.text-\[length\:var\(--deframe-widget-font-size-md\)\] {
|
|
2315
2353
|
font-size: var(--deframe-widget-font-size-md);
|
|
2316
2354
|
}
|
|
@@ -2481,6 +2519,10 @@
|
|
|
2481
2519
|
.\[font-weight\:var\(--deframe-widget-font-weight-semibold\)\] {
|
|
2482
2520
|
font-weight: var(--deframe-widget-font-weight-semibold);
|
|
2483
2521
|
}
|
|
2522
|
+
.tracking-\[0\.1em\] {
|
|
2523
|
+
--tw-tracking: 0.1em;
|
|
2524
|
+
letter-spacing: 0.1em;
|
|
2525
|
+
}
|
|
2484
2526
|
.tracking-\[0\.04em\] {
|
|
2485
2527
|
--tw-tracking: 0.04em;
|
|
2486
2528
|
letter-spacing: 0.04em;
|
|
@@ -2904,6 +2946,11 @@
|
|
|
2904
2946
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2905
2947
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2906
2948
|
}
|
|
2949
|
+
.transition-\[transform\,opacity\] {
|
|
2950
|
+
transition-property: transform,opacity;
|
|
2951
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2952
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2953
|
+
}
|
|
2907
2954
|
.transition-all {
|
|
2908
2955
|
transition-property: all;
|
|
2909
2956
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -3071,6 +3118,16 @@
|
|
|
3071
3118
|
}
|
|
3072
3119
|
}
|
|
3073
3120
|
}
|
|
3121
|
+
.hover\:bg-\[color\:color-mix\(in_srgb\,var\(--deframe-widget-color-bg-tertiary\)_40\%\,transparent\)\] {
|
|
3122
|
+
&:hover {
|
|
3123
|
+
@media (hover: hover) {
|
|
3124
|
+
background-color: var(--deframe-widget-color-bg-tertiary);
|
|
3125
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3126
|
+
background-color: color-mix(in srgb,var(--deframe-widget-color-bg-tertiary) 40%,transparent);
|
|
3127
|
+
}
|
|
3128
|
+
}
|
|
3129
|
+
}
|
|
3130
|
+
}
|
|
3074
3131
|
.hover\:bg-\[color\:color-mix\(in_srgb\,var\(--deframe-widget-color-bg-tertiary\)_60\%\,transparent\)\] {
|
|
3075
3132
|
&:hover {
|
|
3076
3133
|
@media (hover: hover) {
|
|
@@ -3302,6 +3359,11 @@
|
|
|
3302
3359
|
outline-style: none;
|
|
3303
3360
|
}
|
|
3304
3361
|
}
|
|
3362
|
+
.active\:scale-\[0\.98\] {
|
|
3363
|
+
&:active {
|
|
3364
|
+
scale: 0.98;
|
|
3365
|
+
}
|
|
3366
|
+
}
|
|
3305
3367
|
.active\:scale-\[0\.99\] {
|
|
3306
3368
|
&:active {
|
|
3307
3369
|
scale: 0.99;
|