@dative-gpi/foundation-core-components 1.0.80 → 1.0.82
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/lists/FSDataTable.vue +11 -15
- package/components/lists/alerts/FSBaseAlertsList.vue +6 -4
- package/components/lists/authTokens/FSBaseAuthTokensList.vue +5 -4
- package/components/lists/chartOrganisationTypes/FSBaseChartOrganisationTypesList.vue +9 -8
- package/components/lists/chartOrganisations/FSBaseChartOrganisationsList.vue +9 -8
- package/components/lists/charts/FSBaseChartsList.vue +8 -7
- package/components/lists/dashboardOrganisationTypes/FSBaseDashboardOrganisationTypesList.vue +6 -5
- package/components/lists/dashboards/FSBaseDashboardsList.vue +6 -5
- package/components/lists/dataCategories/FSBaseDataCategoriesList.vue +5 -5
- package/components/lists/dataDefinitions/FSBaseDataDefinitionsList.vue +5 -4
- package/components/lists/deviceOrganisations/FSBaseDeviceOrganisationsList.vue +3 -2
- package/components/lists/folders/FSBaseFoldersList.vue +9 -8
- package/components/lists/groups/FSBaseGroupsList.vue +3 -2
- package/components/lists/locations/FSBaseLocationsList.vue +9 -8
- package/components/lists/models/FSBaseModelsList.vue +3 -2
- package/components/lists/roleOrganisationTypes/FSBaseRoleOrganisationTypesList.vue +3 -2
- package/components/lists/roleOrganisations/FSBaseRoleOrganisationsList.vue +3 -2
- package/components/lists/scenarioOrganisationTypes/FSBaseScenarioOrganisationTypesList.vue +3 -2
- package/components/lists/scenarioOrganisations/FSBaseScenarioOrganisationsList.vue +3 -2
- package/components/lists/scenarios/FSBaseScenariosList.vue +6 -5
- package/components/lists/serviceAccountOrganisations/FSBaseServiceAccountOrganisationsList.vue +3 -2
- package/components/lists/serviceAccountRoleOrganisations/FSBaseServiceAccountRoleOrganisationsList.vue +3 -2
- package/components/lists/userOrganisations/FSBaseUserOrganisationsList.vue +3 -2
- package/package.json +7 -7
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<FSLoadDataTable
|
|
3
|
-
v-if="!initialized || gettingUserOrganisationTable"
|
|
3
|
+
v-if="($props.tableCode && !initialized) || gettingUserOrganisationTable"
|
|
4
4
|
/>
|
|
5
5
|
<FSDataTableUI
|
|
6
6
|
v-else
|
|
@@ -47,8 +47,9 @@ export default defineComponent({
|
|
|
47
47
|
default: "table"
|
|
48
48
|
},
|
|
49
49
|
tableCode: {
|
|
50
|
-
type: String
|
|
51
|
-
required:
|
|
50
|
+
type: String as PropType<string | null>,
|
|
51
|
+
required: false,
|
|
52
|
+
default: null
|
|
52
53
|
},
|
|
53
54
|
debounceTime: {
|
|
54
55
|
type: Number,
|
|
@@ -68,7 +69,7 @@ export default defineComponent({
|
|
|
68
69
|
const { getTable, setTable } = useTables();
|
|
69
70
|
const { debounce, cancel } = useDebounce();
|
|
70
71
|
|
|
71
|
-
const computedTable = computed(() => computeTable(props.headersOptions));
|
|
72
|
+
const computedTable = computed(() => computeTable(props.headersOptions, props.defaultMode));
|
|
72
73
|
|
|
73
74
|
onUnmounted(() => {
|
|
74
75
|
cancel();
|
|
@@ -76,20 +77,15 @@ export default defineComponent({
|
|
|
76
77
|
});
|
|
77
78
|
|
|
78
79
|
const update = () => {
|
|
79
|
-
|
|
80
|
-
updateUserOrganisationTable,
|
|
81
|
-
|
|
82
|
-
props.tableCode
|
|
83
|
-
);
|
|
80
|
+
if (props.tableCode) {
|
|
81
|
+
updateTable(updateUserOrganisationTable, setTable, props.tableCode, props.defaultMode);
|
|
82
|
+
}
|
|
84
83
|
}
|
|
85
84
|
|
|
86
85
|
watch(() => props.tableCode, async (): Promise<void> => {
|
|
87
|
-
|
|
88
|
-
getUserOrganisationTable,
|
|
89
|
-
|
|
90
|
-
props.tableCode,
|
|
91
|
-
props.defaultMode
|
|
92
|
-
);
|
|
86
|
+
if (props.tableCode) {
|
|
87
|
+
onTableCodeChange(getUserOrganisationTable, getTable, props.tableCode, props.defaultMode);
|
|
88
|
+
}
|
|
93
89
|
}, { immediate: true });
|
|
94
90
|
|
|
95
91
|
watch(() => table.value, () => {
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
<FSTermField
|
|
43
43
|
variant="default"
|
|
44
44
|
:editable="!innerNotTreatedOnly"
|
|
45
|
+
:hideHeader="true"
|
|
45
46
|
v-model:startDate="startDate"
|
|
46
47
|
v-model:endDate="endDate"
|
|
47
48
|
/>
|
|
@@ -261,6 +262,11 @@ export default defineComponent({
|
|
|
261
262
|
FSTermField,
|
|
262
263
|
},
|
|
263
264
|
props: {
|
|
265
|
+
tableCode: {
|
|
266
|
+
type: String as PropType<string | null>,
|
|
267
|
+
required: false,
|
|
268
|
+
default: null
|
|
269
|
+
},
|
|
264
270
|
alertFilters: {
|
|
265
271
|
type: Object as PropType<AlertFilters>,
|
|
266
272
|
required: false,
|
|
@@ -284,10 +290,6 @@ export default defineComponent({
|
|
|
284
290
|
required: false,
|
|
285
291
|
default: false
|
|
286
292
|
},
|
|
287
|
-
tableCode: {
|
|
288
|
-
type: String,
|
|
289
|
-
required: true
|
|
290
|
-
},
|
|
291
293
|
itemTo: {
|
|
292
294
|
type: Function as PropType<(item: AlertInfos) => Partial<RouteLocation>>,
|
|
293
295
|
required: false
|
|
@@ -48,14 +48,15 @@ export default defineComponent({
|
|
|
48
48
|
FSText
|
|
49
49
|
},
|
|
50
50
|
props: {
|
|
51
|
+
tableCode: {
|
|
52
|
+
type: String as PropType<string | null>,
|
|
53
|
+
required: false,
|
|
54
|
+
default: null
|
|
55
|
+
},
|
|
51
56
|
authTokensFilters: {
|
|
52
57
|
type: Object as PropType<AuthTokenFilters | null>,
|
|
53
58
|
required: false,
|
|
54
59
|
default: null
|
|
55
|
-
},
|
|
56
|
-
tableCode: {
|
|
57
|
-
type: String,
|
|
58
|
-
required: true
|
|
59
60
|
}
|
|
60
61
|
},
|
|
61
62
|
setup(props) {
|
|
@@ -101,10 +101,10 @@ export default defineComponent({
|
|
|
101
101
|
FSIcon
|
|
102
102
|
},
|
|
103
103
|
props: {
|
|
104
|
-
|
|
105
|
-
type:
|
|
106
|
-
|
|
107
|
-
|
|
104
|
+
tableCode: {
|
|
105
|
+
type: String as PropType<string | null>,
|
|
106
|
+
required: false,
|
|
107
|
+
default: null
|
|
108
108
|
},
|
|
109
109
|
chartOrganisationFilters: {
|
|
110
110
|
type: Object as PropType<ChartOrganisationFilters>,
|
|
@@ -116,13 +116,14 @@ export default defineComponent({
|
|
|
116
116
|
required: false,
|
|
117
117
|
default: PlotPer.None
|
|
118
118
|
},
|
|
119
|
-
tableCode: {
|
|
120
|
-
type: String,
|
|
121
|
-
required: true
|
|
122
|
-
},
|
|
123
119
|
itemTo: {
|
|
124
120
|
type: Function as PropType<(item: ChartOrganisationTypeInfos) => Partial<RouteLocation>>,
|
|
125
121
|
required: false
|
|
122
|
+
},
|
|
123
|
+
modelValue: {
|
|
124
|
+
type: Array as PropType<string[]>,
|
|
125
|
+
default: () => [],
|
|
126
|
+
required: false
|
|
126
127
|
}
|
|
127
128
|
},
|
|
128
129
|
emits: ["update:modelValue"],
|
|
@@ -100,10 +100,10 @@ export default defineComponent({
|
|
|
100
100
|
FSChartTileUI
|
|
101
101
|
},
|
|
102
102
|
props: {
|
|
103
|
-
|
|
104
|
-
type:
|
|
105
|
-
|
|
106
|
-
|
|
103
|
+
tableCode: {
|
|
104
|
+
type: String as PropType<string | null>,
|
|
105
|
+
required: false,
|
|
106
|
+
default: null
|
|
107
107
|
},
|
|
108
108
|
chartOrganisationFilters: {
|
|
109
109
|
type: Object as PropType<ChartOrganisationFilters>,
|
|
@@ -115,13 +115,14 @@ export default defineComponent({
|
|
|
115
115
|
required: false,
|
|
116
116
|
default: PlotPer.None
|
|
117
117
|
},
|
|
118
|
-
tableCode: {
|
|
119
|
-
type: String,
|
|
120
|
-
required: true
|
|
121
|
-
},
|
|
122
118
|
itemTo: {
|
|
123
119
|
type: Function as PropType<(item: ChartOrganisationInfos) => Partial<RouteLocation>>,
|
|
124
120
|
required: false
|
|
121
|
+
},
|
|
122
|
+
modelValue: {
|
|
123
|
+
type: Array as PropType<string[]>,
|
|
124
|
+
default: () => [],
|
|
125
|
+
required: false
|
|
125
126
|
}
|
|
126
127
|
},
|
|
127
128
|
emits: ["update:modelValue"],
|
|
@@ -100,10 +100,10 @@ export default defineComponent({
|
|
|
100
100
|
FSIcon
|
|
101
101
|
},
|
|
102
102
|
props: {
|
|
103
|
-
|
|
104
|
-
type:
|
|
105
|
-
|
|
106
|
-
|
|
103
|
+
tableCode: {
|
|
104
|
+
type: String as PropType<string | null>,
|
|
105
|
+
required: false,
|
|
106
|
+
default: null
|
|
107
107
|
},
|
|
108
108
|
chartOrganisationFilters: {
|
|
109
109
|
type: Object as PropType<ChartOrganisationFilters>,
|
|
@@ -115,9 +115,10 @@ export default defineComponent({
|
|
|
115
115
|
required: false,
|
|
116
116
|
default: null
|
|
117
117
|
},
|
|
118
|
-
|
|
119
|
-
type:
|
|
120
|
-
|
|
118
|
+
modelValue: {
|
|
119
|
+
type: Array as PropType<string[]>,
|
|
120
|
+
default: () => [],
|
|
121
|
+
required: false
|
|
121
122
|
}
|
|
122
123
|
},
|
|
123
124
|
emits: ["update:modelValue", "update:scope"],
|
package/components/lists/dashboardOrganisationTypes/FSBaseDashboardOrganisationTypesList.vue
CHANGED
|
@@ -96,6 +96,11 @@ export default defineComponent({
|
|
|
96
96
|
FSDashboardOrganisationTypeTileUI
|
|
97
97
|
},
|
|
98
98
|
props: {
|
|
99
|
+
tableCode: {
|
|
100
|
+
type: String as PropType<string | null>,
|
|
101
|
+
required: false,
|
|
102
|
+
default: null
|
|
103
|
+
},
|
|
99
104
|
dashboardOrganisationTypeFilters: {
|
|
100
105
|
type: Object as PropType<DashboardOrganisationTypeFilters>,
|
|
101
106
|
default: undefined,
|
|
@@ -109,11 +114,7 @@ export default defineComponent({
|
|
|
109
114
|
type: Array as PropType<string[]>,
|
|
110
115
|
required: false,
|
|
111
116
|
default: () => []
|
|
112
|
-
}
|
|
113
|
-
tableCode: {
|
|
114
|
-
type: String,
|
|
115
|
-
required: true
|
|
116
|
-
},
|
|
117
|
+
}
|
|
117
118
|
},
|
|
118
119
|
setup(props) {
|
|
119
120
|
const { getMany: getDashboardOrganisationTypes, fetching: fetchingDashboardOrganisationTypes, entities: dashboardOrganisationTypes } = useDashboardOrganisationTypes();
|
|
@@ -102,6 +102,11 @@ export default defineComponent({
|
|
|
102
102
|
FSDashboardShallowTileUI
|
|
103
103
|
},
|
|
104
104
|
props: {
|
|
105
|
+
tableCode: {
|
|
106
|
+
type: String as PropType<string | null>,
|
|
107
|
+
required: false,
|
|
108
|
+
default: null
|
|
109
|
+
},
|
|
105
110
|
dashboardOrganisationTypeFetchFilter: {
|
|
106
111
|
type: Object as PropType<DashboardOrganisationTypeFilters>,
|
|
107
112
|
default: undefined,
|
|
@@ -121,15 +126,11 @@ export default defineComponent({
|
|
|
121
126
|
type: Function as PropType<(item: DashboardInfos) => Partial<RouteLocation>>,
|
|
122
127
|
required: false
|
|
123
128
|
},
|
|
124
|
-
tableCode: {
|
|
125
|
-
type: String,
|
|
126
|
-
required: true
|
|
127
|
-
},
|
|
128
129
|
modelValue: {
|
|
129
130
|
type: Array as PropType<string[]>,
|
|
130
131
|
default: () => [],
|
|
131
132
|
required: false
|
|
132
|
-
}
|
|
133
|
+
}
|
|
133
134
|
},
|
|
134
135
|
emits: ["update:modelValue", "update:type"],
|
|
135
136
|
setup(props, { emit }) {
|
|
@@ -20,7 +20,6 @@
|
|
|
20
20
|
>
|
|
21
21
|
<FSDataTable
|
|
22
22
|
:loading="fetchingDataCategories"
|
|
23
|
-
:disableIterator="true"
|
|
24
23
|
:items="dataCategories"
|
|
25
24
|
:modelValue="$props.modelValue"
|
|
26
25
|
:showSearch="false"
|
|
@@ -109,6 +108,11 @@ export default defineComponent({
|
|
|
109
108
|
FSIcon
|
|
110
109
|
},
|
|
111
110
|
props: {
|
|
111
|
+
tableCode: {
|
|
112
|
+
type: String as PropType<string | null>,
|
|
113
|
+
required: false,
|
|
114
|
+
default: null
|
|
115
|
+
},
|
|
112
116
|
dataCategoryFilters: {
|
|
113
117
|
type: Object as PropType<DataCategoryFilters>,
|
|
114
118
|
required: false,
|
|
@@ -118,10 +122,6 @@ export default defineComponent({
|
|
|
118
122
|
type: Array as PropType<string[]>,
|
|
119
123
|
default: () => [],
|
|
120
124
|
required: false
|
|
121
|
-
},
|
|
122
|
-
tableCode: {
|
|
123
|
-
type: String,
|
|
124
|
-
required: true
|
|
125
125
|
}
|
|
126
126
|
},
|
|
127
127
|
emits: ["update:modelValue"],
|
|
@@ -88,6 +88,11 @@ export default defineComponent({
|
|
|
88
88
|
FSRow,
|
|
89
89
|
},
|
|
90
90
|
props: {
|
|
91
|
+
tableCode: {
|
|
92
|
+
type: String as PropType<string | null>,
|
|
93
|
+
required: false,
|
|
94
|
+
default: null
|
|
95
|
+
},
|
|
91
96
|
dataDefinitionFilters: {
|
|
92
97
|
type: Object as PropType<DataDefinitionFilters>,
|
|
93
98
|
required: false,
|
|
@@ -97,10 +102,6 @@ export default defineComponent({
|
|
|
97
102
|
type: Array as PropType<string[]>,
|
|
98
103
|
default: () => [],
|
|
99
104
|
required: false
|
|
100
|
-
},
|
|
101
|
-
tableCode: {
|
|
102
|
-
type: String,
|
|
103
|
-
required: true
|
|
104
105
|
}
|
|
105
106
|
},
|
|
106
107
|
emits: ["update:modelValue"],
|
|
@@ -209,8 +209,9 @@ export default defineComponent({
|
|
|
209
209
|
},
|
|
210
210
|
props: {
|
|
211
211
|
tableCode: {
|
|
212
|
-
type: String
|
|
213
|
-
required:
|
|
212
|
+
type: String as PropType<string | null>,
|
|
213
|
+
required: false,
|
|
214
|
+
default: null
|
|
214
215
|
},
|
|
215
216
|
deviceOrganisationFilters: {
|
|
216
217
|
type: Object as PropType<DeviceOrganisationFilters>,
|
|
@@ -66,23 +66,24 @@ export default defineComponent({
|
|
|
66
66
|
FSFolderTileUI
|
|
67
67
|
},
|
|
68
68
|
props: {
|
|
69
|
+
tableCode: {
|
|
70
|
+
type: String as PropType<string | null>,
|
|
71
|
+
required: false,
|
|
72
|
+
default: null
|
|
73
|
+
},
|
|
69
74
|
foldersFilters: {
|
|
70
75
|
type: Object as PropType<FolderFilters>,
|
|
71
76
|
default: undefined,
|
|
72
77
|
required: false
|
|
73
78
|
},
|
|
74
|
-
modelValue: {
|
|
75
|
-
type: Array as PropType<string[]>,
|
|
76
|
-
required: false,
|
|
77
|
-
default: () => []
|
|
78
|
-
},
|
|
79
79
|
itemTo: {
|
|
80
80
|
type: Function as PropType<(item: DashboardInfos) => Partial<RouteLocation>>,
|
|
81
81
|
required: false
|
|
82
82
|
},
|
|
83
|
-
|
|
84
|
-
type:
|
|
85
|
-
required:
|
|
83
|
+
modelValue: {
|
|
84
|
+
type: Array as PropType<string[]>,
|
|
85
|
+
required: false,
|
|
86
|
+
default: () => []
|
|
86
87
|
}
|
|
87
88
|
},
|
|
88
89
|
emits: ["update:modelValue"],
|
|
@@ -63,6 +63,11 @@ export default defineComponent({
|
|
|
63
63
|
FSIcon
|
|
64
64
|
},
|
|
65
65
|
props: {
|
|
66
|
+
tableCode: {
|
|
67
|
+
type: String as PropType<string | null>,
|
|
68
|
+
required: false,
|
|
69
|
+
default: null
|
|
70
|
+
},
|
|
66
71
|
locationsFilters: {
|
|
67
72
|
type: Object as PropType<LocationFilters>,
|
|
68
73
|
required: false,
|
|
@@ -73,11 +78,6 @@ export default defineComponent({
|
|
|
73
78
|
required: false,
|
|
74
79
|
default: true
|
|
75
80
|
},
|
|
76
|
-
modelValue: {
|
|
77
|
-
type: Array as PropType<string[]>,
|
|
78
|
-
default: () => [],
|
|
79
|
-
required: false
|
|
80
|
-
},
|
|
81
81
|
itemTo: {
|
|
82
82
|
type: Function as PropType<(item: LocationInfos) => Partial<RouteLocation>>,
|
|
83
83
|
required: false
|
|
@@ -87,9 +87,10 @@ export default defineComponent({
|
|
|
87
87
|
required: false,
|
|
88
88
|
default: false
|
|
89
89
|
},
|
|
90
|
-
|
|
91
|
-
type:
|
|
92
|
-
|
|
90
|
+
modelValue: {
|
|
91
|
+
type: Array as PropType<string[]>,
|
|
92
|
+
default: () => [],
|
|
93
|
+
required: false
|
|
93
94
|
}
|
|
94
95
|
},
|
|
95
96
|
emits: ["update:modelValue"],
|
|
@@ -100,8 +100,9 @@ export default defineComponent({
|
|
|
100
100
|
},
|
|
101
101
|
props: {
|
|
102
102
|
tableCode: {
|
|
103
|
-
type: String
|
|
104
|
-
required:
|
|
103
|
+
type: String as PropType<string | null>,
|
|
104
|
+
required: false,
|
|
105
|
+
default: null
|
|
105
106
|
},
|
|
106
107
|
modelsFilters: {
|
|
107
108
|
type: Object as PropType<ModelFilters>,
|
|
@@ -78,8 +78,9 @@ export default defineComponent({
|
|
|
78
78
|
},
|
|
79
79
|
props: {
|
|
80
80
|
tableCode: {
|
|
81
|
-
type: String
|
|
82
|
-
required:
|
|
81
|
+
type: String as PropType<string | null>,
|
|
82
|
+
required: false,
|
|
83
|
+
default: null
|
|
83
84
|
},
|
|
84
85
|
roleOrganisationTypesFilters: {
|
|
85
86
|
type: Object as PropType<RoleOrganisationTypeFilters | null>,
|
|
@@ -78,8 +78,9 @@ export default defineComponent({
|
|
|
78
78
|
},
|
|
79
79
|
props: {
|
|
80
80
|
tableCode: {
|
|
81
|
-
type: String
|
|
82
|
-
required:
|
|
81
|
+
type: String as PropType<string | null>,
|
|
82
|
+
required: false,
|
|
83
|
+
default: null
|
|
83
84
|
},
|
|
84
85
|
roleOrganisationsFilters: {
|
|
85
86
|
type: Object as PropType<RoleOrganisationFilters | null>,
|
|
@@ -73,8 +73,9 @@ export default defineComponent({
|
|
|
73
73
|
},
|
|
74
74
|
props: {
|
|
75
75
|
tableCode: {
|
|
76
|
-
type: String
|
|
77
|
-
required:
|
|
76
|
+
type: String as PropType<string | null>,
|
|
77
|
+
required: false,
|
|
78
|
+
default: null
|
|
78
79
|
},
|
|
79
80
|
scenarioOrganisationTypeFilters: {
|
|
80
81
|
type: Object as PropType<ScenarioOrganisationTypeFilters>,
|
|
@@ -60,8 +60,9 @@ export default defineComponent({
|
|
|
60
60
|
},
|
|
61
61
|
props: {
|
|
62
62
|
tableCode: {
|
|
63
|
-
type: String
|
|
64
|
-
required:
|
|
63
|
+
type: String as PropType<string | null>,
|
|
64
|
+
required: false,
|
|
65
|
+
default: null
|
|
65
66
|
},
|
|
66
67
|
scenarioOrganisationFilters: {
|
|
67
68
|
type: Object as PropType<ScenarioOrganisationFilters>,
|
|
@@ -45,7 +45,7 @@ import _ from "lodash";
|
|
|
45
45
|
|
|
46
46
|
import { useTranslations } from "@dative-gpi/bones-ui";
|
|
47
47
|
|
|
48
|
-
import {ColorEnum } from "@dative-gpi/foundation-shared-components/models";
|
|
48
|
+
import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
|
|
49
49
|
|
|
50
50
|
import type { ScenarioOrganisationFilters, ScenarioOrganisationTypeFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
51
51
|
|
|
@@ -64,8 +64,9 @@ export default defineComponent({
|
|
|
64
64
|
},
|
|
65
65
|
props: {
|
|
66
66
|
tableCode: {
|
|
67
|
-
type: String
|
|
68
|
-
required:
|
|
67
|
+
type: String as PropType<string | null>,
|
|
68
|
+
required: false,
|
|
69
|
+
default: null
|
|
69
70
|
},
|
|
70
71
|
scenarioOrganisationFilters: {
|
|
71
72
|
type: Object as PropType<ScenarioOrganisationFilters>,
|
|
@@ -111,12 +112,12 @@ export default defineComponent({
|
|
|
111
112
|
sortable: true
|
|
112
113
|
},
|
|
113
114
|
{
|
|
114
|
-
text: $tr("entity.scenario.
|
|
115
|
+
text: $tr("entity.scenario.model-label", "Model label"),
|
|
115
116
|
value: "modelLabel",
|
|
116
117
|
sortable: true
|
|
117
118
|
},
|
|
118
119
|
{
|
|
119
|
-
text: $tr("entity.scenario.
|
|
120
|
+
text: $tr("entity.scenario.data-category-label", "Data category label"),
|
|
120
121
|
value: "dataCategoryLabel",
|
|
121
122
|
sortable: true
|
|
122
123
|
},
|
package/components/lists/serviceAccountOrganisations/FSBaseServiceAccountOrganisationsList.vue
CHANGED
|
@@ -105,8 +105,9 @@ export default defineComponent({
|
|
|
105
105
|
},
|
|
106
106
|
props: {
|
|
107
107
|
tableCode: {
|
|
108
|
-
type: String
|
|
109
|
-
required:
|
|
108
|
+
type: String as PropType<string | null>,
|
|
109
|
+
required: false,
|
|
110
|
+
default: null
|
|
110
111
|
},
|
|
111
112
|
serviceAccountOrganisationsFilters: {
|
|
112
113
|
type: Object as PropType<ServiceAccountOrganisationFilters | null>,
|
|
@@ -78,8 +78,9 @@ export default defineComponent({
|
|
|
78
78
|
},
|
|
79
79
|
props: {
|
|
80
80
|
tableCode: {
|
|
81
|
-
type: String
|
|
82
|
-
required:
|
|
81
|
+
type: String as PropType<string | null>,
|
|
82
|
+
required: false,
|
|
83
|
+
default: null
|
|
83
84
|
},
|
|
84
85
|
serviceAccountRoleOrganisationsFilters: {
|
|
85
86
|
type: Object as PropType<ServiceAccountRoleOrganisationFilters | null>,
|
|
@@ -121,8 +121,9 @@ export default defineComponent({
|
|
|
121
121
|
},
|
|
122
122
|
props: {
|
|
123
123
|
tableCode: {
|
|
124
|
-
type: String
|
|
125
|
-
required:
|
|
124
|
+
type: String as PropType<string | null>,
|
|
125
|
+
required: false,
|
|
126
|
+
default: null
|
|
126
127
|
},
|
|
127
128
|
userOrganisationsFilters: {
|
|
128
129
|
type: Object as PropType<UserOrganisationFilters | null>,
|
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.82",
|
|
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.82",
|
|
14
|
+
"@dative-gpi/foundation-core-services": "1.0.82",
|
|
15
|
+
"@dative-gpi/foundation-shared-components": "1.0.82",
|
|
16
|
+
"@dative-gpi/foundation-shared-domain": "1.0.82",
|
|
17
|
+
"@dative-gpi/foundation-shared-services": "1.0.82"
|
|
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": "f210728193cfa965fd7827c935319f80af51d9a0"
|
|
30
30
|
}
|