0.0.8 • Published 6 years ago

react-widgets-dates v0.0.8

Weekly downloads
13
License
MIT
Repository
github
Last release
6 years ago

react-widgets-dates 0.0.5

A date-fns localizer for react-widgets

index.js

dateFnsLocalizer(formats)

Configures localization of react-widgets by calling configure.setDateLocalizer

Parameters
NameTypeDescription
formatsObjectConfguration options. 
formats.defaultstring Object functionthe default date display format, generally a "long" format showing both date and time 
formats.datestring Object functionA date only format 
formats.timestring Object functionA time only format 
formats.headerstring Object functionThe heading of the Calendar month view, contextualizes the current month, e.g. "Jan 2014" 
formats.footerstring Object functionThe Calendar footer format, for displaying Today's date 
formats.dayOfMonthstring Object functionThe day of the month 
formats.monthstring Object functionMonth name, used in the Year view of the Calendar 
formats.yearstring Object functionyear format, used in the Decade view of the Calendar 
formats.decadestring Object functiona decade format, used in the Century view of the Calendar, eg. "2010 - 2019" 
formats.centurystring Object functionA century format, used the in the Calendar heading 
localesObjectSupported date-fns locales to include in the bundle 
Examples
import dateFnsLocalizer, { defaultFormats } from 'react-widgets-dates'
dateFnsLocalizer()
// => Works out of the box with default formats (defaultFormats) and the `en-US` locale
const newFormats = Object.assign(defaultFormats, { default: 'mmm YY' })
dateFnsLocalizer({ formats: newFormats })
// => Uses new configuration

import locales from 'date-fns/locale'
dateFnsLocalizer({ formats: newFormats, locales })
// => Includes all available locales

import enGB from 'date-fns/locale/en-GB'
import de from 'date-fns/locale/de'
dateFnsLocalizer({ locales: { 'en-GB': enGB, 'de': de } })
// => Include only the locales you need to limit the bundled size
Returns
  • Void

Documentation generated with doxdox.

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago