@atlaskit/renderer 136.1.7 → 136.2.1
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 +29 -0
- package/afm-cc/tsconfig.json +3 -0
- package/afm-products/tsconfig.json +3 -0
- package/dist/cjs/react/index.js +2 -0
- package/dist/cjs/react/nodes/emoji.js +5 -0
- package/dist/cjs/react/nodes/index.js +2 -3
- package/dist/cjs/react/nodes/panel-compiled.compiled.css +7 -0
- package/dist/cjs/react/nodes/panel-compiled.js +2 -1
- package/dist/cjs/react/nodes/panel-emotion.js +27 -1
- package/dist/cjs/react/nodes/table/sticky.js +13 -1
- package/dist/cjs/ui/Renderer/index.js +2 -1
- package/dist/es2019/react/index.js +2 -0
- package/dist/es2019/react/nodes/emoji.js +5 -0
- package/dist/es2019/react/nodes/index.js +1 -3
- package/dist/es2019/react/nodes/panel-compiled.compiled.css +7 -0
- package/dist/es2019/react/nodes/panel-compiled.js +2 -1
- package/dist/es2019/react/nodes/panel-emotion.js +27 -1
- package/dist/es2019/react/nodes/table/sticky.js +17 -1
- package/dist/es2019/ui/Renderer/index.js +2 -1
- package/dist/esm/react/index.js +2 -0
- package/dist/esm/react/nodes/emoji.js +5 -0
- package/dist/esm/react/nodes/index.js +1 -3
- package/dist/esm/react/nodes/panel-compiled.compiled.css +7 -0
- package/dist/esm/react/nodes/panel-compiled.js +2 -1
- package/dist/esm/react/nodes/panel-emotion.js +27 -1
- package/dist/esm/react/nodes/table/sticky.js +13 -1
- package/dist/esm/ui/Renderer/index.js +2 -1
- package/dist/types/react/index.d.ts +3 -1
- package/dist/types/react/nodes/emoji.d.ts +2 -1
- package/dist/types/ui/renderer-props.d.ts +6 -1
- package/package.json +40 -33
- package/report.api.md +5 -0
- package/dist/cjs/react/nodes/nodes.js +0 -104
- package/dist/es2019/react/nodes/nodes.js +0 -97
- package/dist/esm/react/nodes/nodes.js +0 -97
- package/dist/types/react/nodes/nodes.d.ts +0 -4
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
/* eslint-disable @atlaskit/editor/no-re-export */
|
|
2
|
-
|
|
3
|
-
import { UnsupportedBlock, UnsupportedInline } from '@atlaskit/editor-common/ui';
|
|
4
|
-
import Expand from '../../ui/Expand';
|
|
5
|
-
import BlockCard from './blockCard';
|
|
6
|
-
import Blockquote from './blockquote';
|
|
7
|
-
import BodiedExtension from './bodiedExtension';
|
|
8
|
-
import BodiedSyncBlock from './bodiedSyncBlock';
|
|
9
|
-
import BulletList from './bulletList';
|
|
10
|
-
import Caption from './caption';
|
|
11
|
-
import CodeBlock from './codeBlock/codeBlock';
|
|
12
|
-
import WindowedCodeBlock from './codeBlock/windowedCodeBlock';
|
|
13
|
-
import DateNode from './date';
|
|
14
|
-
import DecisionItem from './decisionItem';
|
|
15
|
-
import DecisionList from './decisionList';
|
|
16
|
-
import Doc from './doc';
|
|
17
|
-
import EmbedCard from './embedCard';
|
|
18
|
-
import Emoji from './emoji';
|
|
19
|
-
import Extension from './extension';
|
|
20
|
-
import ExtensionFrame from './extensionFrame';
|
|
21
|
-
import HardBreak from './hardBreak';
|
|
22
|
-
import Heading from './heading';
|
|
23
|
-
import InlineCard from './inlineCard';
|
|
24
|
-
import InlineExtension from './inlineExtension';
|
|
25
|
-
import LayoutColumn from './layoutColumn';
|
|
26
|
-
import LayoutSection from './layoutSection';
|
|
27
|
-
import ListItem from './listItem';
|
|
28
|
-
import Media from './media';
|
|
29
|
-
import MediaGroup from './mediaGroup';
|
|
30
|
-
import MediaInline from './mediaInline';
|
|
31
|
-
import MediaSingle from './mediaSingle';
|
|
32
|
-
import Mention from './mention';
|
|
33
|
-
import MultiBodiedExtension from './multiBodiedExtension';
|
|
34
|
-
import OrderedList from './orderedList';
|
|
35
|
-
import Panel from './panel';
|
|
36
|
-
import Paragraph from './paragraph';
|
|
37
|
-
import Placeholder from './placeholder';
|
|
38
|
-
import Rule from './rule';
|
|
39
|
-
import Status from './status';
|
|
40
|
-
import SyncBlock from './syncBlock';
|
|
41
|
-
import Table from './table';
|
|
42
|
-
import { TableCell, TableHeader } from './tableCell';
|
|
43
|
-
import TableRow from './tableRow';
|
|
44
|
-
import TaskItem from './taskItem';
|
|
45
|
-
import TaskList from './taskList';
|
|
46
|
-
import UnknownBlock from './unknownBlock';
|
|
47
|
-
export var nodeToReact = {
|
|
48
|
-
blockCard: BlockCard,
|
|
49
|
-
blockquote: Blockquote,
|
|
50
|
-
blockTaskItem: TaskItem,
|
|
51
|
-
bodiedExtension: BodiedExtension,
|
|
52
|
-
bodiedSyncBlock: BodiedSyncBlock,
|
|
53
|
-
bulletList: BulletList,
|
|
54
|
-
caption: Caption,
|
|
55
|
-
codeBlock: CodeBlock,
|
|
56
|
-
date: DateNode,
|
|
57
|
-
decisionItem: DecisionItem,
|
|
58
|
-
decisionList: DecisionList,
|
|
59
|
-
doc: Doc,
|
|
60
|
-
embedCard: EmbedCard,
|
|
61
|
-
emoji: Emoji,
|
|
62
|
-
expand: Expand,
|
|
63
|
-
extension: Extension,
|
|
64
|
-
extensionFrame: ExtensionFrame,
|
|
65
|
-
hardBreak: HardBreak,
|
|
66
|
-
heading: Heading,
|
|
67
|
-
inlineCard: InlineCard,
|
|
68
|
-
inlineExtension: InlineExtension,
|
|
69
|
-
layoutColumn: LayoutColumn,
|
|
70
|
-
layoutSection: LayoutSection,
|
|
71
|
-
listItem: ListItem,
|
|
72
|
-
media: Media,
|
|
73
|
-
mediaGroup: MediaGroup,
|
|
74
|
-
mediaInline: MediaInline,
|
|
75
|
-
mediaSingle: MediaSingle,
|
|
76
|
-
mention: Mention,
|
|
77
|
-
multiBodiedExtension: MultiBodiedExtension,
|
|
78
|
-
nestedExpand: Expand,
|
|
79
|
-
orderedList: OrderedList,
|
|
80
|
-
panel: Panel,
|
|
81
|
-
panel_c1: Panel,
|
|
82
|
-
paragraph: Paragraph,
|
|
83
|
-
placeholder: Placeholder,
|
|
84
|
-
rule: Rule,
|
|
85
|
-
status: Status,
|
|
86
|
-
syncBlock: SyncBlock,
|
|
87
|
-
table: Table,
|
|
88
|
-
tableCell: TableCell,
|
|
89
|
-
tableHeader: TableHeader,
|
|
90
|
-
tableRow: TableRow,
|
|
91
|
-
taskItem: TaskItem,
|
|
92
|
-
taskList: TaskList,
|
|
93
|
-
unknownBlock: UnknownBlock,
|
|
94
|
-
unsupportedBlock: UnsupportedBlock,
|
|
95
|
-
unsupportedInline: UnsupportedInline,
|
|
96
|
-
windowedCodeBlock: WindowedCodeBlock
|
|
97
|
-
};
|