@dative-gpi/foundation-shared-components 1.1.1 → 1.1.2-fix-dialog-menu

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,26 @@
11
11
  :class="classes"
12
12
  >
13
13
  <template
14
- v-for="(_, name) in $slots"
15
- v-slot:[name]="slotData"
14
+ #default="slotData"
16
15
  >
17
16
  <slot
18
- :name="name"
17
+ v-if="$slots.body"
18
+ name="body"
19
19
  v-bind="slotData"
20
20
  />
21
+ <slot
22
+ v-else
23
+ name="default"
24
+ v-bind="slotData"
25
+ />
26
+ </template>
27
+ <template
28
+ v-if="$slots['top-right']"
29
+ #top-right
30
+ >
31
+ <slot
32
+ name="top-right"
33
+ />
21
34
  </template>
22
35
  </FSCard>
23
36
  </v-dialog>
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.1",
7
+ "version": "1.1.2-fix-dialog-menu",
8
8
  "description": "",
9
9
  "publishConfig": {
10
10
  "access": "public"
@@ -13,8 +13,8 @@
13
13
  "author": "",
14
14
  "license": "ISC",
15
15
  "dependencies": {
16
- "@dative-gpi/foundation-shared-domain": "1.1.1",
17
- "@dative-gpi/foundation-shared-services": "1.1.1"
16
+ "@dative-gpi/foundation-shared-domain": "1.1.2-fix-dialog-menu",
17
+ "@dative-gpi/foundation-shared-services": "1.1.2-fix-dialog-menu"
18
18
  },
19
19
  "peerDependencies": {
20
20
  "@dative-gpi/bones-ui": "^1.0.0",
@@ -38,5 +38,5 @@
38
38
  "sass": "1.71.1",
39
39
  "sass-loader": "13.3.2"
40
40
  },
41
- "gitHead": "e216573a785fa74dba8daac116173fcdd42311c8"
41
+ "gitHead": "8e2aaaa5517eef8d6488fe114d9dbd782a91d13d"
42
42
  }