project files added
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
import buildFormatLongFn from '../../../_lib/buildFormatLongFn/index.js';
|
||||
var formatLong = buildFormatLongFn({
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd, D MMMM YYYY HH:mm'
|
||||
});
|
||||
export default formatLong;
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
// This file is generated automatically by `scripts/build/typings.js`. Please, don't change it.
|
||||
|
||||
import { nlBE } from 'date-fns/locale'
|
||||
export default nlBE
|
||||
+32
@@ -0,0 +1,32 @@
|
||||
// Same as nl
|
||||
// import formatDistance from '../nl/_lib/formatDistance/index.js'
|
||||
// import formatRelative from '../nl/_lib/formatRelative/index.js'
|
||||
// import localize from '../nl/_lib/localize/index.js'
|
||||
// import match from '../nl/_lib/match/index.js'
|
||||
// Unique for nl-BE
|
||||
// import formatLong from './_lib/formatLong/index.js'
|
||||
|
||||
/**
|
||||
* @type {Locale}
|
||||
* @category Locales
|
||||
* @summary Dutch locale.
|
||||
* @language Dutch
|
||||
* @iso-639-2 nld
|
||||
* @author Jorik Tangelder [@jtangelder]{@link https://github.com/jtangelder}
|
||||
* @author Ruben Stolk [@rubenstolk]{@link https://github.com/rubenstolk}
|
||||
* @author Lode Vanhove [@bitcrumb]{@link https://github.com/bitcrumb}
|
||||
*/
|
||||
// var locale = {
|
||||
// code: 'nl-BE',
|
||||
// formatDistance: formatDistance,
|
||||
// formatLong: formatLong,
|
||||
// formatRelative: formatRelative,
|
||||
// localize: localize,
|
||||
// match: match,
|
||||
// options: {
|
||||
// weekStartsOn: 1 /* Monday */,
|
||||
// firstWeekContainsDate: 4
|
||||
// }
|
||||
// }
|
||||
// export default locale
|
||||
throw new Error('nl-BE locale is currently unavailable. Please check the progress of converting this locale to v2.0.0 in this issue on Github: TBA');
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
// @flow
|
||||
// This file is generated automatically by `scripts/build/typings.js`. Please, don't change it.
|
||||
|
||||
export type Locale = {
|
||||
formatDistance: (...args: Array<any>) => any,
|
||||
formatRelative: (...args: Array<any>) => any,
|
||||
localize: {
|
||||
ordinalNumber: (...args: Array<any>) => any,
|
||||
era: (...args: Array<any>) => any,
|
||||
quarter: (...args: Array<any>) => any,
|
||||
month: (...args: Array<any>) => any,
|
||||
day: (...args: Array<any>) => any,
|
||||
dayPeriod: (...args: Array<any>) => any
|
||||
},
|
||||
formatLong: Object,
|
||||
date: (...args: Array<any>) => any,
|
||||
time: (...args: Array<any>) => any,
|
||||
dateTime: (...args: Array<any>) => any,
|
||||
match: {
|
||||
ordinalNumber: (...args: Array<any>) => any,
|
||||
era: (...args: Array<any>) => any,
|
||||
quarter: (...args: Array<any>) => any,
|
||||
month: (...args: Array<any>) => any,
|
||||
day: (...args: Array<any>) => any,
|
||||
dayPeriod: (...args: Array<any>) => any
|
||||
},
|
||||
options?: {
|
||||
weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6,
|
||||
firstWeekContainsDate?: 1 | 2 | 3 | 4 | 5 | 6 | 7
|
||||
}
|
||||
}
|
||||
|
||||
declare module.exports: Locale
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"sideEffects": false,
|
||||
"typings": "../../../typings.d.ts"
|
||||
}
|
||||
Reference in New Issue
Block a user