@docubook/create 1.15.1 → 1.15.2

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.
Files changed (40) hide show
  1. package/package.json +2 -3
  2. package/src/dist/app/page.tsx +1 -1
  3. package/src/dist/contents/docs/api-reference/delete/index.mdx +63 -0
  4. package/src/dist/contents/docs/api-reference/fetch/index.mdx +63 -0
  5. package/src/dist/contents/docs/api-reference/get/index.mdx +63 -0
  6. package/src/dist/contents/docs/api-reference/post/index.mdx +63 -0
  7. package/src/dist/contents/docs/changelog/version-1/index.mdx +22 -660
  8. package/src/dist/contents/docs/changelog/version-2/index.mdx +49 -0
  9. package/src/dist/contents/docs/changelog/version-3/index.mdx +49 -0
  10. package/src/dist/contents/docs/getting-started/development/index.mdx +63 -0
  11. package/src/dist/contents/docs/getting-started/introduction/index.mdx +49 -36
  12. package/src/dist/contents/docs/getting-started/quick-start-guide/index.mdx +44 -126
  13. package/src/dist/docu.json +90 -104
  14. package/src/dist/package.json +1 -1
  15. package/src/dist/contents/docs/components/accordion/index.mdx +0 -86
  16. package/src/dist/contents/docs/components/button/index.mdx +0 -40
  17. package/src/dist/contents/docs/components/card/index.mdx +0 -68
  18. package/src/dist/contents/docs/components/card-group/index.mdx +0 -47
  19. package/src/dist/contents/docs/components/code-block/index.mdx +0 -39
  20. package/src/dist/contents/docs/components/custom/index.mdx +0 -38
  21. package/src/dist/contents/docs/components/file-tree/index.mdx +0 -109
  22. package/src/dist/contents/docs/components/image/index.mdx +0 -37
  23. package/src/dist/contents/docs/components/index.mdx +0 -9
  24. package/src/dist/contents/docs/components/keyboard/index.mdx +0 -117
  25. package/src/dist/contents/docs/components/link/index.mdx +0 -34
  26. package/src/dist/contents/docs/components/note/index.mdx +0 -44
  27. package/src/dist/contents/docs/components/release-note/index.mdx +0 -130
  28. package/src/dist/contents/docs/components/stepper/index.mdx +0 -45
  29. package/src/dist/contents/docs/components/tabs/index.mdx +0 -70
  30. package/src/dist/contents/docs/components/tooltips/index.mdx +0 -22
  31. package/src/dist/contents/docs/components/youtube/index.mdx +0 -23
  32. package/src/dist/contents/docs/getting-started/customize/index.mdx +0 -92
  33. package/src/dist/contents/docs/getting-started/index.mdx +0 -9
  34. package/src/dist/contents/docs/getting-started/installation/index.mdx +0 -84
  35. package/src/dist/contents/docs/getting-started/project-structure/index.mdx +0 -87
  36. package/src/dist/contents/docs/getting-started/theme-colors/coffee/index.mdx +0 -165
  37. package/src/dist/contents/docs/getting-started/theme-colors/default/index.mdx +0 -160
  38. package/src/dist/contents/docs/getting-started/theme-colors/freshlime/index.mdx +0 -161
  39. package/src/dist/contents/docs/getting-started/theme-colors/index.mdx +0 -9
  40. package/src/dist/contents/docs/getting-started/theme-colors/llms/index.mdx +0 -77
@@ -1,687 +1,49 @@
1
1
  ---
2
- title: Release Version 1.0+
3
- description: List of latest changes and updates on DocuBook
4
- date: 02-08-2025
2
+ title : Version 1
3
+ description : changelog version
4
+ date : 10-12-2024
5
5
  ---
6
6
 
7
- <Note type="note" title="Version History">
8
- This changelog contains a list of all the changes made to the DocuBook template. It will be updated with each new release and will include information about new features, bug fixes, and other improvements.
9
- </Note>
7
+ ## Render as
10
8
 
