@dative-gpi/foundation-shared-components 1.0.76 → 1.0.77

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.
@@ -11,13 +11,21 @@
11
11
  gap="24px"
12
12
  :wrap="false"
13
13
  >
14
- <FSImage
14
+ <template
15
15
  v-if="$props.imageId"
16
- :imageId="$props.imageId"
17
- :cover="$props.imageCover"
18
- :height="actualImageSize"
19
- :width="actualImageSize"
20
- />
16
+ >
17
+ <slot
18
+ name="image"
19
+ v-bind="{ actualImageSize }"
20
+ >
21
+ <FSImage
22
+ :imageId="$props.imageId"
23
+ :cover="$props.imageCover"
24
+ :height="actualImageSize"
25
+ :width="actualImageSize"
26
+ />
27
+ </slot>
28
+ </template>
21
29
  <FSIconCard
22
30
  v-else-if="$props.icon"
23
31
  :backgroundVariant="$props.iconBackgroundVariant"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dative-gpi/foundation-shared-components",
3
3
  "sideEffects": false,
4
- "version": "1.0.76",
4
+ "version": "1.0.77",
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": "1.0.76",
14
- "@dative-gpi/foundation-shared-services": "1.0.76"
13
+ "@dative-gpi/foundation-shared-domain": "1.0.77",
14
+ "@dative-gpi/foundation-shared-services": "1.0.77"
15
15
  },
16
16
  "peerDependencies": {
17
17
  "@dative-gpi/bones-ui": "^1.0.0",
@@ -35,5 +35,5 @@
35
35
  "sass": "1.71.1",
36
36
  "sass-loader": "13.3.2"
37
37
  },
38
- "gitHead": "d75ff921b33a9a4774d0d92bafc2b40ce5d7089f"
38
+ "gitHead": "3be74f434b7a6822943ca595999198cfacdd582f"
39
39
  }
@@ -7,7 +7,6 @@
7
7
  background-color: var(--fs-clickable-background-color) !important;
8
8
  border-color: var(--fs-clickable-border-color) !important;
9
9
  color: var(--fs-clickable-color) !important;
10
- box-sizing: border-box;
11
10
 
12
11
  &.fs-clickable-disabled {
13
12
  cursor: default;
@@ -2,6 +2,8 @@
2
2
  height: var(--fs-group-height);
3
3
  width: var(--fs-group-width);
4
4
  max-width: 100%;
5
+ margin: -1px;
6
+ padding: 1px;
5
7
 
6
8
  & > .v-slide-group__container > .v-slide-group__content {
7
9
  // margin: 0 2px 1px 0 !important;
@@ -2,6 +2,8 @@
2
2
  height: var(--fs-group-height);
3
3
  width: var(--fs-group-width);
4
4
  max-width: 100%;
5
+ margin: -1px;
6
+ padding: 1px;
5
7
 
6
8
  & > .v-slide-group__container > .v-slide-group__content {
7
9
  padding: var(--fs-group-padding);