1- /* eslint-disable no-restricted-imports */
21// This is the ONLY file that @kyper related inputs should be directly imported
32
4- import { Radio , PASSWORD_VALIDATIONS } from '@kyper/input'
53import { SelectionBox } from '@mxenabled/mxui'
6- import { UserFeedback } from '@kyper/userfeedback'
74import { withProtection } from 'src/privacy/withProtection'
85import { TextField } from '@mxenabled/mxui'
96
@@ -19,14 +16,15 @@ import { TextField } from '@mxenabled/mxui'
1916*/
2017
2118const ProtectedTextField = withProtection ( TextField )
22- const ProtectedRadio = withProtection ( Radio )
2319const ProtectedSelectionBox = withProtection ( SelectionBox )
24- const ProtectedUserFeedback = withProtection ( UserFeedback )
20+ const PasswordValidations = {
21+ LEADING_SPACE : 'leading_space' ,
22+ TRAILING_SPACE : 'trailing_space' ,
23+ LEADING_AND_TRAILING_SPACE : 'leading_and_trailing_space' ,
24+ }
2525
2626export {
2727 ProtectedTextField as TextField ,
28- ProtectedRadio as Radio ,
2928 ProtectedSelectionBox as SelectionBox ,
30- ProtectedUserFeedback as UserFeedback ,
31- PASSWORD_VALIDATIONS as PasswordValidations ,
29+ PasswordValidations ,
3230}
0 commit comments