Skip to content
This repository was archived by the owner on Jan 27, 2025. It is now read-only.

Commit 66cebf0

Browse files
author
Pablo Veiga
authored
Merge pull request #352 from storyblok/bugfix/WORK-723-sb-group-button
fix(work-723): sbGroupButton fix component update when changing props
2 parents bc3d4c0 + 0e00192 commit 66cebf0

File tree

6 files changed

+31
-12
lines changed

6 files changed

+31
-12
lines changed

src/components/AvatarGroup/SbAvatarGroup.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export default {
4646
},
4747
},
4848
49-
emits: ['click'],
49+
emits: ['click', 'toggle-visible-dropdown'],
5050
5151
data() {
5252
return {

src/components/AvatarGroup/components/SbMoreAvatars.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export default {
5050
},
5151
},
5252
53-
emits: ['click'],
53+
emits: ['click', 'toggle-avatars-dropdown'],
5454
5555
data() {
5656
return {

src/components/Breadcrumbs/BreadcrumbItem.vue

+4-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,10 @@ export default {
5858
type: String,
5959
default: null,
6060
},
61-
to: [String, Object],
61+
to: {
62+
type: [String, Object],
63+
default: null,
64+
},
6265
replace: Boolean,
6366
},
6467

src/components/Breadcrumbs/BreadcrumbLink.vue

+20-5
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,30 @@ export default {
1717
type: String,
1818
default: null,
1919
},
20-
title: String,
21-
target: String,
20+
title: {
21+
type: String,
22+
default: '',
23+
},
24+
target: {
25+
type: String,
26+
default: '',
27+
},
2228
append: Boolean,
2329
disabled: Boolean,
2430
exact: Boolean,
25-
exactActiveClass: String,
31+
exactActiveClass: {
32+
type: String,
33+
default: '',
34+
},
2635
link: Boolean,
27-
href: String,
28-
to: [String, Object],
36+
href: {
37+
type: String,
38+
default: '',
39+
},
40+
to: {
41+
type: [String, Object],
42+
default: null,
43+
},
2944
replace: Boolean,
3045
},
3146

src/components/GroupButton/SbGroupButton.vue

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div class="sb-group-button" :class="activeClasses" v-bind="$attrs">
3-
<VNodes :vnodes="activeSlots" />
3+
<VNodes :vnodes="activeSlots()" />
44
</div>
55
</template>
66

@@ -25,9 +25,11 @@ export default {
2525
'sb-group-button--has-spaces': this.hasSpaces,
2626
}
2727
},
28+
},
29+
methods: {
2830
activeSlots() {
2931
const children = this.$slots.default && this.$slots.default()
30-
const chilrenWithProps = children
32+
return children
3133
.filter((b) => b.__v_isVNode)
3234
.map((button) => {
3335
button.props = {
@@ -36,8 +38,6 @@ export default {
3638
}
3739
return button
3840
})
39-
40-
return chilrenWithProps
4141
},
4242
},
4343
}

src/components/GroupButton/group-button.scss

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
&:not(&--has-spaces) {
1515
.sb-button {
16+
margin: 0;
1617
border-radius: 0;
1718
}
1819

0 commit comments

Comments
 (0)