@iroco/ui 1.0.0-3 → 1.0.0-5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/README.md +9 -14
  2. package/dist/Alert.stories.svelte +32 -0
  3. package/dist/Alert.stories.svelte.d.ts +37 -0
  4. package/dist/Alert.svelte +8 -52
  5. package/dist/Button.stories.svelte +4 -3
  6. package/dist/Button.stories.svelte.d.ts +6 -3
  7. package/dist/Button.svelte +18 -63
  8. package/dist/DataTable.stories.svelte +31 -0
  9. package/dist/DataTable.stories.svelte.d.ts +29 -0
  10. package/dist/DataTable.svelte +3 -47
  11. package/dist/IconBurger.stories.svelte +30 -0
  12. package/dist/IconBurger.stories.svelte.d.ts +48 -0
  13. package/dist/IconClose.stories.svelte +30 -0
  14. package/dist/IconClose.stories.svelte.d.ts +48 -0
  15. package/dist/IconFloppyDisk.stories.svelte +33 -0
  16. package/dist/IconFloppyDisk.stories.svelte.d.ts +55 -0
  17. package/dist/IconInfo.stories.svelte +31 -0
  18. package/dist/IconInfo.stories.svelte.d.ts +50 -0
  19. package/dist/IconIrocoLogo.stories.svelte +34 -0
  20. package/dist/IconIrocoLogo.stories.svelte.d.ts +57 -0
  21. package/dist/IconMoreSign.stories.svelte +31 -0
  22. package/dist/IconMoreSign.stories.svelte.d.ts +50 -0
  23. package/dist/IconTrashCan.stories.svelte +31 -0
  24. package/dist/IconTrashCan.stories.svelte.d.ts +50 -0
  25. package/dist/IrocoLogo.stories.svelte +31 -0
  26. package/dist/IrocoLogo.stories.svelte.d.ts +50 -0
  27. package/dist/Loader.stories.svelte +19 -0
  28. package/dist/Loader.stories.svelte.d.ts +29 -0
  29. package/dist/NavBar.stories.svelte +37 -0
  30. package/dist/NavBar.stories.svelte.d.ts +37 -0
  31. package/dist/NavBar.svelte +27 -199
  32. package/dist/Navigation.stories.svelte +14 -15
  33. package/dist/Navigation.svelte +13 -90
  34. package/dist/NumberInput.stories.svelte +47 -0
  35. package/dist/NumberInput.stories.svelte.d.ts +77 -0
  36. package/dist/NumberInput.svelte +8 -52
  37. package/dist/RadioButton.stories.svelte +39 -0
  38. package/dist/RadioButton.stories.svelte.d.ts +56 -0
  39. package/dist/RadioButton.svelte +5 -50
  40. package/dist/RadioButton.svelte.d.ts +0 -2
  41. package/dist/TextInput.stories.svelte +77 -0
  42. package/dist/TextInput.stories.svelte.d.ts +111 -0
  43. package/dist/TextInput.svelte +9 -53
  44. package/dist/scss/button.scss +18 -18
  45. package/dist/scss/colors.scss +68 -91
  46. package/dist/scss/fields/_checkbox.scss +3 -3
  47. package/dist/scss/fields/_input.scss +11 -12
  48. package/dist/scss/forms.scss +8 -8
  49. package/dist/scss/style.scss +1 -1
  50. package/package.json +4 -2
  51. package/dist/NumberInputSized.svelte +0 -4
  52. package/dist/NumberInputSized.svelte.d.ts +0 -14
  53. package/dist/TopBar.svelte +0 -0
  54. package/dist/TopBar.svelte.d.ts +0 -23
  55. package/dist/scss/check.scss +0 -48
  56. package/dist/scss/iroco.scss +0 -38
@@ -15,12 +15,12 @@ let showMenu = false;
15
15
 
16
16
  <div class="navigation--mobile">
17
17
  <div class="navigation--mobile__title-container">
