first commit
This commit is contained in:
75
packages/core/src/ui.ts
Normal file
75
packages/core/src/ui.ts
Normal file
@@ -0,0 +1,75 @@
|
||||
/**
|
||||
* EmDash UI Components
|
||||
*
|
||||
* Image component for rendering optimized images:
|
||||
*
|
||||
* ```astro
|
||||
* ---
|
||||
* import { Image } from "emdash/ui";
|
||||
* ---
|
||||
* <Image image={post.data.featured_image} />
|
||||
* ```
|
||||
*
|
||||
* Portable Text component for rich content:
|
||||
*
|
||||
* ```astro
|
||||
* ---
|
||||
* import { PortableText } from "emdash/ui";
|
||||
* ---
|
||||
* <PortableText value={post.data.content} />
|
||||
* ```
|
||||
*
|
||||
* Override specific Portable Text components:
|
||||
*
|
||||
* ```astro
|
||||
* <PortableText value={content} components={{ type: { image: MyImage } }} />
|
||||
* ```
|
||||
*/
|
||||
|
||||
// Re-export types and utilities from astro-portabletext
|
||||
export {
|
||||
type PortableTextProps,
|
||||
type TypedObject,
|
||||
type SomePortableTextComponents,
|
||||
type Block,
|
||||
type ArbitraryTypedObject,
|
||||
type PortableTextBlock,
|
||||
type PortableTextMarkDefinition,
|
||||
type PortableTextSpan,
|
||||
type PortableTextListItemBlock,
|
||||
usePortableText,
|
||||
mergeComponents,
|
||||
} from "astro-portabletext";
|
||||
|
||||
// EmDash PortableText wrapper and components
|
||||
export {
|
||||
// Main Image component for EmDash media
|
||||
EmDashImage as Image,
|
||||
// Main component (wrapper with EmDash defaults)
|
||||
PortableText,
|
||||
// Comment components
|
||||
Comments,
|
||||
CommentForm,
|
||||
// Widget components
|
||||
WidgetArea,
|
||||
// Components object for manual use
|
||||
emdashComponents,
|
||||
// Portable Text block types (prefixed to avoid collision with Image)
|
||||
Image as PTImage,
|
||||
Code,
|
||||
Embed,
|
||||
Gallery,
|
||||
Columns,
|
||||
Break,
|
||||
HtmlBlock,
|
||||
// Marks
|
||||
Superscript,
|
||||
Subscript,
|
||||
Underline,
|
||||
StrikeThrough,
|
||||
Link,
|
||||
// Public page contribution components
|
||||
EmDashHead,
|
||||
EmDashBodyStart,
|
||||
EmDashBodyEnd,
|
||||
} from "./components/index.js";
|
||||
Reference in New Issue
Block a user