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