UNPKG

@pipedream/convertapi

Version:

Pipedream ConvertAPI Components

187 lines (181 loc) 2.69 kB
export const FORMAT_OPTIONS = [ "ai", "any", "bmp", "csv", "djvu", "doc", "docx", "dot", "dotx", "dwf", "dwfx", "dwg", "dwgx", "dxf", "email", "eml", "eps", "epub", "gif", "heic", "htm", "html", "ico", "images", "jpeg", "jpg", "key", "log", "md", "mdi", "mhtml", "mobi", "msg", "numbers", "odc", "odf", "odp", "ods", "odt", "office", "oxps", "pages", "pdf", "png", "potx", "pps", "ppsx", "ppt", "pptx", "prn", "ps", "psd", "pub", "rtf", "svg", "template", "tif", "tiff", "txt", "vsd", "vsdx", "web", "webp", "wpd", "xls", "xlsx", "xlt", "xltx", "xml", "xps", "zip", ]; export const CSS_MEDIA_TYTPE_OPTIONS = [ "print", "screen", ]; export const PAGE_ORIENTATION_OPTIONS = [ "portrait", "landscape", ]; export const PAGE_SIZE_OPTIONS = [ { label: "A0 (841 x 1189 mm, 8.26 x 11.69 inches)", value: "a0", }, { label: "A1 (594 x 841 mm, 23.4 x 33.1 inches)", value: "a1", }, { label: "A2 (420 x 594 mm, 16.5 x 23.4 inches)", value: "a2", }, { label: "A3 (298 x 420 mm, 11.7 x 16.5 inches)", value: "a3", }, { label: "A4 (210 x 298 mm, 8.3 x 11.7 inches)", value: "a4", }, { label: "A5 (148 x 210 mm, 5.8 x 8.3 inches)", value: "a5", }, { label: "A6 (105 x 148 mm, 4.1 x 5.8 inches)", value: "a6", }, { label: "A7 (74 x 105 mm, 2.9 x 4.1 inches)", value: "a7", }, { label: "A8 (52 x 74 mm, 2.0 x 2.9 inches)", value: "a8", }, { label: "A9 (37 x 52 mm, 1.5 x 2.0 inches)", value: "a9", }, { label: "B0 (1000 x 1414 mm, 39.4 x 55.7 inches)", value: "b0", }, { label: "B1 (707 x 1000 mm, 27.8 x 39.4 inches)", value: "b1", }, { label: "B2 (500 x 707 mm, 19.7 x 27.8 inches)", value: "b2", }, { label: "B3 (353 x 500 mm, 13.9 x 19.7 inches)", value: "b3", }, { label: "B4 (250 x 353 mm, 9.8 x 13.9 inches)", value: "b4", }, { label: "B5 (176 x 250 mm, 6.9 x 9.8 inches)", value: "b5", }, { label: "Letter (216 x 279 mm, 8.5 x 11 inches)", value: "letter", }, { label: "Legal (216 x 356 mm, 8.5 x 14 inches)", value: "legal", }, { label: "Ledger (432 x 279 mm, 17 x 11 inches)", value: "ledger", }, ]; export const FIXED_ELEMENTS_OPTIONS = [ { label: "Leave unchanged", value: "fixed", }, { label: "Absolute", value: "absolute", }, { label: "Relative", value: "relative", }, { label: "Hide", value: "hide", }, ]; export const FORMAT_TO_OPTIONS = [ "jpg", "pdf", ];