fix: add stylings for list

This commit is contained in:
Christel Westerberg
2024-07-05 10:32:08 +02:00
parent 6184662caa
commit 17bc18ce2b
12 changed files with 167 additions and 43 deletions

View File

@@ -37,6 +37,7 @@ export enum RTETypeEnum {
tr = "tr",
ul = "ul",
ImageVault = "ImageVault",
fragment = "fragment",
}
export type RTEType = keyof typeof RTETypeEnum
@@ -48,7 +49,7 @@ export enum RTEItemTypeEnum {
export type RTEItemType = keyof typeof RTEItemTypeEnum
export enum AvailableFormatEnum {
export enum AvailableParagraphFormatEnum {
"script-1" = "script-1",
"script-2" = "script-2",
"footnote" = "footnote",
@@ -56,3 +57,8 @@ export enum AvailableFormatEnum {
"subtitle-1" = "subtitle-1",
"subtitle-2" = "subtitle-2",
}
export enum AvailableULFormatEnum {
"heart" = "heart",
"check" = "check",
}