@dative-gpi/foundation-core-components 1.0.41 → 1.0.42

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.
@@ -91,7 +91,7 @@
91
91
  <script lang="ts">
92
92
  import { computed, defineComponent, type PropType } from "vue";
93
93
 
94
- import { useAppTimeZone } from "@dative-gpi/foundation-shared-services/composables";
94
+ import { useDateFormat } from "@dative-gpi/foundation-shared-services/composables";
95
95
 
96
96
  import { type CustomPropertyInfos, PropertyDataType } from "../../../foundation-core-domain/models";
97
97
 
@@ -139,7 +139,7 @@ export default defineComponent({
139
139
  },
140
140
  emits: ["update:modelValue"],
141
141
  setup(props, { emit }) {
142
- const { epochToLongTimeFormat } = useAppTimeZone();
142
+ const { epochToLongTimeFormat } = useDateFormat();
143
143
 
144
144
  const items = computed((): { id: string, label: string, icon: string | null }[] => {
145
145
  return Object.keys(props.customProperty.allowedValues).map((key: string) => {
@@ -38,7 +38,7 @@
38
38
  import { defineComponent, type PropType, ref, watch } from "vue";
39
39
  import _ from "lodash";
40
40
 
41
- import { useAppTimeZone } from "@dative-gpi/foundation-shared-services/composables";
41
+ import { useDateFormat } from "@dative-gpi/foundation-shared-services/composables";
42
42
 
43
43
  import { type CustomPropertyInfos, type PropertyEntity } from "../../../foundation-core-domain/models";
44
44
  import { useCustomPropertyValues } from "../../../foundation-core-services/composables";
@@ -70,7 +70,7 @@ export default defineComponent({
70
70
  }
71
71
  },
72
72
  setup(props) {
73
- const { epochToLongTimeFormat } = useAppTimeZone();
73
+ const { epochToLongTimeFormat } = useDateFormat();
74
74
  const { fetch, entity: customPropertyValues } = useCustomPropertyValues();
75
75
 
76
76
  const dialog = ref(false);
@@ -30,7 +30,7 @@
30
30
  <script lang="ts">
31
31
  import { computed, defineComponent, type PropType } from "vue";
32
32
 
33
- import { useAppTimeZone } from "@dative-gpi/foundation-shared-services/composables";
33
+ import { useDateFormat } from "@dative-gpi/foundation-shared-services/composables";
34
34
 
35
35
  import { type CustomPropertyInfos, PropertyDataType } from "../../../foundation-core-domain/models";
36
36
  import { getColor } from "./helpers";
@@ -57,7 +57,7 @@ export default defineComponent({
57
57
  }
58
58
  },
59
59
  setup(props) {
60
- const { epochToLongTimeFormat } = useAppTimeZone();
60
+ const { epochToLongTimeFormat } = useDateFormat();
61
61
 
62
62
  const value = computed((): string => {
63
63
  if (props.customProperty.useOnlyAllowedValues) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dative-gpi/foundation-core-components",
3
3
  "sideEffects": false,
4
- "version": "1.0.41",
4
+ "version": "1.0.42",
5
5
  "description": "",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -10,11 +10,11 @@
10
10
  "author": "",
11
11
  "license": "ISC",
12
12
  "dependencies": {
13
- "@dative-gpi/foundation-core-domain": "1.0.41",
14
- "@dative-gpi/foundation-core-services": "1.0.41",
15
- "@dative-gpi/foundation-shared-components": "1.0.41",
16
- "@dative-gpi/foundation-shared-domain": "1.0.41",
17
- "@dative-gpi/foundation-shared-services": "1.0.41"
13
+ "@dative-gpi/foundation-core-domain": "1.0.42",
14
+ "@dative-gpi/foundation-core-services": "1.0.42",
15
+ "@dative-gpi/foundation-shared-components": "1.0.42",
16
+ "@dative-gpi/foundation-shared-domain": "1.0.42",
17
+ "@dative-gpi/foundation-shared-services": "1.0.42"
18
18
  },
19
19
  "peerDependencies": {
20
20
  "@dative-gpi/bones-ui": "^0.0.75",
@@ -26,5 +26,5 @@
26
26
  "sass": "1.71.1",
27
27
  "sass-loader": "13.3.2"
28
28
  },
29
- "gitHead": "508299773d7c9704b08daf80c858931aaa823326"
29
+ "gitHead": "0c0ad1947f4b469307f0e9a5c636b4d5df11c589"
30
30
  }