mirror of https://github.com/sveltejs/svelte
Merge pull request #3242 from umanghome/v3-class-deps-fix
[v3] Fix issue where class directives wouldn't work with spread props and class proppull/3219/head
commit
15c57e1248
@ -0,0 +1,21 @@
|
||||
export default {
|
||||
props: {
|
||||
myClass: 'one two',
|
||||
attributes: {
|
||||
role: 'button'
|
||||
}
|
||||
},
|
||||
|
||||
html: `<div class="one two three" role="button"></div>`,
|
||||
|
||||
test({ assert, component, target, window }) {
|
||||
component.myClass = 'one';
|
||||
component.attributes = {
|
||||
'aria-label': 'Test'
|
||||
};
|
||||
|
||||
assert.htmlEqual(target.innerHTML, `
|
||||
<div class="one three" aria-label="Test"></div>
|
||||
`);
|
||||
}
|
||||
};
|
@ -0,0 +1,6 @@
|
||||
<script>
|
||||
export let myClass;
|
||||
export let attributes = {};
|
||||
</script>
|
||||
|
||||
<div class={myClass} class:three={true} {...attributes}></div>
|
@ -0,0 +1,21 @@
|
||||
export default {
|
||||
props: {
|
||||
myClass: 'one two',
|
||||
attributes: {
|
||||
role: 'button'
|
||||
}
|
||||
},
|
||||
|
||||
html: `<div class="one two" role="button"></div>`,
|
||||
|
||||
test({ assert, component, target, window }) {
|
||||
component.myClass = 'one';
|
||||
component.attributes = {
|
||||
'aria-label': 'Test'
|
||||
};
|
||||
|
||||
assert.htmlEqual(target.innerHTML, `
|
||||
<div class="one" aria-label="Test"></div>
|
||||
`);
|
||||
}
|
||||
};
|
@ -0,0 +1,6 @@
|
||||
<script>
|
||||
export let myClass;
|
||||
export let attributes = {};
|
||||
</script>
|
||||
|
||||
<div class={myClass} {...attributes}></div>
|
Loading…
Reference in new issue