@nonoun/native-dashboard 0.4.17 → 0.4.19

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.
@@ -230,29 +230,23 @@
230
230
  min-width: 0;
231
231
  max-width: 480px;
232
232
  overflow: clip;
233
- padding: 0;
234
233
  flex-shrink: 0;
235
234
  background: var(--n-ground);
236
235
  border-radius: var(--n-radius);
237
236
  transition:
238
237
  width var(--n-duration) var(--n-easing),
239
- min-width var(--n-duration) var(--n-easing),
240
- padding var(--n-duration) var(--n-easing),
241
- margin var(--n-duration) var(--n-easing);
238
+ min-width var(--n-duration) var(--n-easing);
242
239
  }
243
240
 
244
241
  :where(native-app) :where(section.content) > :where(n-aside)[open] {
245
- width: var(--n-aside-width, 360px);
246
- min-width: var(--n-aside-min-width, 280px);
247
- margin-inline-start: calc(var(--n-space-k) * var(--n-space));
242
+ width: var(--n-aside-width);
243
+ min-width: var(--n-aside-min-width);
248
244
  overflow-y: auto;
249
- padding: calc(var(--n-space-k) * var(--n-space));
250
245
  }
251
246
 
252
- /* WHY: When n-chat manages its own sub-container padding and scroll,
253
- the layout container delegates — no own padding, no own scroll. */
247
+ /* WHY: When n-chat manages its own sub-container scroll,
248
+ the layout container delegates — no own scroll. */
254
249
  :where(native-app) :where(section.content) > :where(n-aside)[open]:has(> n-chat) {
255
- padding: 0;
256
250
  overflow: visible;
257
251
  }
258
252
 
@@ -1045,25 +1039,18 @@
1045
1039
  padding: 0;
1046
1040
  transition:
1047
1041
  width var(--n-duration) var(--n-easing),
1048
- min-width var(--n-duration) var(--n-easing),
1049
- padding var(--n-duration) var(--n-easing),
1050
- margin var(--n-duration) var(--n-easing);
1042
+ min-width var(--n-duration) var(--n-easing);
1051
1043
  }
1052
1044
 
1053
1045
  :where(n-dashboard-panel)[aside][open] {
1054
- width: 360px;
1055
- min-width: 280px;
1056
- margin-inline-start: calc(var(--n-space-k) * var(--n-space));
1046
+ width: var(--n-aside-width);
1047
+ min-width: var(--n-aside-min-width);
1057
1048
  overflow-y: auto;
1058
- padding: calc(var(--n-space-k) * var(--n-space));
1059
1049
  }
1060
1050
 
1061
- /* WHY: When n-chat manages its own sub-container padding and scroll,
1062
- the layout container delegates — no own padding, no own scroll.
1063
- overflow: visible lets CSS anchor-positioned popovers (n-select etc.)
1064
- resolve through to the top layer. */
1051
+ /* WHY: When n-chat manages its own sub-container scroll,
1052
+ the layout container delegates — no own scroll. */
1065
1053
  :where(n-dashboard-panel)[aside][open]:has(> n-chat) {
1066
- padding: 0;
1067
1054
  overflow: visible;
1068
1055
  }
1069
1056
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nonoun/native-dashboard",
3
- "version": "0.4.17",
3
+ "version": "0.4.19",
4
4
  "description": "Dashboard layout and navigation components for @nonoun/native-ui",
5
5
  "license": "MIT",
6
6
  "type": "module",