@nubitio/react-admin 0.5.2 → 0.5.4
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/style.css +27 -4
- package/package.json +6 -6
package/dist/style.css
CHANGED
|
@@ -2741,6 +2741,12 @@ html[data-density=compact] .nb-drawer__footer {
|
|
|
2741
2741
|
.nb-timeline__item--pending .nb-timeline__label {
|
|
2742
2742
|
color: var(--text-tertiary);
|
|
2743
2743
|
}
|
|
2744
|
+
.nb-timeline__item--error .nb-timeline__label {
|
|
2745
|
+
color: var(--danger-color);
|
|
2746
|
+
}
|
|
2747
|
+
.nb-timeline__item--error:not(:last-child)::before {
|
|
2748
|
+
background: var(--border-color);
|
|
2749
|
+
}
|
|
2744
2750
|
|
|
2745
2751
|
.nb-timeline--log .nb-timeline__item {
|
|
2746
2752
|
gap: var(--space-2);
|
|
@@ -2812,8 +2818,11 @@ html[data-density=compact] .nb-drawer__footer {
|
|
|
2812
2818
|
|
|
2813
2819
|
.nb-timeline__marker--error {
|
|
2814
2820
|
background: var(--danger-color);
|
|
2821
|
+
border: 2px solid var(--danger-color);
|
|
2822
|
+
box-shadow: 0 0 0 2px color-mix(in srgb, var(--danger-color) 20%, transparent);
|
|
2815
2823
|
color: var(--surface-1);
|
|
2816
|
-
font-size:
|
|
2824
|
+
font-size: 12px;
|
|
2825
|
+
font-weight: 700;
|
|
2817
2826
|
height: 20px;
|
|
2818
2827
|
width: 20px;
|
|
2819
2828
|
}
|
|
@@ -6176,11 +6185,25 @@ html[data-density=compact] .nb-crud-page-shell__footer {
|
|
|
6176
6185
|
min-height: 0;
|
|
6177
6186
|
}
|
|
6178
6187
|
|
|
6179
|
-
.nb-audit-
|
|
6180
|
-
|
|
6188
|
+
.nb-audit-trail__header {
|
|
6189
|
+
display: flex;
|
|
6190
|
+
flex-direction: column;
|
|
6191
|
+
gap: var(--space-1);
|
|
6192
|
+
}
|
|
6193
|
+
|
|
6194
|
+
.nb-audit-trail__record {
|
|
6195
|
+
color: var(--text-primary);
|
|
6181
6196
|
font-size: var(--font-size-sm, 0.8125rem);
|
|
6197
|
+
font-weight: 600;
|
|
6198
|
+
line-height: 1.4;
|
|
6199
|
+
margin: 0;
|
|
6200
|
+
}
|
|
6201
|
+
|
|
6202
|
+
.nb-audit-trail__drawer-label {
|
|
6203
|
+
color: var(--text-secondary);
|
|
6204
|
+
font-size: var(--font-size-xs, 0.75rem);
|
|
6182
6205
|
line-height: 1.4;
|
|
6183
|
-
margin:
|
|
6206
|
+
margin: 0;
|
|
6184
6207
|
}
|
|
6185
6208
|
|
|
6186
6209
|
.nb-audit-trail__meta {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nubitio/react-admin",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Batteries-included admin stack: core runtime, CRUD, Hydra adapter, and AdminShell.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@nubitio/admin": "^0.5.
|
|
54
|
-
"@nubitio/hydra": "^0.5.
|
|
55
|
-
"@nubitio/core": "^0.5.
|
|
56
|
-
"@nubitio/crud": "^0.5.
|
|
57
|
-
"@nubitio/ui": "^0.5.
|
|
53
|
+
"@nubitio/admin": "^0.5.4",
|
|
54
|
+
"@nubitio/hydra": "^0.5.4",
|
|
55
|
+
"@nubitio/core": "^0.5.4",
|
|
56
|
+
"@nubitio/crud": "^0.5.4",
|
|
57
|
+
"@nubitio/ui": "^0.5.4"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"@tanstack/react-query": "^5.0.0",
|