@deframe-sdk/components 0.1.34 → 0.1.35
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 +18 -1
- package/dist/index.d.ts +18 -1
- package/dist/index.js +236 -70
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +236 -70
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +24 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1740,6 +1740,12 @@
|
|
|
1740
1740
|
background-color: color-mix(in srgb,var(--deframe-widget-color-bg-primary) 88%,transparent);
|
|
1741
1741
|
}
|
|
1742
1742
|
}
|
|
1743
|
+
.bg-\[color-mix\(in_srgb\,var\(--deframe-widget-color-bg-secondary\)_88\%\,transparent\)\] {
|
|
1744
|
+
background-color: var(--deframe-widget-color-bg-secondary);
|
|
1745
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1746
|
+
background-color: color-mix(in srgb,var(--deframe-widget-color-bg-secondary) 88%,transparent);
|
|
1747
|
+
}
|
|
1748
|
+
}
|
|
1743
1749
|
.bg-\[color\:color-mix\(\.\.\.\)\] {
|
|
1744
1750
|
background-color: color-mix(...);
|
|
1745
1751
|
}
|
|
@@ -2565,9 +2571,24 @@
|
|
|
2565
2571
|
.text-\[22px\] {
|
|
2566
2572
|
font-size: 22px;
|
|
2567
2573
|
}
|
|
2574
|
+
.text-\[24px\] {
|
|
2575
|
+
font-size: 24px;
|
|
2576
|
+
}
|
|
2577
|
+
.text-\[26px\] {
|
|
2578
|
+
font-size: 26px;
|
|
2579
|
+
}
|
|
2568
2580
|
.text-\[28px\] {
|
|
2569
2581
|
font-size: 28px;
|
|
2570
2582
|
}
|
|
2583
|
+
.text-\[30px\] {
|
|
2584
|
+
font-size: 30px;
|
|
2585
|
+
}
|
|
2586
|
+
.text-\[32px\] {
|
|
2587
|
+
font-size: 32px;
|
|
2588
|
+
}
|
|
2589
|
+
.text-\[34px\] {
|
|
2590
|
+
font-size: 34px;
|
|
2591
|
+
}
|
|
2571
2592
|
.text-\[36px\] {
|
|
2572
2593
|
font-size: 36px;
|
|
2573
2594
|
}
|
|
@@ -2800,6 +2821,9 @@
|
|
|
2800
2821
|
.break-all {
|
|
2801
2822
|
word-break: break-all;
|
|
2802
2823
|
}
|
|
2824
|
+
.text-ellipsis {
|
|
2825
|
+
text-overflow: ellipsis;
|
|
2826
|
+
}
|
|
2803
2827
|
.whitespace-nowrap {
|
|
2804
2828
|
white-space: nowrap;
|
|
2805
2829
|
}
|