@pipedream/canva
Version:
Pipedream Canva Components
67 lines (60 loc) • 1.1 kB
JavaScript
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",
];
export default {
DESIGN_TYPE_OPTIONS,
DESIGN_TYPE_NAME_OPTIONS,
EXPORT_TYPES,
MP4_QUALITY,
EXPORT_QUALITY,
PAPER_SIZE,
};