Files
web/types/transitionTypes/jsontohtml.ts
Anton Gunnarsson fc866c0e4d Merged in feat/sw-1493-revised-comparison-block (pull request #1236)
feat(SW-1493): Revised SAS comparison block

* Base of new TierDetails for SAS tier comparison

* Add backgrounds and content to TierDetails

* Implement new cms schema for SasTierComparison

* Override gap in jsontohtml styling to 0

* Add animations to comparison details

* Redesign again

* Update content model to new design

* Add border to bottom item in tier match list

* Wrap interpolate-size in @supports to be safe

* Merge branch 'master' into feat/sw-1493-revised-comparison-block


Approved-by: Joakim Jäderberg
2025-02-03 08:42:16 +00:00

14 lines
400 B
TypeScript

import type { Node } from "@/types/requests/utils/edges"
import type { Embeds } from "@/types/trpc/routers/utils/embeds"
import type { RTENode } from "./rte/node"
import type { RenderOptions } from "./rte/option"
export type JsonToHtmlProps = {
embeds: Node<Embeds>[]
nodes: RTENode[]
renderOptions?: RenderOptions
className?: string
}
export type EmbedByUid = Record<string, Node<Embeds>>