├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── README.md ├── jsconfig.json ├── mdsvex.config.js ├── package.json ├── pnpm-lock.yaml ├── src ├── app.d.ts ├── app.html ├── lib │ ├── .gitignore │ ├── components │ │ ├── Calendar.svelte │ │ ├── SveltyPicker.svelte │ │ └── Time.svelte │ ├── i18n │ │ └── index.js │ ├── index.js │ ├── settings.js │ ├── types │ │ └── internal.d.ts │ └── utils │ │ ├── actions.js │ │ ├── constants.js │ │ ├── custom-element.js │ │ ├── dateUtils.js │ │ ├── grid.js │ │ ├── state.js │ │ └── transitions.js ├── routes │ ├── +layout.server.js │ ├── +layout.svelte │ ├── +page.svelte.md │ ├── autocommit-changes │ │ └── +page.svelte.md │ ├── disabling-dates │ │ └── +page.svelte.md │ ├── global-config │ │ └── +page.svelte.md │ ├── localization │ │ └── +page.svelte.md │ ├── migration-guide │ │ └── +page.svelte.md │ ├── modes-and-formats │ │ ├── +page.svelte.md │ │ ├── Tabs.svelte │ │ ├── format-php.md │ │ └── format-standard.md │ ├── properties │ │ └── +page.svelte.md │ ├── snippets │ │ └── +page.svelte.md │ ├── theme │ │ └── +page.svelte.md │ └── working-with-dates │ │ └── +page.svelte.md ├── style │ ├── base.css │ ├── code.css │ ├── doc.css │ ├── style.css │ └── vars.css └── utils │ └── codeHighlighter.js ├── static └── favicon.png ├── svelte.config.js ├── test ├── 01-render.test.js ├── 02-datepicker.test.svelte.js ├── 03-timepicker.test.svelte.js ├── 04-datetime.test.svelte.js ├── 05-daterange.test.svelte.js └── vitest-setup.js └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/jsconfig.json -------------------------------------------------------------------------------- /mdsvex.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/mdsvex.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/app.html -------------------------------------------------------------------------------- /src/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/lib/.gitignore -------------------------------------------------------------------------------- /src/lib/components/Calendar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/lib/components/Calendar.svelte -------------------------------------------------------------------------------- /src/lib/components/SveltyPicker.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/lib/components/SveltyPicker.svelte -------------------------------------------------------------------------------- /src/lib/components/Time.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/lib/components/Time.svelte -------------------------------------------------------------------------------- /src/lib/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/lib/i18n/index.js -------------------------------------------------------------------------------- /src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/lib/index.js -------------------------------------------------------------------------------- /src/lib/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/lib/settings.js -------------------------------------------------------------------------------- /src/lib/types/internal.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/lib/types/internal.d.ts -------------------------------------------------------------------------------- /src/lib/utils/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/lib/utils/actions.js -------------------------------------------------------------------------------- /src/lib/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/lib/utils/constants.js -------------------------------------------------------------------------------- /src/lib/utils/custom-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/lib/utils/custom-element.js -------------------------------------------------------------------------------- /src/lib/utils/dateUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/lib/utils/dateUtils.js -------------------------------------------------------------------------------- /src/lib/utils/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/lib/utils/grid.js -------------------------------------------------------------------------------- /src/lib/utils/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/lib/utils/state.js -------------------------------------------------------------------------------- /src/lib/utils/transitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/lib/utils/transitions.js -------------------------------------------------------------------------------- /src/routes/+layout.server.js: -------------------------------------------------------------------------------- 1 | export const prerender = true; 2 | -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+page.svelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/routes/+page.svelte.md -------------------------------------------------------------------------------- /src/routes/autocommit-changes/+page.svelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/routes/autocommit-changes/+page.svelte.md -------------------------------------------------------------------------------- /src/routes/disabling-dates/+page.svelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/routes/disabling-dates/+page.svelte.md -------------------------------------------------------------------------------- /src/routes/global-config/+page.svelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/routes/global-config/+page.svelte.md -------------------------------------------------------------------------------- /src/routes/localization/+page.svelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/routes/localization/+page.svelte.md -------------------------------------------------------------------------------- /src/routes/migration-guide/+page.svelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/routes/migration-guide/+page.svelte.md -------------------------------------------------------------------------------- /src/routes/modes-and-formats/+page.svelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/routes/modes-and-formats/+page.svelte.md -------------------------------------------------------------------------------- /src/routes/modes-and-formats/Tabs.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/routes/modes-and-formats/Tabs.svelte -------------------------------------------------------------------------------- /src/routes/modes-and-formats/format-php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/routes/modes-and-formats/format-php.md -------------------------------------------------------------------------------- /src/routes/modes-and-formats/format-standard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/routes/modes-and-formats/format-standard.md -------------------------------------------------------------------------------- /src/routes/properties/+page.svelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/routes/properties/+page.svelte.md -------------------------------------------------------------------------------- /src/routes/snippets/+page.svelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/routes/snippets/+page.svelte.md -------------------------------------------------------------------------------- /src/routes/theme/+page.svelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/routes/theme/+page.svelte.md -------------------------------------------------------------------------------- /src/routes/working-with-dates/+page.svelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/routes/working-with-dates/+page.svelte.md -------------------------------------------------------------------------------- /src/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/style/base.css -------------------------------------------------------------------------------- /src/style/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/style/code.css -------------------------------------------------------------------------------- /src/style/doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/style/doc.css -------------------------------------------------------------------------------- /src/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/style/style.css -------------------------------------------------------------------------------- /src/style/vars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/style/vars.css -------------------------------------------------------------------------------- /src/utils/codeHighlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/src/utils/codeHighlighter.js -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/static/favicon.png -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/svelte.config.js -------------------------------------------------------------------------------- /test/01-render.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/test/01-render.test.js -------------------------------------------------------------------------------- /test/02-datepicker.test.svelte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/test/02-datepicker.test.svelte.js -------------------------------------------------------------------------------- /test/03-timepicker.test.svelte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/test/03-timepicker.test.svelte.js -------------------------------------------------------------------------------- /test/04-datetime.test.svelte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/test/04-datetime.test.svelte.js -------------------------------------------------------------------------------- /test/05-daterange.test.svelte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/test/05-daterange.test.svelte.js -------------------------------------------------------------------------------- /test/vitest-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/test/vitest-setup.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mskocik/svelty-picker/HEAD/vite.config.js --------------------------------------------------------------------------------