mirror of https://github.com/sveltejs/svelte
commit
89e26a7bd9
@ -0,0 +1,8 @@
|
|||||||
|
[{
|
||||||
|
"message": "An element cannot have both an 'in' directive and a 'transition' directive",
|
||||||
|
"loc": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 12
|
||||||
|
},
|
||||||
|
"pos": 12
|
||||||
|
}]
|
@ -0,0 +1,10 @@
|
|||||||
|
<div in:foo transition:bar>...</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
transitions: {
|
||||||
|
foo,
|
||||||
|
bar
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -0,0 +1,8 @@
|
|||||||
|
[{
|
||||||
|
"message": "An element can only have one 'in' directive",
|
||||||
|
"loc": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 12
|
||||||
|
},
|
||||||
|
"pos": 12
|
||||||
|
}]
|
@ -0,0 +1,10 @@
|
|||||||
|
<div in:foo in:bar>...</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
transitions: {
|
||||||
|
foo,
|
||||||
|
bar
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -0,0 +1,8 @@
|
|||||||
|
[{
|
||||||
|
"message": "An element cannot have both an 'out' directive and a 'transition' directive",
|
||||||
|
"loc": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 13
|
||||||
|
},
|
||||||
|
"pos": 13
|
||||||
|
}]
|
@ -0,0 +1,10 @@
|
|||||||
|
<div out:foo transition:bar>...</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
transitions: {
|
||||||
|
foo,
|
||||||
|
bar
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -0,0 +1,8 @@
|
|||||||
|
[{
|
||||||
|
"message": "An element can only have one 'out' directive",
|
||||||
|
"loc": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 13
|
||||||
|
},
|
||||||
|
"pos": 13
|
||||||
|
}]
|
@ -0,0 +1,10 @@
|
|||||||
|
<div out:foo out:bar>...</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
transitions: {
|
||||||
|
foo,
|
||||||
|
bar
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -0,0 +1,8 @@
|
|||||||
|
[{
|
||||||
|
"message": "An element cannot have both a 'transition' directive and an 'in' directive",
|
||||||
|
"loc": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 20
|
||||||
|
},
|
||||||
|
"pos": 20
|
||||||
|
}]
|
@ -0,0 +1,10 @@
|
|||||||
|
<div transition:foo in:bar>...</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
transitions: {
|
||||||
|
foo,
|
||||||
|
bar
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -0,0 +1,8 @@
|
|||||||
|
[{
|
||||||
|
"message": "An element cannot have both a 'transition' directive and an 'out' directive",
|
||||||
|
"loc": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 20
|
||||||
|
},
|
||||||
|
"pos": 20
|
||||||
|
}]
|
@ -0,0 +1,10 @@
|
|||||||
|
<div transition:foo out:bar>...</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
transitions: {
|
||||||
|
foo,
|
||||||
|
bar
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -0,0 +1,8 @@
|
|||||||
|
[{
|
||||||
|
"message": "An element can only have one 'transition' directive",
|
||||||
|
"loc": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 20
|
||||||
|
},
|
||||||
|
"pos": 20
|
||||||
|
}]
|
@ -0,0 +1,10 @@
|
|||||||
|
<div transition:foo transition:bar>...</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
transitions: {
|
||||||
|
foo,
|
||||||
|
bar
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -0,0 +1,8 @@
|
|||||||
|
[{
|
||||||
|
"message": "Missing transition 'foo'",
|
||||||
|
"loc": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 5
|
||||||
|
},
|
||||||
|
"pos": 5
|
||||||
|
}]
|
@ -0,0 +1 @@
|
|||||||
|
<div in:foo>...</div>
|
Loading…
Reference in new issue