mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-20 13:39:15 +00:00

* minor ui updates to shiki * feat: add markdown renderer * feat(ui): add scroll area component and expand markdown renderer * feat(ui): expand markdown syntax highlighting with additional language support * feat(ui): add markdown language support to syntax highlighting * feat(ui): update markdown syntax highlighting theme to GitHub Dark Default * feat(ui): add bash language support to markdown syntax highlighting * feat: add globe component * Change RetroGrid bg color * feat: add headless command list to store detail component * feat: update markdown renderer Replace svelte-markdown with svelte-exmarkdown, with custom tauri link renderer and code highlight support * format and fix eslint
20 lines
1.1 KiB
TypeScript
20 lines
1.1 KiB
TypeScript
export { default as Shiki } from "./components/code/shiki.svelte"
|
|
export * from "./components/common"
|
|
export * as Layouts from "./components/layouts/index"
|
|
export * as Error from "./components/error/index"
|
|
export * as Common from "./components/common/index"
|
|
export * from "./components/common/index"
|
|
export * as Custom from "./components/custom"
|
|
export * as Main from "./components/main/index"
|
|
export * as Extension from "./components/extension/index"
|
|
export { default as GridAnimation } from "./components/animation/grid-animation.svelte"
|
|
export { default as ViewTransition } from "./components/transition/view-transition.svelte"
|
|
export { default as BorderBeam } from "./components/animation/BorderBeam.svelte"
|
|
export { default as Meteors } from "./components/animation/meteros.svelte"
|
|
export { default as RetroGrid } from "./components/animation/RetroGrid.svelte"
|
|
export { default as AuroraText } from "./components/animation/AuroraText.svelte"
|
|
export * as Constants from "./constants"
|
|
export * as Form from "./components/ui/form"
|
|
export * as ScrollArea from "./components/ui/scroll-area"
|
|
export { default as ModeToggle } from "./components/theme/mode-toggle.svelte"
|