@harjs/react-ui 1.1.2 → 1.1.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.
@@ -71,4 +71,5 @@ declare class DATE {
71
71
  */
72
72
  private GetLocaleFromLanguage;
73
73
  }
74
- export default DATE;
74
+ declare const _default: DATE;
75
+ export default _default;
@@ -145,4 +145,4 @@ class DATE {
145
145
  return languageToLocaleMap[lang] || lang;
146
146
  };
147
147
  }
148
- export default DATE;
148
+ export default new DATE();
@@ -0,0 +1,5 @@
1
+ import DATE from "./DATE";
2
+ import NUMBER from "./NUMBER";
3
+ import PHONE from "./PHONE";
4
+ import Utils from "./Utils";
5
+ export { DATE, NUMBER, PHONE, Utils };
@@ -0,0 +1,5 @@
1
+ import DATE from "./DATE";
2
+ import NUMBER from "./NUMBER";
3
+ import PHONE from "./PHONE";
4
+ import Utils from "./Utils";
5
+ export { DATE, NUMBER, PHONE, Utils };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harjs/react-ui",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },