Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,6 @@ module.exports = {
name: '@kyper/input',
message: "Please import from 'src/privacy/input instead'.",
},
{
name: '@kyper/select',
message: "Please import from 'src/privacy/input instead'.",
},
{
name: '@kyper/selectionbox',
message: "Please import from 'src/privacy/input instead'.",
Expand Down
42 changes: 0 additions & 42 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
"@kyper/institutionlogo": "^3.1.0",
"@kyper/messagebox": "^3.1.0",
"@kyper/progressindicators": "^3.1.0",
"@kyper/select": "^2.0.0",
"@kyper/selectionbox": "^2.1.0",
"@kyper/tag": "^3.0.0",
"@kyper/tokenprovider": "^4.0.1",
Expand Down
3 changes: 0 additions & 3 deletions src/privacy/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// This is the ONLY file that @kyper related inputs should be directly imported

import { Radio, PASSWORD_VALIDATIONS } from '@kyper/input'
import { Select } from '@kyper/select'
import { SelectionBox } from '@mxenabled/mxui'
import { UserFeedback } from '@kyper/userfeedback'
import { withProtection } from 'src/privacy/withProtection'
Expand All @@ -21,14 +20,12 @@ import { TextField } from '@mxenabled/mxui'

const ProtectedTextField = withProtection(TextField)
const ProtectedRadio = withProtection(Radio)
const ProtectedSelect = withProtection(Select)
const ProtectedSelectionBox = withProtection(SelectionBox)
const ProtectedUserFeedback = withProtection(UserFeedback)

export {
ProtectedTextField as TextField,
ProtectedRadio as Radio,
ProtectedSelect as Select,
ProtectedSelectionBox as SelectionBox,
ProtectedUserFeedback as UserFeedback,
PASSWORD_VALIDATIONS as PasswordValidations,
Expand Down
1 change: 0 additions & 1 deletion typings/kyper.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ declare module '@kyper/messagebox'
declare module '@kyper/userfeedback'
declare module '@kyper/textarea'
declare module '@kyper/selectionbox'
declare module '@kyper/select'
declare module '@kyper/input'
declare module '@kyper/icon/Accounts'
declare module '@kyper/icon/Check'
Expand Down
Loading