Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
63691c8
feat: add API documentation types and config
rsbh Feb 16, 2026
4a77aa6
feat: add OpenAPI parser with V2→V3 conversion
rsbh Feb 16, 2026
c0889b5
feat: add YAML spec support and slugify dep
rsbh Feb 16, 2026
0129e6a
feat: add API routes, page, and layout
rsbh Feb 16, 2026
44f133b
feat: sidebar icons and client-side navigation
rsbh Feb 16, 2026
1000368
chore: add example API specs (petstore + frontier)
rsbh Feb 16, 2026
98aadd5
refactor: extract flattenSchema to lib/schema.ts
rsbh Feb 17, 2026
5a8352b
feat: add endpoint page components
rsbh Feb 17, 2026
2f9856f
feat: sidebar method badges and endpoint page integration
rsbh Feb 17, 2026
375d2ee
refactor: replace params-table with field-section/field-row using Aps…
rsbh Feb 17, 2026
638eae3
refactor: use Apsara Tabs, Accordion, Badge and dark mode tokens
rsbh Feb 17, 2026
352bf06
feat: add code snippets panel with language dropdown
rsbh Feb 17, 2026
859b498
feat: add Apsara normalize.css import to root layout
rsbh Feb 17, 2026
301e3b9
feat: add response panel with status code dropdown
rsbh Feb 17, 2026
e7eac5a
refactor: use http.STATUS_CODES for response dropdown labels
rsbh Feb 17, 2026
7b96992
feat: add editable input fields to field-row and field-section
rsbh Feb 18, 2026
0eb110e
feat: add CodeMirror JSON editor with light/dark theme support
rsbh Feb 18, 2026
65d1278
feat: add try-it-out with proxy route and live response display
rsbh Feb 18, 2026
09b0a3b
feat: add classNames map to Layout and full-height API sidebar
rsbh Feb 18, 2026
4c37c6f
feat: add key-value header editor and unified scroll layout
rsbh Feb 18, 2026
63b4a92
feat: add API endpoints to global search with method badges
rsbh Feb 18, 2026
f5580ce
refactor: replace inline SVG icons with heroicons
rsbh Feb 18, 2026
1e70ea2
fix: address PR review feedback across API components
rsbh Feb 18, 2026
716043e
fix: remove redundant value prop from CodeBlock
rsbh Feb 18, 2026
7c5dd7e
fix: address nitpick review comments
rsbh Feb 18, 2026
e105b8a
fix: aria-label on delete button, encode operationId in routes
rsbh Feb 18, 2026
d0c6083
fix: drive body/Content-Type by requestBody presence, not method
rsbh Feb 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions examples/basic/chronicle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ theme:
search:
enabled: true
placeholder: Search documentation...
api:
- name: Petstore
spec: ./petstore.json
basePath: /apis
server:
url: https://petstore.swagger.io/v2
description: Petstore Server
auth:
type: apiKey
header: api_key
placeholder: "Enter your API key"
- name: Frontier
spec: ./frontier.yaml
basePath: /apis
server:
url: https://frontier.raystack.org
description: Frontier Server
footer:
copyright: "© 2024 Chronicle. All rights reserved."
links:
Expand Down
Loading