File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
packages/site/src/routes/demo/select Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 13
13
14
14
<Demo component ={Showcase } file =" select/_Showcase.svelte" />
15
15
16
+ <Demo component ={Keys } file =" select/_Keys.svelte" >
17
+ Using Keys
18
+ <svelte:fragment slot =" subtitle" >
19
+ If your options aren't strings, you must provide a <code >key</code > function
20
+ that converts them to unique strings, or the label may misbehave.
21
+ </svelte:fragment >
22
+ </Demo >
23
+
16
24
<Demo component ={Standard } file =" select/_Standard.svelte" >Standard</Demo >
17
25
18
26
<Demo component ={Filled } file =" select/_Filled.svelte" >Filled</Demo >
36
44
<Demo component ={ConditionalIcon } file =" select/_ConditionalIcon.svelte" >
37
45
Conditional icon
38
46
</Demo >
39
-
40
- <Demo component ={Objects } file =" select/_Objects.svelte" >Using Objects</Demo >
41
47
</section >
42
48
43
49
<script lang =" ts" >
44
50
import Demo from ' $lib/Demo.svelte' ;
45
51
46
52
import Showcase from ' ./_Showcase.svelte' ;
53
+ import Keys from ' ./_Keys.svelte' ;
47
54
import Standard from ' ./_Standard.svelte' ;
48
55
import Filled from ' ./_Filled.svelte' ;
49
56
import Outlined from ' ./_Outlined.svelte' ;
52
59
import Required from ' ./_Required.svelte' ;
53
60
import Disabled from ' ./_Disabled.svelte' ;
54
61
import ConditionalIcon from ' ./_ConditionalIcon.svelte' ;
55
- import Objects from ' ./_Objects.svelte' ;
56
62
</script >
57
63
58
64
<style >
File renamed without changes.
You can’t perform that action at this time.
0 commit comments