npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@capacitor-community/date-picker

v5.0.0

Published

Native DateTime Picker Plugin for Capacitor Apps

Downloads

1,840

Readme

Maintainers

| Maintainer | GitHub | Social | | -------------- | ------------------------------------------------------- | ----------------------------------------------- | | Stewan Silva | stewwan | @StewanSilva | | Daniel Pereira | danielprrazevedo | @DandanPrr |

Notice 🚀

We're starting fresh under an official org. If you were using the previous npm package capacitor-datepick, please update your package.json to @capacitor-community/date-picker. Check out changelog for more info.

Installation

Using npm:

npm install @capacitor-community/date-picker

Using yarn:

yarn add @capacitor-community/date-picker

Sync native files:

npx cap sync

Upgrade guide

from 2.* to 3.* we have some new settings. You can see in definitions file, we hava the sections ios and android. You must change your format configs to ios and android configs.

Very important!!

To maintain the consistency of the community plugins, we changed the name of the variable the plugin is in. As we are experiencing a change across the capacitor plugins import ecosystem, we think this is a good opportunity to do that

Before, to use the plugin, you needed to import like this

import '@capacitor-community/date-picker';
import { Plugins } from '@capacitor/core';
const { DatePickerPlugin } = Plugins;

Now, we not have the Plugins variable and we not register the DatePickerPlugin in Capacitor.Plugins To use this plugin.

Now, to use this plugin, you need to do this

import { DatePicker } from '@capacitor-community/date-picker';

You need to replace all of your code

You must also follow the guide for android.

Roadmap

ios

  • [x] present
  • [x] config
    • [x] style
    • [x] format
    • [x] locale
    • [x] date
    • [x] mode
    • [x] theme
    • [x] timezone
    • [x] min
    • [x] max
    • [x] doneText
    • [x] cancelText
    • [x] is24h
    • [x] titleFontColor
    • [x] titleBgColor
    • [x] bgColor
    • [x] fontColor
    • [x] buttonBgColor
    • [x] buttonFontColor
    • [x] mergedDateAndTime

android

  • [x] present
  • [x] config
    • [x] format
    • [x] locale
    • [x] date
    • [x] mode
    • [x] theme
    • [x] timezone
    • [x] min
    • [x] max
    • [x] doneText
    • [x] cancelText
    • [x] is24h

web

  • [ ] present
  • [ ] config
    • [ ] format
    • [ ] locale
    • [ ] mode
    • [ ] theme
    • [ ] background
    • [ ] min
    • [ ] max
    • [ ] doneText
    • [ ] cancelText
    • [ ] timezone
    • [ ] title

API

  • present(DatePickerOptions): Promise<{ value:string }>

Config for iOS (DatePickerOptions)

These options can be used through the present method and/or within capacitor.config.json

| name | type | default | | --------------- | ----------------- | ----------------------------------------- | | format | string | "yyyy-MM-dd'T'HH:mm:ss.sssZ" | | style | string | if iOS 14 "inline" else only "wheels" | | locale | string | current device | | date | string | current date | | mode | DatePickerMode | "dateAndTime" | | theme | DatePickerTheme | current device | | timezone | string | current device | | min | string | null | | max | string | null | | doneText | string | "OK" | | cancelText | string | "Cancel" | | is24h | boolean | false | | titleFontColor | string | null | | titleBgColor | string | null | | bgColor | string | null | | fontColor | string | null | | buttonBgColor | string | null | | buttonFontColor | string | null |

Config for Android (DatePickerOptions)

These options can be used through the present method and/or within capacitor.config.json

| name | type | default | | ---------- | ----------------- | -------------------------------- | | format | string | "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'" | | locale | string | current device | | date | string | current date | | mode | DatePickerMode | "dateAndTime" | | theme | DatePickerTheme | "light" | | timezone | string | current device | | min | string | null | | max | string | null | | doneText | string | "OK" | | cancelText | string | "Cancel" | | is24h | boolean | false |

For more information check the definitions file

Date Format

For format, we defined the old config deprecated because we have a inconsistence between Android and iOS platforms

now you need define your forma config in android.format and ios.format

iOS

For format in iOS, you need to follow this documentation

Android

For format in Android, you need to follow this documentation

Android Theme

You can define your personalized themes in android via resources styles check example app

How you see in example, just define your picker theme in global assets your app and send via android.theme prop in your capacitor.config file or your options.android.theme in present call.

Demo

Usage

import { DatePicker } from '@capacitor-community/date-picker';
import type { DatePickerTheme } from '@capacitor-community/date-picker/src';
const selectedTheme: DatePickerTheme = 'light';

DatePicker.present({
  mode: 'date',
  locale: 'pt_BR',
  date: '13/07/2019',
  theme: selectedTheme,
  ios: {
    format: 'dd/MM/yyyy',
  },
  android: {
    format: 'dd/MM/yyyy',
  },
}).then(date => alert(date.value));

Capacitor Config

{
  //...
  "plugins": {
    "DatePickerPlugin": {
      "mode": "date",
      "locale": "pt_BR",
      "current": "13/07/2019",
      "format": "dd/MM/yyyy",
      "android": {
        "theme": "MyCustomeTheme"
      },
      "ios": {
        "style": "wheels"
      }
    }
  }
}

iOS setup

  • ionic start my-cap-app --capacitor
  • cd my-cap-app
  • npm install --save @capacitor-community/date-picker
  • mkdir www && touch www/index.html
  • sudo gem install cocoapods (only once)
  • npx cap add ios
  • npx cap sync ios (every time you run npm install)
  • npx cap open ios

Tip: every time you change a native code you may need to clean up the cache (Product > Clean build folder) and then run the app again.

Android setup

  • ionic start my-cap-app --capacitor
  • cd my-cap-app
  • npm install --save @capacitor-community/date-picker
  • mkdir www && touch www/index.html
  • npx cap add android
  • npx cap sync android (every time you run npm install)
  • npx cap open android

Now you should be set to go. Try to run your client using ionic cap run android --livereload --address=0.0.0.0.

Tip: every time you change a native code you may need to clean up the cache (Build > Clean Project | Build > Rebuild Project) and then run the app again.

Updating

For existing projects you can upgrade all capacitor related packages (including this plugin) with this single command

npx npm-upgrade '*capacitor*' && npm install

Example

https://github.com/capacitor-community/date-picker/tree/master/example

License

MIT

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!