@synerise/ds-core 0.36.0 → 0.36.3

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
@@ -3,6 +3,39 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.36.3](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@0.36.2...@synerise/ds-core@0.36.3) (2022-09-07)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **core:** change export type to _export type_ export ([ef46af6](https://github.com/synerise/synerise-design/commit/ef46af63cf116fd0b38cba06374b0b0bb2ab0a33))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.36.2](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@0.36.1...@synerise/ds-core@0.36.2) (2022-09-07)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **core:** register pt locale, currency formatting ([2b3d1d5](https://github.com/synerise/synerise-design/commit/2b3d1d5e8d22b4158138a2a196c2d828e85594ce))
23
+
24
+
25
+
26
+
27
+
28
+ ## [0.36.1](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@0.36.0...@synerise/ds-core@0.36.1) (2022-09-06)
29
+
30
+
31
+ ### Bug Fixes
32
+
33
+ * **core:** pass overrided locale only if provided ([2217be4](https://github.com/synerise/synerise-design/commit/2217be4c88b7aa61eba917b7303ba161542aea79))
34
+
35
+
36
+
37
+
38
+
6
39
  # [0.36.0](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@0.35.5...@synerise/ds-core@0.36.0) (2022-09-05)
7
40
 
8
41
 
@@ -2,6 +2,8 @@ declare const _default: {
2
2
  pl: Promise<typeof import("antd/lib/locale/pl_PL")>;
3
3
  en: Promise<typeof import("antd/lib/locale/en_US")>;
4
4
  es: Promise<typeof import("antd/lib/locale/es_ES")>;
5
+ pt: Promise<typeof import("antd/lib/locale/pt_PT")>;
6
+ fr: Promise<typeof import("antd/lib/locale/fr_FR")>;
5
7
  default: Promise<typeof import("antd/lib/locale/en_US")>;
6
8
  };
7
9
  export default _default;
@@ -2,5 +2,7 @@ export default {
2
2
  pl: import("antd/lib/locale/pl_PL"),
3
3
  en: import("antd/lib/locale/en_US"),
4
4
  es: import("antd/lib/locale/es_ES"),
5
+ pt: import("antd/lib/locale/pt_PT"),
6
+ fr: import("antd/lib/locale/fr_FR"),
5
7
  "default": import("antd/lib/locale/en_US")
6
8
  };
@@ -1 +1,2 @@
1
1
  export { default } from './DSProvider';
2
+ export type { DSProviderProps } from './DSProvider';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-core",
3
- "version": "0.36.0",
3
+ "version": "0.36.3",
4
4
  "description": "Core Components for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -42,5 +42,5 @@
42
42
  "less-vars-loader": "1.1.0",
43
43
  "webpack": "4.42.0"
44
44
  },
45
- "gitHead": "428157b5217485a8d335e54a54e95bec93a768a7"
45
+ "gitHead": "93bd4f1ab7f265f408a77218692a7987190ebce2"
46
46
  }