Skip to content

Commit

Permalink
order package.json
Browse files Browse the repository at this point in the history
Signed-off-by: Florent MILLOT <millotflo@gmail.com>
  • Loading branch information
flomillot committed Aug 2, 2023
1 parent 9874899 commit 8800711
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@
"@mui/icons-material": "^5.5.0",
"@mui/lab": "^5.0.0-alpha.72",
"@mui/material": "^5.5.0",
"@hookform/resolvers": "^3.0.0",
"notistack": "^2.0.3",
"react-router-dom": "^6.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-intl": "^6.0.0",
"react-hook-form": "^7.41.0",
"yup": "^1.0.0",
"@hookform/resolvers": "^3.0.0"
"yup": "^1.0.0"
},
"devDependencies": {
"@emotion/react": "^11.8.1",
Expand All @@ -55,6 +55,7 @@
"@mui/lab": "^5.0.0-alpha.72",
"@mui/material": "^5.5.0",
"@mui/styles": "^5.5.0",
"@hookform/resolvers": "^3.0.0",
"@babel/helper-builder-react-jsx": "7.15.4",
"@svgr/webpack": "^5.4.0",
"babel-eslint": "^10.1.0",
Expand All @@ -76,15 +77,14 @@
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-intl": "^6.0.0",
"react-router-dom": "^6.0.0",
"react-hook-form": "^7.41.0",
"yup": "^1.0.0",
"@hookform/resolvers": "^3.0.0",
"react-router-dom": "^6.0.0",
"type-fest": "^2.0.0",
"utf-8-validate": "^5.0.2",
"webpack-plugin-serve": "^1.0.1",
"@react-hook/window-size": "^3.1.1",
"react-resizable": "^3.0.4"
"react-resizable": "^3.0.4",
"yup": "^1.0.0"
},
"eslintConfig": {
"extends": [
Expand Down
21 changes: 21 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,24 @@ export CardErrorBoundary from './components/CardErrorBoundary';
export { useIntlRef } from './hooks/useIntlRef';
export { useSnackMessage } from './hooks/useSnackMessage';
export { useDebounce } from './hooks/useDebounce';
export AutocompleteInput from './components/react-hook-form/autocomplete-input';
export TextInput from './components/react-hook-form/text-input';
export RadioInput from './components/react-hook-form/radio-input';
export SliderInput from './components/react-hook-form/slider-input';
export FloatInput from './components/react-hook-form/numbers/float-input';
export IntegerInput from './components/react-hook-form/numbers/integer-input';
export SelectInput from './components/react-hook-form/select-input';
export CheckboxInput from './components/react-hook-form/booleans/checkbox-input';
export SwitchInput from './components/react-hook-form/booleans/switch-input';
export ErrorInput from './components/react-hook-form/error-management/error-input';
export FieldErrorAlert from './components/react-hook-form/error-management/field-error-alert';
export MidFormError from './components/react-hook-form/error-management/mid-form-error';
export TextFieldWithAdornment from './components/react-hook-form/utils/text-field-with-adornment';
export FieldLabel from './components/react-hook-form/utils/field-label';
export SubmitButton from './components/react-hook-form/utils/submit-button';
export {
genHelperPreviousValue,
genHelperError,
identity,
isFieldRequired,
} from './components/react-hook-form/utils/functions';

0 comments on commit 8800711

Please sign in to comment.