@icvdeveloper/common-module 0.0.36 → 0.0.37

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/dist/module.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "v3plus-common-module",
3
3
  "configKey": "v3plusCommonModule",
4
- "version": "0.0.36"
4
+ "version": "0.0.37"
5
5
  }
@@ -1,20 +1,20 @@
1
1
  footer {
2
- @apply bg-color-5;
3
- nav {
4
- @apply bg-color-4;
5
- ul {
6
- @apply list-none p-0 inline-flex justify-start content-center;
7
- }
2
+ // @apply bg-color-5;
3
+ // nav {
4
+ // @apply bg-color-4;
5
+ // ul {
6
+ // @apply list-none p-0 inline-flex justify-start content-center;
7
+ // }
8
8
 
9
- ul li {
10
- @apply flex-auto flex-grow my-3 mx-6 self-center;
11
- a {
12
- @apply no-underline text-white uppercase tracking-wide nav-color-3;
9
+ // ul li {
10
+ // @apply flex-auto flex-grow my-3 mx-6 self-center;
11
+ // a {
12
+ // @apply no-underline text-white uppercase tracking-wide nav-color-3;
13
13
 
14
- &:hover {
15
- @apply nav-color-4;
16
- }
17
- }
18
- }
19
- }
14
+ // &:hover {
15
+ // @apply nav-color-4;
16
+ // }
17
+ // }
18
+ // }
19
+ // }
20
20
  }
@@ -1,41 +1,40 @@
1
1
  header {
2
- @apply bg-color-2;
2
+ // @apply bg-color-2;
3
3
 
4
4
  nav {
5
- @apply bg-color-3;
6
- ul {
7
- @apply inline-flex flex-1 justify-start content-around text-center;
8
- }
5
+ // @apply bg-color-3;
6
+ // ul {
7
+ // @apply inline-flex flex-1 justify-start content-around text-center;
8
+ // }
9
9
 
10
- ul li {
11
- @apply flex-auto flex-grow my-3 self-center text-center;
12
- a {
13
- @apply primary-link nav-color-1;
14
-
15
- &:hover {
16
- @apply nav-color-2;
17
- }
18
-
19
- &.active {
20
- @apply nav-color-2;
21
- }
10
+ // ul li {
11
+ // @apply flex-auto flex-grow my-3 self-center text-center;
12
+ // a {
13
+ // @apply primary-link nav-color-1;
22
14
 
23
- }
24
- }
15
+ // &:hover {
16
+ // @apply nav-color-2;
17
+ // }
18
+
19
+ // &.active {
20
+ // @apply nav-color-2;
21
+ // }
22
+
23
+ // }
24
+ // }
25
25
  }
26
26
  /* mobile nav */
27
27
  .mobile-nav {
28
- @apply bg-color-3;
29
-
30
- button {
31
- @apply border rounded nav-color-1;
32
- border-color: $nav-color-1;
28
+ // @apply bg-color-3;
33
29
 
34
- &:hover {
35
- @apply nav-color-2;
36
- border-color: $nav-color-2;
37
- }
38
- }
30
+ // button {
31
+ // @apply border rounded nav-color-1;
32
+ // border-color: $nav-color-1;
39
33
 
34
+ // &:hover {
35
+ // @apply nav-color-2;
36
+ // border-color: $nav-color-2;
37
+ // }
38
+ // }
40
39
  }
41
40
  }
@@ -214,8 +214,10 @@ onMounted(() => {
214
214
  <!-- Minutes -->
215
215
  <div
216
216
  v-if="showMinutes"
217
- class="item-container"
218
- :class="{ dropshade: clockStyle == 'dials' }"
217
+ :class="[
218
+ { dropshade: clockStyle == 'dials' },
219
+ classBinding(classObject, 'itemContainer', 'item-container'),
220
+ ]"
219
221
  >
220
222
  <div
221
223
  :class="[
@@ -255,8 +257,10 @@ onMounted(() => {
255
257
  <!-- Seconds -->
256
258
  <div
257
259
  v-if="showSeconds"
258
- class="item-container last"
259
- :class="{ dropshade: clockStyle == 'dials' }"
260
+ :class="[
261
+ { dropshade: clockStyle == 'dials' },
262
+ classBinding(classObject, 'itemContainer', 'item-container last'),
263
+ ]"
260
264
  >
261
265
  <div
262
266
  :class="[
@@ -282,7 +286,7 @@ onMounted(() => {
282
286
  >
283
287
  <div
284
288
  v-if="clockStyle == 'windows'"
285
- :class="[fontClass, classBinding('unit', '')]"
289
+ :class="[fontClass, classBinding(classObject, 'unit', '')]"
286
290
  >
287
291
  {{ seconds }}
288
292
  </div>
@@ -1,6 +1,7 @@
1
1
  import { storeToRefs } from "pinia";
2
- import { useRouter } from "vue-router";
2
+ import { useRouter, useRoute } from "vue-router";
3
3
  import { sortBy } from "lodash-es";
4
+ import { useAuthStore, useTemplateConfigsStore } from "../store/index.mjs";
4
5
  export const useEvents = () => {
5
6
  const route = useRoute();
6
7
  const router = useRouter();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icvdeveloper/common-module",
3
- "version": "0.0.36",
3
+ "version": "0.0.37",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "exports": {