spoko-design-system 0.2.65 → 0.2.67

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spoko-design-system",
3
- "version": "0.2.65",
3
+ "version": "0.2.67",
4
4
  "private": false,
5
5
  "main": "./index.ts",
6
6
  "module": "./index.ts",
@@ -52,7 +52,7 @@
52
52
  "@iconify-json/el": "^1.2.0",
53
53
  "@iconify-json/eos-icons": "^1.2.1",
54
54
  "@iconify-json/flowbite": "^1.2.2",
55
- "@iconify-json/fluent": "^1.2.6",
55
+ "@iconify-json/fluent": "^1.2.7",
56
56
  "@iconify-json/fluent-emoji": "1.2.1",
57
57
  "@iconify-json/icon-park-outline": "^1.2.1",
58
58
  "@iconify-json/la": "^1.2.0",
@@ -62,7 +62,7 @@
62
62
  "@iconify-json/ph": "^1.2.1",
63
63
  "@iconify-json/simple-icons": "^1.2.11",
64
64
  "@iconify-json/uil": "^1.2.1",
65
- "@iconify/json": "^2.2.269",
65
+ "@iconify/json": "^2.2.270",
66
66
  "@iconify/vue": "^4.1.2",
67
67
  "@playform/compress": "^0.1.6",
68
68
  "@playform/inline": "github:playform/inline",
@@ -1,5 +1,9 @@
1
1
  import { getData } from "../getData"
2
2
 
3
- export const getApiCategories = await getData('categories')
3
+ export const getApiCategories = getData('categories')
4
+
5
+ // const getApiCategories = async () => {
6
+ // return await getData('categories');
7
+ // }
4
8
 
5
9
  export default getApiCategories;
@@ -52,4 +52,5 @@ export const getData = async <T>(type: string): Promise<T | null> => {
52
52
  }
53
53
  };
54
54
 
55
- export default apiInfo;
55
+
56
+ export default { apiInfo, getData };