@ktjs/mui 0.24.2 → 0.24.4

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.
package/dist/index.d.ts CHANGED
@@ -8,6 +8,8 @@ interface KTMuiProps {
8
8
 
9
9
  type KTMaybeReactive<T> = T | KTReactive<T>;
10
10
 
11
+ type KTMuiAlertSeverity = 'error' | 'warning' | 'info' | 'success';
12
+ type KTMuiAlertVariant = 'standard' | 'filled' | 'outlined';
11
13
  interface KTMuiAlertProps extends KTMuiProps {
12
14
  children: NonNullable<KTMuiProps['children']>;
13
15
  /**
@@ -18,7 +20,7 @@ interface KTMuiAlertProps extends KTMuiProps {
18
20
  * - 'success': Green color, success icon.
19
21
  * @default 'info'
20
22
  */
21
- severity?: KTMaybeReactive$1<'error' | 'warning' | 'info' | 'success'>;
23
+ severity?: KTMaybeReactive$1<KTMuiAlertSeverity>;
22
24
  /**
23
25
  * The variant to use. It defines the style of the alert.
24
26
  * - 'standard': The default style of the alert.
@@ -26,7 +28,7 @@ interface KTMuiAlertProps extends KTMuiProps {
26
28
  * - 'outlined': An outlined version of the alert with a border.
27
29
  * @default 'standard'
28
30
  */
29
- variant?: KTMaybeReactive$1<'standard' | 'filled' | 'outlined'>;
31
+ variant?: KTMaybeReactive$1<KTMuiAlertVariant>;
30
32
  /**
31
33
  * The icon to display in the alert. It can be a custom icon or a boolean value.
32
34
  * - If `true`, the default icon based on the severity will be displayed.
@@ -47,16 +49,20 @@ interface KTMuiAlertProps extends KTMuiProps {
47
49
  }
48
50
  declare function Alert(props: KTMuiAlertProps): JSX.Element;
49
51
 
52
+ type KTMuiButtonVariant = 'contained' | 'outlined' | 'text';
53
+ type KTMuiButtonColor = 'primary' | 'secondary' | 'error' | 'warning' | 'info' | 'success';
54
+ type KTMuiButtonSize = 'small' | 'medium' | 'large';
55
+ type KTMuiButtonType = 'button' | 'submit' | 'reset';
50
56
  interface KTMuiButtonProps extends KTMuiProps {
51
- variant?: KTMaybeReactive<'contained' | 'outlined' | 'text'>;
52
- color?: KTMaybeReactive<'primary' | 'secondary' | 'error' | 'warning' | 'info' | 'success'>;
53
- size?: KTMaybeReactive<'small' | 'medium' | 'large'>;
57
+ variant?: KTMaybeReactive<KTMuiButtonVariant>;
58
+ color?: KTMaybeReactive<KTMuiButtonColor>;
59
+ size?: KTMaybeReactive<KTMuiButtonSize>;
54
60
  disabled?: KTMaybeReactive<boolean>;
55
61
  fullWidth?: KTMaybeReactive<boolean>;
56
62
  iconOnly?: KTMaybeReactive<boolean>;
57
63
  startIcon?: KTMaybeReactive<JSX.Element>;
58
64
  endIcon?: KTMaybeReactive<JSX.Element>;
59
- type?: KTMaybeReactive<'button' | 'submit' | 'reset'>;
65
+ type?: KTMaybeReactive<KTMuiButtonType>;
60
66
  'on:click'?: (e: MouseEvent) => void;
61
67
  'on:dblclick'?: (e: MouseEvent) => void;
62
68
  }
@@ -65,6 +71,9 @@ interface KTMuiButtonProps extends KTMuiProps {
65
71
  */
66
72
  declare function Button(props: KTMuiButtonProps): JSX.Element;
67
73
 
74
+ type KTMuiDropdownButtonVariant = 'contained' | 'outlined' | 'text';
75
+ type KTMuiDropdownButtonColor = 'primary' | 'secondary' | 'error' | 'warning' | 'info' | 'success';
76
+ type KTMuiDropdownButtonSize = 'small' | 'medium' | 'large';
68
77
  interface KTMuiDropdownButtonOption {
69
78
  value: string;
70
79
  label: string | JSX.Element;
@@ -82,15 +91,15 @@ interface KTMuiDropdownButtonProps extends KTMuiProps {
82
91
  /**
83
92
  * The variant to use - 'contained', 'outlined' or 'text'
84
93
  */
85
- variant?: KTMaybeReactive<'contained' | 'outlined' | 'text'>;
94
+ variant?: KTMaybeReactive<KTMuiDropdownButtonVariant>;
86
95
  /**
87
96
  * The color to use - 'primary', 'secondary', 'error', 'warning', 'info' or 'success'
88
97
  */
89
- color?: KTMaybeReactive<'primary' | 'secondary' | 'error' | 'warning' | 'info' | 'success'>;
98
+ color?: KTMaybeReactive<KTMuiDropdownButtonColor>;
90
99
  /**
91
100
  * The size of the button - 'small', 'medium' or 'large'
92
101
  */
93
- size?: KTMaybeReactive<'small' | 'medium' | 'large'>;
102
+ size?: KTMaybeReactive<KTMuiDropdownButtonSize>;
94
103
  /**
95
104
  * Whether the button is disabled
96
105
  */
@@ -108,12 +117,14 @@ type KTMuiDropdownButton = JSX.Element & {};
108
117
  */
109
118
  declare function DropdownButton(props: KTMuiDropdownButtonProps): KTMuiDropdownButton;
110
119
 
120
+ type KTMuiCheckboxSize = 'small' | 'medium';
121
+ type KTMuiCheckboxColor = 'primary' | 'secondary' | 'default' | 'success' | 'error' | 'warning';
111
122
  interface KTMuiCheckboxProps extends Omit<KTMuiProps, 'children'> {
112
123
  value?: KTMaybeReactive$1<string>;
113
124
  label?: KTMaybeReactive$1<string | JSX.Element | HTMLElement>;
114
- size?: KTMaybeReactive$1<'small' | 'medium'>;
125
+ size?: KTMaybeReactive$1<KTMuiCheckboxSize>;
115
126
  disabled?: KTMaybeReactive$1<boolean>;
116
- color?: KTMaybeReactive$1<'primary' | 'secondary' | 'default' | 'success' | 'error' | 'warning'>;
127
+ color?: KTMaybeReactive$1<KTMuiCheckboxColor>;
117
128
  indeterminate?: KTMaybeReactive$1<boolean>;
118
129
  'on:change'?: (checked: boolean, value: string) => void;
119
130
  }
@@ -130,7 +141,7 @@ type KTMuiCheckbox = JSX.Element & {
130
141
  declare function Checkbox(props: KTMuiCheckboxProps, onChangeForGroup?: (checked: boolean, value: string) => void): KTMuiCheckbox;
131
142
 
132
143
  interface KTMuiCheckboxGroupProps extends Omit<KTMuiProps, 'children'> {
133
- size?: KTMaybeReactive$1<'small' | 'medium'>;
144
+ size?: KTMaybeReactive$1<KTMuiCheckboxSize>;
134
145
  options: KTMaybeReactive$1<Array<Omit<KTMuiCheckboxProps, 'value'> & {
135
146
  value: string;
136
147
  }>>;
@@ -143,17 +154,17 @@ type KTMuiCheckboxGroup = JSX.Element & {};
143
154
  */
144
155
  declare function CheckboxGroup(props: KTMuiCheckboxGroupProps): KTMuiCheckboxGroup;
145
156
 
146
- type DialogSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | false;
157
+ type KTMuiDialogSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | false;
147
158
  interface KTMuiDialogProps extends Omit<KTMuiProps, 'children'> {
148
159
  /**
149
160
  * Controls whether the dialog is open or closed
150
161
  * - Provide a `KTReactive` to make it reactive
151
162
  */
152
163
  open?: KTMaybeReactive$1<boolean>;
153
- title?: string;
164
+ title?: KTMaybeReactive$1<string>;
154
165
  children?: JSX.Element | JSX.Element[] | string | KTMaybeReactive$1<string> | KTMaybeReactive$1<JSX.Element> | KTMaybeReactive$1<JSX.Element[]>;
155
166
  actions?: KTMaybeReactive$1<HTMLElement | HTMLElement[]>;
156
- size?: KTMaybeReactive$1<DialogSize>;
167
+ size?: KTMaybeReactive$1<KTMuiDialogSize>;
157
168
  fullWidth?: KTMaybeReactive$1<boolean>;
158
169
  'on:close'?: () => void;
159
170
  }
@@ -164,6 +175,7 @@ type KTMuiDialog = JSX.Element;
164
175
  */
165
176
  declare function Dialog(props: KTMuiDialogProps): KTMuiDialog;
166
177
 
178
+ type KTMuiFormLabelComponent = 'label' | 'legend';
167
179
  interface KTMuiFormLabelProps extends Omit<KTMuiProps, 'children'> {
168
180
  children: string | HTMLElement | JSX.Element;
169
181
  /**
@@ -190,7 +202,7 @@ interface KTMuiFormLabelProps extends Omit<KTMuiProps, 'children'> {
190
202
  * The component used for the root node. Either 'label' or 'legend'.
191
203
  * - Not reactive
192
204
  */
193
- component?: 'label' | 'legend';
205
+ component?: KTMuiFormLabelComponent;
194
206
  htmlFor?: KTMaybeReactive$1<string>;
195
207
  }
196
208
  /**
@@ -198,6 +210,8 @@ interface KTMuiFormLabelProps extends Omit<KTMuiProps, 'children'> {
198
210
  */
199
211
  declare function FormLabel(props: KTMuiFormLabelProps): JSX.Element;
200
212
 
213
+ type KTMuiLinearProgressVariant = 'determinate' | 'indeterminate';
214
+ type KTMuiLinearProgressColor = 'primary' | 'secondary' | 'error' | 'warning' | 'info' | 'success';
201
215
  interface LinearProgressProps extends KTMuiProps {
202
216
  /**
203
217
  * The variant to use.
@@ -205,7 +219,7 @@ interface LinearProgressProps extends KTMuiProps {
205
219
  * - `indeterminate` - Use when the progress is unknown.
206
220
  * Default is `indeterminate`.
207
221
  */
208
- variant?: KTMaybeReactive$1<'determinate' | 'indeterminate'>;
222
+ variant?: KTMaybeReactive$1<KTMuiLinearProgressVariant>;
209
223
  /**
210
224
  * The value of the progress indicator for the determinate variant. Value between 0 and 100.
211
225
  */
@@ -213,7 +227,7 @@ interface LinearProgressProps extends KTMuiProps {
213
227
  /**
214
228
  * The color of the component. It supports those theme colors that make sense for this component.
215
229
  */
216
- color?: KTMaybeReactive$1<'primary' | 'secondary' | 'error' | 'warning' | 'info' | 'success'>;
230
+ color?: KTMaybeReactive$1<KTMuiLinearProgressColor>;
217
231
  }
218
232
  type KTMuiLinearProgress = JSX.Element & {
219
233
  value: number;
@@ -222,8 +236,9 @@ declare function LinearProgress(props: LinearProgressProps): KTMuiLinearProgress
222
236
 
223
237
  type ChangeHandler<T = string> = (value: T, ...args: any[]) => void;
224
238
 
225
- type InputTypes = 'text' | 'password' | 'email' | 'number' | 'tel' | 'url';
226
- interface KTMuiTextFieldProps<T extends InputTypes = 'text'> extends KTMuiProps {
239
+ type KTMuiTextFieldType = 'text' | 'password' | 'email' | 'number' | 'tel' | 'url';
240
+ type KTMuiTextFieldSize = 'small' | 'medium';
241
+ interface KTMuiTextFieldProps<T extends KTMuiTextFieldType = 'text'> extends KTMuiProps {
227
242
  'k-model'?: T extends 'number' ? KTReactive<number> : KTReactive<string>;
228
243
  label?: KTMaybeReactive<string>;
229
244
  placeholder?: KTMaybeReactive<string>;
@@ -237,28 +252,30 @@ interface KTMuiTextFieldProps<T extends InputTypes = 'text'> extends KTMuiProps
237
252
  fullWidth?: KTMaybeReactive<boolean>;
238
253
  multiline?: boolean;
239
254
  rows?: KTMaybeReactive<number>;
240
- size?: 'small' | 'medium' | KTReactive<'small' | 'medium'>;
255
+ size?: KTMuiTextFieldSize | KTReactive<KTMuiTextFieldSize>;
241
256
  'on:input'?: ChangeHandler<T extends 'number' ? number : T extends 'date' ? Date : string>;
242
257
  'on:change'?: ChangeHandler<T extends 'number' ? number : T extends 'date' ? Date : string>;
243
258
  'on:blur'?: () => void;
244
259
  'on:focus'?: () => void;
245
260
  }
246
261
  type KTMuiTextField = JSX.Element;
247
- declare function TextField<T extends InputTypes = 'text'>(props: KTMuiTextFieldProps<T>): KTMuiTextField;
262
+ declare function TextField<T extends KTMuiTextFieldType = 'text'>(props: KTMuiTextFieldProps<T>): KTMuiTextField;
248
263
 
264
+ type KTMuiRadioSize = 'small' | 'medium';
265
+ type KTMuiRadioColor = 'primary' | 'secondary' | 'default';
249
266
  interface KTMuiRadioProps extends KTMuiProps {
250
267
  value: string;
251
268
  label: string | JSX.Element | HTMLElement | KTReactive<string | JSX.Element | HTMLElement>;
252
269
  checked?: boolean;
253
- size?: 'small' | 'medium';
270
+ size?: KTMuiRadioSize;
254
271
  'on:change'?: (checked: boolean, value: string) => void;
255
272
  disabled?: boolean;
256
- color?: 'primary' | 'secondary' | 'default';
273
+ color?: KTMuiRadioColor;
257
274
  }
258
275
  interface KTMuiRadioGroupProps extends KTMuiProps {
259
276
  value?: string;
260
277
  name?: string;
261
- size?: 'small' | 'medium';
278
+ size?: KTMuiRadioSize;
262
279
  options: KTMuiRadioProps[];
263
280
  'on:change'?: (value: string) => void;
264
281
  'on:click'?: (checked: boolean) => void;
@@ -284,8 +301,9 @@ interface KTMuiSelectOption {
284
301
  value: string;
285
302
  label: string | JSX.Element;
286
303
  }
304
+ type KTMuiSelectSize = 'small' | 'medium';
287
305
  interface KTMuiSelectProps extends KTMuiProps {
288
- size?: KTMaybeReactive$1<'small' | 'medium'>;
306
+ size?: KTMaybeReactive$1<KTMuiSelectSize>;
289
307
  value?: KTMaybeReactive$1<string>;
290
308
  options: KTMaybeReactive$1<KTMuiSelectOption[]>;
291
309
  label?: KTMaybeReactive$1<string>;
@@ -300,8 +318,9 @@ type KTMuiSelect = JSX.Element & {};
300
318
  */
301
319
  declare function Select(props: KTMuiSelectProps): KTMuiSelect;
302
320
 
321
+ type KTMuiCardVariant = 'elevation' | 'outlined' | 'contained';
303
322
  interface KTMuiCardProps extends KTMuiProps {
304
- variant?: 'elevation' | 'outlined' | 'contained';
323
+ variant?: KTMuiCardVariant;
305
324
  elevation?: number | KTReactive<number>;
306
325
  square?: boolean | KTReactive<boolean>;
307
326
  raised?: boolean | KTReactive<boolean>;
@@ -313,12 +332,14 @@ type KTMuiCard = JSX.Element & {};
313
332
  */
314
333
  declare function Card(props: KTMuiCardProps): KTMuiCard;
315
334
 
335
+ type KTMuiSwitchColor = 'primary' | 'secondary' | 'error' | 'warning' | 'info' | 'success';
336
+ type KTMuiSwitchSize = 'small' | 'medium' | 'large';
316
337
  interface KTMuiSwitchProps extends KTMuiProps {
317
338
  value?: KTMaybeReactive$1<string>;
318
339
  label?: KTMaybeReactive$1<string>;
319
340
  disabled?: KTMaybeReactive$1<boolean>;
320
- color?: KTMaybeReactive$1<'primary' | 'secondary' | 'error' | 'warning' | 'info' | 'success'>;
321
- size?: KTMaybeReactive$1<'small' | 'medium' | 'large'>;
341
+ color?: KTMaybeReactive$1<KTMuiSwitchColor>;
342
+ size?: KTMaybeReactive$1<KTMuiSwitchSize>;
322
343
  'on:change'?: (checked: boolean, value?: string) => void;
323
344
  }
324
345
  type KTMuiSwitch = JSX.Element & {};
@@ -327,16 +348,16 @@ type KTMuiSwitch = JSX.Element & {};
327
348
  */
328
349
  declare function Switch(props: KTMuiSwitchProps): KTMuiSwitch;
329
350
 
330
- type PillColor = 'default' | 'primary' | 'secondary' | 'error' | 'warning' | 'info' | 'success';
331
- type PillVariant = 'filled' | 'outlined';
332
- type PillSize = 'small' | 'medium';
351
+ type KTMuiPillColor = 'default' | 'primary' | 'secondary' | 'error' | 'warning' | 'info' | 'success';
352
+ type KTMuiPillVariant = 'filled' | 'outlined';
353
+ type KTMuiPillSize = 'small' | 'medium';
333
354
  interface KTMuiPillProps extends KTMuiProps {
334
355
  label?: KTMaybeReactive$1<string>;
335
356
  icon?: KTMaybeReactive$1<HTMLElement | JSX.Element>;
336
357
  deleteIcon?: KTMaybeReactive$1<HTMLElement | JSX.Element>;
337
- color?: KTMaybeReactive$1<PillColor>;
338
- variant?: KTMaybeReactive$1<PillVariant>;
339
- size?: KTMaybeReactive$1<PillSize>;
358
+ color?: KTMaybeReactive$1<KTMuiPillColor>;
359
+ variant?: KTMaybeReactive$1<KTMuiPillVariant>;
360
+ size?: KTMaybeReactive$1<KTMuiPillSize>;
340
361
  clickable?: KTMaybeReactive$1<boolean>;
341
362
  disabled?: KTMaybeReactive$1<boolean>;
342
363
  autoRemoveOnDelete?: KTMaybeReactive$1<boolean>;
@@ -349,22 +370,24 @@ type KTMuiPill = JSX.Element & {};
349
370
  */
350
371
  declare function Pill(props: KTMuiPillProps): KTMuiPill;
351
372
 
352
- type BadgeColor = 'default' | 'primary' | 'secondary' | 'error' | 'warning' | 'info' | 'success';
353
- type BadgeVariant = 'standard' | 'dot';
354
- type BadgeOverlap = 'rectangular' | 'circular';
355
- type BadgeContent = string | number;
373
+ type KTMuiBadgeColor = 'default' | 'primary' | 'secondary' | 'error' | 'warning' | 'info' | 'success';
374
+ type KTMuiBadgeVariant = 'standard' | 'dot';
375
+ type KTMuiBadgeOverlap = 'rectangular' | 'circular';
376
+ type KTMuiBadgeVerticalOrigin = 'top' | 'bottom';
377
+ type KTMuiBadgeHorizontalOrigin = 'left' | 'right';
378
+ type KTMuiBadgeContent = string | number;
356
379
  interface KTMuiBadgeAnchorOrigin {
357
- vertical: 'top' | 'bottom';
358
- horizontal: 'left' | 'right';
380
+ vertical: KTMuiBadgeVerticalOrigin;
381
+ horizontal: KTMuiBadgeHorizontalOrigin;
359
382
  }
360
383
  interface KTMuiBadgeProps extends KTMuiProps {
361
- badgeContent?: BadgeContent | KTReactive<number> | KTReactive<string>;
384
+ badgeContent?: KTMuiBadgeContent | KTReactive<number> | KTReactive<string>;
362
385
  max?: KTMaybeReactive$1<number>;
363
386
  showZero?: KTMaybeReactive$1<boolean>;
364
387
  invisible?: KTMaybeReactive$1<boolean>;
365
- color?: KTMaybeReactive$1<BadgeColor>;
366
- variant?: KTMaybeReactive$1<BadgeVariant>;
367
- overlap?: KTMaybeReactive$1<BadgeOverlap>;
388
+ color?: KTMaybeReactive$1<KTMuiBadgeColor>;
389
+ variant?: KTMaybeReactive$1<KTMuiBadgeVariant>;
390
+ overlap?: KTMaybeReactive$1<KTMuiBadgeOverlap>;
368
391
  anchorOrigin?: KTMaybeReactive$1<KTMuiBadgeAnchorOrigin>;
369
392
  }
370
393
  type KTMuiBadge = JSX.Element & {};
@@ -373,11 +396,11 @@ type KTMuiBadge = JSX.Element & {};
373
396
  */
374
397
  declare function Badge(props: KTMuiBadgeProps): KTMuiBadge;
375
398
 
376
- type PopoverVerticalOrigin = 'top' | 'center' | 'bottom';
377
- type PopoverHorizontalOrigin = 'left' | 'center' | 'right';
399
+ type KTMuiPopoverVerticalOrigin = 'top' | 'center' | 'bottom';
400
+ type KTMuiPopoverHorizontalOrigin = 'left' | 'center' | 'right';
378
401
  interface KTMuiPopoverOrigin {
379
- vertical: PopoverVerticalOrigin;
380
- horizontal: PopoverHorizontalOrigin;
402
+ vertical: KTMuiPopoverVerticalOrigin;
403
+ horizontal: KTMuiPopoverHorizontalOrigin;
381
404
  }
382
405
  type KTMuiPopoverCloseReason = 'backdropClick' | 'escapeKeyDown';
383
406
  interface KTMuiPopoverProps extends KTMuiProps {
@@ -416,4 +439,4 @@ type KTMuiPopover = JSX.Element & {};
416
439
  declare function Popover(props: KTMuiPopoverProps): KTMuiPopover;
417
440
 
418
441
  export { Alert, Badge, Button, Card, Checkbox, CheckboxGroup, Dialog, DropdownButton, FormLabel, LinearProgress, Pill, Popover, Radio, RadioGroup, Select, Switch, TextField };
419
- export type { KTMuiBadge, KTMuiBadgeAnchorOrigin, KTMuiBadgeProps, KTMuiCard, KTMuiCardProps, KTMuiCheckbox, KTMuiCheckboxGroup, KTMuiCheckboxGroupProps, KTMuiCheckboxProps, KTMuiDialog, KTMuiDropdownButton, KTMuiDropdownButtonOption, KTMuiDropdownButtonProps, KTMuiLinearProgress, KTMuiPill, KTMuiPillProps, KTMuiPopover, KTMuiPopoverCloseReason, KTMuiPopoverOrigin, KTMuiPopoverProps, KTMuiRadio, KTMuiRadioGroup, KTMuiRadioProps, KTMuiSelect, KTMuiSelectOption, KTMuiSelectProps, KTMuiSwitch, KTMuiSwitchProps, KTMuiTextField, KTMuiTextFieldProps };
442
+ export type { KTMuiAlertSeverity, KTMuiAlertVariant, KTMuiBadge, KTMuiBadgeAnchorOrigin, KTMuiBadgeColor, KTMuiBadgeContent, KTMuiBadgeHorizontalOrigin, KTMuiBadgeOverlap, KTMuiBadgeProps, KTMuiBadgeVariant, KTMuiBadgeVerticalOrigin, KTMuiButtonColor, KTMuiButtonSize, KTMuiButtonType, KTMuiButtonVariant, KTMuiCard, KTMuiCardProps, KTMuiCardVariant, KTMuiCheckbox, KTMuiCheckboxColor, KTMuiCheckboxGroup, KTMuiCheckboxGroupProps, KTMuiCheckboxProps, KTMuiCheckboxSize, KTMuiDialog, KTMuiDialogSize, KTMuiDropdownButton, KTMuiDropdownButtonColor, KTMuiDropdownButtonOption, KTMuiDropdownButtonProps, KTMuiDropdownButtonSize, KTMuiDropdownButtonVariant, KTMuiFormLabelComponent, KTMuiLinearProgress, KTMuiLinearProgressColor, KTMuiLinearProgressVariant, KTMuiPill, KTMuiPillColor, KTMuiPillProps, KTMuiPillSize, KTMuiPillVariant, KTMuiPopover, KTMuiPopoverCloseReason, KTMuiPopoverHorizontalOrigin, KTMuiPopoverOrigin, KTMuiPopoverProps, KTMuiPopoverVerticalOrigin, KTMuiRadio, KTMuiRadioColor, KTMuiRadioGroup, KTMuiRadioProps, KTMuiRadioSize, KTMuiSelect, KTMuiSelectOption, KTMuiSelectProps, KTMuiSelectSize, KTMuiSwitch, KTMuiSwitchColor, KTMuiSwitchProps, KTMuiSwitchSize, KTMuiTextField, KTMuiTextFieldProps, KTMuiTextFieldSize, KTMuiTextFieldType };