@nubitio/react-admin 0.5.6 → 0.5.7
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 +18 -18
- package/package.json +6 -6
package/dist/style.css
CHANGED
|
@@ -2751,19 +2751,14 @@ html[data-density=compact] .nb-drawer__footer {
|
|
|
2751
2751
|
.nb-timeline--log .nb-timeline__item {
|
|
2752
2752
|
gap: var(--space-2);
|
|
2753
2753
|
grid-template-columns: 16px 1fr;
|
|
2754
|
-
padding: var(--space-
|
|
2755
|
-
}
|
|
2756
|
-
.nb-timeline--log .nb-timeline__item:not(:last-child) {
|
|
2757
|
-
border-bottom: 1px solid var(--border-color);
|
|
2758
|
-
padding-bottom: var(--space-3);
|
|
2759
|
-
}
|
|
2760
|
-
.nb-timeline--log .nb-timeline__item:not(:last-child)::before {
|
|
2761
|
-
left: 7px;
|
|
2762
|
-
top: 18px;
|
|
2754
|
+
padding: 0 0 var(--space-4);
|
|
2763
2755
|
}
|
|
2764
2756
|
.nb-timeline--log .nb-timeline__item:last-child {
|
|
2765
2757
|
padding-bottom: 0;
|
|
2766
2758
|
}
|
|
2759
|
+
.nb-timeline--log .nb-timeline__item::before {
|
|
2760
|
+
display: none;
|
|
2761
|
+
}
|
|
2767
2762
|
|
|
2768
2763
|
.nb-timeline__marker-col {
|
|
2769
2764
|
align-items: flex-start;
|
|
@@ -3302,9 +3297,13 @@ html[data-density=compact] .nb-drawer__footer {
|
|
|
3302
3297
|
.nb-datagrid__row:hover td {
|
|
3303
3298
|
background: var(--grid-row-hover-bg, var(--surface-2));
|
|
3304
3299
|
}
|
|
3300
|
+
.nb-datagrid__row:focus-visible {
|
|
3301
|
+
outline: 2px solid var(--focus-ring-color);
|
|
3302
|
+
outline-offset: -2px;
|
|
3303
|
+
}
|
|
3305
3304
|
.nb-datagrid__row:focus-visible td {
|
|
3306
3305
|
background: color-mix(in srgb, var(--accent-color) 7%, var(--surface-1));
|
|
3307
|
-
box-shadow:
|
|
3306
|
+
box-shadow: none;
|
|
3308
3307
|
}
|
|
3309
3308
|
.nb-datagrid__row.nb-datagrid__row--selected td {
|
|
3310
3309
|
background: var(--grid-row-selected-bg, var(--surface-2));
|
|
@@ -4121,7 +4120,7 @@ html[data-density=compact] .nb-datagrid .nb-badge {
|
|
|
4121
4120
|
inset: 0;
|
|
4122
4121
|
justify-content: center;
|
|
4123
4122
|
position: absolute;
|
|
4124
|
-
z-index:
|
|
4123
|
+
z-index: 10;
|
|
4125
4124
|
}
|
|
4126
4125
|
|
|
4127
4126
|
.nb-datagrid__loading-card {
|
|
@@ -6178,6 +6177,10 @@ html[data-density=compact] .nb-crud-page-shell__footer {
|
|
|
6178
6177
|
gap: var(--space-1);
|
|
6179
6178
|
padding: var(--space-2) var(--space-3);
|
|
6180
6179
|
}
|
|
6180
|
+
.nb-audit-trail-drawer .nb-drawer__body {
|
|
6181
|
+
padding: var(--space-4) var(--space-5) var(--space-6);
|
|
6182
|
+
}
|
|
6183
|
+
|
|
6181
6184
|
.nb-audit-trail {
|
|
6182
6185
|
display: flex;
|
|
6183
6186
|
flex-direction: column;
|
|
@@ -6229,12 +6232,9 @@ html[data-density=compact] .nb-crud-page-shell__footer {
|
|
|
6229
6232
|
}
|
|
6230
6233
|
|
|
6231
6234
|
.nb-audit-trail__change {
|
|
6232
|
-
background: var(--surface-2);
|
|
6233
|
-
border: 1px solid var(--border-color);
|
|
6234
|
-
border-radius: var(--radius-md, 6px);
|
|
6235
6235
|
display: grid;
|
|
6236
6236
|
gap: var(--space-1);
|
|
6237
|
-
padding:
|
|
6237
|
+
padding: 0;
|
|
6238
6238
|
}
|
|
6239
6239
|
|
|
6240
6240
|
.nb-audit-trail__field {
|
|
@@ -6259,13 +6259,13 @@ html[data-density=compact] .nb-crud-page-shell__footer {
|
|
|
6259
6259
|
}
|
|
6260
6260
|
|
|
6261
6261
|
.nb-audit-trail__value--before {
|
|
6262
|
-
color: var(--danger-color);
|
|
6262
|
+
color: var(--status-danger-text, var(--error-color));
|
|
6263
6263
|
text-decoration: line-through;
|
|
6264
|
-
text-decoration-color: color-mix(in srgb, var(--
|
|
6264
|
+
text-decoration-color: color-mix(in srgb, var(--error-color) 55%, transparent);
|
|
6265
6265
|
}
|
|
6266
6266
|
|
|
6267
6267
|
.nb-audit-trail__value--after {
|
|
6268
|
-
color: var(--success-color);
|
|
6268
|
+
color: var(--status-success-text, var(--success-color));
|
|
6269
6269
|
font-weight: 500;
|
|
6270
6270
|
}
|
|
6271
6271
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nubitio/react-admin",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.7",
|
|
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/
|
|
54
|
-
"@nubitio/
|
|
55
|
-
"@nubitio/
|
|
56
|
-
"@nubitio/
|
|
57
|
-
"@nubitio/
|
|
53
|
+
"@nubitio/admin": "^0.5.7",
|
|
54
|
+
"@nubitio/hydra": "^0.5.7",
|
|
55
|
+
"@nubitio/core": "^0.5.7",
|
|
56
|
+
"@nubitio/ui": "^0.5.7",
|
|
57
|
+
"@nubitio/crud": "^0.5.7"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"@tanstack/react-query": "^5.0.0",
|