@dative-gpi/foundation-shared-components 0.0.227 → 0.0.229

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.
@@ -10,14 +10,7 @@
10
10
  @update:modelValue="$emit('update:tab', $event)"
11
11
  v-bind="$attrs"
12
12
  >
13
- <template
14
- v-for="(component, index) in getChildren()"
15
- :key="index"
16
- >
17
- <component
18
- :is="component"
19
- />
20
- </template>
13
+ <slot/>
21
14
  </v-tabs>
22
15
  </template>
23
16
 
@@ -25,7 +18,7 @@
25
18
  import type { PropType } from "vue";
26
19
  import { computed, defineComponent } from "vue";
27
20
 
28
- import { useColors, useSlots } from "@dative-gpi/foundation-shared-components/composables";
21
+ import { useColors } from "@dative-gpi/foundation-shared-components/composables";
29
22
  import type { ColorBase} from "@dative-gpi/foundation-shared-components/models";
30
23
  import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
31
24
 
@@ -44,7 +37,6 @@ export default defineComponent({
44
37
  }
45
38
  },
46
39
  setup(props) {
47
- const { getChildren } = useSlots();
48
40
  const { getColors } = useColors();
49
41
 
50
42
  const colors = computed(() => getColors(props.color));
@@ -62,8 +54,7 @@ export default defineComponent({
62
54
  }));
63
55
 
64
56
  return {
65
- style,
66
- getChildren
57
+ style
67
58
  };
68
59
  }
69
60
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dative-gpi/foundation-shared-components",
3
3
  "sideEffects": false,
4
- "version": "0.0.227",
4
+ "version": "0.0.229",
5
5
  "description": "",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -10,8 +10,8 @@
10
10
  "author": "",
11
11
  "license": "ISC",
12
12
  "dependencies": {
13
- "@dative-gpi/foundation-shared-domain": "0.0.227",
14
- "@dative-gpi/foundation-shared-services": "0.0.227"
13
+ "@dative-gpi/foundation-shared-domain": "0.0.229",
14
+ "@dative-gpi/foundation-shared-services": "0.0.229"
15
15
  },
16
16
  "peerDependencies": {
17
17
  "@dative-gpi/bones-ui": "^0.0.75",
@@ -35,5 +35,5 @@
35
35
  "sass": "1.71.1",
36
36
  "sass-loader": "13.3.2"
37
37
  },
38
- "gitHead": "7447614dcabf82822076a6ef4e221de23f996ecb"
38
+ "gitHead": "d737aab8ca46f10f6d92c24cb01fa55a65488198"
39
39
  }