Skip to content

Commit e8f59f9

Browse files
committed
format
1 parent 9f2d44d commit e8f59f9

File tree

2 files changed

+24
-6
lines changed

2 files changed

+24
-6
lines changed

apps/svelte.dev/src/routes/docs/component-directives/+page.svelte

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
import RemovedPage from '../RemovedPage.svelte';
33
44
const docs = new Map([
5-
['on-eventname ', ['on:eventname', '/docs/svelte/v5-migration-guide#Event-changes-Component-events']],
5+
[
6+
'on-eventname ',
7+
['on:eventname', '/docs/svelte/v5-migration-guide#Event-changes-Component-events']
8+
],
69
['style-props', ['--style-props', '/docs/svelte/custom-properties']],
710
['bind-property ', ['bind:property', '/docs/svelte/bind#bind:property-for-components']],
811
['bind-this ', ['bind:this', '/docs/svelte/bind#bind:this']]

apps/svelte.dev/src/routes/docs/element-directives/+page.svelte

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,35 @@
77
['binding-select-value ', ['Binding <select> value', '/docs/svelte/bind#select-bind:value']],
88
['media-element-bindings ', ['Media element bindings', '/docs/svelte/bind#audio']],
99
['image-element-bindings ', ['Image element bindings', '/docs/svelte/bind#img']],
10-
['block-level-element-bindings ', ['Block-level element bindings', '/docs/svelte/bind#Dimensions']],
10+
[
11+
'block-level-element-bindings ',
12+
['Block-level element bindings', '/docs/svelte/bind#Dimensions']
13+
],
1114
['bind-group ', ['bind:group', '/docs/svelte/bind#input-bind:group']],
1215
['bind-this ', ['bind:this', '/docs/svelte/bind#bind:this']],
1316
['class-name ', ['class:name', '/docs/svelte/class']],
1417
['style-property ', ['style:property', '/docs/svelte/style']],
1518
['use-action', ['use:action', '/docs/svelte/use']],
1619
['transition-fn ', ['transition:fn', '/docs/svelte/transition']],
17-
['transition-parameters ', ['Transition parameters', '/docs/svelte/transition#Transition-parameters']],
18-
['custom-transition-functions ', ['Custom transition functions', '/docs/svelte/transition#Custom-transition-functions']],
20+
[
21+
'transition-parameters ',
22+
['Transition parameters', '/docs/svelte/transition#Transition-parameters']
23+
],
24+
[
25+
'custom-transition-functions ',
26+
['Custom transition functions', '/docs/svelte/transition#Custom-transition-functions']
27+
],
1928
['transition-events ', ['Transition events', '/docs/svelte/transition#Transition-events']],
2029
['in-fn-out-fn ', ['in:fn/out:fn', '/docs/svelte/in-and-out']],
2130
['animate-fn ', ['animate:fn', '/docs/svelte/animate']],
22-
['animation-parameters ', ['Animation Parameters', '/docs/svelte/animate#Animation-Parameters']],
23-
['custom-animation-functions ', ['Custom animation functions', '/docs/svelte/animate#Custom-animation-functions']]
31+
[
32+
'animation-parameters ',
33+
['Animation Parameters', '/docs/svelte/animate#Animation-Parameters']
34+
],
35+
[
36+
'custom-animation-functions ',
37+
['Custom animation functions', '/docs/svelte/animate#Custom-animation-functions']
38+
]
2439
]);
2540
</script>
2641

0 commit comments

Comments
 (0)