jamdesk 1.1.116 → 1.1.117

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jamdesk",
3
- "version": "1.1.116",
3
+ "version": "1.1.117",
4
4
  "description": "CLI for Jamdesk — build, preview, and deploy documentation sites from MDX. Dev server with hot reload, 50+ components, OpenAPI support, AI search, and Mintlify migration",
5
5
  "keywords": [
6
6
  "jamdesk",
@@ -187,7 +187,7 @@
187
187
  * Firefox 113+, Safari 16.2+). Older browsers fall back to the static rgba
188
188
  * gradient block below — they see the original look but cannot customize it.
189
189
  */
190
- body[data-theme="jam"]:not(.dark):not([data-decoration="none"]) {
190
+ html:not(.dark) body[data-theme="jam"]:not([data-decoration="none"]) {
191
191
  /* Override solid background-color from base.css */
192
192
  background-color: transparent;
193
193
  /* Fallback gradient (static, for browsers without color-mix). Older browsers
@@ -211,7 +211,7 @@ body[data-theme="jam"]:not(.dark):not([data-decoration="none"]) {
211
211
  Pre-computing in TS avoids fractional-percentage edge cases in older Blink
212
212
  (e.g., `calc(0.12 * 66.67%)` → 8.0004% can be clamped). */
213
213
  @supports (background: color-mix(in srgb, red, transparent)) {
214
- body[data-theme="jam"]:not(.dark):not([data-decoration="none"]) {
214
+ html:not(.dark) body[data-theme="jam"]:not([data-decoration="none"]) {
215
215
  background:
216
216
  radial-gradient(
217
217
  circle var(--jd-gradient-size, 500px) at var(--jd-gradient-position, top center),
@@ -228,29 +228,29 @@ body[data-theme="jam"]:not(.dark):not([data-decoration="none"]) {
228
228
 
229
229
  /* Make main content / wrappers / chrome transparent in light mode SO the gradient shows through.
230
230
  Only applies when the gradient is active (gated on :not([data-decoration="none"])). */
231
- body[data-theme="jam"]:not(.dark):not([data-decoration="none"]) main {
231
+ html:not(.dark) body[data-theme="jam"]:not([data-decoration="none"]) main {
232
232
  background-color: transparent !important;
233
233
  }
234
234
 
235
- body[data-theme="jam"]:not(.dark):not([data-decoration="none"]) > div > div.flex:not([role="dialog"]):not(:has([data-chat-panel])) {
235
+ html:not(.dark) body[data-theme="jam"]:not([data-decoration="none"]) > div > div.flex:not([role="dialog"]):not(:has([data-chat-panel])) {
236
236
  background-color: transparent !important;
237
237
  }
238
238
 
239
- body[data-theme="jam"]:not(.dark):not([data-decoration="none"]) > div > div.flex > main {
239
+ html:not(.dark) body[data-theme="jam"]:not([data-decoration="none"]) > div > div.flex > main {
240
240
  background-color: transparent !important;
241
241
  }
242
242
 
243
- body[data-theme="jam"]:not(.dark):not([data-decoration="none"]) div.flex-1.lg\:ml-\[300px\] {
243
+ html:not(.dark) body[data-theme="jam"]:not([data-decoration="none"]) div.flex-1.lg\:ml-\[300px\] {
244
244
  background-color: transparent !important;
245
245
  }
246
246
 
247
- body[data-theme="jam"]:not(.dark):not([data-decoration="none"]) header {
247
+ html:not(.dark) body[data-theme="jam"]:not([data-decoration="none"]) header {
248
248
  background-color: transparent !important;
249
249
  background: transparent !important;
250
250
  }
251
251
 
252
252
  @media (min-width: 1024px) {
253
- body[data-theme="jam"]:not(.dark):not([data-decoration="none"]) aside {
253
+ html:not(.dark) body[data-theme="jam"]:not([data-decoration="none"]) aside {
254
254
  background-color: transparent !important;
255
255
  background: transparent !important;
256
256
  }
@@ -260,26 +260,26 @@ body[data-theme="jam"]:not(.dark):not([data-decoration="none"]) header {
260
260
  /* Drop the gradient entirely; use --color-bg-primary as the flat body fill.
261
261
  Chrome is left untouched — base.css already paints it with --color-bg-primary
262
262
  because the transparent overrides above are gated off in this mode. */
263
- body[data-theme="jam"]:not(.dark)[data-decoration="none"] {
263
+ html:not(.dark) body[data-theme="jam"][data-decoration="none"] {
264
264
  background: var(--color-bg-primary, #ffffff);
265
265
  }
266
266
 
267
267
  /* ===== SCROLL-BASED GRADIENT AND HEADER CHANGES ===== */
268
- body[data-theme="jam"]:not(.dark):not([data-decoration="none"]) {
268
+ html:not(.dark) body[data-theme="jam"]:not([data-decoration="none"]) {
269
269
  transition: background 0.3s ease-out;
270
270
  }
271
271
 
272
- body[data-theme="jam"]:not(.dark):not([data-decoration="none"]).scrolled {
272
+ html:not(.dark) body[data-theme="jam"]:not([data-decoration="none"]).scrolled {
273
273
  background: var(--color-bg-primary, #ffffff) !important;
274
274
  }
275
275
 
276
- body[data-theme="jam"]:not(.dark):not([data-decoration="none"]).scrolled header {
276
+ html:not(.dark) body[data-theme="jam"]:not([data-decoration="none"]).scrolled header {
277
277
  background-color: var(--color-bg-primary) !important;
278
278
  background: var(--color-bg-primary) !important;
279
279
  transition: background 0.3s ease-out;
280
280
  }
281
281
 
282
- body[data-theme="jam"]:not(.dark):not([data-decoration="none"]) header {
282
+ html:not(.dark) body[data-theme="jam"]:not([data-decoration="none"]) header {
283
283
  transition: background 0.3s ease-out;
284
284
  }
285
285