diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-07-27 17:27:49 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-07-27 17:27:49 +0200 |
| commit | bab55fb2b208e978ff52459f643cad53f01af08e (patch) | |
| tree | 8946744937e01bbab0d6e60ee821793d63352e91 /animism-align/frontend/app/constants.js | |
| parent | 0f0aadf430546819cfcf55f7106a1247190e674c (diff) | |
media labels..
Diffstat (limited to 'animism-align/frontend/app/constants.js')
| -rw-r--r-- | animism-align/frontend/app/constants.js | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/animism-align/frontend/app/constants.js b/animism-align/frontend/app/constants.js index b7757d0..b73a0ad 100644 --- a/animism-align/frontend/app/constants.js +++ b/animism-align/frontend/app/constants.js @@ -38,9 +38,26 @@ export const ROMAN_NUMERALS = [ 'XI', 'XII', 'XIII', 'XIV', 'XV', 'XVI', 'XVII', 'XVIII', 'XIX', 'XX', ] +export const TEXT_TYPES = new Set([ + 'header', 'sentence', +]) + export const MEDIA_TYPES = new Set([ - 'image', 'gallery', 'vitrine', + 'image', 'carousel', 'grid', 'video', + 'vitrine', +]) + +export const MEDIA_LABEL_TYPES = { + image: 'Image Gallery', + carousel: 'Image Gallery', + grid: 'Image Gallery', + video: 'Video', + vitrine: 'Vitrine', +} + +export const UTILITY_TYPES = new Set([ + 'curtain', 'paragraph_end', ]) export const CURTAIN_COLORS = [ |
