@deframe-sdk/components 0.1.37 → 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 +50 -35
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +50 -35
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +6 -12
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1671,12 +1671,6 @@
|
|
|
1671
1671
|
.border-\[var\(--deframe-widget-color-state-warning\)\] {
|
|
1672
1672
|
border-color: var(--deframe-widget-color-state-warning);
|
|
1673
1673
|
}
|
|
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
1674
|
.border-blue-300 {
|
|
1681
1675
|
border-color: var(--color-blue-300);
|
|
1682
1676
|
}
|
|
@@ -1749,6 +1743,12 @@
|
|
|
1749
1743
|
background-color: color-mix(in srgb,var(--deframe-widget-color-bg-secondary) 88%,transparent);
|
|
1750
1744
|
}
|
|
1751
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
|
+
}
|
|
1752
1752
|
.bg-\[color\:color-mix\(\.\.\.\)\] {
|
|
1753
1753
|
background-color: color-mix(...);
|
|
1754
1754
|
}
|
|
@@ -2016,12 +2016,6 @@
|
|
|
2016
2016
|
.bg-\[var\(--deframe-widget-color-state-warning\)\] {
|
|
2017
2017
|
background-color: var(--deframe-widget-color-state-warning);
|
|
2018
2018
|
}
|
|
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
2019
|
.bg-\[var\(--deframe-widget-color-state-warning\)\]\/20 {
|
|
2026
2020
|
background-color: var(--deframe-widget-color-state-warning);
|
|
2027
2021
|
@supports (color: color-mix(in lab, red, red)) {
|