@nubitio/react-admin 0.5.14 → 0.5.15

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 +10 -3
  2. package/package.json +6 -6
package/dist/style.css CHANGED
@@ -5848,6 +5848,7 @@ html[data-density=compact] .nb-datagrid .nb-badge {
5848
5848
  font-size: var(--font-size-sm);
5849
5849
  font-weight: var(--font-weight-semibold);
5850
5850
  min-height: 38px;
5851
+ overflow: visible;
5851
5852
  padding: 8px;
5852
5853
  vertical-align: middle;
5853
5854
  }
@@ -5871,7 +5872,8 @@ html[data-density=compact] .nb-datagrid .nb-badge {
5871
5872
  background: var(--surface-2);
5872
5873
  border-top: 0;
5873
5874
  flex: 0 0 auto;
5874
- overflow: hidden;
5875
+ overflow-x: auto;
5876
+ overflow-y: hidden;
5875
5877
  scrollbar-width: none;
5876
5878
  }
5877
5879
  .nb-form__detail-summary-wrap::-webkit-scrollbar {
@@ -5884,10 +5886,12 @@ html[data-density=compact] .nb-datagrid .nb-badge {
5884
5886
  }
5885
5887
 
5886
5888
  .nb-form__detail-summary-cell {
5887
- align-items: baseline;
5889
+ align-items: flex-end;
5888
5890
  display: inline-flex;
5889
- gap: var(--space-2);
5891
+ flex-direction: column;
5892
+ gap: 2px;
5890
5893
  min-width: 100%;
5894
+ overflow: visible;
5891
5895
  }
5892
5896
 
5893
5897
  .nb-form__detail-summary-label {
@@ -5900,9 +5904,12 @@ html[data-density=compact] .nb-datagrid .nb-badge {
5900
5904
 
5901
5905
  .nb-form__detail-summary-value {
5902
5906
  color: var(--text-primary);
5907
+ display: block;
5903
5908
  font-size: var(--font-size-md);
5904
5909
  font-weight: var(--font-weight-bold);
5910
+ max-width: none;
5905
5911
  white-space: nowrap;
5912
+ width: max-content;
5906
5913
  }
5907
5914
 
5908
5915
  .nb-form__detail-table td .nb-form__control,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nubitio/react-admin",
3
- "version": "0.5.14",
3
+ "version": "0.5.15",
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.14",
54
- "@nubitio/hydra": "^0.5.14",
55
- "@nubitio/core": "^0.5.14",
56
- "@nubitio/crud": "^0.5.14",
57
- "@nubitio/ui": "^0.5.14"
53
+ "@nubitio/admin": "^0.5.15",
54
+ "@nubitio/hydra": "^0.5.15",
55
+ "@nubitio/core": "^0.5.15",
56
+ "@nubitio/crud": "^0.5.15",
57
+ "@nubitio/ui": "^0.5.15"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "@tanstack/react-query": "^5.0.0",