@nubitio/react-admin 0.5.2 → 0.5.3

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.
Files changed (2) hide show
  1. package/dist/style.css +23 -3
  2. 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);
@@ -6176,11 +6182,25 @@ html[data-density=compact] .nb-crud-page-shell__footer {
6176
6182
  min-height: 0;
6177
6183
  }
6178
6184
 
6179
- .nb-audit-trail__subtitle {
6180
- color: var(--text-secondary);
6185
+ .nb-audit-trail__header {
6186
+ display: flex;
6187
+ flex-direction: column;
6188
+ gap: var(--space-1);
6189
+ }
6190
+
6191
+ .nb-audit-trail__record {
6192
+ color: var(--text-primary);
6181
6193
  font-size: var(--font-size-sm, 0.8125rem);
6194
+ font-weight: 600;
6182
6195
  line-height: 1.4;
6183
- margin: calc(var(--space-1) * -1) 0 0;
6196
+ margin: 0;
6197
+ }
6198
+
6199
+ .nb-audit-trail__drawer-label {
6200
+ color: var(--text-secondary);
6201
+ font-size: var(--font-size-xs, 0.75rem);
6202
+ line-height: 1.4;
6203
+ margin: 0;
6184
6204
  }
6185
6205
 
6186
6206
  .nb-audit-trail__meta {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nubitio/react-admin",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
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.2",
54
- "@nubitio/hydra": "^0.5.2",
55
- "@nubitio/core": "^0.5.2",
56
- "@nubitio/crud": "^0.5.2",
57
- "@nubitio/ui": "^0.5.2"
53
+ "@nubitio/core": "^0.5.3",
54
+ "@nubitio/hydra": "^0.5.3",
55
+ "@nubitio/crud": "^0.5.3",
56
+ "@nubitio/ui": "^0.5.3",
57
+ "@nubitio/admin": "^0.5.3"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "@tanstack/react-query": "^5.0.0",