@atlaskit/adf-schema 42.0.1 → 42.0.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/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
import { DateDefinition as Date } from '../date';
|
2
|
+
import { EmojiDefinition as Emoji } from '../emoji';
|
3
|
+
import { HardBreakDefinition as HardBreak } from '../hard-break';
|
4
|
+
import { InlineCardDefinition as InlineCard } from '../inline-card';
|
5
|
+
import { InlineExtensionDefinition } from '../inline-extension';
|
6
|
+
import { MediaInlineDefinition } from '../media-inline';
|
7
|
+
import { MentionDefinition as Mention } from '../mention';
|
8
|
+
import { PlaceholderDefinition as Placeholder } from '../placeholder';
|
9
|
+
import { StatusDefinition as Status } from '../status';
|
1
10
|
import { TextDefinition as Text } from '../text';
|
2
11
|
import { MarksObject } from './mark';
|
3
12
|
import { AnnotationMarkDefinition as Annotation, CodeDefinition as Code, EmDefinition as Em, LinkDefinition as Link, StrikeDefinition as Strike, StrongDefinition as Strong, SubSupDefinition as SubSup, TextColorDefinition as TextColor, UnderlineDefinition as Underline, BackgroundColorDefinition as BackgroundColor } from '../../marks';
|
@@ -16,4 +25,4 @@ export type InlineCode = Text & MarksObject<Code | Link | Annotation>;
|
|
16
25
|
/**
|
17
26
|
* @name inline_node
|
18
27
|
*/
|
19
|
-
export type Inline = InlineFormattedText | InlineCode;
|
28
|
+
export type Inline = InlineFormattedText | InlineCode | HardBreak | Mention | Emoji | InlineExtensionDefinition | Date | Placeholder | InlineCard | Status | MediaInlineDefinition;
|
package/package.json
CHANGED