@deframe-sdk/components 0.1.37 → 0.1.39
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 +74 -45
- package/dist/index.d.ts +74 -45
- package/dist/index.js +688 -357
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +686 -358
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +32 -12
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -721,6 +721,9 @@
|
|
|
721
721
|
.h-\[844px\] {
|
|
722
722
|
height: 844px;
|
|
723
723
|
}
|
|
724
|
+
.h-\[calc\(100vh-48px\)\] {
|
|
725
|
+
height: calc(100vh - 48px);
|
|
726
|
+
}
|
|
724
727
|
.h-\[min\(620px\,calc\(100vh-64px\)\)\] {
|
|
725
728
|
height: min(620px, calc(100vh - 64px));
|
|
726
729
|
}
|
|
@@ -1671,12 +1674,6 @@
|
|
|
1671
1674
|
.border-\[var\(--deframe-widget-color-state-warning\)\] {
|
|
1672
1675
|
border-color: var(--deframe-widget-color-state-warning);
|
|
1673
1676
|
}
|
|
1674
|
-
.border-\[var\(--deframe-widget-color-state-warning\)\]\/20 {
|
|
1675
|
-
border-color: var(--deframe-widget-color-state-warning);
|
|
1676
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1677
|
-
border-color: color-mix(in oklab, var(--deframe-widget-color-state-warning) 20%, transparent);
|
|
1678
|
-
}
|
|
1679
|
-
}
|
|
1680
1677
|
.border-blue-300 {
|
|
1681
1678
|
border-color: var(--color-blue-300);
|
|
1682
1679
|
}
|
|
@@ -1749,6 +1746,12 @@
|
|
|
1749
1746
|
background-color: color-mix(in srgb,var(--deframe-widget-color-bg-secondary) 88%,transparent);
|
|
1750
1747
|
}
|
|
1751
1748
|
}
|
|
1749
|
+
.bg-\[color-mix\(in_srgb\,var\(--deframe-widget-color-state-warning\)_16\%\,transparent\)\] {
|
|
1750
|
+
background-color: var(--deframe-widget-color-state-warning);
|
|
1751
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1752
|
+
background-color: color-mix(in srgb,var(--deframe-widget-color-state-warning) 16%,transparent);
|
|
1753
|
+
}
|
|
1754
|
+
}
|
|
1752
1755
|
.bg-\[color\:color-mix\(\.\.\.\)\] {
|
|
1753
1756
|
background-color: color-mix(...);
|
|
1754
1757
|
}
|
|
@@ -2016,12 +2019,6 @@
|
|
|
2016
2019
|
.bg-\[var\(--deframe-widget-color-state-warning\)\] {
|
|
2017
2020
|
background-color: var(--deframe-widget-color-state-warning);
|
|
2018
2021
|
}
|
|
2019
|
-
.bg-\[var\(--deframe-widget-color-state-warning\)\]\/10 {
|
|
2020
|
-
background-color: var(--deframe-widget-color-state-warning);
|
|
2021
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2022
|
-
background-color: color-mix(in oklab, var(--deframe-widget-color-state-warning) 10%, transparent);
|
|
2023
|
-
}
|
|
2024
|
-
}
|
|
2025
2022
|
.bg-\[var\(--deframe-widget-color-state-warning\)\]\/20 {
|
|
2026
2023
|
background-color: var(--deframe-widget-color-state-warning);
|
|
2027
2024
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2992,6 +2989,9 @@
|
|
|
2992
2989
|
.text-yellow-800 {
|
|
2993
2990
|
color: var(--color-yellow-800);
|
|
2994
2991
|
}
|
|
2992
|
+
.lowercase {
|
|
2993
|
+
text-transform: lowercase;
|
|
2994
|
+
}
|
|
2995
2995
|
.uppercase {
|
|
2996
2996
|
text-transform: uppercase;
|
|
2997
2997
|
}
|
|
@@ -3905,6 +3905,26 @@
|
|
|
3905
3905
|
appearance: none;
|
|
3906
3906
|
}
|
|
3907
3907
|
}
|
|
3908
|
+
.\[\&\:\:-webkit-scrollbar\]\:w-\[6px\] {
|
|
3909
|
+
&::-webkit-scrollbar {
|
|
3910
|
+
width: 6px;
|
|
3911
|
+
}
|
|
3912
|
+
}
|
|
3913
|
+
.\[\&\:\:-webkit-scrollbar-thumb\]\:rounded-full {
|
|
3914
|
+
&::-webkit-scrollbar-thumb {
|
|
3915
|
+
border-radius: calc(infinity * 1px);
|
|
3916
|
+
}
|
|
3917
|
+
}
|
|
3918
|
+
.\[\&\:\:-webkit-scrollbar-thumb\]\:bg-\[color\:var\(--deframe-widget-color-border-secondary\)\] {
|
|
3919
|
+
&::-webkit-scrollbar-thumb {
|
|
3920
|
+
background-color: var(--deframe-widget-color-border-secondary);
|
|
3921
|
+
}
|
|
3922
|
+
}
|
|
3923
|
+
.\[\&\:\:-webkit-scrollbar-track\]\:bg-transparent {
|
|
3924
|
+
&::-webkit-scrollbar-track {
|
|
3925
|
+
background-color: transparent;
|
|
3926
|
+
}
|
|
3927
|
+
}
|
|
3908
3928
|
}
|
|
3909
3929
|
.deframe-widget.widget-theme--rounded, .deframe-widget.rounded {
|
|
3910
3930
|
--deframe-widget-font-family: "Space Grotesk", "Avenir Next", sans-serif;
|