feat: json rich text editor, blocks, asides, general structure
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
import type { Puff } from "@/types/requests/puff"
|
||||
|
||||
export type PuffProps = Puff
|
||||
@@ -0,0 +1,8 @@
|
||||
import type { Breadcrumb } from "@/types/requests/currentBlockPage"
|
||||
import type { Edges, Node } from "@/types/requests/utils/edges"
|
||||
|
||||
export type BreadcrumbsProps = {
|
||||
breadcrumbs: Edges<Breadcrumb>
|
||||
parent?: Node<Breadcrumb>
|
||||
title: string
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
import type { BreadcrumbsProps } from "./breadcrumbs"
|
||||
import type { Preamble } from "@/types/requests/preamble"
|
||||
|
||||
export type PreambleProps = {
|
||||
breadcrumbs: BreadcrumbsProps["breadcrumbs"]
|
||||
breadcrumbParent: BreadcrumbsProps["parent"]
|
||||
breadcrumbTitle: BreadcrumbsProps["title"]
|
||||
preamble?: Preamble
|
||||
title: string
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import type { Breadcrumb } from "@/types/requests/currentBlockPage"
|
||||
import type { Edges, Node } from "@/types/requests/utils/edges"
|
||||
|
||||
export type SubnavMobileProps = {
|
||||
breadcrumbs: Edges<Breadcrumb>
|
||||
parent?: Node<Breadcrumb>
|
||||
title: string
|
||||
}
|
||||
Reference in New Issue
Block a user