@apolitical/component-library 6.0.3-ac.3 → 6.0.3-ac.5

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.
@@ -101,9 +101,10 @@ export interface BaseProps {
101
101
  };
102
102
  [key: string]: unknown;
103
103
  }
104
- export type BlockOptionType = Formatting.blockquote | Formatting.link | Formatting.li | Formatting.mention | Formatting.ol | Formatting.ul | Formatting.paragraph | Formatting.span | Formatting.h3;
104
+ export type BlockOptionType = Formatting.blockquote | Formatting.link | Formatting.li | Formatting.mention | Formatting.ol | Formatting.ul | Formatting.paragraph | Formatting.span;
105
105
  export interface TypeElement extends BaseElement {
106
106
  type: BlockOptionType | MarkOptionType;
107
+ [Formatting.h3]?: boolean;
107
108
  }
108
109
  export interface MentionElement extends BaseElement {
109
110
  type: Formatting.mention;