@deframe-sdk/components 0.1.36 → 0.1.38
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 +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +53 -61
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +53 -61
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +9 -12
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -748,6 +748,9 @@
|
|
|
748
748
|
.max-h-\[88vh\] {
|
|
749
749
|
max-height: 88vh;
|
|
750
750
|
}
|
|
751
|
+
.max-h-\[200px\] {
|
|
752
|
+
max-height: 200px;
|
|
753
|
+
}
|
|
751
754
|
.max-h-\[280px\] {
|
|
752
755
|
max-height: 280px;
|
|
753
756
|
}
|
|
@@ -1668,12 +1671,6 @@
|
|
|
1668
1671
|
.border-\[var\(--deframe-widget-color-state-warning\)\] {
|
|
1669
1672
|
border-color: var(--deframe-widget-color-state-warning);
|
|
1670
1673
|
}
|
|
1671
|
-
.border-\[var\(--deframe-widget-color-state-warning\)\]\/20 {
|
|
1672
|
-
border-color: var(--deframe-widget-color-state-warning);
|
|
1673
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1674
|
-
border-color: color-mix(in oklab, var(--deframe-widget-color-state-warning) 20%, transparent);
|
|
1675
|
-
}
|
|
1676
|
-
}
|
|
1677
1674
|
.border-blue-300 {
|
|
1678
1675
|
border-color: var(--color-blue-300);
|
|
1679
1676
|
}
|
|
@@ -1746,6 +1743,12 @@
|
|
|
1746
1743
|
background-color: color-mix(in srgb,var(--deframe-widget-color-bg-secondary) 88%,transparent);
|
|
1747
1744
|
}
|
|
1748
1745
|
}
|
|
1746
|
+
.bg-\[color-mix\(in_srgb\,var\(--deframe-widget-color-state-warning\)_16\%\,transparent\)\] {
|
|
1747
|
+
background-color: var(--deframe-widget-color-state-warning);
|
|
1748
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1749
|
+
background-color: color-mix(in srgb,var(--deframe-widget-color-state-warning) 16%,transparent);
|
|
1750
|
+
}
|
|
1751
|
+
}
|
|
1749
1752
|
.bg-\[color\:color-mix\(\.\.\.\)\] {
|
|
1750
1753
|
background-color: color-mix(...);
|
|
1751
1754
|
}
|
|
@@ -2013,12 +2016,6 @@
|
|
|
2013
2016
|
.bg-\[var\(--deframe-widget-color-state-warning\)\] {
|
|
2014
2017
|
background-color: var(--deframe-widget-color-state-warning);
|
|
2015
2018
|
}
|
|
2016
|
-
.bg-\[var\(--deframe-widget-color-state-warning\)\]\/10 {
|
|
2017
|
-
background-color: var(--deframe-widget-color-state-warning);
|
|
2018
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2019
|
-
background-color: color-mix(in oklab, var(--deframe-widget-color-state-warning) 10%, transparent);
|
|
2020
|
-
}
|
|
2021
|
-
}
|
|
2022
2019
|
.bg-\[var\(--deframe-widget-color-state-warning\)\]\/20 {
|
|
2023
2020
|
background-color: var(--deframe-widget-color-state-warning);
|
|
2024
2021
|
@supports (color: color-mix(in lab, red, red)) {
|