@brightspace-ui/intl 3.23.0 → 3.23.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/dateTime.js +12 -0
  2. package/package.json +1 -1
package/lib/dateTime.js CHANGED
@@ -800,6 +800,18 @@ export function getDateTimeDescriptor() {
800
800
  ['D', 'L', 'M', 'M', 'J', 'V', 'S']
801
801
  ];
802
802
  break;
803
+ case 'haw':
804
+ dateFormats = ['dddd, d MMMM yyyy', 'd MMM yyyy', 'd/M/yyyy', 'yyyy MMMM', 'd MMMM', 'd MMM'];
805
+ months = [
806
+ ['Ianuali', 'Pepeluali', 'Malaki', 'ʻApelila', 'Mei', 'Iune', 'Iulai', 'ʻAukake', 'Kepakemapa', 'ʻOkakopa', 'Nowemapa', 'Kekemapa'],
807
+ ['Ian.', 'Pep.', 'Mal.', 'ʻAp.', 'Mei', 'Iun.', 'Iul.', 'ʻAu.', 'Kep.', 'ʻOk.', 'Now.', 'Kek.']
808
+ ];
809
+ days = [
810
+ ['Lāpule', 'Poʻakahi', 'Poʻalua', 'Poʻakolu', 'Poʻahā', 'Poʻalima', 'Poʻaono'],
811
+ ['LP', 'P1', 'P2', 'P3', 'P4', 'P5', 'P6'],
812
+ ['S', 'M', 'T', 'W', 'T', 'F', 'S']
813
+ ];
814
+ break;
803
815
  case 'hi':
804
816
  dateFormats = ['dddd, d MMMM yyyy', 'd MMMM yyyy', 'dd-MM-yyyy', 'MMMM yyyy', 'd MMMM', 'd MMM'];
805
817
  dayPeriods = ['पूर्वाह्न', 'अपराह्न'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/intl",
3
- "version": "3.23.0",
3
+ "version": "3.23.1",
4
4
  "description": "Internationalization APIs for number, date, time and file size formatting and parsing in D2L Brightspace.",
5
5
  "main": "lib/number.js",
6
6
  "type": "module",