11
- <div className="sr-only">
12
- ### v 1.15.1
13
- </div>
14
-
15
- <Release version="1.15.1" date="2025-08-06" title="Algolia DocSearch for better search result">
16
- <Changes type="added">
17
- - new DocSearch.tsx components
18
- - add props type algolia
19
- - add searchprops
20
- - add algolia.css
21
- </Changes>
22
- </Release>
23
-
24
- <Note type="warning" title="environment">
25
- To use Algolia DocSearch, you need to configure the following environment variables:
26
-
27
- ```plaintext
28
- NEXT_PUBLIC_ALGOLIA_DOCSEARCH_APP_ID="your_app_id"
29
- NEXT_PUBLIC_ALGOLIA_DOCSEARCH_API_KEY="your_api_key"
30
- NEXT_PUBLIC_ALGOLIA_DOCSEARCH_INDEX_NAME="your_index_name"
31
- ```
32
-
33
- in the navbar component, add a prop to the class
34
-
35
- ```
36
- Change <Search /> to <Search type="algolia" />
37
- ```
38
- </Note>
39
-
40
- <div className="sr-only">
41
- ### v 1.14.2
42
- </div>
43
-
44
- <Release version="1.14.2" date="2025-08-05" title="Refactor & Fix: Decouple Search Component and Resolve Type Errors">
45
- <Changes type="added">
46
- - Refactor Search component into three distinct components: Search, SearchTrigger, and SearchModal for better maintainability and scalability.
47
- - New SearchTrigger components
48
- - New SearchModal components
49
- </Changes>
50
- <Changes type="fixed">
51
- - Resolve TypeScript error for missing 'noLink' property on the 'Page' type after refactoring.
52
- - Fix TypeScript error for missing 'context' property by providing a complete inline type annotation in the SearchModal component.
53
- </Changes>
54
- </Release>
55
-
56
- <div className="sr-only">
57
- ### v 1.14.0
58
- </div>
59
-
60
- <Release version="1.14.0" date="2025-08-02" title="Dev: Add workflow to run Sync NPM package">
61
- <Changes type="added">
62
- - Add workflows to run Sync NPM package
63
- - Add sync-from-npm.yml
64
- - Add PR to organization github.com/DocuBook/docubook
65
- </Changes>
66
- </Release>
67
-
68
- <div className="sr-only">
69
- ### v 1.13.9
70
- </div>
71
-
72
- <Release version="1.13.9" date="2025-07-27" title="Code Cleanup & Stability Improvements">
73
- <Changes type="added">
74
- - Added proper type definitions for unist-util-visit
75
- - Added .eslintrc.json configuration file
76
- - Added proper type checking for node values in markdown processing
77
- </Changes>
78
- <Changes type="improved">
79
- - Enhanced type safety in lib/markdown.ts with proper TypeScript interfaces
80
- - Converted interface extensions to type aliases in UI components for consistency
81
- - Improved code organization across multiple files
82
- </Changes>
83
- <Changes type="fixed">
84
- - Fixed potential null reference in markdown.ts when processing code blocks
85
- - Updated import for MDXRemote in mdx-provider.tsx
86
- - Optimized event listener cleanup in toc-observer.tsx
87
- </Changes>
88
- <Changes type="removed">
89
- - Removed unused state and variables in toc-observer.tsx
90
- - Removed unused imports for cleaner codebase
91
- </Changes>
92
- </Release>
93
-
94
- <div className="sr-only">
95
- ### v 1.13.6
96
- </div>
97
-
98
- <Release version="1.13.6" date="2025-06-01" title="Improve sheet leftbar and search icon">
99
- <Changes type="improved">
100
- - Improve sheet leftbar and search icon
101
- - color scheme for sheet leftbar
102
- - color scheme for search icon
103
- </Changes>
104
- </Release>
105
-
106
- <div className="sr-only">
107
- ### v 1.13.5
108
- </div>
109
-
110
- <Release version="1.13.5" date="2025-05-31" title="Add Theme schema for consistent theme">
111
- <Changes type="added">
112
- - Add Theme schema
113
- - Add Freshlime theme
114
- - Add Coffee theme
115
- - Add llms context for generated theme with AI
116
- </Changes>
117
- <Changes type="improved">
118
- - Markdown support for theme-colors
119
- - consistent theme-colors page
120
- - all components now consistent with theme-colors
121
- - syntax with theme-colors
122
- </Changes>
123
- <Changes type="fixed">
124
- - fix bug FileTree component
125
- - fix issue markdown with theme-colors
126
- </Changes>
127
- </Release>
128
-
129
- <div className="sr-only">
130
- ### v 1.13.0
131
- </div>
132
-
133
- <Release version="1.13.0" date="2025-05-29" title="Context Menu for organize file and folder">
134
- <Changes type="added">
135
- - New ContextMenu component for organizing file and folder
136
- - Nested docs folder and file support with context menu
137
- </Changes>
138
- <Changes type="improved">
139
- - improve routes-config with context menu
140
- - improve docu.json with context menu
141
- - improve leftbar with context menu
142
- - improve docs-menu with context menu
143
- - improve search dialog limit result to 6 post per suggestion
144
- - improve search result typing 3 characters to show suggestion
145
- </Changes>
146
- </Release>
147
-
148
- <div className="sr-only">
149
- ### v 1.12.0
150
- </div>
151
-
152
- <Release version="1.12.0" date="2025-05-28" title="New File Tree Component and enhancements for existing components or features">
153
- <Changes type="added">
154
- - New FileTree component for displaying hierarchical file structures
155
- - Support for nested folders and files with expand/collapse functionality
156
- - Hover effects showing file extensions
157
- - Dark mode support with modern styling
158
- - Keyboard navigation and accessibility features
159
- - add toc-observer data attribute to detect toc section
160
- - cli to copy from path npm registry
161
- </Changes>
162
- <Changes type="improved">
163
- - search dialog hover effect return key
164
- - search icon showing on mobile screens
165
- </Changes>
166
- <Changes type="fixed">
167
- - fix search dialog on mobile screens
168
- - fix release note component eslint error on mdx when rendering
169
- - fix mob-toc callback function
170
- - fix toc height issue when toc section is longer than screen height
171
- </Changes>
172
- <Changes type="removed">
173
- - remove prompts depedencies
174
- - remove degit depedencies
175
- - remove prompts functions
176
- - remove degit functions
177
- - remove prompts and degit from package.json
178
- - remove clone repository using git
179
- </Changes>
180
- </Release>
181
-
182
- <Note type="note" title="Note">
183
- on this version `1.12.0`, we remove clone repository using git and replace it with cli to copy from path npm registry
184
- </Note>
185
-
186
- <div className="sr-only">
187
- ### v 1.11.0
188
- </div>
189
-
190
- <Release version="1.11.0" date="2025-05-25" title="New Release Note components support multiple products or multiple changelogs">
9
+ <Release version="1.0.0" date="2025-08-10" title="Release version 1.0.0">
191
10
  <Changes type="added">