18
- {#if title == null}
19
- <IrocoLogo {href} width="10em" height="10em" />
20
- {:else}
21
- <IconIrocoLogo {href} width="3em" height="3em" {color} />
22
- <h1><a {href} class="navigation-mobile__title-link">{title}</a></h1>
23
- {/if}
18
+ {#if title == null}
19
+ <IrocoLogo {href} width="10em" height="10em" />
20
+ {:else}
21
+ <IconIrocoLogo {href} width="3em" height="3em" {color} />
22
+ <h1><a {href} class="navigation-mobile__title-link">{title}</a></h1>
23
+ {/if}
24
24
  </div>
25
25
 
26
26
  <button title="Menu button" on:click={() => (showMenu = true)} class="navigation--mobile__button">
@@ -50,112 +50,58 @@ let showMenu = false;
50
50
  <NavBar {navigationItems} {type} {version} />
51
51
  </div>
52
52
 
53
- <style>.font-color-blue {
54
- color: #00b9ff;
55
- }
56
-
57
- .font-color-darkBlue {
58
- color: #211d28;
59
- }
60
-
61
- .font-color-nightBlue {
62
- color: #18151e;
63
- }
64
-
65
- .font-color-green {
66
- color: #00d692;
67
- }
68
-
69
- .font-color-red {
70
- color: #ff504d;
71
- }
72
-
73
- .font-color-yellow {
74
- color: #ffe032;
75
- }
76
-
77
- .font-color-beige {
78
- color: #f2ebe3;
79
- }
80
-
81
- .font-color-darkBeige {
82
- color: #a9a29e;
83
- }
84
-
85
- .font-color-mediumGrey {
86
- color: #464452;
87
- }
88
-
89
- .font-color-darkGrey {
90
- color: #33323a;
91
- }
92
-
93
- .font-color-lightGrey {
94
- color: #f5f5f5;
95
- }
96
-
97
- .container-wide {
53
+ <style>.container-wide {
98
54
  width: calc(100% - 20px);
99
55
  max-width: 2360px;
100
56
  margin-left: auto;
101
57
  margin-right: auto;
102
58
  transition: max-width ease-out 200ms;
103
59
  }
104
-
105
60
  @media all and (max-width: 2560px) {
106
61
  .container-wide {
107
62
  max-width: 1620px;
108
63
  }
109
64
  }
110
-
111
65
  @media all and (max-width: 1800px) {
112
66
  .container-wide {
113
67
  max-width: 1280px;
114
68
  }
115
69
  }
116
-
117
70
  @media all and (max-width: 1440px) {
118
71
  .container-wide {
119
72
  max-width: 884px;
120
73
  }
121
74
  }
122
-
123
75
  @media all and (max-width: 1024px) {
124
76
  .container-wide {
125
77
  max-width: 648px;
126
78
  }
127
79
  }
128
-
129
80
  @media all and (max-width: 768px) {
130
81
  .container-wide {
131
82
  max-width: 496px;
132
83
  }
133
84
  }
134
-
135
85
  @media all and (max-width: 596px) {
136
86
  .container-wide {
137
87
  max-width: 365px;
138
88
  }
139
89
  }
140
-
141
90
  @media all and (max-width: 425px) {
142
91
  .container-wide {
143
92
  max-width: calc(100% - 60px);
144
93
  }
145
94
  }
146
-
147
95
  @media all and (max-width: 375px) {
148
96
  .container-wide {
149
97
  max-width: calc(100% - 40px);
150
98
  }
151
99
  }
152
-
153
100
  @media all and (max-width: 320px) {
154
101
  .container-wide {
155
102
  max-width: calc(100% - 20px);
156
103
  }
157
104
  }
158
-
159
105
  .container-large {
160
106
  width: calc(100% - 20px);
161
107
  max-width: 1280px;
@@ -163,49 +109,41 @@ let showMenu = false;
163
109
  margin-right: auto;
164
110
  transition: max-width ease-out 200ms;
165
111
  }
166
-
167
112
  @media all and (max-width: 1440px) {
168
113
  .container-large {
169
114
  max-width: 884px;
170
115
  }
171
116
  }
172
-
173
117
  @media all and (max-width: 1024px) {
174
118
  .container-large {
175
119
  max-width: 648px;
176
120
  }
177
121
  }
178
-
179
122
  @media all and (max-width: 768px) {
180
123
  .container-large {
181
124
  max-width: 496px;
182
125
  }
183
126
  }
184
-
185
127
  @media all and (max-width: 596px) {
186
128
  .container-large {
187
129
  max-width: 365px;
188
130
  }
189
131
  }
190
-
191
132
  @media all and (max-width: 425px) {
192
133
  .container-large {
193
134
  max-width: calc(100% - 60px);
194
135
  }
195
136
  }
196
-
197
137
  @media all and (max-width: 375px) {
198
138
  .container-large {
199
139
  max-width: calc(100% - 40px);
200
140
  }
201
141
  }
202
-
203
142
  @media all and (max-width: 320px) {
204
143
  .container-large {
205
144
  max-width: calc(100% - 20px);
206
145
  }
207
146
  }
208
-
209
147
  .container-medium {
210
148
  width: calc(100% - 20px);
211
149
  max-width: 884px;
@@ -213,43 +151,36 @@ let showMenu = false;
213
151
  margin-right: auto;
214
152
  transition: max-width ease-out 200ms;
215
153
  }
216
-
217
154
  @media all and (max-width: 1024px) {
218
155
  .container-medium {
219
156
  max-width: 648px;
220
157
  }
221
158
  }
222
-
223
159
  @media all and (max-width: 768px) {
224
160
  .container-medium {
225
161
  max-width: 496px;
226
162
  }
227
163
  }
228
-
229
164
  @media all and (max-width: 596px) {
230
165
  .container-medium {
231
166
  max-width: 365px;
232
167
  }
233
168
  }
234
-
235
169
  @media all and (max-width: 425px) {
236
170
  .container-medium {
237
171
  max-width: calc(100% - 60px);
238
172
  }
239
173
  }
240
-
241
174
  @media all and (max-width: 375px) {
242
175
  .container-medium {
243
176
  max-width: calc(100% - 40px);
244
177
  }
245
178
  }
246
-
247
179
  @media all and (max-width: 320px) {
248
180
  .container-medium {
249
181
  max-width: calc(100% - 20px);
250
182
  }
251
183
  }
252
-
253
184
  .container-small {
254
185
  width: calc(100% - 20px);
255
186
  max-width: 496px;
@@ -257,25 +188,21 @@ let showMenu = false;
257
188
  margin-right: auto;
258
189
  transition: max-width ease-out 200ms;
259
190
  }
260
-
261
191
  @media all and (max-width: 425px) {
262
192
  .container-small {
263
193
  max-width: calc(100% - 60px);
264
194
  }
265
195
  }
266
-
267
196
  @media all and (max-width: 375px) {
268
197
  .container-small {
269
198
  max-width: calc(100% - 40px);
270
199
  }
271
200
  }
272
-
273
201
  @media all and (max-width: 320px) {
274
202
  .container-small {
275
203
  max-width: calc(100% - 20px);
276
204
  }
277
205
  }
278
-
279
206
  .navigation {
280
207
  display: flex;
281
208
  flex-direction: row;
@@ -283,25 +210,21 @@ let showMenu = false;
283
210
  align-items: center;
284
211
  width: 100%;
285
212
  }
286
-
287
213
  .navigation--mobile {
288
214
  display: none;
289
215
  }
290
-
291
216
  .navigation__title-container {
292
217
  display: flex;
293
218
  align-items: center;
294
219
  padding-left: 1em;
295
220
  }
296
-
297
221
  .navigation__title-container h1 {
298
222
  padding-left: 1em;
299
223
  }
300
-
301
224
  @media all and (max-width: 768px) {
302
225
  .navigation {
303
226
  display: none;
304
- color: #f2ebe3;
227
+ color: var(--color-text);
305
228
  }
306
229
  .navigation--mobile {
307
230
  display: flex;
@@ -311,7 +234,7 @@ let showMenu = false;
311
234
  top: 0;
312
235
  z-index: 1;
313
236
  width: 100%;
314
- border-bottom: 1px solid #464452;
237
+ border-bottom: 1px solid var(--color-border);
315
238
  }
316
239
  .navigation--mobile h1 {
317
240
  font-size: 2em;
@@ -319,7 +242,7 @@ let showMenu = false;
319
242
  .navigation--mobile__button {
320
243
  background-color: transparent;
321
244
  border: none;
322
- color: #a9a29e;
245
+ color: var(--color-icon-primary);
323
246
  }
324
247
  .navigation--mobile__title-container {
325
248
  display: flex;
@@ -329,7 +252,7 @@ let showMenu = false;
329
252
  padding-left: 0.5em;
330
253
  }
331
254
  }
332
-
333
- .navigation__title-link, .navigation-mobile__title-link {
334
- color: #ffffff;
255
+ .navigation__title-link,
256
+ .navigation-mobile__title-link {
257
+ color: var(--color-text-light);
335
258
  }</style>
@@ -0,0 +1,47 @@
1
+ <script context="module">
2
+ import { NumberInput } from './index';
3
+
4
+ export const meta = {
5
+ title: 'Iroco-UI/Form/NumberInput',
6
+ component: NumberInput,
7
+ argTypes: {
8
+ id: {
9
+ control: { type: 'text' }
10
+ },
11
+ label: {
12
+ control: { type: 'text' }
13
+ },
14
+ placeholder: {
15
+ control: { type: 'text' }
16
+ },
17
+ error: {
18
+ control: { type: 'text' }
19
+ },
20
+ value: {
21
+ control: { type: 'number' }
22
+ },
23
+ min: {
24
+ control: { type: 'number' }
25
+ },
26
+ max: {
27
+ control: { type: 'number' }
28
+ }
29
+ }
30
+ };
31
+ </script>
32
+
33
+ <script>
34
+ import { Story, Template } from '@storybook/addon-svelte-csf';
35
+ </script>
36
+
37
+ <Template let:args>
38
+ <form class="iroco-ui-form">
39
+ <NumberInput {...args} />
40
+ </form>
41
+ </Template>
42
+
43
+ <Story name="Default" />
44
+ <Story name="Label" args={{ label: 'Label' }} />
45
+ <Story name="Error" args={{ error: 'An error message' }} />
46
+ <Story name="Placeholder" args={{ placeholder: 'A placeholder' }} />
47
+ <Story name="Min / Max" args={{ min: 0, max: 10, value: 5 }} />
@@ -0,0 +1,77 @@
1
+ export namespace meta {
2
+ export let title: string;
3
+ export { NumberInput as component };
4
+ export namespace argTypes {
5
+ namespace id {
6
+ namespace control {
7
+ let type: string;
8
+ }
9
+ }
10
+ namespace label {
11
+ export namespace control_1 {
12
+ let type_1: string;
13
+ export { type_1 as type };
14
+ }
15
+ export { control_1 as control };
16
+ }
17
+ namespace placeholder {
18
+ export namespace control_2 {
19
+ let type_2: string;
20
+ export { type_2 as type };
21
+ }
22
+ export { control_2 as control };
23
+ }
24
+ namespace error {
25
+ export namespace control_3 {
26
+ let type_3: string;
27
+ export { type_3 as type };
28
+ }
29
+ export { control_3 as control };
30
+ }
31
+ namespace value {
32
+ export namespace control_4 {
33
+ let type_4: string;
34
+ export { type_4 as type };
35
+ }
36
+ export { control_4 as control };
37
+ }
38
+ namespace min {
39
+ export namespace control_5 {
40
+ let type_5: string;
41
+ export { type_5 as type };
42
+ }
43
+ export { control_5 as control };
44
+ }
45
+ namespace max {
46
+ export namespace control_6 {
47
+ let type_6: string;
48
+ export { type_6 as type };
49
+ }
50
+ export { control_6 as control };
51
+ }
52
+ }
53
+ }
54
+ /** @typedef {typeof __propDef.props} NumberInputProps */
55
+ /** @typedef {typeof __propDef.events} NumberInputEvents */
56
+ /** @typedef {typeof __propDef.slots} NumberInputSlots */
57
+ export default class NumberInput extends SvelteComponent<{
58
+ [x: string]: never;
59
+ }, {
60
+ [evt: string]: CustomEvent<any>;
61
+ }, {}> {
62
+ }
63
+ export type NumberInputProps = typeof __propDef.props;
64
+ export type NumberInputEvents = typeof __propDef.events;
65
+ export type NumberInputSlots = typeof __propDef.slots;
66
+ import { NumberInput } from './index';
67
+ import { SvelteComponent } from "svelte";
68
+ declare const __propDef: {
69
+ props: {
70
+ [x: string]: never;
71
+ };
72
+ events: {
73
+ [evt: string]: CustomEvent<any>;
74
+ };
75
+ slots: {};
76
+ };
77
+ export {};
@@ -17,51 +17,7 @@ export let max;
17
17
  {/if}
18
18
  </div>
19
19
 
20
- <style>.font-color-blue {
21
- color: #00b9ff;
22
- }
23
-
24
- .font-color-darkBlue {
25
- color: #211d28;
26
- }
27
-
28
- .font-color-nightBlue {
29
- color: #18151e;
30
- }
31
-
32
- .font-color-green {
33
- color: #00d692;
34
- }
35
-
36
- .font-color-red {
37
- color: #ff504d;
38
- }
39
-
40
- .font-color-yellow {
41
- color: #ffe032;
42
- }
43
-
44
- .font-color-beige {
45
- color: #f2ebe3;
46
- }
47
-
48
- .font-color-darkBeige {
49
- color: #a9a29e;
50
- }
51
-
52
- .font-color-mediumGrey {
53
- color: #464452;
54
- }
55
-
56
- .font-color-darkGrey {
57
- color: #33323a;
58
- }
59
-
60
- .font-color-lightGrey {
61
- color: #f5f5f5;
62
- }
63
-
64
- .iroco-ui-form input,
20
+ <style>.iroco-ui-form input,
65
21
  .iroco-ui-form textarea {
66
22
  outline: none;
67
23
  text-decoration: none;
@@ -72,9 +28,9 @@ export let max;
72
28
  flex-direction: column;
73
29
  }
74
30
  .iroco-ui-form .iroco-ui-input > input {
75
- color: #f2ebe3;
76
- background: #211d28;
77
- border: 1px solid #464452;
31
+ color: var(--color-text);
32
+ background: var(--color-body);
33
+ border: 1px solid var(--color-border);
78
34
  padding: 1em 1.5em;
79
35
  text-overflow: ellipsis;
80
36
  white-space: nowrap;
@@ -82,16 +38,16 @@ export let max;
82
38
  border-radius: 0.5em;
83
39
  }
84
40
  .iroco-ui-form .iroco-ui-input > input::placeholder {
85
- color: rgba(242, 235, 227, 0.5);
41
+ color: var(--color-text-op-50);
86
42
  }
87
43
  .iroco-ui-form .iroco-ui-input > input.error {
88
- border-color: #ff504d;
44
+ border-color: var(--color-danger);
89
45
  }
90
46
  .iroco-ui-form .iroco-ui-input > input.readonlyInput {
91
47
  cursor: not-allowed;
92
48
  }
93
49
  .iroco-ui-form .iroco-ui-label {
94
- color: rgba(242, 235, 227, 0.6);
50
+ color: var(--color-text-op-60);
95
51
  font-weight: bold;
96
52
  padding-bottom: 10px;
97
53
  display: inline-block;
@@ -107,5 +63,5 @@ export let max;
107
63
  }
108
64
  .iroco-ui-form p.error {
109
65
  margin: 0;
110
- color: #ff504d;
66
+ color: var(--color-danger);
111
67
  }</style>
@@ -0,0 +1,39 @@
1
+ <script context="module">
2
+ import { RadioButton } from './index';
3
+
4
+ export const meta = {
5
+ title: 'Iroco-UI/Form/RadioButton',
6
+ component: RadioButton,
7
+ argTypes: {
8
+ value: {
9
+ control: { type: 'string' }
10
+ },
11
+ group: {
12
+ control: { type: 'string' }
13
+ },
14
+ name: {
15
+ control: { type: 'string' }
16
+ },
17
+ checked: {
18
+ control: { type: 'boolean' }
19
+ }
20
+ }
21
+ };
22
+ </script>
23
+
24
+ <script>
25
+ import { Story, Template } from '@storybook/addon-svelte-csf';
26
+
27
+ let group = 'bar';
28
+ </script>
29
+
30
+ <Template let:args>
31
+ <form class="iroco-ui-form">
32
+ <RadioButton bind:group name="name-hello" value="hello" {...args}>Hello</RadioButton>
33
+ <RadioButton bind:group name="name-foo" value="foo">Foo</RadioButton>
34
+ <RadioButton bind:group name="name-bar" value="bar">Bar</RadioButton>
35
+ </form>
36
+ Selected group : {group}
37
+ </Template>
38
+
39
+ <Story name="Default" />
@@ -0,0 +1,56 @@
1
+ export namespace meta {
2
+ export let title: string;
3
+ export { RadioButton as component };
4
+ export namespace argTypes {
5
+ namespace value {
6
+ namespace control {
7
+ let type: string;
8
+ }
9
+ }
10
+ namespace group {
11
+ export namespace control_1 {
12
+ let type_1: string;
13
+ export { type_1 as type };
14
+ }
15
+ export { control_1 as control };
16
+ }
17
+ namespace name {
18
+ export namespace control_2 {
19
+ let type_2: string;
20
+ export { type_2 as type };
21
+ }
22
+ export { control_2 as control };
23
+ }
24
+ namespace checked {
25
+ export namespace control_3 {
26
+ let type_3: string;
27
+ export { type_3 as type };
28
+ }
29
+ export { control_3 as control };
30
+ }
31
+ }
32
+ }
33
+ /** @typedef {typeof __propDef.props} RadioButtonProps */
34
+ /** @typedef {typeof __propDef.events} RadioButtonEvents */
35
+ /** @typedef {typeof __propDef.slots} RadioButtonSlots */
36
+ export default class RadioButton extends SvelteComponent<{
37
+ [x: string]: never;
38
+ }, {
39
+ [evt: string]: CustomEvent<any>;
40
+ }, {}> {
41
+ }
42
+ export type RadioButtonProps = typeof __propDef.props;
43
+ export type RadioButtonEvents = typeof __propDef.events;
44
+ export type RadioButtonSlots = typeof __propDef.slots;
45
+ import { RadioButton } from './index';
46
+ import { SvelteComponent } from "svelte";
47
+ declare const __propDef: {
48
+ props: {
49
+ [x: string]: never;
50
+ };
51
+ events: {
52
+ [evt: string]: CustomEvent<any>;
53
+ };
54
+ slots: {};
55
+ };
56
+ export {};
@@ -1,5 +1,4 @@
1
- <script>export const label = "";
2
- export let value;
1
+ <script>export let value;
3
2
  export let group = null;
4
3
  export let name;
5
4
  export let checked;
@@ -16,52 +15,8 @@ $:
16
15
  <slot />
17
16
  </label>
18
17
 
19
- <style>.font-color-blue {
20
- color: #00b9ff;
21
- }
22
-
23
- .font-color-darkBlue {
24
- color: #211d28;
25
- }
26
-
27
- .font-color-nightBlue {
28
- color: #18151e;
29
- }
30
-
31
- .font-color-green {
32
- color: #00d692;
33
- }
34
-
35
- .font-color-red {
36
- color: #ff504d;
37
- }
38
-
39
- .font-color-yellow {
40
- color: #ffe032;
41
- }
42
-
43
- .font-color-beige {
44
- color: #f2ebe3;
45
- }
46
-
47
- .font-color-darkBeige {
48
- color: #a9a29e;
49
- }
50
-
51
- .font-color-mediumGrey {
52
- color: #464452;
53
- }
54
-
55
- .font-color-darkGrey {
56
- color: #33323a;
57
- }
58
-
59
- .font-color-lightGrey {
60
- color: #f5f5f5;
61
- }
62
-
63
- .iroco-ui-radio {
64
- color: #f2ebe3;
18
+ <style>.iroco-ui-radio {
19
+ color: var(--color-text);
65
20
  position: relative;
66
21
  margin-top: 0.5em;
67
22
  padding-left: 1.5em;
@@ -84,10 +39,10 @@ $:
84
39
  left: 0;
85
40
  height: 1em;
86
41
  width: 1em;
87
- background-color: #f2ebe3;
42
+ background-color: var(--form-element-bg);
88
43
  border-radius: 50%;
89
44
  }
90
45
 
91
46
  .iroco-ui-radio input:checked ~ .radio-button-color {
92
- background-color: #00d692;
47
+ background-color: var(--color-primary);
93
48
  }</style>
@@ -1,7 +1,6 @@
1
1
  import { SvelteComponent } from "svelte";
2
2
  declare const __propDef: {
3
3
  props: {
4
- label?: "" | undefined;
5
4
  value: string | null;
6
5
  group?: string | null | undefined;
7
6
  name: string | null;
@@ -18,6 +17,5 @@ export type RadioButtonProps = typeof __propDef.props;
18
17
  export type RadioButtonEvents = typeof __propDef.events;
19
18
  export type RadioButtonSlots = typeof __propDef.slots;
20
19
  export default class RadioButton extends SvelteComponent<RadioButtonProps, RadioButtonEvents, RadioButtonSlots> {
21
- get label(): "";
22
20
  }
23
21
  export {};