Skip to content

Releases: web-ridge/react-native-paper-dates

Release 0.8.4

05 Jan 21:25
Compare
Choose a tag to compare

0.8.4 (2022-01-05)

Bug Fixes

  • fix layout of helper text (9a2b4e4)

Release 0.8.3

05 Jan 21:12
Compare
Choose a tag to compare

0.8.3 (2022-01-05)

Bug Fixes

  • export german translations (f6a4759)

Release 0.8.2

05 Jan 21:10
Compare
Choose a tag to compare

0.8.2 (2022-01-05)

Bug Fixes

Breaking changes

-- mustBeHigherThan:  `Must be later then`,
-- mustBeLowerThan: `Must be earlier then`,
-- mustBeBetween: `Must be between`,

++ mustBeHigherThan: (date) => `Must be later then ${date}`,
++ mustBeLowerThan: (date) => `Must be earlier then ${date}`,
++ mustBeBetween: (startDate, endDate) =>  `Must be between ${startDate} - ${endDate}`,

Release 0.8.1

23 Dec 21:45
Compare
Choose a tag to compare

0.8.1 (2021-12-23)

What's Changed

New Contributors

Full Changelog: v0.8.0...v0.8.1

Release 0.8.0

04 Dec 11:12
Compare
Choose a tag to compare

0.8.0 (2021-12-04)

Features

  • fix width of date picker input (735f307)

Release 0.7.0

13 Nov 13:59
Compare
Choose a tag to compare

0.7.0 (2021-11-13)

Bug Fixes

  • analog-clock: add condition when selecting am 12 to return 00:00 (7a803a9)
  • tests: fix jest issues (54fb0a0)

Features

  • add a11y labels to buttons (bd379d2)
  • internationalize new copy (3e6cc66)
  • ios Voice control for PL and NL (8663078)
  • make more buttons accessible (69003dd)

What's Changed

New Contributors

Full Changelog: v0.6.0...v0.7.0

Release 0.6.0

05 Nov 10:29
Compare
Choose a tag to compare

0.6.0 (2021-11-05)

Features

  • add more translations and upgrade some deps (a17807b)
  • add more translations and upgrade some deps (db5820a)
  • add more translations and upgrade some deps (60c06e2)
  • Polish and EnglishGB localisation (a47ca32)

Release 0.5.0

20 Oct 23:01
Compare
Choose a tag to compare

0.5.0 (2021-10-20)

Breaking changes

  • locale prop is now required on Date related things (the time picker is still automatic)
   <DatePickerModal
+        locale="en" // this is added
        mode="single"
        visible={open}
        onDismiss={onDismissSingle}
        date={date}
        onConfirm={onConfirmSingle}

e.g.

// e.g in your index.js
import {
  en,
  // nl,
  registerTranslation,
} from 'react-native-paper-dates'
registerTranslation('en', en)
// registerTranslation('nl', nl)

Bug Fixes

  • fix bug with date picker input not filling width ios (1aa9622)
  • timepicker: selecting 12pm returns 24 hrs (96ab103)
  • linter fixes (d18ed51)
  • Modify logic to lighten and darken colors (93daecd)

Features

What's Changed

New Contributors

Full Changelog: v0.4.6...v0.5.0

Release 0.4.6

13 May 13:16
Compare
Choose a tag to compare

0.4.6 (2021-05-13)

Bug Fixes

Release 0.4.5

07 Apr 20:05
Compare
Choose a tag to compare

0.4.5 (2021-04-07)