192
- - New ReleaseNote component for structured changelog display
193
- - Added support for categorized changes (added, fixed, improved, deprecated, removed)
194
- - Integrated Lucide icons for better visual hierarchy
195
- - Support for multiple release notes
196
- </Changes>
197
-
198
- <Changes type="improved">
199
- - Enhanced documentation with comprehensive usage examples
200
- - Better component organization and styling
201
- - Semantic versioning support
202
- - Nested release notes support
203
- </Changes>
204
-
205
- <Changes type="removed">
206
- - Removed old changelog page in favor of the new ReleaseMdx component
207
- - Removed changelog.md
208
- - Removed changelog/page.tsx
209
- - Removed changelog.ts
210
- - Removed components/changelog
11
+ - add components
211
12
  </Changes>
212
- </Release>
213
-
214
- <div className="sr-only">
215
- ### v 1.10.1
216
- </div>
217
-
218
- <Release version="1.10.1" date="2025-05-24" title="Accessibility Improvements and Bug Fixes">
219
13
  <Changes type="fixed">
220
- - Added missing DialogDescription components for better accessibility
221
- - Fixed image aspect ratio issues in navbar logo
222
- - Resolved console warnings for missing image sizes
223
- - Improved keyboard navigation in search component
224
- - Fixed mobile layout for search result items
14
+ - fix globals.css
225
15
  </Changes>
226
-
227
16
  <Changes type="improved">
228
- - Added proper ARIA labels for screen readers
229
- - Enhanced focus management in dialogs
230
- - Optimized image loading with proper sizing attributes
231
- - Better mobile experience with responsive design fixes
17
+ - improved search components
232
18
  </Changes>
233
-
234
- <Changes type="removed">
235
- - Remove blog page
236
- - Remove blog functions on markdown
237
- </Changes>
238
- </Release>
239
-
240
- <div className="sr-only">
241
- ### v 1.10.0
242
- </div>
243
-
244
- <Release version="1.10.0" date="2025-05-21" title="Sidebar Improvements and Mobile TOC Enhancements">
245
- <Changes type="added">
246
- - New reusable ToggleButton component with animation
247
- - Mobile-friendly Table of Contents (TOC) component
248
- - Click-outside handler for better mobile navigation
249
- - Smooth scroll behavior for TOC navigation
250
- - Active section highlighting in TOC
251
- </Changes>
252
-
253
- <Changes type="improved">
254
- - Sidebar now has a collapsible design
255
- - Enhanced mobile responsiveness for TOC
256
- - Better visual hierarchy in sidebar navigation
257
- - Smoother animations for sidebar toggle
258
- - Optimized TOC performance with intersection observer
259
- - Improved accessibility with proper ARIA labels
260
- - Better spacing and alignment in mobile view
261
- </Changes>
262
-
263
- <Changes type="fixed">
264
- - Fixed sidebar toggle button positioning
265
- - Resolved TOC highlighting issues during scroll
266
- - Fixed z-index conflicts in mobile view
267
- - Addressed minor UI glitches in dark mode
268
- - Fixed TOC not updating on route changes
269
- - Resolved scroll jank on mobile devices
270
- - Fixed incorrect active state in navigation
271
- </Changes>
272
-
273
19
  <Changes type="deprecated">
274
- - No longer support changelog.md
275
- - No longer support changelog/page.tsx (will be removed in future update)
276
- </Changes>
277
- </Release>
278
-
279
- <div className="sr-only">
280
- ### v 1.9.0
281
- </div>
282
-
283
- <Release version="1.9.0" date="2025-05-19" title="New Keyboard component to show keyboard shortcut on docs page">
284
- <Changes type="added">
285
- - New Keyboard component with props show, type, children
286
- - Snippet keyboard component
20
+ - deprecated footer components
287
21
  </Changes>
288
-
289
- <Changes type="improved">
290
- - Support custom content
291
- - Support platform type (mac or window)
292
- - Support automatic rendering of platform-specific key symbols
293
- - Rename lowercase to camelCase for markdown component
294
- </Changes>
295
- </Release>
296
-
297
- <div className="sr-only">
298
- ### v 1.8.5
299
- </div>
300
-
301
- <Release version="1.8.5" date="2025-05-10" title="Add sponsor card on single docs page">
302
- <Changes type="added">
303
- - Expandables Leftbar
304
- - Sponsor badges or ads
305
- - Boolean show/hide 'edit on github'
306
- - With the same code run anywhere (bun or nodejs)
307
- - Add frontmatter (metadata) to playground editor
308
- </Changes>
309
-
310
- <Changes type="improved">
311
- - Adjustment docu.json
312
- - Adjustment navbar, footer and components
313
- </Changes>
314
-
315
- <Changes type="fixed">
316
- - Bun compatibility: rename .js to common js
317
- - CLI manage packageManager on package.json
318
- - Inconsistent design moved to better UI/UX
319
- - Error handle render footer.social
320
- </Changes>
321
-
322
22
  <Changes type="removed">
323
- - Remove confusing and verbose CLI on installer
23
+ - removed utility class
24
+ - removed unused hooks
324
25
  </Changes>
325
26
  </Release>
326
27
 
327
- <div className="sr-only">
328
- ### v 1.8.0
329
- </div>
28
+ ## Output Markdown
330
29
 
331
- <Release version="1.8.0" date="2025-03-01" title="Now looks more modern and clean which is a big change in layout and design">
332
- <Changes type="added">
333
- - Social footer
334
- - Toggle group
335
- - Site description in footer
336
- - Site title in footer
337
- </Changes>
338
-
339
- <Changes type="improved">
340
- - Header design changes
341
- - Footer design changes
342
- - New functions in theme provider
343
- - Object changes in docu.json
344
- </Changes>
345
-
346
- <Changes type="fixed">
347
- - Updates to path structure components
348
- - Groups to organize components
349
- </Changes>
350
- </Release>
351
-
352
- <div className="sr-only">
353
- ### v 1.7.0
354
- </div>
355
-
356
- <Release version="1.7.0" date="2025-02-23" title="Remove the old function in the search dialog and replace it with a new and more optimal feature">
357
- <Changes type="added">
358
- - Up and down navigation in search dialog
359
- - Enter (return) to select in search dialog
360
- - Escape to close the dialog
361
- </Changes>
362
-
363
- <Changes type="improved">
364
- - Maintenance for anchor components
365
- - Anchor.tsx adjustments for all elements that use it
366
- </Changes>
367
-
368
- <Changes type="removed">
369
- - Remove suboptimal search features
370
- </Changes>
371
- </Release>
372
-
373
- <div className="sr-only">
374
- ### v 1.6.0
375
- </div>
376
-
377
- <Release version="1.6.0" date="2025-02-21" title="New Feature Card Groups with arrays for more Flexible Content">
378
- <Changes type="added">
379
- - Card Groups Components
380
- - Props: href to url link
381
- - Props: horizontal boolean
382
- </Changes>
383
-
384
- <Changes type="improved">
385
- - Card props styling
386
- - Compatibility for Cards components
387
- - Support for children props in card content
388
- </Changes>
389
-
390
- <Changes type="removed">
391
- - Remove unused props cards components
392
- </Changes>
393
- </Release>
394
-
395
- <div className="sr-only">
396
- ### v 1.5.0
397
- </div>
398
-
399
- <Release version="1.5.0" date="2025-02-18" title="Minor Update - improved features and responsiveness on all devices">
400
- <Changes type="added">
401
- - New dialog footer on searchbox above medium screens
402
- - Icon X for close dialog on searchbox (ESC key on medium screen)
403
- </Changes>
404
-
405
- <Changes type="improved">
406
- - Responsive Leftbar components on large screens
407
- - Menu Trigger on medium screens
408
- - Responsive Navbar components on medium screens
409
- - Better UX for searchbox dialog
410
- - Tooltips components can be written together with regular paragraphs
411
- </Changes>
412
-
413
- <Changes type="fixed">
414
- - Responsive issues
415
- - Compatibility for Bun
416
- - Changes postcss.config.js to .cjs for Bun
417
- - All CLI installer and updater not working
418
- - Adjustments for package managers (npm, pnpm, bun, yarn)
419
- </Changes>
420
- </Release>
421
-
422
- <div className="sr-only">
423
- ### v 1.4.2
424
- </div>
425
-
426
- <Release version="1.4.2" date="2025-02-16" title="Complex Content for Accordion Component props children">
427
- <Changes type="added">
428
- - New Props with children in accordion
429
- - Compatibility for markdown in accordion
430
- - Nested components inside an accordion
431
- - New icon on note components
432
- - Add CLI npx @docubook/create@latest
433
- - Add CLI npx @docubook/update@latest
434
- </Changes>
435
-
436
- <Changes type="improved">
437
- - Better UI design for accordion
438
- - Styling Note components on markdown
439
- - Change accordion output on playground
440
- - Change accordion output on snippet
441
- </Changes>
442
-
443
- <Changes type="removed">
444
- - Remove deprecated props on accordion
445
- - Remove CLI npx update_docu
446
- - Remove CLI npx create_docu
447
- </Changes>
448
- </Release>
449
-
450
- <div className="sr-only">
451
- ### v 1.4.0
452
- </div>
453
-
454
- <Release version="1.4.0" date="2025-02-11" title="Floating Button Version with Dynamic Tag version on Changelog page">
455
- <Changes type="added">
456
- - New components / changelog floating-version.tsx
457
- - Button popover to open version-toc below large screens
458
- - Dynamic tag by section ID #version
459
- - Dynamic url tag #version
460
- - Dynamic version indicator on floating version when scrolling section by ID
461
- </Changes>
462
-
463
- <Changes type="improved">
464
- - Change icon version history
465
- - Responsive version-toc
466
- - Improvement components to changelog page
467
- </Changes>
468
- </Release>
469
-
470
- <div className="sr-only">
471
- ### v 1.3.8
472
- </div>
473
-
474
- <Release version="1.3.8" date="2025-02-08" title="Responsive Table of Content">
475
- <Changes type="added">
476
- - Components terminal MagicUI
477
- - Components card Shadcn
478
- - New mob-toc for a better experience on mobile devices
479
- - New Components scroll to top button
480
- - Scroll to top: blog-post
481
- - Scroll to top: docs-post
482
- </Changes>
483
-
484
- <Changes type="improved">
485
- - lib/markdown for generated dynamic toc on markdown
486
- - Responsive Table of Content below large screens
487
- - Improve docs page
488
- </Changes>
489
- </Release>
490
-
491
- <div className="sr-only">
492
- ### v 1.3.6
493
- </div>
494
-
495
- <Release version="1.3.6" date="2025-02-01" title="Appears more modern editor for Docu Play">
496
-
497
- <Changes type="added">
498
- - Line Number for editor
499
- - editor.css
500
- </Changes>
501
-
502
- <Changes type="improved">
503
- - Better Design for Editor
504
- - Similar to Github Editor
505
- - Moved Handler Element (copy, download, reset and fullscreen) on Header
506
- </Changes>
507
- </Release>
508
-
509
- <div className="sr-only">
510
- ### v 1.3.5
511
- </div>
512
-
513
- <Release version="1.3.5" date="2025-01-30" title="It's Easy to Write Markdown with Playground">
514
-
515
- <Changes type="added">
516
- - New Playground Page
517
- - New Playground Layout
518
- - Toolbar for Markdown Components
519
- - Fullscreen Mode to Focus Editing Your Content
520
- - Copy to Clipboard Your Content
521
- - Download Your Content as index.mdx
522
- - Reset Your Content without refresh the Browser
523
- - Only Large Screen for Better Experience
524
- </Changes>
525
- </Release>
526
-
527
- <div className="sr-only">
528
- ### v 1.3.1
529
- </div>
530
-
531
- <Release version="1.3.1" date="2025-01-20" title="Snippet Feature to Easily Write Markdown and Call DocuBook Components">
532
-
533
- <Changes type="added">
534
- - New Feature Snippet for Markdown Components
535
- - Support Snippet for Visual Studio Code
536
- </Changes>
537
-
538
- <Changes type="removed">
539
- - Remove props icon and props description for accordion components
540
- </Changes>
541
- </Release>
542
-
543
- <div className="sr-only">
544
- ### v 1.3.0
545
- </div>
546
-
547
- <Release version="1.3.0" date="2024-12-31" title="Release Note Feature to Make it Easier to Write Changelogs">
30
+ ```
31
+ <Release version="1.0.0" date="2025-08-10" title="Release version 1.0.0">
548
32
  <Changes type="added">
549
- - New Release Note Feature
550
- - New Layout for Changelog page
551
- - New Changelog page
552
- - Add Release Note Component
553
- - Easily write release notes directly from the CHANGELOG.md file
554
- - TOC for versioning
555
- - Write with the markdown tag
556
- - Add lib / changelog.ts
557
- </Changes>
558
-
559
- <Changes type="improved">
560
- - Improvement Responsive feature image for Version Entry
561
- - Improvement Layout for changelog page
562
- - Improvement Padding on mobile devices
563
- - Only use containers of md size
564
- - Improvement syntax.css for ul>li classes
33
+ - add components
565
34
  </Changes>
566
-
567
35
  <Changes type="fixed">
568
- - Fix og:image not showing on Page.tsx
569
- - Fix text-indent on class li
36
+ - fix globals.css
570
37
  </Changes>
571
-
572
- <Changes type="removed">
573
- - Remove excessive padding
574
- - Remove Logo on Footer
575
- </Changes>
576
- </Release>
577
-
578
- <div className="sr-only">
579
- ### v 1.2.0
580
- </div>
581
-
582
- <Release version="1.2.0" date="2024-12-22" title="New Accordion Component: Support content plain text, html and all markdown component">
583
- <Changes type="added">
584
- - Add New Accordion Component
585
- </Changes>
586
-
587
- <Changes type="improved">
588
- - Props Improvement
589
- - Support Dynamic Content for Accordion
590
- </Changes>
591
- </Release>
592
-
593
- <div className="sr-only">
594
- ### v 1.1.0
595
- </div>
596
-
597
- <Release version="1.1.0" date="2024-12-15" title="Minor Update: Easily manage set up with docu.json">
598
- <Changes type="added">
599
- - Add docu.json file
600
- - Add openGraph (title, description, image)
601
- - Add Dynamic metadata
602
- - Generate metadata as openGraph
603
- - OpenGraph support for .mdx
604
- </Changes>
605
-
606
38
  <Changes type="improved">
607
- - Routes-config from json
608
- - Frontmatter improvement
609
- - Edit the content of footer.tsx simply via the docu.json file
610
- - Edit the content of navbar.tsx simply via the docu.json file
39
+ - improved search components
611
40
  </Changes>
612
- </Release>
613
-
614
- <div className="sr-only">
615
- ### v 1.0.7
616
- </div>
617
-
618
- <Release version="1.0.7" date="2024-12-14" title="Easily updates your DocuBook Version with CLI npx update_docu">
619
- <Changes type="added">
620
- - CLI npx update_docu (update features into docubook existing directory)
621
- - Playground (easily to written content)
622
- - New Button component
623
- - Navbar external link conditions
624
- - CLI npx create_docu
625
- </Changes>
626
-
627
- <Changes type="improved">
628
- - Searchbar Improvement
629
- - Navigation Improvement
630
- - Edit on Github Improvement
41
+ <Changes type="deprecated">
42
+ - deprecated footer components
631
43
  </Changes>
632
-
633
44
  <Changes type="removed">
634
- - Remove CLI npx create-docu (on this version not usage dash `-`)
635
- </Changes>
636
- </Release>
637
-
638
- <div className="sr-only">
639
- ### v 1.0.6
640
- </div>
641
-
642
- <Release version="1.0.6" date="2024-11-24" title="New Components, Fix and Improvement">
643
- <Changes type="added">
644
- - New Card component
645
- - New Tooltips component
646
- </Changes>
647
-
648
- <Changes type="fixed">
649
- - Change root folder
650
- </Changes>
651
-
652
- <Changes type="improved">
653
- - Logo on navbar & footer
654
- - Easily change logo
655
- </Changes>
656
- </Release>
657
-
658
- <div className="sr-only">
659
- ### v 1.0.5
660
- </div>
661
-
662
- <Release version="1.0.5" date="2024-11-16" title="Add New Features and Improvement for this version">
663
- <Changes type="added">
664
- - New Youtube component
665
- - Edit this page - easily manage directory content via the github repo
666
- - Support installation via CLI command npx create-docu
667
- </Changes>
668
-
669
- <Changes type="improved">
670
- - Keyboard shortcut command + k or ctrl + k to open search dialog
45
+ - removed utility class
46
+ - removed unused hooks
671
47
  </Changes>
672
48
  </Release>
673
-
674
- <div className="sr-only">
675
- ### v 1.0.0
676
- </div>
677
-
678
- <Release version="1.0.0" date="2024-11-10" title="Initial release of DocuBook to create interactive nested docs with MDX">
679
- <Changes type="added">
680
- - Initial release of DocuBook
681
- - Basic documentation structure
682
- - Markdown support with MDX
683
- - Responsive design
684
- - Search functionality
685
- - Dark mode support
686
- </Changes>
687
- </Release>
49
+ ```