gitextract_cdadp12_/ ├── .eslintrc.cjs ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .nvmrc ├── .prettierrc ├── LICENSE ├── README.md ├── SCREENSHOTS.md ├── TRANSLATIONS.md ├── create.html ├── package.json ├── public/ │ ├── faq.html │ ├── features.html │ ├── index.html │ └── robots.txt ├── src/ │ ├── app.css │ ├── components/ │ │ ├── external-link.jsx │ │ ├── pdf-preview-card.jsx │ │ ├── pdf-preview.jsx │ │ └── pdf-progress.jsx │ ├── config/ │ │ ├── dayjs.js │ │ └── i18n.js │ ├── configuration-form/ │ │ ├── configuration-selector.jsx │ │ ├── items-list.jsx │ │ ├── itinerary.jsx │ │ ├── sortable-item.jsx │ │ ├── sortable-itinerary-row.jsx │ │ ├── special-dates.jsx │ │ └── toggle-accordion-item.jsx │ ├── configuration.jsx │ ├── index.css │ ├── index.jsx │ ├── lib/ │ │ ├── attachments.js │ │ ├── base64.js │ │ ├── config-compat.js │ │ ├── date.js │ │ ├── device-utils.js │ │ ├── id-utils.js │ │ ├── itinerary-utils.js │ │ ├── paths.js │ │ ├── pdf.js │ │ └── special-dates-utils.js │ ├── loader.jsx │ ├── locales/ │ │ ├── cs/ │ │ │ ├── app.json │ │ │ ├── config.json │ │ │ └── pdf.json │ │ ├── da/ │ │ │ ├── app.json │ │ │ ├── config.json │ │ │ └── pdf.json │ │ ├── de/ │ │ │ ├── app.json │ │ │ ├── config.json │ │ │ └── pdf.json │ │ ├── en/ │ │ │ ├── app.json │ │ │ ├── config.json │ │ │ └── pdf.json │ │ ├── es/ │ │ │ ├── app.json │ │ │ ├── config.json │ │ │ └── pdf.json │ │ ├── fr/ │ │ │ ├── app.json │ │ │ ├── config.json │ │ │ └── pdf.json │ │ ├── he/ │ │ │ ├── app.json │ │ │ ├── config.json │ │ │ └── pdf.json │ │ ├── hr/ │ │ │ ├── app.json │ │ │ ├── config.json │ │ │ └── pdf.json │ │ ├── hu/ │ │ │ ├── app.json │ │ │ ├── config.json │ │ │ └── pdf.json │ │ ├── it/ │ │ │ ├── app.json │ │ │ ├── config.json │ │ │ └── pdf.json │ │ ├── nb/ │ │ │ ├── app.json │ │ │ ├── config.json │ │ │ └── pdf.json │ │ ├── nl/ │ │ │ ├── app.json │ │ │ ├── config.json │ │ │ └── pdf.json │ │ ├── pl/ │ │ │ ├── app.json │ │ │ ├── config.json │ │ │ └── pdf.json │ │ ├── pt-br/ │ │ │ ├── app.json │ │ │ ├── config.json │ │ │ └── pdf.json │ │ ├── sl/ │ │ │ ├── app.json │ │ │ ├── config.json │ │ │ └── pdf.json │ │ ├── sv/ │ │ │ ├── app.json │ │ │ ├── config.json │ │ │ └── pdf.json │ │ └── tr/ │ │ ├── app.json │ │ ├── config.json │ │ └── pdf.json │ ├── navigation.jsx │ ├── pdf/ │ │ ├── components/ │ │ │ ├── header.jsx │ │ │ ├── itinerary.jsx │ │ │ └── mini-calendar.jsx │ │ ├── config.js │ │ ├── lib/ │ │ │ ├── fonts.js │ │ │ └── links.js │ │ ├── pages/ │ │ │ ├── day.jsx │ │ │ ├── last.jsx │ │ │ ├── month-overview.jsx │ │ │ ├── week-overview.jsx │ │ │ ├── week-retrospective.jsx │ │ │ └── year-overview.jsx │ │ ├── recalendar.jsx │ │ ├── styles.js │ │ └── utils.js │ └── worker/ │ └── pdf.worker.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts