diff --git a/package.json b/package.json index 2b40f33..c9e491b 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,6 @@ "@kobalte/core": "^0.13.11", "@solidjs-use/integrations": "^2.3.0", "@solidjs/router": "^0.15.3", - "bcryptjs": "^3.0.2", "crypto-js": "^4.2.0", "dayjs": "^1.11.18", "gsap": "^3.13.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 640df4a..a3b272b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -17,9 +17,6 @@ importers: '@solidjs/router': specifier: ^0.15.3 version: 0.15.3(solid-js@1.9.9) - bcryptjs: - specifier: ^3.0.2 - version: 3.0.2 crypto-js: specifier: ^4.2.0 version: 4.2.0 @@ -828,10 +825,6 @@ packages: resolution: {integrity: sha512-wrH5NNqren/QMtKUEEJf7z86YjfqW/2uw3IL3/xpqZUC95SSVIFXYQeeGjL6FT/X68IROu6RMehZQS5foy2BXw==} hasBin: true - bcryptjs@3.0.2: - resolution: {integrity: sha512-k38b3XOZKv60C4E2hVsXTolJWfkGRMbILBIe2IBITXciy5bOsTKot5kDrf3ZfufQtQOUN5mXceUEpU1rTl9Uog==} - hasBin: true - braces@3.0.3: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} @@ -2019,8 +2012,6 @@ snapshots: baseline-browser-mapping@2.8.6: {} - bcryptjs@3.0.2: {} - braces@3.0.3: dependencies: fill-range: 7.1.1 diff --git a/src/components/Input/Input.sass b/src/components/Input/Input.sass deleted file mode 100644 index ca1096d..0000000 --- a/src/components/Input/Input.sass +++ /dev/null @@ -1,45 +0,0 @@ -.text-field - display: flex - flex-direction: column - gap: 4px - - &__label - color: hsl(240 6% 10%) - font-size: 14px - font-weight: 500 - user-select: none - - &__input - display: inline-flex - border-radius: 6px - padding: 6px 12px - font-size: 16px - outline: none - background-color: white - border: 1px solid hsl(240 6% 90%) - color: hsl(240 4% 16%) - transition: border-color 250ms, color 250ms - - &__input:hover - border-color: hsl(240 5% 65%) - - &__input:focus-visible - outline: 2px solid #39536f - outline-offset: 2px - - &__input[data-invalid] - border-color: hsl(0 72% 51%) - color: hsl(0 72% 51%) - - &__input::placeholder - color: hsl(240 4% 46%) - - &__description - color: hsl(240 5% 26%) - font-size: 12px - user-select: none - - &__error-message - color: hsl(0 72% 51%) - font-size: 12px - user-select: none diff --git a/src/components/Input/Input.tsx b/src/components/Input/Input.tsx deleted file mode 100644 index 8e08856..0000000 --- a/src/components/Input/Input.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import './Input.sass' -import { TextField } from '@kobalte/core/text-field' -import { Show, type Setter } from 'solid-js' - -interface Props { - label?: string - value: string - onChange: Setter -} - -export default (props: Props) => { - return ( - <> - - - {props.label} - - - - - ) -}