UNPKG

@pipedream/canva

Version:

Pipedream Canva Components

107 lines (98 loc) 1.78 kB
const DESIGN_TYPE_OPTIONS = [ { label: "Provide the common design type", value: "preset", }, { label: "Provide the width and height to define a custom design type", value: "custom", }, ]; const DESIGN_TYPE_NAME_OPTIONS = [ { label: "Doc: A document for Canva's online text editor", value: "doc", }, { label: "Whiteboard: A design which gives you infinite space to collaborate", value: "whiteboard", }, { label: "Presentation: Lets you create and collaborate for presenting to an audience", value: "presentation", }, ]; const EXPORT_TYPES = [ "pdf", "jpg", "png", "pptx", "gif", "mp4", ]; const MP4_QUALITY = [ "horizontal_480p", "horizontal_720p", "horizontal_1080p", "horizontal_4k", "vertical_480p", "vertical_720p", "vertical_1080p", "vertical_4k", ]; const EXPORT_QUALITY = [ "regular", "pro", ]; const PAPER_SIZE = [ "a4", "a3", "letter", "legal", ]; const OWNERSHIP_OPTIONS = [ { label: "Any (owned by and shared with the user)", value: "any", }, { label: "Owned (owned by the user)", value: "owned", }, { label: "Shared (shared with the user)", value: "shared", }, ]; const SORT_BY_OPTIONS = [ { label: "Relevance", value: "relevance", }, { label: "Modified (newest first)", value: "modified_descending", }, { label: "Modified (oldest first)", value: "modified_ascending", }, { label: "Title (Z to A)", value: "title_descending", }, { label: "Title (A to Z)", value: "title_ascending", }, ]; export default { DESIGN_TYPE_OPTIONS, DESIGN_TYPE_NAME_OPTIONS, EXPORT_TYPES, MP4_QUALITY, EXPORT_QUALITY, PAPER_SIZE, OWNERSHIP_OPTIONS, SORT_BY_OPTIONS, };