@dative-gpi/foundation-core-components 1.1.5 → 1.1.7

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.
@@ -3,6 +3,7 @@
3
3
  v-if="$props.subgroupings && $props.subgroupings.length > 0"
4
4
  :items="$props.subgroupings"
5
5
  :maxItems="$props.maxItems"
6
+ :variant="$props.variant"
6
7
  >
7
8
  <template
8
9
  #item.chip="{ item }"
@@ -28,6 +29,7 @@ import type { SubgroupingInfos } from "@dative-gpi/foundation-core-domain/models
28
29
 
29
30
  import FSSubgroupingChip from "@dative-gpi/foundation-shared-components/components/FSSubgroupingChip.vue";
30
31
  import FSChipGroup from "@dative-gpi/foundation-shared-components/components/FSChipGroup.vue";
32
+ import { ChipGroupVariants, type ChipGroupVariant } from "@dative-gpi/foundation-shared-components/models";
31
33
 
32
34
  export default defineComponent({
33
35
  name: "FSSubgroupingsChipGroup",
@@ -48,7 +50,12 @@ export default defineComponent({
48
50
  type: Number as PropType<number | null>,
49
51
  required: false,
50
52
  default: 1
51
- }
53
+ },
54
+ variant: {
55
+ type: String as PropType<ChipGroupVariant>,
56
+ required: false,
57
+ default: ChipGroupVariants.Menu
58
+ },
52
59
  }
53
60
  });
54
61
  </script>
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.5",
7
+ "version": "1.1.7",
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.5",
17
- "@dative-gpi/foundation-core-services": "1.1.5",
18
- "@dative-gpi/foundation-shared-components": "1.1.5",
19
- "@dative-gpi/foundation-shared-domain": "1.1.5",
20
- "@dative-gpi/foundation-shared-services": "1.1.5"
16
+ "@dative-gpi/foundation-core-domain": "1.1.7",
17
+ "@dative-gpi/foundation-core-services": "1.1.7",
18
+ "@dative-gpi/foundation-shared-components": "1.1.7",
19
+ "@dative-gpi/foundation-shared-domain": "1.1.7",
20
+ "@dative-gpi/foundation-shared-services": "1.1.7"
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": "6b5102bcda554056f4d0fa0fba7e5a5e8f24e91e"
32
+ "gitHead": "8bfcfdfce4573e79b5bbdb127f10622f4384bc50"
33
33
  }