gitextract_udtrmfag/ ├── .eslintignore ├── .eslintrc.yml ├── .gitattributes ├── .github/ │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ └── config.yml │ ├── PULL_REQUEST_TEMPLATE │ └── workflows/ │ ├── base/ │ │ └── action.yaml │ ├── build/ │ │ └── action.yaml │ ├── codeql-analysis.yml │ ├── docs/ │ │ └── action.yaml │ ├── docs.yaml │ ├── feature-branch.yaml │ ├── nuget/ │ │ └── action.yaml │ ├── nuget.yml │ ├── pr.yml │ ├── publish.yml │ ├── release/ │ │ └── action.yaml │ └── stale.yaml ├── .gitignore ├── .husky/ │ └── pre-commit ├── .npmignore ├── .prettierignore ├── .prettierrc ├── CNAME ├── LICENSE ├── README.md ├── build/ │ ├── banner.js │ ├── change-version.js │ ├── plugins.js │ ├── rollup-plugin.config.js │ ├── rollup.config.js │ ├── serve.js │ └── utilities.js ├── package.json ├── sonar-project.properties ├── src/ │ ├── docs/ │ │ ├── assets/ │ │ │ ├── no-styles.html │ │ │ └── repl-data.json │ │ ├── js/ │ │ │ ├── docs.js │ │ │ └── migration.js │ │ ├── make.js │ │ ├── partials/ │ │ │ ├── change-log-archive.html │ │ │ ├── change-log.html │ │ │ ├── datetime.html │ │ │ ├── examples/ │ │ │ │ ├── index.html │ │ │ │ └── jquery.html │ │ │ ├── functions/ │ │ │ │ ├── dates.html │ │ │ │ ├── display.html │ │ │ │ └── index.html │ │ │ ├── functions.html │ │ │ ├── index.html │ │ │ ├── installing.html │ │ │ ├── locale.html │ │ │ ├── migration.html │ │ │ ├── namespace/ │ │ │ │ ├── css.html │ │ │ │ ├── errors.html │ │ │ │ ├── events.html │ │ │ │ ├── index.html │ │ │ │ └── unit.html │ │ │ ├── options/ │ │ │ │ ├── display.html │ │ │ │ ├── index.html │ │ │ │ ├── keyboard-navigation.html │ │ │ │ ├── localization.html │ │ │ │ └── restrictions.html │ │ │ ├── options.html │ │ │ ├── plugins/ │ │ │ │ ├── bi1.html │ │ │ │ ├── customDateFormat.html │ │ │ │ ├── fa5.html │ │ │ │ ├── floating-ui.html │ │ │ │ ├── index.html │ │ │ │ ├── moment.html │ │ │ │ └── paint.html │ │ │ └── repl.html │ │ ├── site-config.json │ │ ├── styles/ │ │ │ ├── bs5_docs.scss │ │ │ └── styles.scss │ │ └── templates/ │ │ ├── 404.html │ │ ├── index.html │ │ ├── page-template.html │ │ ├── post-loop.html │ │ └── shell.html │ ├── js/ │ │ ├── actions.ts │ │ ├── dates.ts │ │ ├── datetime.ts │ │ ├── display/ │ │ │ ├── calendar/ │ │ │ │ ├── date-display.ts │ │ │ │ ├── decade-display.ts │ │ │ │ ├── month-display.ts │ │ │ │ └── year-display.ts │ │ │ ├── collapse.ts │ │ │ ├── index.ts │ │ │ └── time/ │ │ │ ├── hour-display.ts │ │ │ ├── minute-display.ts │ │ │ ├── second-display.ts │ │ │ └── time-display.ts │ │ ├── jQuery-provider.js │ │ ├── locales/ │ │ │ ├── ar-SA.ts │ │ │ ├── ar.ts │ │ │ ├── ca.ts │ │ │ ├── cs.ts │ │ │ ├── de.ts │ │ │ ├── es.ts │ │ │ ├── fi.ts │ │ │ ├── fr.ts │ │ │ ├── hr.ts │ │ │ ├── hy.ts │ │ │ ├── it.ts │ │ │ ├── nl.ts │ │ │ ├── pl.ts │ │ │ ├── pt-PT.ts │ │ │ ├── ro.ts │ │ │ ├── ru.ts │ │ │ ├── sk.ts │ │ │ ├── sl.ts │ │ │ ├── sr-Latn.ts │ │ │ ├── sr.ts │ │ │ ├── tr.ts │ │ │ ├── uk.ts │ │ │ ├── zh-CN.ts │ │ │ ├── zh-HK.ts │ │ │ ├── zh-MO.ts │ │ │ └── zh-TW.ts │ │ ├── plugins/ │ │ │ ├── bi-one/ │ │ │ │ └── index.ts │ │ │ ├── customDateFormat/ │ │ │ │ └── index.ts │ │ │ ├── examples/ │ │ │ │ ├── custom-paint-job.ts │ │ │ │ └── sample.ts │ │ │ ├── fa-five/ │ │ │ │ └── index.ts │ │ │ └── moment-parse/ │ │ │ └── index.ts │ │ ├── tempus-dominus.ts │ │ ├── utilities/ │ │ │ ├── action-types.ts │ │ │ ├── calendar-modes.ts │ │ │ ├── default-format-localization.ts │ │ │ ├── default-options.ts │ │ │ ├── errors.ts │ │ │ ├── event-emitter.ts │ │ │ ├── event-types.ts │ │ │ ├── namespace.ts │ │ │ ├── optionConverter.ts │ │ │ ├── optionProcessor.ts │ │ │ ├── options.ts │ │ │ ├── optionsStore.ts │ │ │ ├── service-locator.ts │ │ │ ├── typeChecker.ts │ │ │ └── view-mode.ts │ │ └── validation.ts │ ├── nuget/ │ │ ├── TempusDominus.nuspec │ │ └── TempusDominus.scss.nuspec │ └── scss/ │ ├── _variables.scss │ └── tempus-dominus.scss ├── td logo.xcf ├── test/ │ ├── actions.test.ts │ ├── dates.test.ts │ ├── datetime.test.ts │ ├── fixtures/ │ │ ├── dates.fixture.ts │ │ ├── display.fixture.ts │ │ ├── eventemitters.fixture.ts │ │ ├── optionStore.fixture.ts │ │ ├── serviceLocator.fixture.ts │ │ └── validation.fixture.ts │ ├── tempus-dominus.test.ts │ ├── test-import.ts │ ├── test-utilities.ts │ ├── utilities/ │ │ ├── optionProccessor.test.ts │ │ ├── optionStore.test.ts │ │ ├── serviceLocator.test.ts │ │ └── typeCechker.test.ts │ └── validation.test.ts ├── tsconfig.json └── vite.config.ts