@dative-gpi/foundation-core-components 1.1.10 → 1.1.12

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.
@@ -41,7 +41,7 @@ import { defineComponent, ref, type PropType, computed } from "vue";
41
41
 
42
42
  import { EntityType } from "@dative-gpi/foundation-shared-domain/enums";
43
43
 
44
- import type { DashboardOrganisationFilters, DashboardOrganisationTypeFilters, DeviceOrganisationFilters, FolderFilters, GroupFilters, LocationFilters, ModelFilters, UserOrganisationFilters } from "@dative-gpi/foundation-core-domain/models";
44
+ import type { DashboardOrganisationFilters, DashboardOrganisationTypeFilters, DashboardShallowFilters, DeviceOrganisationFilters, FolderFilters, GroupFilters, GroupingFilters, LocationFilters, ModelFilters, SubgroupingFilters, UserOrganisationFilters } from "@dative-gpi/foundation-core-domain/models";
45
45
 
46
46
  import FSEntityFieldUI from "@dative-gpi/foundation-shared-components/components/fields/FSEntityFieldUI.vue";
47
47
 
@@ -141,7 +141,7 @@ export default defineComponent({
141
141
  dashboardOrganisationsIds: props.modelValue,
142
142
  dashboardOrganisationTypesIds: props.modelValue,
143
143
  dashboardShallowsIds: props.modelValue
144
- } satisfies DashboardOrganisationFilters & DashboardOrganisationTypeFilters;
144
+ } satisfies DashboardOrganisationFilters & DashboardOrganisationTypeFilters & DashboardShallowFilters;
145
145
  case EntityType.Group:
146
146
  return {
147
147
  groupsIds: props.modelValue
@@ -164,14 +164,12 @@ export default defineComponent({
164
164
  } satisfies ModelFilters;
165
165
  case EntityType.Grouping:
166
166
  return {
167
- groupingFilters: props.modelValue,
168
- ...attrs
169
- };
167
+ groupingsIds: props.modelValue
168
+ } satisfies GroupingFilters;
170
169
  case EntityType.Subgrouping:
171
170
  return {
172
- subgroupingFilters: props.modelValue,
173
- ...attrs
174
- };
171
+ subgroupingsIds: props.modelValue
172
+ } satisfies SubgroupingFilters;
175
173
  default:
176
174
  return undefined;
177
175
  };
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "url": "https://github.com/Dative-GPI/foundation-shared-ui.git"
5
5
  },
6
6
  "sideEffects": false,
7
- "version": "1.1.10",
7
+ "version": "1.1.12",
8
8
  "description": "",
9
9
  "publishConfig": {
10
10
  "access": "public"
@@ -13,11 +13,11 @@
13
13
  "author": "",
14
14
  "license": "ISC",
15
15
  "dependencies": {
16
- "@dative-gpi/foundation-core-domain": "1.1.10",
17
- "@dative-gpi/foundation-core-services": "1.1.10",
18
- "@dative-gpi/foundation-shared-components": "1.1.10",
19
- "@dative-gpi/foundation-shared-domain": "1.1.10",
20
- "@dative-gpi/foundation-shared-services": "1.1.10"
16
+ "@dative-gpi/foundation-core-domain": "1.1.12",
17
+ "@dative-gpi/foundation-core-services": "1.1.12",
18
+ "@dative-gpi/foundation-shared-components": "1.1.12",
19
+ "@dative-gpi/foundation-shared-domain": "1.1.12",
20
+ "@dative-gpi/foundation-shared-services": "1.1.12"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "@dative-gpi/bones-ui": "^1.0.0",
@@ -29,5 +29,5 @@
29
29
  "sass": "1.71.1",
30
30
  "sass-loader": "13.3.2"
31
31
  },
32
- "gitHead": "9fab51b9fc34cd8a60f870ef40e5a437115f2f2b"
32
+ "gitHead": "9ad6a2732e79fef8289b5c606efaf027ea0cd5ba"
33
33
  }