@dative-gpi/foundation-core-components 0.0.174 → 0.0.176
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/components/autocompletes/FSAutocompleteChart.vue +4 -2
- package/components/autocompletes/FSAutocompleteDashboard.vue +3 -2
- package/components/autocompletes/FSAutocompleteDashboardOrganisation.vue +3 -2
- package/components/autocompletes/FSAutocompleteDataCategory.vue +3 -2
- package/components/autocompletes/FSAutocompleteDataDefinition.vue +3 -2
- package/components/autocompletes/FSAutocompleteGroup.vue +3 -2
- package/components/autocompletes/FSAutocompleteLocation.vue +3 -2
- package/components/autocompletes/FSAutocompleteManufacturer.vue +3 -2
- package/components/autocompletes/FSAutocompleteModel.vue +3 -2
- package/components/autocompletes/FSAutocompleteOrganisationType.vue +3 -2
- package/components/autocompletes/FSAutocompleteRole.vue +4 -2
- package/components/autocompletes/FSAutocompleteUserOrganisation.vue +3 -2
- package/components/customProperties/FSMetaField.vue +4 -2
- package/components/customProperties/FSMetaFormContent.vue +3 -2
- package/components/customProperties/FSMetaGrid.vue +4 -3
- package/components/customProperties/FSMetaHistory.vue +3 -2
- package/components/customProperties/FSMetaValue.vue +4 -2
- package/components/customProperties/helpers.ts +2 -1
- package/components/lists/FSDataTable.vue +3 -2
- package/components/selects/FSSelectSelectedEntities.vue +2 -1
- package/components/tiles/FSFolderTile.vue +1 -1
- package/components/tiles/FSUserOrganisationTile.vue +21 -21
- package/components/treeviews/FSTreeViewFolder.vue +3 -2
- package/components/treeviews/FSTreeViewGroup.vue +3 -2
- package/package.json +7 -7
- package/utils/charts.ts +2 -1
- package/utils/dashboards.ts +2 -1
- package/utils/roles.ts +2 -1
|
@@ -81,9 +81,11 @@
|
|
|
81
81
|
</template>
|
|
82
82
|
|
|
83
83
|
<script lang="ts">
|
|
84
|
-
import {
|
|
84
|
+
import type { PropType } from "vue";
|
|
85
|
+
import { computed, defineComponent } from "vue";
|
|
85
86
|
|
|
86
|
-
import { ChartOrganisationFilters, ChartOrganisationTypeFilters
|
|
87
|
+
import type { ChartOrganisationFilters, ChartOrganisationTypeFilters} from "@dative-gpi/foundation-core-domain/models";
|
|
88
|
+
import { ChartOrigin } from "@dative-gpi/foundation-core-domain/models";
|
|
87
89
|
import { useChartOrganisations, useChartOrganisationTypes } from "@dative-gpi/foundation-core-services/composables";
|
|
88
90
|
import { useAutocomplete } from "@dative-gpi/foundation-shared-components/composables";
|
|
89
91
|
|
|
@@ -81,9 +81,10 @@
|
|
|
81
81
|
</template>
|
|
82
82
|
|
|
83
83
|
<script lang="ts">
|
|
84
|
-
import {
|
|
84
|
+
import type { PropType } from "vue";
|
|
85
|
+
import { computed, defineComponent } from "vue";
|
|
85
86
|
|
|
86
|
-
import { DashboardOrganisationFilters, DashboardOrganisationTypeFilters, DashboardShallowFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
87
|
+
import type { DashboardOrganisationFilters, DashboardOrganisationTypeFilters, DashboardShallowFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
87
88
|
import { useDashboardOrganisations, useDashboardOrganisationTypes, useDashboardShallows } from "@dative-gpi/foundation-core-services/composables";
|
|
88
89
|
import { useAutocomplete } from "@dative-gpi/foundation-shared-components/composables";
|
|
89
90
|
import { DashboardType } from "@dative-gpi/foundation-shared-domain/models";
|
|
@@ -48,9 +48,10 @@
|
|
|
48
48
|
</template>
|
|
49
49
|
|
|
50
50
|
<script lang="ts">
|
|
51
|
-
import {
|
|
51
|
+
import type { PropType } from "vue";
|
|
52
|
+
import { computed, defineComponent } from "vue";
|
|
52
53
|
|
|
53
|
-
import { DashboardOrganisationFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
54
|
+
import type { DashboardOrganisationFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
54
55
|
import { useDashboardOrganisations } from "@dative-gpi/foundation-core-services/composables";
|
|
55
56
|
import { useAutocomplete } from "@dative-gpi/foundation-shared-components/composables";
|
|
56
57
|
|
|
@@ -57,11 +57,12 @@
|
|
|
57
57
|
</template>
|
|
58
58
|
|
|
59
59
|
<script lang="ts">
|
|
60
|
-
import {
|
|
60
|
+
import type { PropType } from "vue";
|
|
61
|
+
import { computed, defineComponent } from "vue";
|
|
61
62
|
|
|
62
63
|
import { useAutocomplete } from "@dative-gpi/foundation-shared-components/composables";
|
|
63
64
|
import { useDataCategories } from "@dative-gpi/foundation-core-services/composables";
|
|
64
|
-
import { DataCategoryFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
65
|
+
import type { DataCategoryFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
65
66
|
|
|
66
67
|
import FSAutocompleteField from "@dative-gpi/foundation-shared-components/components/fields/FSAutocompleteField.vue";
|
|
67
68
|
import FSButton from "@dative-gpi/foundation-shared-components/components/FSButton.vue";
|
|
@@ -67,11 +67,12 @@
|
|
|
67
67
|
</template>
|
|
68
68
|
|
|
69
69
|
<script lang="ts">
|
|
70
|
-
import {
|
|
70
|
+
import type { PropType } from "vue";
|
|
71
|
+
import { computed, defineComponent } from "vue";
|
|
71
72
|
|
|
72
73
|
import { useAutocomplete } from "@dative-gpi/foundation-shared-components/composables";
|
|
73
74
|
import { useDataDefinitions } from "@dative-gpi/foundation-core-services/composables";
|
|
74
|
-
import { DataDefinitionFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
75
|
+
import type { DataDefinitionFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
75
76
|
|
|
76
77
|
import FSAutocompleteField from "@dative-gpi/foundation-shared-components/components/fields/FSAutocompleteField.vue";
|
|
77
78
|
import FSButton from "@dative-gpi/foundation-shared-components/components/FSButton.vue";
|
|
@@ -49,11 +49,12 @@
|
|
|
49
49
|
</template>
|
|
50
50
|
|
|
51
51
|
<script lang="ts">
|
|
52
|
-
import {
|
|
52
|
+
import type { PropType } from "vue";
|
|
53
|
+
import { computed, defineComponent } from "vue";
|
|
53
54
|
|
|
54
55
|
import { useAutocomplete } from "@dative-gpi/foundation-shared-components/composables";
|
|
55
56
|
import { useGroups } from "@dative-gpi/foundation-core-services/composables";
|
|
56
|
-
import { GroupFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
57
|
+
import type { GroupFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
57
58
|
|
|
58
59
|
import FSAutocompleteField from "@dative-gpi/foundation-shared-components/components/fields/FSAutocompleteField.vue";
|
|
59
60
|
import FSIcon from "@dative-gpi/foundation-shared-components/components/FSIcon.vue";
|
|
@@ -49,11 +49,12 @@
|
|
|
49
49
|
</template>
|
|
50
50
|
|
|
51
51
|
<script lang="ts">
|
|
52
|
-
import {
|
|
52
|
+
import type { PropType } from "vue";
|
|
53
|
+
import { computed, defineComponent } from "vue";
|
|
53
54
|
|
|
54
55
|
import { useAutocomplete } from "@dative-gpi/foundation-shared-components/composables";
|
|
55
56
|
import { useLocations } from "@dative-gpi/foundation-core-services/composables";
|
|
56
|
-
import { LocationFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
57
|
+
import type { LocationFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
57
58
|
|
|
58
59
|
import FSAutocompleteField from "@dative-gpi/foundation-shared-components/components/fields/FSAutocompleteField.vue";
|
|
59
60
|
import FSIcon from "@dative-gpi/foundation-shared-components/components/FSIcon.vue";
|
|
@@ -10,11 +10,12 @@
|
|
|
10
10
|
</template>
|
|
11
11
|
|
|
12
12
|
<script lang="ts">
|
|
13
|
-
import {
|
|
13
|
+
import type { PropType } from "vue";
|
|
14
|
+
import { computed, defineComponent } from "vue";
|
|
14
15
|
|
|
15
16
|
import { useAutocomplete } from "@dative-gpi/foundation-shared-components/composables";
|
|
16
17
|
import { useManufacturers } from "@dative-gpi/foundation-core-services/composables";
|
|
17
|
-
import { ManufacturerFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
18
|
+
import type { ManufacturerFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
18
19
|
|
|
19
20
|
import FSAutocompleteField from "@dative-gpi/foundation-shared-components/components/fields/FSAutocompleteField.vue";
|
|
20
21
|
|
|
@@ -10,11 +10,12 @@
|
|
|
10
10
|
</template>
|
|
11
11
|
|
|
12
12
|
<script lang="ts">
|
|
13
|
-
import {
|
|
13
|
+
import type { PropType } from "vue";
|
|
14
|
+
import { computed, defineComponent } from "vue";
|
|
14
15
|
|
|
15
16
|
import { useAutocomplete } from "@dative-gpi/foundation-shared-components/composables";
|
|
16
17
|
import { useModels } from "@dative-gpi/foundation-core-services/composables";
|
|
17
|
-
import { ModelFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
18
|
+
import type { ModelFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
18
19
|
|
|
19
20
|
import FSAutocompleteField from "@dative-gpi/foundation-shared-components/components/fields/FSAutocompleteField.vue";
|
|
20
21
|
|
|
@@ -10,11 +10,12 @@
|
|
|
10
10
|
</template>
|
|
11
11
|
|
|
12
12
|
<script lang="ts">
|
|
13
|
-
import {
|
|
13
|
+
import type { PropType } from "vue";
|
|
14
|
+
import { computed, defineComponent } from "vue";
|
|
14
15
|
|
|
15
16
|
import { useOrganisationTypes } from "@dative-gpi/foundation-core-services/composables";
|
|
16
17
|
import { useAutocomplete } from "@dative-gpi/foundation-shared-components/composables";
|
|
17
|
-
import { OrganisationTypeFilters } from "@dative-gpi/foundation-shared-domain/models";
|
|
18
|
+
import type { OrganisationTypeFilters } from "@dative-gpi/foundation-shared-domain/models";
|
|
18
19
|
|
|
19
20
|
import FSAutocompleteField from "@dative-gpi/foundation-shared-components/components/fields/FSAutocompleteField.vue";
|
|
20
21
|
|
|
@@ -81,9 +81,11 @@
|
|
|
81
81
|
</template>
|
|
82
82
|
|
|
83
83
|
<script lang="ts">
|
|
84
|
-
import {
|
|
84
|
+
import type { PropType } from "vue";
|
|
85
|
+
import { computed, defineComponent } from "vue";
|
|
85
86
|
|
|
86
|
-
import { RoleOrganisationFilters, RoleOrganisationTypeFilters
|
|
87
|
+
import type { RoleOrganisationFilters, RoleOrganisationTypeFilters} from "@dative-gpi/foundation-core-domain/models";
|
|
88
|
+
import { RoleType } from "@dative-gpi/foundation-core-domain/models";
|
|
87
89
|
import { useRoleOrganisations, useRoleOrganisationTypes } from "@dative-gpi/foundation-core-services/composables";
|
|
88
90
|
import { useAutocomplete } from "@dative-gpi/foundation-shared-components/composables";
|
|
89
91
|
|
|
@@ -77,9 +77,10 @@
|
|
|
77
77
|
</template>
|
|
78
78
|
|
|
79
79
|
<script lang="ts">
|
|
80
|
-
import {
|
|
80
|
+
import type { PropType } from "vue";
|
|
81
|
+
import { computed, defineComponent } from "vue";
|
|
81
82
|
|
|
82
|
-
import { UserOrganisationFilters, UserOrganisationInfos } from "@dative-gpi/foundation-core-domain/models";
|
|
83
|
+
import type { UserOrganisationFilters, UserOrganisationInfos } from "@dative-gpi/foundation-core-domain/models";
|
|
83
84
|
import { useUserOrganisations } from "@dative-gpi/foundation-core-services/composables";
|
|
84
85
|
import { useAutocomplete } from "@dative-gpi/foundation-shared-components/composables";
|
|
85
86
|
|
|
@@ -89,11 +89,13 @@
|
|
|
89
89
|
</template>
|
|
90
90
|
|
|
91
91
|
<script lang="ts">
|
|
92
|
-
import {
|
|
92
|
+
import type { PropType } from "vue";
|
|
93
|
+
import { computed, defineComponent } from "vue";
|
|
93
94
|
|
|
94
95
|
import { useAppTimeZone } from "@dative-gpi/foundation-shared-services/composables";
|
|
95
96
|
|
|
96
|
-
import { CustomPropertyInfos
|
|
97
|
+
import type { CustomPropertyInfos} from "../../../foundation-core-domain/models";
|
|
98
|
+
import { PropertyDataType } from "../../../foundation-core-domain/models";
|
|
97
99
|
|
|
98
100
|
import FSDateTimeField from "@dative-gpi/foundation-shared-components/components/fields/FSDateTimeField.vue";
|
|
99
101
|
import FSNumberField from "@dative-gpi/foundation-shared-components/components/fields/FSNumberField.vue";
|
|
@@ -27,9 +27,10 @@
|
|
|
27
27
|
</template>
|
|
28
28
|
|
|
29
29
|
<script lang="ts">
|
|
30
|
-
import {
|
|
30
|
+
import type { PropType } from 'vue';
|
|
31
|
+
import { defineComponent } from 'vue';
|
|
31
32
|
|
|
32
|
-
import { CustomPropertyInfos } from '@dative-gpi/foundation-core-domain/models';
|
|
33
|
+
import type { CustomPropertyInfos } from '@dative-gpi/foundation-core-domain/models';
|
|
33
34
|
|
|
34
35
|
import FSText from '@dative-gpi/foundation-shared-components/components/FSText.vue';
|
|
35
36
|
|
|
@@ -38,11 +38,12 @@
|
|
|
38
38
|
</template>
|
|
39
39
|
|
|
40
40
|
<script lang="ts">
|
|
41
|
-
import {
|
|
41
|
+
import type { PropType } from "vue";
|
|
42
|
+
import { computed, defineComponent } from "vue";
|
|
42
43
|
|
|
43
|
-
import { FSGridItem } from "@dative-gpi/foundation-shared-components/models";
|
|
44
|
+
import type { FSGridItem } from "@dative-gpi/foundation-shared-components/models";
|
|
44
45
|
|
|
45
|
-
import { CustomPropertyInfos } from "../../../foundation-core-domain/models";
|
|
46
|
+
import type { CustomPropertyInfos } from "../../../foundation-core-domain/models";
|
|
46
47
|
|
|
47
48
|
import FSGrid from "@dative-gpi/foundation-shared-components/components/FSGrid.vue";
|
|
48
49
|
|
|
@@ -33,7 +33,8 @@
|
|
|
33
33
|
</FSDialog>
|
|
34
34
|
</template>
|
|
35
35
|
<script lang="ts">
|
|
36
|
-
import { PropType
|
|
36
|
+
import type { PropType} from 'vue';
|
|
37
|
+
import { defineComponent, ref, watch } from 'vue';
|
|
37
38
|
import _ from 'lodash';
|
|
38
39
|
|
|
39
40
|
import { useAppTimeZone } from '@dative-gpi/foundation-shared-services/composables';
|
|
@@ -41,7 +42,7 @@ import { useAppTimeZone } from '@dative-gpi/foundation-shared-services/composabl
|
|
|
41
42
|
import FSDialog from "@dative-gpi/foundation-shared-components/components/FSDialog.vue";
|
|
42
43
|
import FSButton from "@dative-gpi/foundation-shared-components/components/FSButton.vue";
|
|
43
44
|
|
|
44
|
-
import { CustomPropertyInfos, PropertyEntity } from '../../../foundation-core-domain/models';
|
|
45
|
+
import type { CustomPropertyInfos, PropertyEntity } from '../../../foundation-core-domain/models';
|
|
45
46
|
import { useCustomPropertyValues } from '../../../foundation-core-services/composables';
|
|
46
47
|
|
|
47
48
|
import FSMetaValue from './FSMetaValue.vue';
|
|
@@ -28,11 +28,13 @@
|
|
|
28
28
|
</template>
|
|
29
29
|
|
|
30
30
|
<script lang="ts">
|
|
31
|
-
import { PropType
|
|
31
|
+
import type { PropType} from "vue";
|
|
32
|
+
import { computed, defineComponent } from "vue";
|
|
32
33
|
|
|
33
34
|
import { useAppTimeZone } from "@dative-gpi/foundation-shared-services/composables";
|
|
34
35
|
|
|
35
|
-
import { CustomPropertyInfos
|
|
36
|
+
import type { CustomPropertyInfos} from "../../../foundation-core-domain/models";
|
|
37
|
+
import { PropertyDataType } from "../../../foundation-core-domain/models";
|
|
36
38
|
import { getColor } from "./helpers";
|
|
37
39
|
|
|
38
40
|
import FSIconCheck from "@dative-gpi/foundation-shared-components/components/FSIconCheck.vue";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { useAppTimeZone } from "@dative-gpi/foundation-shared-services/composables";
|
|
2
|
-
import { CustomPropertyInfos
|
|
2
|
+
import type { CustomPropertyInfos} from "../../../foundation-core-domain/models";
|
|
3
|
+
import { FilterType, PropertyDataType } from "../../../foundation-core-domain/models";
|
|
3
4
|
|
|
4
5
|
const { getUserOffsetMillis, getMachineOffsetMillis } = useAppTimeZone();
|
|
5
6
|
|
|
@@ -25,11 +25,12 @@
|
|
|
25
25
|
</template>
|
|
26
26
|
|
|
27
27
|
<script lang="ts">
|
|
28
|
-
import { PropType
|
|
28
|
+
import type { PropType} from "vue";
|
|
29
|
+
import { computed, defineComponent, onUnmounted, ref, watch } from "vue";
|
|
29
30
|
|
|
30
31
|
import { useUserOrganisationTable, useUpdateUserOrganisationTable } from "@dative-gpi/foundation-core-services/composables";
|
|
31
32
|
import { useDebounce, useTables } from "@dative-gpi/foundation-shared-components/composables";
|
|
32
|
-
import { FSDataTable } from "@dative-gpi/foundation-shared-components/models";
|
|
33
|
+
import type { FSDataTable } from "@dative-gpi/foundation-shared-components/models";
|
|
33
34
|
|
|
34
35
|
import FSLoadDataTable from "@dative-gpi/foundation-shared-components/components/lists/FSLoadDataTable.vue";
|
|
35
36
|
import FSDataTableUI from "@dative-gpi/foundation-shared-components/components/lists/FSDataTableUI.vue";
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
</template>
|
|
10
10
|
|
|
11
11
|
<script lang="ts">
|
|
12
|
-
import {
|
|
12
|
+
import type { PropType} from "vue";
|
|
13
|
+
import { computed, defineComponent } from "vue";
|
|
13
14
|
|
|
14
15
|
import { useTranslations as useTranslationsProvider } from "@dative-gpi/bones-ui/composables";
|
|
15
16
|
import { SelectedEntities } from "@dative-gpi/foundation-core-domain/models";
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
<script lang="ts">
|
|
23
23
|
import { defineComponent, onMounted, watch } from "vue";
|
|
24
24
|
|
|
25
|
-
import {
|
|
25
|
+
import { useFolder } from "@dative-gpi/foundation-core-services/composables";
|
|
26
26
|
|
|
27
27
|
import FSFolderTileUI from "@dative-gpi/foundation-shared-components/components/tiles/FSFolderTileUI.vue";
|
|
28
28
|
import FSLoadTile from "@dative-gpi/foundation-shared-components/components/tiles/FSLoadTile.vue";
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
2
|
+
<FSLoadTile
|
|
3
|
+
v-if="getting"
|
|
4
|
+
:editable="$props.editable"
|
|
5
|
+
:modelValue="modelValue"
|
|
6
|
+
@update:modelValue="$emit('update:modelValue', $event)"
|
|
7
|
+
/>
|
|
8
|
+
<FSUserOrganisationTileUI
|
|
9
|
+
v-else-if="entity"
|
|
10
|
+
:imageId="entity.imageId"
|
|
11
|
+
:name="entity.name"
|
|
12
|
+
:label="entity.label"
|
|
13
|
+
:userType="entity.userType"
|
|
14
|
+
:roleLabel="entity.roleLabel"
|
|
15
|
+
:roleIcon="entity.roleIcon"
|
|
16
|
+
:admin="entity.admin"
|
|
17
|
+
:editable="$props.editable"
|
|
18
|
+
:modelValue="modelValue"
|
|
19
|
+
@update:modelValue="$emit('update:modelValue', $event)"
|
|
20
|
+
v-bind="$attrs"
|
|
21
|
+
/>
|
|
22
|
+
</template>
|
|
23
23
|
|
|
24
24
|
<script lang="ts">
|
|
25
25
|
import { defineComponent, onMounted, watch } from "vue";
|
|
@@ -20,11 +20,12 @@
|
|
|
20
20
|
</template>
|
|
21
21
|
|
|
22
22
|
<script lang="ts">
|
|
23
|
-
import {
|
|
23
|
+
import type { PropType } from "vue";
|
|
24
|
+
import { defineComponent } from "vue";
|
|
24
25
|
|
|
25
26
|
import { useTreeView } from "@dative-gpi/foundation-shared-components/composables";
|
|
26
27
|
import { useFolders } from "@dative-gpi/foundation-core-services/composables";
|
|
27
|
-
import { FolderFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
28
|
+
import type { FolderFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
28
29
|
|
|
29
30
|
import FSTreeViewField from "@dative-gpi/foundation-shared-components/components/fields/FSTreeViewField.vue";
|
|
30
31
|
import FSIcon from "@dative-gpi/foundation-shared-components/components/FSIcon.vue";
|
|
@@ -20,11 +20,12 @@
|
|
|
20
20
|
</template>
|
|
21
21
|
|
|
22
22
|
<script lang="ts">
|
|
23
|
-
import {
|
|
23
|
+
import type { PropType } from "vue";
|
|
24
|
+
import { defineComponent } from "vue";
|
|
24
25
|
|
|
25
26
|
import { useTreeView } from "@dative-gpi/foundation-shared-components/composables";
|
|
26
27
|
import { useGroups } from "@dative-gpi/foundation-core-services/composables";
|
|
27
|
-
import { GroupFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
28
|
+
import type { GroupFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
28
29
|
|
|
29
30
|
import FSTreeViewField from "@dative-gpi/foundation-shared-components/components/fields/FSTreeViewField.vue";
|
|
30
31
|
import FSIcon from "@dative-gpi/foundation-shared-components/components/FSIcon.vue";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dative-gpi/foundation-core-components",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.176",
|
|
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": "0.0.
|
|
14
|
-
"@dative-gpi/foundation-core-services": "0.0.
|
|
15
|
-
"@dative-gpi/foundation-shared-components": "0.0.
|
|
16
|
-
"@dative-gpi/foundation-shared-domain": "0.0.
|
|
17
|
-
"@dative-gpi/foundation-shared-services": "0.0.
|
|
13
|
+
"@dative-gpi/foundation-core-domain": "0.0.176",
|
|
14
|
+
"@dative-gpi/foundation-core-services": "0.0.176",
|
|
15
|
+
"@dative-gpi/foundation-shared-components": "0.0.176",
|
|
16
|
+
"@dative-gpi/foundation-shared-domain": "0.0.176",
|
|
17
|
+
"@dative-gpi/foundation-shared-services": "0.0.176"
|
|
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": "
|
|
29
|
+
"gitHead": "38e0b68ca0a4e09b8db0ace70a32bd254a3001fe"
|
|
30
30
|
}
|
package/utils/charts.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { useTranslations as useTranslationsProvider } from "@dative-gpi/bones-ui/composables";
|
|
2
|
-
import { ColorBase
|
|
2
|
+
import type { ColorBase} from "@dative-gpi/foundation-shared-components/models";
|
|
3
|
+
import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
|
|
3
4
|
import { ChartOrigin } from "@dative-gpi/foundation-core-domain/models";
|
|
4
5
|
|
|
5
6
|
const { $tr } = useTranslationsProvider();
|
package/utils/dashboards.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { useTranslations as useTranslationsProvider } from "@dative-gpi/bones-ui/composables";
|
|
2
|
-
import { ColorBase
|
|
2
|
+
import type { ColorBase} from "@dative-gpi/foundation-shared-components/models";
|
|
3
|
+
import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
|
|
3
4
|
import { DashboardType } from "@dative-gpi/foundation-shared-domain/models"
|
|
4
5
|
|
|
5
6
|
const { $tr } = useTranslationsProvider();
|
package/utils/roles.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { useTranslations as useTranslationsProvider } from "@dative-gpi/bones-ui/composables";
|
|
2
|
-
import { ColorBase
|
|
2
|
+
import type { ColorBase} from "@dative-gpi/foundation-shared-components/models";
|
|
3
|
+
import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
|
|
3
4
|
import { RoleType } from "@dative-gpi/foundation-core-domain/models"
|
|
4
5
|
|
|
5
6
|
const { $tr } = useTranslationsProvider();
|