Skip to content

Commit

Permalink
chore: rename switch input export
Browse files Browse the repository at this point in the history
  • Loading branch information
ingmar-stipriaan committed Jan 16, 2025
1 parent 5c1781d commit a4f4c7e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
28 changes: 14 additions & 14 deletions src/prefabs/index.ts
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
export { default as numberinput } from './numberinput';
export { default as textinput } from './textinput';
export { default as selectinput } from './selectinput';
export { default as priceinput } from './priceinput';
export { default as textareainput } from './textareainput';
export { default as passwordinput } from './passwordinput';
export { default as emailinput } from './emailinput';
export { default as autocompleteInput } from './autocompleteInput';
export { default as decimalinput } from './decimalinput';
export { default as dateTimePickerInput } from './dateTimePickerInput';
export { default as datePickerInput } from './datePickerInput';
export { default as timePickerInput } from './timePickerInput';
export { default as _switch } from './switch';
export { default as imageUploadInput } from './imageUploadInput';
export { default as fileUploadInput } from './fileUploadInput';
export { default as checkboxGroupInput } from './checkboxGroupInput';
export { default as checkboxinput } from './checkboxinput';
export { default as datePickerInput } from './datePickerInput';
export { default as dateTimePickerInput } from './dateTimePickerInput';
export { default as decimalinput } from './decimalinput';
export { default as emailinput } from './emailinput';
export { default as fileUploadInput } from './fileUploadInput';
export { default as hiddeninput } from './hiddeninput';
export { default as ibaninput } from './ibaninput';
export { default as imageUploadInput } from './imageUploadInput';
export { default as multiAutocomplete } from './multiAutocomplete';
export { default as numberinput } from './numberinput';
export { default as passwordinput } from './passwordinput';
export { default as phoneinput } from './phoneinput';
export { default as priceinput } from './priceinput';
export { default as radioinput } from './radioinput';
export { default as ratingInput } from './ratingInput';
export { default as richTextInput } from './richTextInput';
export { default as selectinput } from './selectinput';
export { default as switchInput } from './switch';
export { default as textareainput } from './textareainput';
export { default as textinput } from './textinput';
export { default as timePickerInput } from './timePickerInput';
export { default as urlinput } from './urlinput';
4 changes: 2 additions & 2 deletions src/prefabs/structures/ActionJSForm/children.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import {
} from '..';

import {
_switch,
autocompleteInput,
checkboxGroupInput,
checkboxinput,
Expand All @@ -47,14 +46,14 @@ import {
ratingInput,
richTextInput,
selectinput,
switchInput,
textareainput,
textinput,
timePickerInput,
urlinput,
} from '../..';

export const inputTypes = [
_switch,
autocompleteInput,
checkboxGroupInput,
checkboxinput,
Expand All @@ -75,6 +74,7 @@ export const inputTypes = [
ratingInput,
richTextInput,
selectinput,
switchInput,
textareainput,
textinput,
timePickerInput,
Expand Down

0 comments on commit a4f4c7e

Please sign in to comment.