turbo-themes 0.23.9 → 0.24.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 60879b74eb565cf75330a8b16690c2c2974ac6c4a61bca3c1acaa07bbee7d3b0
4
- data.tar.gz: a7f643a5d7cbc2fdad7ab8d19b2acc942c2ae9b7a31cf7f88622f61521c483c7
3
+ metadata.gz: d219bd8db9a09991ff87a356a0674684627202107091fd2e4785bde08164c5db
4
+ data.tar.gz: bd826c05d8d805708ed3cc1f07a949d1e2b2efa49d62885c55307233faccd3d7
5
5
  SHA512:
6
- metadata.gz: 21640866a58d2c0a9dd9ccec73adf2ff1b5d412eb5e1460bbb2ac2be65d35078f269aadcdf87446a0295916350d53b527a3d7c3dd020986de4a16f17514ad5fb
7
- data.tar.gz: 6d0ca23959520b3b6093030fce7c7751f738169cb78ad8880b9d8ec410db83ecb8ac89f63ac5b13de575188221b4ce3289a960b1c21b3a216dd01a3da2ea8d39
6
+ metadata.gz: 2b0f46a07d70e7e9b622de9016a1ce7f44f8ecf31c82d6a0def0acf934cadd736c3929dfc1578b992e1325157f51cec1a3787661a0388b352ec6bcff9bba78e5
7
+ data.tar.gz: daf5c5249b787fca1025f28b5a109aaacadd7aa46abb95e0bc8a3ba1bedd696080a9a5f3c3537d4a42f4615267c599d7a3acbc3d16d7d205224dfe368acd1d61
data/CHANGELOG.md CHANGED
@@ -10,6 +10,18 @@ The format is based on Keep a Changelog and this project adheres to SemVer.
10
10
 
11
11
  - TBD
12
12
 
13
+ ## [0.24.0] - 2026-07-18
14
+
15
+ ### ✨ Added
16
+
17
+ - add smart-link and doc-link pill component styles (#557)
18
+
19
+ ## [0.23.10] - 2026-07-18
20
+
21
+ ### 🐛 Fixed
22
+
23
+ - wire DocsLayout headings/showToc and render on-page TOC (#555)
24
+
13
25
  ## [0.23.9] - 2026-07-18
14
26
 
15
27
  ### 🐛 Fixed
data/assets/css/site.css CHANGED
@@ -2385,6 +2385,81 @@ html:root .footer-links a:hover {
2385
2385
  }
2386
2386
  }
2387
2387
 
2388
+ /* ==========================================================================
2389
+ Docs TOC (On this page)
2390
+ ========================================================================== */
2391
+
2392
+ .docs-main-inner {
2393
+ display: flex;
2394
+ gap: var(--space-2xl);
2395
+ align-items: flex-start;
2396
+ max-width: 1100px;
2397
+ margin: 0 auto;
2398
+ }
2399
+
2400
+ .docs-main-inner .docs-content {
2401
+ flex: 1;
2402
+ min-width: 0;
2403
+ max-width: 800px;
2404
+ }
2405
+
2406
+ .docs-toc {
2407
+ flex-shrink: 0;
2408
+ width: 220px;
2409
+ position: sticky;
2410
+ top: calc(64px + var(--space-xl));
2411
+ max-height: calc(100vh - 64px - var(--space-xl) * 2);
2412
+ overflow-y: auto;
2413
+ padding-left: var(--space-md);
2414
+ border-left: 2px solid var(--turbo-border-default);
2415
+ display: none;
2416
+ }
2417
+
2418
+ .docs-toc-title {
2419
+ font-size: 0.75rem;
2420
+ font-weight: 700;
2421
+ text-transform: uppercase;
2422
+ letter-spacing: 0.08em;
2423
+ color: var(--turbo-text-tertiary);
2424
+ margin: 0 0 var(--space-sm);
2425
+ }
2426
+
2427
+ .docs-toc-list {
2428
+ list-style: none;
2429
+ margin: 0;
2430
+ padding: 0;
2431
+ display: flex;
2432
+ flex-direction: column;
2433
+ gap: 2px;
2434
+ }
2435
+
2436
+ .docs-toc-item {
2437
+ line-height: 1.4;
2438
+ }
2439
+
2440
+ .docs-toc-depth-3 {
2441
+ padding-left: var(--space-md);
2442
+ }
2443
+
2444
+ .docs-toc-link {
2445
+ display: block;
2446
+ font-size: 0.8125rem;
2447
+ color: var(--turbo-text-secondary);
2448
+ text-decoration: none;
2449
+ padding: 3px 0;
2450
+ transition: color var(--transition-fast);
2451
+ }
2452
+
2453
+ .docs-toc-link:hover {
2454
+ color: var(--turbo-brand-primary);
2455
+ }
2456
+
2457
+ @media (min-width: 1280px) {
2458
+ .docs-toc {
2459
+ display: block;
2460
+ }
2461
+ }
2462
+
2388
2463
  /* ==========================================================================
2389
2464
  Breadcrumbs
2390
2465
  ========================================================================== */
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TurboThemes
4
- VERSION = "0.23.9"
4
+ VERSION = "0.24.0"
5
5
  end
6
6
 
7
7
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: turbo-themes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.9
4
+ version: 0.24.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Turbo Coder