@apolitical/component-library 8.3.21-ac.0 → 8.3.21-ac.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/form/components/rich-text-editor/rich-text-editor.types.d.ts +2 -2
- package/index.js +82 -82
- package/index.mjs +12205 -12178
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -107,7 +107,7 @@ export interface BaseProps {
|
|
|
107
107
|
};
|
|
108
108
|
[key: string]: unknown;
|
|
109
109
|
}
|
|
110
|
-
export type BlockOptionType = Formatting.blockquote | Formatting.link | Formatting.li | Formatting.mention | Formatting.ol | Formatting.ul | Formatting.paragraph | Formatting.span;
|
|
110
|
+
export type BlockOptionType = Formatting.blockquote | Formatting.link | Formatting.li | Formatting.mention | Formatting.ol | Formatting.ul | Formatting.paragraph | Formatting.span | Formatting.h3;
|
|
111
111
|
export interface TypeElement extends BaseElement {
|
|
112
112
|
type: BlockOptionType | MarkOptionType;
|
|
113
113
|
[Formatting.h3]?: boolean;
|
|
@@ -117,7 +117,7 @@ export interface MentionElement extends BaseElement {
|
|
|
117
117
|
id: string;
|
|
118
118
|
name?: string;
|
|
119
119
|
}
|
|
120
|
-
export type MarkOptionType = Formatting.bold | Formatting.italic | Formatting.strikethrough
|
|
120
|
+
export type MarkOptionType = Formatting.bold | Formatting.italic | Formatting.strikethrough;
|
|
121
121
|
export interface TypeText extends BaseText {
|
|
122
122
|
[Formatting.bold]?: boolean;
|
|
123
123
|
[Formatting.italic]?: boolean;
|