1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
import {
AnnotationFormSectionHeading,
AnnotationFormTextPlate,
AnnotationFormFootnote,
AnnotationFormSubtitle,
} from './annotationForm.text'
import {
AnnotationFormVideo,
AnnotationFormVideoSetVolume,
} from './annotationForm.video'
import {
AnnotationFormImage,
} from './annotationForm.image'
import {
AnnotationFormGallery,
AnnotationFormGalleryAdvance,
} from './annotationForm.gallery'
import {
AnnotationFormCurtain,
AnnotationFormIntro,
} from './annotationForm.utility'
export const annotationFormLookup = {
section_heading: AnnotationFormSectionHeading,
text_plate: AnnotationFormTextPlate,
footnote: AnnotationFormFootnote,
subtitle: AnnotationFormSubtitle,
image: AnnotationFormImage,
video: AnnotationFormVideo,
video_set_volume: AnnotationFormVideoSetVolume,
gallery: AnnotationFormGallery,
carousel: AnnotationFormGallery,
grid: AnnotationFormGallery,
vitrine: AnnotationFormGallery,
gallery_advance: AnnotationFormGalleryAdvance,
intro: AnnotationFormIntro,
curtain: AnnotationFormCurtain,
}
|