@fy-/fws-vue 0.0.1 → 0.0.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.
Files changed (2) hide show
  1. package/index.ts +4 -2
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -16,6 +16,7 @@ import {
16
16
  formatDatetime,
17
17
  formatTimeago,
18
18
  } from "./templating";
19
+ import { useRest } from "./rest";
19
20
  export * from "./stores/serverRouter";
20
21
 
21
22
  // Components/UI/Transitions
@@ -30,8 +31,8 @@ import DefaultInput from "./components/ui/DefaultInput.vue";
30
31
  import DefaultModal from "./components/ui/DefaultModal.vue";
31
32
  import DefaultConfirm from "./components/ui/DefaultConfirm.vue";
32
33
  import DefaultPaging from "./components/ui/DefaultPaging.vue";
33
- import DefaultLoading from "./components/ui/DefaultLoading.vue";
34
34
  import DefaultBreadcrumb from "./components/ui/DefaultBreadcrumb.vue";
35
+ import DefaultLoader from "./components/ui/DefaultLoader.vue";
35
36
 
36
37
  // Components/FWS
37
38
  import UserFlow from "./components/fws/UserFlow.vue";
@@ -95,6 +96,7 @@ export {
95
96
  useSeo,
96
97
  useUserStore,
97
98
  useUserCheck,
99
+ useRest,
98
100
 
99
101
  // Components
100
102
  // UI/Transitions
@@ -109,8 +111,8 @@ export {
109
111
  DefaultModal,
110
112
  DefaultConfirm,
111
113
  DefaultPaging,
112
- DefaultLoading,
113
114
  DefaultBreadcrumb,
115
+ DefaultLoader,
114
116
 
115
117
  // FWS
116
118
  UserFlow,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {