Go to file
Astrian 975a0e6bc1
All checks were successful
Publish to npm / publish (push) Successful in 28s
Merge pull request 'dev' (#5) from dev into main
Reviewed-on: #5
2025-02-26 00:49:21 +00:00
.gitea/workflows feat: update package name in Gitea Actions workflow and package.json 2025-02-25 10:02:08 +11:00
.vscode initial commit 2025-02-24 09:49:13 +11:00
playground feat: update SingleWeekPicker and SingleDatePicker components with documentation and remove unnecessary v-model binding 2025-02-26 09:18:39 +11:00
public initial commit 2025-02-24 09:49:13 +11:00
src fix: update documentation links in README and components to reflect correct URLs for Vue 3 2025-02-26 11:27:27 +11:00
.gitignore feat: update package.json to include peerDependencies for Vue and adjust exports paths 2025-02-25 10:13:21 +11:00
LICENSE feat: add MIT License file to the repository 2025-02-26 09:33:48 +11:00
package-lock.json 0.1.3 2025-02-26 11:48:54 +11:00
package.json 0.1.3 2025-02-26 11:48:54 +11:00
README.md fix: update README to reflect Vue.js 3 integration and add React usage link 2025-02-26 11:45:04 +11:00
tsconfig.app.json feat: update package.json and tsconfig.app.json to correct type definitions and enable declaration file generation 2025-02-25 10:18:57 +11:00
tsconfig.json initial commit 2025-02-24 09:49:13 +11:00
tsconfig.node.json feat: add localization support to SingleDatePicker and update TypeScript configuration 2025-02-24 12:08:12 +11:00
vite.config.ts feat: add vite-plugin-libcss to package.json and update configuration 2025-02-25 13:05:39 +11:00

Datenel

Datenel = Date + Panel

Datenel is a web UI component for selecting dates. It provides a customizable date picker panel that can be easily integrated into your Vue.js 3 applications.

Want to use Datenel in React? We got you.

A preview of Datenel components for SingleWeekPicker and SingleDayPicker

Shadow border not included. Battery included.

Features

  • Zero runtime dependencies: Slim size with low to 14.26 kB, also flexible to your favorite time processing library.
  • Customizable Colors: Easily change the main, accent, reversed, hover, and border colors of the panel.
  • Localization: Supports localization for different languages.
  • Accessibility: Includes features for screen readers and keyboard navigation.
  • Programmatic Control: Control the selected date programmatically and handle date selection events.
  • JSDoc Support: Full IDE prompt support to help you use Datenel more conveniently.

Installation

To install Datenel, use npm or yarn:

npm install datenel-vue3 # Use npm
yarn add datenel-vue3 # Use yarn

Usage

Here is an example of how to use Datenel in your React application:

<script setup lang="ts">
import {SingleDatePicker} from '../src'
import {ref} from 'vue'

const date = ref(new Date())
</script>

<template>
    <SingleDatePicker v-model="date" />
</template>

For more information and live demo, refer to Datenels documentation.

Supported Components & Props

  • SingleDatePicker
  • SingleWeekPicker
  • MultipleDatePicker
  • DateRangePicker

More features are on the roadmap.

Contribution & Development

npm i # or `yarn`
npm run dev # or `yarn dev`

Then the package will launch a testing React hot-reload server on localhost:1926. The server file is available in the playground folder, feel free to modify the content inside it.

License

MIT