@colisweb/rescript-toolkit 4.26.3 → 4.26.4
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.
- package/.secure_files/{ci-functions-v17.0.5 → ci-functions-v17.8.6} +348 -78
- package/.secure_files/{ci-functions-v17.0.6 → ci-functions-v17.9.0} +348 -78
- package/.secure_files/{ci-functions-v17.0.7 → ci-functions-v17.9.1} +348 -78
- package/.secure_files/{ci-functions-v17.0.8 → ci-functions-v17.9.2} +348 -78
- package/package.json +1 -1
- package/src/intl/Toolkit__Intl.res +7 -5
- package/src/intl/Toolkit__Intl.resi +1 -2
|
@@ -10,6 +10,7 @@ and translation = {
|
|
|
10
10
|
|
|
11
11
|
let availableLanguagesToString: availableLanguages => string
|
|
12
12
|
let availableLanguagesFromString: string => availableLanguages
|
|
13
|
+
let getDateFnsLocale: availableLanguages => DateFns.dateFnsLocale
|
|
13
14
|
|
|
14
15
|
module type IntlConfig = {
|
|
15
16
|
let messages: messages
|
|
@@ -28,8 +29,6 @@ module Make: (Config: IntlConfig) =>
|
|
|
28
29
|
let useCurrentLocale: unit => availableLanguages
|
|
29
30
|
let setCurrentLocale: availableLanguages => unit
|
|
30
31
|
|
|
31
|
-
let getDateFnsLocale: availableLanguages => DateFns.dateFnsLocale
|
|
32
|
-
|
|
33
32
|
module Provider: {
|
|
34
33
|
@react.component
|
|
35
34
|
let make: (~children: React.element) => React.element
|