@dative-gpi/foundation-core-components 1.0.99 → 1.0.101
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/FSAutocompleteManufacturer.vue +2 -0
- package/components/autocompletes/FSAutocompleteModel.vue +2 -0
- package/components/autocompletes/FSAutocompleteUserOrganisation.vue +2 -0
- package/components/explorers/FSBaseFoldersExplorer.vue +11 -8
- package/components/lists/alerts/FSBaseAlertsList.vue +2 -0
- package/components/lists/chartOrganisationTypes/FSBaseChartOrganisationTypesList.vue +1 -0
- package/components/lists/chartOrganisations/FSBaseChartOrganisationsList.vue +1 -0
- package/components/lists/charts/FSBaseChartsList.vue +1 -0
- package/components/lists/connectivityScenarios/FSBaseConnectivityScenariosList.vue +3 -2
- package/components/lists/deviceOrganisations/FSBaseDeviceOrganisationsList.vue +1 -0
- package/components/lists/groups/FSBaseGroupsList.vue +3 -2
- package/components/lists/models/FSBaseModelsList.vue +1 -0
- package/components/lists/scenarioOrganisationTypes/FSBaseScenarioOrganisationTypesList.vue +1 -0
- package/components/lists/serviceAccountOrganisations/FSBaseServiceAccountOrganisationsList.vue +1 -0
- package/components/lists/userOrganisations/FSBaseUserOrganisationsList.vue +1 -0
- package/package.json +7 -7
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
height="26px"
|
|
18
18
|
width="26px"
|
|
19
19
|
:imageId="item.imageId"
|
|
20
|
+
:thumbnail="true"
|
|
20
21
|
/>
|
|
21
22
|
</template>
|
|
22
23
|
<template
|
|
@@ -38,6 +39,7 @@
|
|
|
38
39
|
height="26px"
|
|
39
40
|
width="26px"
|
|
40
41
|
:imageId="props.item.imageId"
|
|
42
|
+
:thumbnail="true"
|
|
41
43
|
/>
|
|
42
44
|
</template>
|
|
43
45
|
</FSButton>
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
height="26px"
|
|
18
18
|
width="26px"
|
|
19
19
|
:imageId="item.imageId"
|
|
20
|
+
:thumbnail="true"
|
|
20
21
|
/>
|
|
21
22
|
</template>
|
|
22
23
|
<template
|
|
@@ -38,6 +39,7 @@
|
|
|
38
39
|
height="26px"
|
|
39
40
|
width="26px"
|
|
40
41
|
:imageId="props.item.imageId"
|
|
42
|
+
:thumbnail="true"
|
|
41
43
|
/>
|
|
42
44
|
</template>
|
|
43
45
|
</FSButton>
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
height="26px"
|
|
19
19
|
width="26px"
|
|
20
20
|
:imageId="item.imageId"
|
|
21
|
+
:thumbnail="true"
|
|
21
22
|
/>
|
|
22
23
|
</template>
|
|
23
24
|
<template
|
|
@@ -39,6 +40,7 @@
|
|
|
39
40
|
height="26px"
|
|
40
41
|
width="26px"
|
|
41
42
|
:imageId="props.item.imageId"
|
|
43
|
+
:thumbnail="true"
|
|
42
44
|
/>
|
|
43
45
|
</template>
|
|
44
46
|
</FSButton>
|
|
@@ -29,9 +29,10 @@
|
|
|
29
29
|
>
|
|
30
30
|
<FSImage
|
|
31
31
|
v-if="item.imageId"
|
|
32
|
-
height="
|
|
33
|
-
width="
|
|
32
|
+
height="32px"
|
|
33
|
+
width="32px"
|
|
34
34
|
:imageId="item.imageId"
|
|
35
|
+
:thumbnail="true"
|
|
35
36
|
/>
|
|
36
37
|
</template>
|
|
37
38
|
<template
|
|
@@ -95,9 +96,8 @@
|
|
|
95
96
|
|
|
96
97
|
<script lang="ts">
|
|
97
98
|
import _ from "lodash";
|
|
98
|
-
import type { PropType} from "vue";
|
|
99
99
|
import type { RouteLocation } from "vue-router";
|
|
100
|
-
import { computed, defineComponent, onMounted, ref, watch } from "vue";
|
|
100
|
+
import { computed, defineComponent, onMounted, type PropType, ref, watch } from "vue";
|
|
101
101
|
|
|
102
102
|
import { useOrganisation } from "@dative-gpi/foundation-shared-services/composables";
|
|
103
103
|
import { useDashboardOrganisations, useFolders, useDashboardShallows, useAppOrganisationId, useCurrentUserOrganisation } from "@dative-gpi/foundation-core-services/composables";
|
|
@@ -106,12 +106,14 @@ import { DashboardType } from "@dative-gpi/foundation-shared-domain/enums";
|
|
|
106
106
|
import { FoldersListType, type FoldersListItem } from "@dative-gpi/foundation-core-components/utils";
|
|
107
107
|
import type { FolderFilters, DashboardOrganisationFilters, DashboardShallowFilters, DashboardInfos } from "@dative-gpi/foundation-core-domain/models";
|
|
108
108
|
|
|
109
|
-
import FSDataTable from "../lists/FSDataTable.vue";
|
|
110
109
|
import FSIcon from "@dative-gpi/foundation-shared-components/components/FSIcon.vue";
|
|
110
|
+
import FSImage from "@dative-gpi/foundation-shared-components/components/FSImage.vue";
|
|
111
|
+
import FSIconCheck from "@dative-gpi/foundation-shared-components/components/FSIconCheck.vue";
|
|
111
112
|
import FSFolderTileUI from "@dative-gpi/foundation-shared-components/components/tiles/FSFolderTileUI.vue";
|
|
112
|
-
import FSDashboardOrganisationTileUI from "@dative-gpi/foundation-shared-components/components/tiles/FSDashboardOrganisationTileUI.vue";
|
|
113
113
|
import FSDashboardShallowTileUI from "@dative-gpi/foundation-shared-components/components/tiles/FSDashboardShallowTileUI.vue";
|
|
114
|
-
import
|
|
114
|
+
import FSDashboardOrganisationTileUI from "@dative-gpi/foundation-shared-components/components/tiles/FSDashboardOrganisationTileUI.vue";
|
|
115
|
+
|
|
116
|
+
import FSDataTable from "../lists/FSDataTable.vue";
|
|
115
117
|
|
|
116
118
|
export default defineComponent({
|
|
117
119
|
name: "FSBaseFoldersExplorer",
|
|
@@ -121,7 +123,8 @@ export default defineComponent({
|
|
|
121
123
|
FSFolderTileUI,
|
|
122
124
|
FSDashboardOrganisationTileUI,
|
|
123
125
|
FSDashboardShallowTileUI,
|
|
124
|
-
FSIconCheck
|
|
126
|
+
FSIconCheck,
|
|
127
|
+
FSImage
|
|
125
128
|
},
|
|
126
129
|
props: {
|
|
127
130
|
foldersFilters: {
|
|
@@ -99,6 +99,7 @@
|
|
|
99
99
|
width="32px"
|
|
100
100
|
height="32px"
|
|
101
101
|
:imageId="item.deviceOrganisationImageId"
|
|
102
|
+
:thumbnail="true"
|
|
102
103
|
/>
|
|
103
104
|
</template>
|
|
104
105
|
<template
|
|
@@ -129,6 +130,7 @@
|
|
|
129
130
|
width="32px"
|
|
130
131
|
height="32px"
|
|
131
132
|
:imageId="item.acknowledgingUserImageId"
|
|
133
|
+
:thumbnail="true"
|
|
132
134
|
/>
|
|
133
135
|
</template>
|
|
134
136
|
<template
|
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.
|
|
4
|
+
"version": "1.0.101",
|
|
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.
|
|
14
|
-
"@dative-gpi/foundation-core-services": "1.0.
|
|
15
|
-
"@dative-gpi/foundation-shared-components": "1.0.
|
|
16
|
-
"@dative-gpi/foundation-shared-domain": "1.0.
|
|
17
|
-
"@dative-gpi/foundation-shared-services": "1.0.
|
|
13
|
+
"@dative-gpi/foundation-core-domain": "1.0.101",
|
|
14
|
+
"@dative-gpi/foundation-core-services": "1.0.101",
|
|
15
|
+
"@dative-gpi/foundation-shared-components": "1.0.101",
|
|
16
|
+
"@dative-gpi/foundation-shared-domain": "1.0.101",
|
|
17
|
+
"@dative-gpi/foundation-shared-services": "1.0.101"
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
20
20
|
"@dative-gpi/bones-ui": "^1.0.0",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"sass": "1.71.1",
|
|
27
27
|
"sass-loader": "13.3.2"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "f8be2b01dc860776a5907fe403950543afa48631"
|
|
30
30
|
}
|