We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0987ca commit c6df907Copy full SHA for c6df907
packages/list/List.svelte
@@ -87,11 +87,25 @@
87
export let singleSelection = false;
88
export let selectedIndex = null;
89
export let radioList = false;
90
- export { radioList as radiolist };
91
export let checkList = false;
92
- export { checkList as checklist };
93
export let hasTypeahead = false;
94
+ /**
+ * @deprecated
95
+ */
96
+ export let radiolist = false;
97
+ if (radiolist) {
98
+ radioList = true;
99
+ }
100
+
101
102
103
104
+ export let checklist = false;
105
+ if (checklist) {
106
+ checkList = true;
107
108
109
$: props = exclude($$props, [
110
'use',
111
'class',
0 commit comments