@rsousacode/date-picker-svelte
v2.3.1
Published
Date and time picker for Svelte using px instead of rem and CSS changes to be compatible with Beercss.
Maintainers
Readme
Date Picker Svelte
Date and time picker for Svelte
Features:
- Theming
- Custom formats
- Internationalization (i18n)
- Autopunctuation (e.g typing "20201111111111" gives you "2020-11-11 11:11:11" with the default format)
- Keyboard shortcuts
Demo • Documentation • REPL

Install
npm install date-picker-svelteUsage
<script>
import { DateInput } from 'date-picker-svelte'
let date = new Date()
</script>
<DateInput bind:value={date} />Check the docs to learn more
Contributing
Get started
- Install Node.js (v14 works)
- Run
npm install
Commands
npm run dev: Start site in dev modenpm run build: Build package and sitenpm run preview: Preview production sitenpm run check: Runsvelte-checknpm run test: Run testsnpm run format: Format code
Publish new version
- Update
CHANGELOG.md - Check for errors
npm run lint - Bump the version number
npm version --no-git-tag <version> - Generate the package
npm run build:package - Publish the package
npm publish ./package - Commit with a tag in format "v#.#.#"
- Create GitHub release with release notes
