spoko-design-system 0.2.50 → 0.2.52

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/index.ts CHANGED
@@ -53,6 +53,7 @@ export { default as getProductChecklist } from './src/utils/product/getProductCh
53
53
  export { default as getShorterDescription } from './src/utils/seo/getShorterDescription';
54
54
 
55
55
  // Utils: Text
56
+ export { default as getData } from './src/utils/getData';
56
57
  export { getTranslation, text2paragraphs, countWords, firstSentence, removeSemicolon } from './src/utils/text';
57
58
  export { default as formatDate } from './src/utils/text/formatDate';
58
59
  export { default as formatLocaleNumber } from './src/utils/text/formatLocaleNumber';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spoko-design-system",
3
- "version": "0.2.50",
3
+ "version": "0.2.52",
4
4
  "private": false,
5
5
  "main": "./index.ts",
6
6
  "module": "./index.ts",
@@ -50,3 +50,6 @@ export const getData = async (type: string): Promise<any | null> => {
50
50
  return null;
51
51
  }
52
52
  };
53
+
54
+
55
+ export default getData;