@nubitio/react-admin 0.5.28 → 0.5.29
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 +32 -1
- package/package.json +7 -7
package/dist/style.css
CHANGED
|
@@ -3613,6 +3613,37 @@ html[data-density=compact] .nb-drawer__footer {
|
|
|
3613
3613
|
box-shadow: inset 0 -1px 0 var(--border-color);
|
|
3614
3614
|
}
|
|
3615
3615
|
|
|
3616
|
+
.nb-datagrid__header-group-cell {
|
|
3617
|
+
background: var(--grid-header-group-bg, var(--surface-1, var(--surface-0)));
|
|
3618
|
+
border-bottom: 1px solid var(--border-subtle);
|
|
3619
|
+
color: var(--text-primary);
|
|
3620
|
+
font-size: var(--font-size-xxs);
|
|
3621
|
+
letter-spacing: 0.06em;
|
|
3622
|
+
text-align: center;
|
|
3623
|
+
vertical-align: middle;
|
|
3624
|
+
}
|
|
3625
|
+
|
|
3626
|
+
.nb-datagrid__table--grouped-headers > thead > tr.nb-datagrid__header-band-row > th {
|
|
3627
|
+
box-shadow: inset 0 -1px 0 var(--border-color);
|
|
3628
|
+
}
|
|
3629
|
+
|
|
3630
|
+
.nb-datagrid__table--grouped-headers > thead > tr.nb-datagrid__header-leaf-row > th {
|
|
3631
|
+
box-shadow: inset 0 -1px 0 var(--border-color);
|
|
3632
|
+
top: calc(var(--nb-datagrid-header-height) * (var(--nb-datagrid-header-row-count, 1) - 1));
|
|
3633
|
+
}
|
|
3634
|
+
|
|
3635
|
+
.nb-datagrid__group--in {
|
|
3636
|
+
background: color-mix(in srgb, var(--success-color, #16a34a) 8%, var(--surface-0));
|
|
3637
|
+
}
|
|
3638
|
+
|
|
3639
|
+
.nb-datagrid__group--out {
|
|
3640
|
+
background: color-mix(in srgb, var(--danger-color, #dc2626) 8%, var(--surface-0));
|
|
3641
|
+
}
|
|
3642
|
+
|
|
3643
|
+
.nb-datagrid__group--balance {
|
|
3644
|
+
background: color-mix(in srgb, var(--accent-color) 8%, var(--surface-0));
|
|
3645
|
+
}
|
|
3646
|
+
|
|
3616
3647
|
.nb-datagrid__col-resize {
|
|
3617
3648
|
background: transparent;
|
|
3618
3649
|
bottom: 0;
|
|
@@ -3742,7 +3773,7 @@ html[data-density=compact] .nb-drawer__footer {
|
|
|
3742
3773
|
overflow: visible;
|
|
3743
3774
|
padding: 0;
|
|
3744
3775
|
position: sticky;
|
|
3745
|
-
top: var(--nb-datagrid-header-height);
|
|
3776
|
+
top: calc(var(--nb-datagrid-header-height) * var(--nb-datagrid-header-row-count, 1));
|
|
3746
3777
|
z-index: 2;
|
|
3747
3778
|
}
|
|
3748
3779
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nubitio/react-admin",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.29",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Batteries-included admin stack: core runtime, CRUD, Hydra adapter, and AdminShell.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -50,12 +50,12 @@
|
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@nubitio/
|
|
54
|
-
"@nubitio/
|
|
55
|
-
"@nubitio/
|
|
56
|
-
"@nubitio/
|
|
57
|
-
"@nubitio/
|
|
58
|
-
"@nubitio/
|
|
53
|
+
"@nubitio/hydra": "^0.5.29",
|
|
54
|
+
"@nubitio/crud": "^0.5.29",
|
|
55
|
+
"@nubitio/dashboard": "^0.5.29",
|
|
56
|
+
"@nubitio/core": "^0.5.29",
|
|
57
|
+
"@nubitio/ui": "^0.5.29",
|
|
58
|
+
"@nubitio/admin": "^0.5.29"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
61
|
"@tanstack/react-query": "^5.0.0",
|