@dative-gpi/foundation-shared-components 1.0.96 → 1.0.98

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.
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <FSCard
3
- padding="24px"
3
+ :padding="['24px', '16px', '16px 12px']"
4
4
  gap="24px"
5
5
  :class="$props.cardClasses"
6
6
  :color="$props.color"
@@ -1,8 +1,7 @@
1
1
  <template>
2
- <FSClickable
2
+ <FSTile
3
3
  :width="['275px','336px']"
4
4
  :height="['124px','156px']"
5
- padding="16px 16px 16px 20px"
6
5
  borderRadius="8px"
7
6
  v-bind="$attrs"
8
7
  >
@@ -11,11 +10,13 @@
11
10
  >
12
11
  <FSRow
13
12
  align="center-left"
13
+ padding="4px 4px 4px 8px"
14
14
  gap="16px"
15
15
  :wrap="false"
16
16
  >
17
17
  <FSCol
18
18
  align="center-left"
19
+ gap="4px"
19
20
  >
20
21
  <FSSpan
21
22
  font="text-overline"
@@ -36,19 +37,19 @@
36
37
  >
37
38
  <FSImage
38
39
  v-if="$props.imageId"
39
- height="82px"
40
- width="82px"
40
+ :height="['82px','90px']"
41
+ :width="['82px','90px']"
41
42
  :imageId="$props.imageId"
42
43
  />
43
44
  <FSIcon
44
45
  v-else-if="$props.icon"
45
- size="82px"
46
+ :size="['82px','90px']"
46
47
  :icon="$props.icon"
47
48
  />
48
49
  </FSCol>
49
50
  </FSRow>
50
51
  </template>
51
- </FSClickable>
52
+ </FSTile>
52
53
  </template>
53
54
 
54
55
  <script lang="ts">
@@ -60,8 +61,8 @@ import { ChartType } from "@dative-gpi/foundation-shared-domain/enums";
60
61
 
61
62
  import { chartIcon } from "@dative-gpi/foundation-shared-components/tools";
62
63
 
63
- import FSClickable from "../FSClickable.vue";
64
64
  import FSImage from "../FSImage.vue";
65
+ import FSTile from "./FSTile.vue";
65
66
  import FSSpan from "../FSSpan.vue";
66
67
  import FSIcon from "../FSIcon.vue";
67
68
  import FSRow from "../FSRow.vue";
@@ -71,8 +72,8 @@ import FSCol from "../FSCol.vue";
71
72
  export default defineComponent({
72
73
  name: "FSChartTileUI",
73
74
  components: {
74
- FSClickable,
75
75
  FSImage,
76
+ FSTile,
76
77
  FSIcon,
77
78
  FSRow,
78
79
  FSCol,
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.96",
4
+ "version": "1.0.98",
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.96",
14
- "@dative-gpi/foundation-shared-services": "1.0.96"
13
+ "@dative-gpi/foundation-shared-domain": "1.0.98",
14
+ "@dative-gpi/foundation-shared-services": "1.0.98"
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": "208043509258652b856a824d62a2a91e98328007"
38
+ "gitHead": "60b65d11d149e5d595a74b5cc82d99aee1e6963d"
39
39
  }