@goweekdays/layer-common 0.1.0 → 1.0.0

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
@@ -1,5 +1,11 @@
1
1
  # @goweekdays/layer-common
2
2
 
3
+ ## 1.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - cf225bd: Initial release
8
+
3
9
  ## 0.1.0
4
10
 
5
11
  ### Minor Changes
@@ -9,8 +9,13 @@ export default function useLocal() {
9
9
 
10
10
  const drawer = useState("drawer", () => true);
11
11
 
12
- const { APP_INVENTORY, APP_ASSET, APP_BOOK_KEEPING, APP_ACCOUNTING } =
13
- appConfig;
12
+ const {
13
+ APP_INVENTORY,
14
+ APP_ASSET,
15
+ APP_BOOK_KEEPING,
16
+ APP_ACCOUNTING,
17
+ APP_ZONAL,
18
+ } = appConfig;
14
19
  const { currentOrg } = useOrg();
15
20
 
16
21
  const apps = computed(() => {
@@ -39,6 +44,12 @@ export default function useLocal() {
39
44
  link: APP_ASSET as string,
40
45
  landingPage: `org/${currentOrg.value ?? ""}`,
41
46
  },
47
+ {
48
+ title: "Zonal",
49
+ icon: "mdi-hospital-marker",
50
+ link: APP_ZONAL as string,
51
+ landingPage: `org/${currentOrg.value ?? ""}`,
52
+ },
42
53
  ];
43
54
  });
44
55
 
package/nuxt.config.ts CHANGED
@@ -27,6 +27,7 @@ export default defineNuxtConfig({
27
27
  APP_ASSET: (process.env.APP_ASSET as string) ?? "",
28
28
  APP_ACCOUNTING: (process.env.APP_ACCOUNTING as string) ?? "",
29
29
  APP_BOOK_KEEPING: (process.env.APP_BOOK_KEEPING as string) ?? "",
30
+ APP_ZONAL: (process.env.APP_ZONAL as string) ?? "",
30
31
  },
31
32
  },
32
33
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@goweekdays/layer-common",
3
3
  "license": "MIT",
4
4
  "type": "module",
5
- "version": "0.1.0",
5
+ "version": "1.0.0",
6
6
  "main": "./nuxt.config.ts",
7
7
  "publishConfig": {
8
8
  "access": "public"