@beforesemicolon/builder 1.8.24 → 1.8.25

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.
@@ -309,6 +309,67 @@ body {
309
309
  color: var(--foreground);
310
310
  }
311
311
 
312
+ #documentation article table {
313
+ display: block;
314
+ width: 100%;
315
+ max-width: 100%;
316
+ margin: 28px 0 36px;
317
+ overflow-x: auto;
318
+ border-collapse: separate;
319
+ border-spacing: 0;
320
+ border: 1px solid var(--surface-border);
321
+ border-radius: 8px;
322
+ background: var(--surface);
323
+ box-shadow: var(--shadow-card);
324
+ }
325
+
326
+ #documentation article thead {
327
+ background: color-mix(in oklch, var(--primary) 10%, var(--card));
328
+ }
329
+
330
+ #documentation article th,
331
+ #documentation article td {
332
+ min-width: 140px;
333
+ padding: 12px 16px;
334
+ border-right: 1px solid var(--surface-border);
335
+ border-bottom: 1px solid var(--surface-border);
336
+ text-align: left;
337
+ vertical-align: top;
338
+ font-size: 0.92rem;
339
+ line-height: 1.55;
340
+ }
341
+
342
+ #documentation article th {
343
+ color: var(--foreground);
344
+ font-weight: 700;
345
+ font-size: 0.78rem;
346
+ letter-spacing: 0.04rem;
347
+ text-transform: uppercase;
348
+ white-space: nowrap;
349
+ }
350
+
351
+ #documentation article td {
352
+ color: var(--foreground);
353
+ background: color-mix(in oklch, var(--background) 34%, transparent);
354
+ }
355
+
356
+ #documentation article tbody tr:nth-child(even) td {
357
+ background: color-mix(in oklch, var(--surface-muted) 72%, transparent);
358
+ }
359
+
360
+ #documentation article th:last-child,
361
+ #documentation article td:last-child {
362
+ border-right: 0;
363
+ }
364
+
365
+ #documentation article tbody tr:last-child td {
366
+ border-bottom: 0;
367
+ }
368
+
369
+ #documentation article td code:not(.hljs) {
370
+ white-space: nowrap;
371
+ }
372
+
312
373
  /* #edit-doc */
313
374
  #edit-doc {
314
375
  margin-top: 40px;
@@ -309,6 +309,67 @@ body {
309
309
  color: var(--foreground);
310
310
  }
311
311
 
312
+ #documentation article table {
313
+ display: block;
314
+ width: 100%;
315
+ max-width: 100%;
316
+ margin: 28px 0 36px;
317
+ overflow-x: auto;
318
+ border-collapse: separate;
319
+ border-spacing: 0;
320
+ border: 1px solid var(--surface-border);
321
+ border-radius: 8px;
322
+ background: var(--surface);
323
+ box-shadow: var(--shadow-card);
324
+ }
325
+
326
+ #documentation article thead {
327
+ background: color-mix(in oklch, var(--primary) 10%, var(--card));
328
+ }
329
+
330
+ #documentation article th,
331
+ #documentation article td {
332
+ min-width: 140px;
333
+ padding: 12px 16px;
334
+ border-right: 1px solid var(--surface-border);
335
+ border-bottom: 1px solid var(--surface-border);
336
+ text-align: left;
337
+ vertical-align: top;
338
+ font-size: 0.92rem;
339
+ line-height: 1.55;
340
+ }
341
+
342
+ #documentation article th {
343
+ color: var(--foreground);
344
+ font-weight: 700;
345
+ font-size: 0.78rem;
346
+ letter-spacing: 0.04rem;
347
+ text-transform: uppercase;
348
+ white-space: nowrap;
349
+ }
350
+
351
+ #documentation article td {
352
+ color: var(--foreground);
353
+ background: color-mix(in oklch, var(--background) 34%, transparent);
354
+ }
355
+
356
+ #documentation article tbody tr:nth-child(even) td {
357
+ background: color-mix(in oklch, var(--surface-muted) 72%, transparent);
358
+ }
359
+
360
+ #documentation article th:last-child,
361
+ #documentation article td:last-child {
362
+ border-right: 0;
363
+ }
364
+
365
+ #documentation article tbody tr:last-child td {
366
+ border-bottom: 0;
367
+ }
368
+
369
+ #documentation article td code:not(.hljs) {
370
+ white-space: nowrap;
371
+ }
372
+
312
373
  /* #edit-doc */
313
374
  #edit-doc {
314
375
  margin-top: 40px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beforesemicolon/builder",
3
- "version": "1.8.24",
3
+ "version": "1.8.25",
4
4
  "description": "Utilities to build npm packages and documentation website",
5
5
  "engines": {
6
6
  "node": ">=18.16.0"