@proveanything/smartlinks-utils-ui 0.10.8 → 0.10.9
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/components/AssetPicker/index.css +15 -0
- package/dist/components/AssetPicker/index.css.map +1 -1
- package/dist/components/ConditionsEditor/index.css +15 -0
- package/dist/components/ConditionsEditor/index.css.map +1 -1
- package/dist/components/FontPicker/index.css +15 -0
- package/dist/components/FontPicker/index.css.map +1 -1
- package/dist/components/IconPicker/index.css +15 -0
- package/dist/components/IconPicker/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.css +15 -0
- package/dist/components/RecordsAdmin/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.d.ts +47 -3
- package/dist/components/RecordsAdmin/index.js +51 -8
- package/dist/components/RecordsAdmin/index.js.map +1 -1
- package/dist/index.css +15 -0
- package/dist/index.css.map +1 -1
- package/package.json +1 -1
|
@@ -3439,6 +3439,21 @@
|
|
|
3439
3439
|
.ra-shell .ra-status-icon--missing {
|
|
3440
3440
|
color: hsl(var(--ra-status-missing) / 0.7);
|
|
3441
3441
|
}
|
|
3442
|
+
.ra-shell .ra-status-icon--success {
|
|
3443
|
+
color: hsl(var(--ra-success));
|
|
3444
|
+
}
|
|
3445
|
+
.ra-shell .ra-status-icon--warning {
|
|
3446
|
+
color: hsl(var(--ra-warning));
|
|
3447
|
+
}
|
|
3448
|
+
.ra-shell .ra-status-icon--danger {
|
|
3449
|
+
color: hsl(var(--ra-danger));
|
|
3450
|
+
}
|
|
3451
|
+
.ra-shell .ra-status-icon--info {
|
|
3452
|
+
color: hsl(var(--ra-info));
|
|
3453
|
+
}
|
|
3454
|
+
.ra-shell .ra-status-icon--muted {
|
|
3455
|
+
color: hsl(var(--ra-status-missing) / 0.7);
|
|
3456
|
+
}
|
|
3442
3457
|
.ra-shell .ra-row-status {
|
|
3443
3458
|
display: inline-flex;
|
|
3444
3459
|
align-items: center;
|