@prismicio/editor-fields 0.4.4 → 0.4.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.
- package/dist/EditorConfig.d.ts +6 -1
- package/dist/fields/EmbedField/EmbedField.d.ts +4 -0
- package/dist/fields/ImageField/MediaPicker/MediaLibrary/MediaLibrary.d.ts +0 -5
- package/dist/fields/ImageField/MediaPicker/MediaLibrary/mediaLibraryData.d.ts +1 -7
- package/dist/fields/ImageField/MediaPicker/mediaPickerData.d.ts +1 -5
- package/dist/fields/LinkField/Documents/DocumentsModal.d.ts +7 -0
- package/dist/fields/LinkField/Documents/documentsData.d.ts +291 -0
- package/dist/fields/LinkField/useLinkField.d.ts +22 -2
- package/dist/fields/RichTextField/extensions/Embed/EmbedExtension.d.ts +10 -0
- package/dist/fields/RichTextField/extensions/Embed/EmbedView.d.ts +13 -3
- package/dist/fields/RichTextField/extensions/Embed/useEmbedView.d.ts +12 -0
- package/dist/fields/RichTextField/extensions/index.d.ts +1 -1
- package/dist/index.es.js +16853 -16159
- package/dist/index.umd.js +40 -39
- package/package.json +2 -2
package/dist/EditorConfig.d.ts
CHANGED
|
@@ -9,7 +9,12 @@ export interface EditorConfig {
|
|
|
9
9
|
url: string;
|
|
10
10
|
repository: string;
|
|
11
11
|
};
|
|
12
|
-
|
|
12
|
+
documents?: {
|
|
13
|
+
url: string;
|
|
14
|
+
};
|
|
15
|
+
env: Env;
|
|
16
|
+
status: "published" | "release" | "archived" | "unclassified";
|
|
13
17
|
}
|
|
18
|
+
export declare type Env = "dev" | "stage" | "prod";
|
|
14
19
|
export declare const EditorConfigContext: import("react").Context<EditorConfig | undefined>;
|
|
15
20
|
export declare function useEditorConfig(): EditorConfig;
|
|
@@ -8,4 +8,8 @@ interface Props {
|
|
|
8
8
|
onContentChange: (content?: EmbedContent) => void;
|
|
9
9
|
}
|
|
10
10
|
export declare function EmbedField(props: Props): JSX.Element;
|
|
11
|
+
interface FooterProps extends Pick<Props, "content" | "onContentChange"> {
|
|
12
|
+
debouncedUrl: string;
|
|
13
|
+
}
|
|
14
|
+
export declare function Footer(props: FooterProps): JSX.Element;
|
|
11
15
|
export {};
|
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
import type { ExternalImage } from "../externalImage";
|
|
2
2
|
import type { UploadFile } from "../mediaPickerData";
|
|
3
3
|
interface MediaLibraryProps {
|
|
4
|
-
assets: {
|
|
5
|
-
url: string;
|
|
6
|
-
dev: boolean;
|
|
7
|
-
repository: string;
|
|
8
|
-
};
|
|
9
4
|
uploadingFiles: UploadFile[];
|
|
10
5
|
onFilesSelected: (uploadingFiles: File[]) => void;
|
|
11
6
|
onSuccessFiles: () => void;
|
|
@@ -87,12 +87,7 @@ export declare const mediaLibrarySearchAPISchemaOkType: import("zod").ZodObject<
|
|
|
87
87
|
}>;
|
|
88
88
|
export declare type MediaLibrarySearchApi = TypeOf<typeof mediaLibrarySearchAPISchemaOkType>;
|
|
89
89
|
export declare type MediaLibraryImage = TypeOf<typeof mediaLibraryImageOkType>;
|
|
90
|
-
|
|
91
|
-
url: string;
|
|
92
|
-
repository: string;
|
|
93
|
-
dev: boolean;
|
|
94
|
-
}
|
|
95
|
-
export declare function useMediaLibrarySearch(props: MediaLibrarySearchProps): {
|
|
90
|
+
export declare function useMediaLibrarySearch(): {
|
|
96
91
|
media: {
|
|
97
92
|
id: string;
|
|
98
93
|
url: string;
|
|
@@ -121,4 +116,3 @@ export declare function useMediaLibrarySearch(props: MediaLibrarySearchProps): {
|
|
|
121
116
|
};
|
|
122
117
|
updateMedia: (newFiles: MediaLibraryImage[]) => void;
|
|
123
118
|
};
|
|
124
|
-
export {};
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import type { EditorConfig } from "../../../EditorConfig";
|
|
2
1
|
import { MediaLibraryImage } from "./MediaLibrary/mediaLibraryData";
|
|
3
2
|
export declare type UploadFile = UploadFileLoading | UploadFileSuccess;
|
|
4
3
|
interface UploadFileLoading {
|
|
@@ -13,10 +12,7 @@ export interface UploadFileSuccess {
|
|
|
13
12
|
status: "success";
|
|
14
13
|
response: MediaLibraryImage;
|
|
15
14
|
}
|
|
16
|
-
|
|
17
|
-
config: EditorConfig;
|
|
18
|
-
}
|
|
19
|
-
export declare function useMediaLibraryUpload(props: useMediaLibraryUploadProps): {
|
|
15
|
+
export declare function useMediaLibraryUpload(): {
|
|
20
16
|
onFilesSelected: (selectedFiles: File[]) => void;
|
|
21
17
|
uploadingFiles: UploadFile[];
|
|
22
18
|
onSuccessFiles: () => void;
|
|
@@ -0,0 +1,291 @@
|
|
|
1
|
+
import { TypeOf } from "zod";
|
|
2
|
+
export declare function useDocuments(params: {
|
|
3
|
+
searchTerm: string;
|
|
4
|
+
tagsFilter: string[];
|
|
5
|
+
typesFilter: string[];
|
|
6
|
+
}): {
|
|
7
|
+
documents: {
|
|
8
|
+
id: string;
|
|
9
|
+
title: string;
|
|
10
|
+
custom_type_id: string;
|
|
11
|
+
versions: (({
|
|
12
|
+
status: "unclassified";
|
|
13
|
+
} | {
|
|
14
|
+
status: "published";
|
|
15
|
+
} | {
|
|
16
|
+
status: "release";
|
|
17
|
+
release_id: string;
|
|
18
|
+
} | {
|
|
19
|
+
status: "archived";
|
|
20
|
+
}) & {
|
|
21
|
+
tags: string[];
|
|
22
|
+
version_id: string;
|
|
23
|
+
custom_type_label: string;
|
|
24
|
+
preview_summary?: string | undefined;
|
|
25
|
+
preview_image?: string | undefined;
|
|
26
|
+
})[];
|
|
27
|
+
}[];
|
|
28
|
+
onHasReachedBottom: () => void;
|
|
29
|
+
response: {
|
|
30
|
+
results: {
|
|
31
|
+
id: string;
|
|
32
|
+
title: string;
|
|
33
|
+
custom_type_id: string;
|
|
34
|
+
versions: (({
|
|
35
|
+
status: "unclassified";
|
|
36
|
+
} | {
|
|
37
|
+
status: "published";
|
|
38
|
+
} | {
|
|
39
|
+
status: "release";
|
|
40
|
+
release_id: string;
|
|
41
|
+
} | {
|
|
42
|
+
status: "archived";
|
|
43
|
+
}) & {
|
|
44
|
+
tags: string[];
|
|
45
|
+
version_id: string;
|
|
46
|
+
custom_type_label: string;
|
|
47
|
+
preview_summary?: string | undefined;
|
|
48
|
+
preview_image?: string | undefined;
|
|
49
|
+
})[];
|
|
50
|
+
}[];
|
|
51
|
+
total: number;
|
|
52
|
+
cursor?: string | undefined;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
declare const documentsSearchOkType: import("zod").ZodObject<{
|
|
56
|
+
id: import("zod").ZodString;
|
|
57
|
+
custom_type_id: import("zod").ZodString;
|
|
58
|
+
title: import("zod").ZodString;
|
|
59
|
+
versions: import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodDiscriminatedUnion<"status", [import("zod").ZodObject<{
|
|
60
|
+
status: import("zod").ZodLiteral<"unclassified">;
|
|
61
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
62
|
+
status: "unclassified";
|
|
63
|
+
}, {
|
|
64
|
+
status: "unclassified";
|
|
65
|
+
}>, import("zod").ZodObject<{
|
|
66
|
+
status: import("zod").ZodLiteral<"published">;
|
|
67
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
68
|
+
status: "published";
|
|
69
|
+
}, {
|
|
70
|
+
status: "published";
|
|
71
|
+
}>, import("zod").ZodObject<{
|
|
72
|
+
status: import("zod").ZodLiteral<"release">;
|
|
73
|
+
release_id: import("zod").ZodString;
|
|
74
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
75
|
+
status: "release";
|
|
76
|
+
release_id: string;
|
|
77
|
+
}, {
|
|
78
|
+
status: "release";
|
|
79
|
+
release_id: string;
|
|
80
|
+
}>, import("zod").ZodObject<{
|
|
81
|
+
status: import("zod").ZodLiteral<"archived">;
|
|
82
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
83
|
+
status: "archived";
|
|
84
|
+
}, {
|
|
85
|
+
status: "archived";
|
|
86
|
+
}>]>, import("zod").ZodObject<{
|
|
87
|
+
version_id: import("zod").ZodString;
|
|
88
|
+
tags: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
89
|
+
custom_type_label: import("zod").ZodString;
|
|
90
|
+
preview_summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
91
|
+
preview_image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
92
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
93
|
+
tags: string[];
|
|
94
|
+
version_id: string;
|
|
95
|
+
custom_type_label: string;
|
|
96
|
+
preview_summary?: string | undefined;
|
|
97
|
+
preview_image?: string | undefined;
|
|
98
|
+
}, {
|
|
99
|
+
tags: string[];
|
|
100
|
+
version_id: string;
|
|
101
|
+
custom_type_label: string;
|
|
102
|
+
preview_summary?: string | undefined;
|
|
103
|
+
preview_image?: string | undefined;
|
|
104
|
+
}>>, "many">;
|
|
105
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
106
|
+
id: string;
|
|
107
|
+
title: string;
|
|
108
|
+
custom_type_id: string;
|
|
109
|
+
versions: (({
|
|
110
|
+
status: "unclassified";
|
|
111
|
+
} | {
|
|
112
|
+
status: "published";
|
|
113
|
+
} | {
|
|
114
|
+
status: "release";
|
|
115
|
+
release_id: string;
|
|
116
|
+
} | {
|
|
117
|
+
status: "archived";
|
|
118
|
+
}) & {
|
|
119
|
+
tags: string[];
|
|
120
|
+
version_id: string;
|
|
121
|
+
custom_type_label: string;
|
|
122
|
+
preview_summary?: string | undefined;
|
|
123
|
+
preview_image?: string | undefined;
|
|
124
|
+
})[];
|
|
125
|
+
}, {
|
|
126
|
+
id: string;
|
|
127
|
+
title: string;
|
|
128
|
+
custom_type_id: string;
|
|
129
|
+
versions: (({
|
|
130
|
+
status: "unclassified";
|
|
131
|
+
} | {
|
|
132
|
+
status: "published";
|
|
133
|
+
} | {
|
|
134
|
+
status: "release";
|
|
135
|
+
release_id: string;
|
|
136
|
+
} | {
|
|
137
|
+
status: "archived";
|
|
138
|
+
}) & {
|
|
139
|
+
tags: string[];
|
|
140
|
+
version_id: string;
|
|
141
|
+
custom_type_label: string;
|
|
142
|
+
preview_summary?: string | undefined;
|
|
143
|
+
preview_image?: string | undefined;
|
|
144
|
+
})[];
|
|
145
|
+
}>;
|
|
146
|
+
declare const documentsSearchAPISchemaOkType: import("zod").ZodObject<{
|
|
147
|
+
total: import("zod").ZodNumber;
|
|
148
|
+
cursor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
149
|
+
results: import("zod").ZodArray<import("zod").ZodObject<{
|
|
150
|
+
id: import("zod").ZodString;
|
|
151
|
+
custom_type_id: import("zod").ZodString;
|
|
152
|
+
title: import("zod").ZodString;
|
|
153
|
+
versions: import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodDiscriminatedUnion<"status", [import("zod").ZodObject<{
|
|
154
|
+
status: import("zod").ZodLiteral<"unclassified">;
|
|
155
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
156
|
+
status: "unclassified";
|
|
157
|
+
}, {
|
|
158
|
+
status: "unclassified";
|
|
159
|
+
}>, import("zod").ZodObject<{
|
|
160
|
+
status: import("zod").ZodLiteral<"published">;
|
|
161
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
162
|
+
status: "published";
|
|
163
|
+
}, {
|
|
164
|
+
status: "published";
|
|
165
|
+
}>, import("zod").ZodObject<{
|
|
166
|
+
status: import("zod").ZodLiteral<"release">;
|
|
167
|
+
release_id: import("zod").ZodString;
|
|
168
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
169
|
+
status: "release";
|
|
170
|
+
release_id: string;
|
|
171
|
+
}, {
|
|
172
|
+
status: "release";
|
|
173
|
+
release_id: string;
|
|
174
|
+
}>, import("zod").ZodObject<{
|
|
175
|
+
status: import("zod").ZodLiteral<"archived">;
|
|
176
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
177
|
+
status: "archived";
|
|
178
|
+
}, {
|
|
179
|
+
status: "archived";
|
|
180
|
+
}>]>, import("zod").ZodObject<{
|
|
181
|
+
version_id: import("zod").ZodString;
|
|
182
|
+
tags: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
183
|
+
custom_type_label: import("zod").ZodString;
|
|
184
|
+
preview_summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
185
|
+
preview_image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
186
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
187
|
+
tags: string[];
|
|
188
|
+
version_id: string;
|
|
189
|
+
custom_type_label: string;
|
|
190
|
+
preview_summary?: string | undefined;
|
|
191
|
+
preview_image?: string | undefined;
|
|
192
|
+
}, {
|
|
193
|
+
tags: string[];
|
|
194
|
+
version_id: string;
|
|
195
|
+
custom_type_label: string;
|
|
196
|
+
preview_summary?: string | undefined;
|
|
197
|
+
preview_image?: string | undefined;
|
|
198
|
+
}>>, "many">;
|
|
199
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
200
|
+
id: string;
|
|
201
|
+
title: string;
|
|
202
|
+
custom_type_id: string;
|
|
203
|
+
versions: (({
|
|
204
|
+
status: "unclassified";
|
|
205
|
+
} | {
|
|
206
|
+
status: "published";
|
|
207
|
+
} | {
|
|
208
|
+
status: "release";
|
|
209
|
+
release_id: string;
|
|
210
|
+
} | {
|
|
211
|
+
status: "archived";
|
|
212
|
+
}) & {
|
|
213
|
+
tags: string[];
|
|
214
|
+
version_id: string;
|
|
215
|
+
custom_type_label: string;
|
|
216
|
+
preview_summary?: string | undefined;
|
|
217
|
+
preview_image?: string | undefined;
|
|
218
|
+
})[];
|
|
219
|
+
}, {
|
|
220
|
+
id: string;
|
|
221
|
+
title: string;
|
|
222
|
+
custom_type_id: string;
|
|
223
|
+
versions: (({
|
|
224
|
+
status: "unclassified";
|
|
225
|
+
} | {
|
|
226
|
+
status: "published";
|
|
227
|
+
} | {
|
|
228
|
+
status: "release";
|
|
229
|
+
release_id: string;
|
|
230
|
+
} | {
|
|
231
|
+
status: "archived";
|
|
232
|
+
}) & {
|
|
233
|
+
tags: string[];
|
|
234
|
+
version_id: string;
|
|
235
|
+
custom_type_label: string;
|
|
236
|
+
preview_summary?: string | undefined;
|
|
237
|
+
preview_image?: string | undefined;
|
|
238
|
+
})[];
|
|
239
|
+
}>, "many">;
|
|
240
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241
|
+
results: {
|
|
242
|
+
id: string;
|
|
243
|
+
title: string;
|
|
244
|
+
custom_type_id: string;
|
|
245
|
+
versions: (({
|
|
246
|
+
status: "unclassified";
|
|
247
|
+
} | {
|
|
248
|
+
status: "published";
|
|
249
|
+
} | {
|
|
250
|
+
status: "release";
|
|
251
|
+
release_id: string;
|
|
252
|
+
} | {
|
|
253
|
+
status: "archived";
|
|
254
|
+
}) & {
|
|
255
|
+
tags: string[];
|
|
256
|
+
version_id: string;
|
|
257
|
+
custom_type_label: string;
|
|
258
|
+
preview_summary?: string | undefined;
|
|
259
|
+
preview_image?: string | undefined;
|
|
260
|
+
})[];
|
|
261
|
+
}[];
|
|
262
|
+
total: number;
|
|
263
|
+
cursor?: string | undefined;
|
|
264
|
+
}, {
|
|
265
|
+
results: {
|
|
266
|
+
id: string;
|
|
267
|
+
title: string;
|
|
268
|
+
custom_type_id: string;
|
|
269
|
+
versions: (({
|
|
270
|
+
status: "unclassified";
|
|
271
|
+
} | {
|
|
272
|
+
status: "published";
|
|
273
|
+
} | {
|
|
274
|
+
status: "release";
|
|
275
|
+
release_id: string;
|
|
276
|
+
} | {
|
|
277
|
+
status: "archived";
|
|
278
|
+
}) & {
|
|
279
|
+
tags: string[];
|
|
280
|
+
version_id: string;
|
|
281
|
+
custom_type_label: string;
|
|
282
|
+
preview_summary?: string | undefined;
|
|
283
|
+
preview_image?: string | undefined;
|
|
284
|
+
})[];
|
|
285
|
+
}[];
|
|
286
|
+
total: number;
|
|
287
|
+
cursor?: string | undefined;
|
|
288
|
+
}>;
|
|
289
|
+
export declare type DocumentSearchApi = TypeOf<typeof documentsSearchAPISchemaOkType>;
|
|
290
|
+
export declare type Document = TypeOf<typeof documentsSearchOkType>;
|
|
291
|
+
export {};
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
+
import type { ErrorBoundary } from "@prismicio/editor-ui";
|
|
1
2
|
import type { LinkContent } from "@prismicio/types-internal/lib/content";
|
|
2
3
|
import type { Link } from "@prismicio/types-internal/lib/customtypes";
|
|
4
|
+
import { TypeOf } from "zod";
|
|
5
|
+
import { Env } from "../../EditorConfig";
|
|
3
6
|
import type { FieldSelectTypes } from "./LinkFieldActions";
|
|
4
7
|
export declare function useLinkField(params: {
|
|
5
8
|
field: Link;
|
|
6
9
|
content: LinkContent | undefined;
|
|
7
10
|
onContentChange: (content: LinkContent | undefined) => void;
|
|
8
11
|
}): {
|
|
9
|
-
contentType: "
|
|
12
|
+
contentType: "ImageLink" | "FileLink" | "DocumentLink" | "ExternalLink" | undefined;
|
|
10
13
|
selectType: "document" | "media" | "web" | undefined;
|
|
11
|
-
isUnsupportedField: boolean;
|
|
14
|
+
isUnsupportedField: boolean | undefined;
|
|
12
15
|
fieldValue: string;
|
|
13
16
|
onValueChange: (value: string) => void;
|
|
14
17
|
onTypeChange: (newValue: FieldSelectTypes) => void;
|
|
15
18
|
placeholder: string;
|
|
16
19
|
isTypeSelectEnabled: boolean;
|
|
20
|
+
onDocumentSelected: (documentId: string) => void;
|
|
21
|
+
onError: () => void;
|
|
22
|
+
errorBoundaryRef: import("react").RefObject<ErrorBoundary>;
|
|
17
23
|
};
|
|
24
|
+
export declare function useDocumentTitle(id: string): string;
|
|
25
|
+
declare const documentMeta: import("zod").ZodObject<{
|
|
26
|
+
id: import("zod").ZodString;
|
|
27
|
+
title: import("zod").ZodString;
|
|
28
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
29
|
+
id: string;
|
|
30
|
+
title: string;
|
|
31
|
+
}, {
|
|
32
|
+
id: string;
|
|
33
|
+
title: string;
|
|
34
|
+
}>;
|
|
35
|
+
export declare type DocumentMeta = TypeOf<typeof documentMeta>;
|
|
36
|
+
export declare function getDocumentTitleRequest(baseUrl: string | undefined, env: Env, id: string): Promise<DocumentMeta>;
|
|
37
|
+
export {};
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import type { EmbedContent } from "@prismicio/types-internal/lib/content";
|
|
2
|
+
import type { Node as ProseMirrorNode } from "@tiptap/pm/model";
|
|
3
|
+
import { NodeViewProps } from "@tiptap/react";
|
|
4
|
+
interface EmbedNode extends ProseMirrorNode {
|
|
5
|
+
attrs: {
|
|
6
|
+
content: EmbedContent | undefined;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export interface EmbedViewProps extends NodeViewProps {
|
|
10
|
+
node: EmbedNode;
|
|
11
|
+
}
|
|
12
|
+
export declare function EmbedView(props: EmbedViewProps): JSX.Element;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { EmbedContent } from "@prismicio/types-internal/lib/content";
|
|
2
|
+
import { KeyboardEvent, RefObject } from "react";
|
|
3
|
+
import type { EmbedViewProps } from "./EmbedView";
|
|
4
|
+
export declare function useEmbedView(props: EmbedViewProps, inputRef: RefObject<HTMLInputElement>, containerRef: RefObject<HTMLDivElement>): {
|
|
5
|
+
inputRef: RefObject<HTMLInputElement>;
|
|
6
|
+
containerRef: RefObject<HTMLDivElement>;
|
|
7
|
+
onKeyDown: (event: KeyboardEvent<Element>) => void;
|
|
8
|
+
url: string;
|
|
9
|
+
urlChanged: (url: string) => void;
|
|
10
|
+
onContentChange: (content?: EmbedContent) => void;
|
|
11
|
+
debouncedUrl: string;
|
|
12
|
+
};
|
|
@@ -3,7 +3,7 @@ import type { WidgetExtension } from "../models";
|
|
|
3
3
|
import { default as Bold } from "./Bold";
|
|
4
4
|
import { default as BulletList } from "./BulletList";
|
|
5
5
|
import { default as CodeBlock } from "./CodeBlock";
|
|
6
|
-
import { default as Embed } from "./Embed";
|
|
6
|
+
import { default as Embed } from "./Embed/EmbedExtension";
|
|
7
7
|
import { default as Heading } from "./Heading";
|
|
8
8
|
import { default as Italic } from "./Italic";
|
|
9
9
|
import { default as OrderedList } from "./OrderedList";
|