@tracktor/shared-module 1.0.0-beta.4 → 1.0.0-beta.5

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/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
1
  # [Versions](https://github.com/Tracktor/shared-module/releases)
2
2
 
3
- ## v1.0.0-beta.4
4
- - **[docs]** : readme update
3
+ ## v1.0.0-beta.5
4
+ - **[docs]** : DaysJSConfig - Make props `language` optional
package/README.md CHANGED
@@ -51,7 +51,7 @@ export default App;
51
51
  | I18nConfig | React Component | Initialize i18n with custom config options | i18next & react-i18next & i18next-browser-languagedetector |
52
52
  | SentryConfig | React Component | Initialize Sentry | @sentry/react & react-router-dom |
53
53
  | MapBoxConfig | React Component | Initialize MapBox | mapbox-gl |
54
- | DaysJSConfig | React Component | Initialize DayJS | mapbox-gl |
54
+ | DaysJSConfig | React Component | Initialize DayJS | dayjs |
55
55
 
56
56
  ## Hooks
57
57
  | Module | Description | Dependencies |
@@ -1,5 +1,5 @@
1
1
  interface I18nConfigProps {
2
- language: string;
2
+ language?: string;
3
3
  }
4
4
  /**
5
5
  * Initialize dayjs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tracktor/shared-module",
3
- "version": "1.0.0-beta.4",
3
+ "version": "1.0.0-beta.5",
4
4
  "type": "module",
5
5
  "license": "UNLICENSED",
6
6
  "types": "./dist/main.d.ts",