@deframe-sdk/components 0.1.16 → 0.1.17
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.js +19 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -12
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +17 -9
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1239,9 +1239,6 @@
|
|
|
1239
1239
|
.border-\[color\:var\(--deframe-widget-color-border-secondary-dark\)\] {
|
|
1240
1240
|
border-color: var(--deframe-widget-color-border-secondary-dark);
|
|
1241
1241
|
}
|
|
1242
|
-
.border-\[color\:var\(--deframe-widget-color-border-secondary-disabled\)\] {
|
|
1243
|
-
border-color: var(--deframe-widget-color-border-secondary-disabled);
|
|
1244
|
-
}
|
|
1245
1242
|
.border-\[color\:var\(--deframe-widget-color-border-tertiary\)\] {
|
|
1246
1243
|
border-color: var(--deframe-widget-color-border-tertiary);
|
|
1247
1244
|
}
|
|
@@ -1251,6 +1248,9 @@
|
|
|
1251
1248
|
.border-\[color\:var\(--deframe-widget-color-brand-primary\)\] {
|
|
1252
1249
|
border-color: var(--deframe-widget-color-brand-primary);
|
|
1253
1250
|
}
|
|
1251
|
+
.border-\[color\:var\(--deframe-widget-color-brand-primary-disabled\)\] {
|
|
1252
|
+
border-color: var(--deframe-widget-color-brand-primary-disabled);
|
|
1253
|
+
}
|
|
1254
1254
|
.border-\[var\(--deframe-widget-color-bg-secondary\)\] {
|
|
1255
1255
|
border-color: var(--deframe-widget-color-bg-secondary);
|
|
1256
1256
|
}
|
|
@@ -1422,12 +1422,21 @@
|
|
|
1422
1422
|
.bg-\[var\(--deframe-widget-color-bg-primary-disabled\)\] {
|
|
1423
1423
|
background-color: var(--deframe-widget-color-bg-primary-disabled);
|
|
1424
1424
|
}
|
|
1425
|
+
.bg-\[var\(--deframe-widget-color-bg-raised\)\] {
|
|
1426
|
+
background-color: var(--deframe-widget-color-bg-raised);
|
|
1427
|
+
}
|
|
1428
|
+
.bg-\[var\(--deframe-widget-color-bg-raised-disabled\)\] {
|
|
1429
|
+
background-color: var(--deframe-widget-color-bg-raised-disabled);
|
|
1430
|
+
}
|
|
1425
1431
|
.bg-\[var\(--deframe-widget-color-bg-secondary\)\] {
|
|
1426
1432
|
background-color: var(--deframe-widget-color-bg-secondary);
|
|
1427
1433
|
}
|
|
1428
1434
|
.bg-\[var\(--deframe-widget-color-bg-secondary-dark\)\] {
|
|
1429
1435
|
background-color: var(--deframe-widget-color-bg-secondary-dark);
|
|
1430
1436
|
}
|
|
1437
|
+
.bg-\[var\(--deframe-widget-color-bg-subtle\)\] {
|
|
1438
|
+
background-color: var(--deframe-widget-color-bg-subtle);
|
|
1439
|
+
}
|
|
1431
1440
|
.bg-\[var\(--deframe-widget-color-bg-tertiary\)\] {
|
|
1432
1441
|
background-color: var(--deframe-widget-color-bg-tertiary);
|
|
1433
1442
|
}
|
|
@@ -2092,12 +2101,6 @@
|
|
|
2092
2101
|
.text-\[color\:var\(--deframe-widget-color-state-warning\)\] {
|
|
2093
2102
|
color: var(--deframe-widget-color-state-warning);
|
|
2094
2103
|
}
|
|
2095
|
-
.text-\[color\:var\(--deframe-widget-color-text-highlight\)\] {
|
|
2096
|
-
color: var(--deframe-widget-color-text-highlight);
|
|
2097
|
-
}
|
|
2098
|
-
.text-\[color\:var\(--deframe-widget-color-text-highlight-disabled\)\] {
|
|
2099
|
-
color: var(--deframe-widget-color-text-highlight-disabled);
|
|
2100
|
-
}
|
|
2101
2104
|
.text-\[color\:var\(--deframe-widget-color-text-inverse\)\] {
|
|
2102
2105
|
color: var(--deframe-widget-color-text-inverse);
|
|
2103
2106
|
}
|
|
@@ -2725,6 +2728,11 @@
|
|
|
2725
2728
|
background-color: var(--deframe-widget-color-bg-secondary) !important;
|
|
2726
2729
|
}
|
|
2727
2730
|
}
|
|
2731
|
+
.lg\:bg-\[var\(--deframe-widget-color-bg-raised\)\] {
|
|
2732
|
+
@media (width >= 64rem) {
|
|
2733
|
+
background-color: var(--deframe-widget-color-bg-raised);
|
|
2734
|
+
}
|
|
2735
|
+
}
|
|
2728
2736
|
.lg\:bg-\[var\(--deframe-widget-color-bg-secondary\)\] {
|
|
2729
2737
|
@media (width >= 64rem) {
|
|
2730
2738
|
background-color: var(--deframe-widget-color-bg-secondary);
|