Rocky_Mountain_Vending/.pnpm-store/v10/files/0e/21bd26be39c0293b648446a1941c77ce11e8ea1386a3cec9d1980c841fd282d8371c2c1620ac0937324782949ea161cfd1d6f35dc7a771dced4d42fd5bcabe
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

58 lines
No EOL
1.5 KiB
Text

/**
* @license
* Copyright 2020 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @internal
*
* @remarks All A series paper format sizes in inches are calculated from centimeters
* rounded mathematically to four decimal places.
*/
export const paperFormats = {
letter: {
cm: { width: 21.59, height: 27.94 },
in: { width: 8.5, height: 11 },
},
legal: {
cm: { width: 21.59, height: 35.56 },
in: { width: 8.5, height: 14 },
},
tabloid: {
cm: { width: 27.94, height: 43.18 },
in: { width: 11, height: 17 },
},
ledger: {
cm: { width: 43.18, height: 27.94 },
in: { width: 17, height: 11 },
},
a0: {
cm: { width: 84.1, height: 118.9 },
in: { width: 33.1102, height: 46.811 },
},
a1: {
cm: { width: 59.4, height: 84.1 },
in: { width: 23.3858, height: 33.1102 },
},
a2: {
cm: { width: 42, height: 59.4 },
in: { width: 16.5354, height: 23.3858 },
},
a3: {
cm: { width: 29.7, height: 42 },
in: { width: 11.6929, height: 16.5354 },
},
a4: {
cm: { width: 21, height: 29.7 },
in: { width: 8.2677, height: 11.6929 },
},
a5: {
cm: { width: 14.8, height: 21 },
in: { width: 5.8268, height: 8.2677 },
},
a6: {
cm: { width: 10.5, height: 14.8 },
in: { width: 4.1339, height: 5.8268 },
},
};
//# sourceMappingURL=PDFOptions.js.map