Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend input with file type & update icons #146

Merged
merged 1 commit into from
Nov 5, 2024
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@awell-health/design-system",
"version": "0.11.5",
"version": "0.11.6",
"type": "module",
"files": [
"dist"
Expand Down
8 changes: 8 additions & 0 deletions src/components/ui/icon/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ import {
RiSparklingLine,
RiGlobeLine,
RiGlobalLine,
RiUploadLine,
RiDownloadLine,
RiToolsLine,
RiFileLine
} from '@remixicon/react';

export const ICONS = {
Expand Down Expand Up @@ -194,6 +198,10 @@ export const ICONS = {
RiSparklingLine,
RiGlobeLine,
RiGlobalLine,
RiUploadLine,
RiDownloadLine,
RiToolsLine,
RiFileLine
};

export enum IconSize {
Expand Down
22 changes: 19 additions & 3 deletions src/components/ui/input/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,21 @@ interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
}

const Input = React.forwardRef<HTMLInputElement, InputProps>(
({ className, label, helpText, suffixIcon, prefixIcon, hasError, onChange, ...props }, ref) => {
// eslint-disable-next-line react/prop-types
(
{
className,
label,
helpText,
suffixIcon,
prefixIcon,
hasError,
onChange,
type = 'text',
...props
},
ref
) => {
const renderIcon = (icon: JSX.Element, position: 'left' | 'right') => {
return (
<span
Expand Down Expand Up @@ -40,16 +54,18 @@ const Input = React.forwardRef<HTMLInputElement, InputProps>(
<label className='form-control w-full flex relative'>
{prefixIcon && renderIcon(prefixIcon, 'left')}
<input
type='text'
type={type}
className={cn(
'px-3.5 py-2.5 h-[38px] min-h-[38px] rounded-lg gap-2 w-full border-box',
type !== 'file' && 'px-3.5 py-2.5',
'h-[38px] min-h-[38px] rounded-lg gap-2 w-full border-box',
'text-sm font-normal',
'shadow border border-slate-300 text-black placeholder:text-slate-400',
'focus:outline-0 focus:border focus:border-blue-500',
'disabled:bg-slate-50 disabled:text-slate-300',
prefixIcon && 'pl-8',
suffixIcon && 'pr-8',
hasError && 'border-red-500 focus:border-red-500',
type === 'file' && 'file-input file-input-bordered file-input-primary',
className
)}
onChange={onChange}
Expand Down
112 changes: 112 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1191,6 +1191,60 @@ html {
display: none;
}

.file-input {
height: 3rem;
flex-shrink: 1;
padding-inline-end: 1rem;
font-size: 1rem;
line-height: 2;
line-height: 1.5rem;
overflow: hidden;
border-radius: var(--rounded-btn, 0.5rem);
border-width: 1px;
border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
--tw-border-opacity: 0;
--tw-bg-opacity: 1;
background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}

.file-input::file-selector-button {
margin-inline-end: 1rem;
display: inline-flex;
height: 100%;
flex-shrink: 0;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
flex-wrap: wrap;
align-items: center;
justify-content: center;
padding-left: 1rem;
padding-right: 1rem;
text-align: center;
font-size: 0.875rem;
line-height: 1.25rem;
line-height: 1em;
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
transition-duration: 200ms;
border-style: solid;
--tw-border-opacity: 1;
border-color: var(--fallback-n,oklch(var(--n)/var(--tw-border-opacity)));
--tw-bg-opacity: 1;
background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
font-weight: 600;
text-transform: uppercase;
--tw-text-opacity: 1;
color: var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));
text-decoration-line: none;
border-width: var(--border-btn, 1px);
animation: button-pop var(--animation-btn, 0.25s) ease-out;
}

.form-control {
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -2032,6 +2086,64 @@ input.tab:checked + .tab-content,
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.file-input-bordered {
--tw-border-opacity: 0.2;
}

.file-input:focus {
outline-style: solid;
outline-width: 2px;
outline-offset: 2px;
outline-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}

.file-input-primary {
--tw-border-opacity: 1;
border-color: var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));
}

.file-input-primary:focus {
outline-color: var(--fallback-p,oklch(var(--p)/1));
}

.file-input-primary::file-selector-button {
--tw-border-opacity: 1;
border-color: var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));
--tw-bg-opacity: 1;
background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
--tw-text-opacity: 1;
color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}

.file-input-disabled,
.file-input[disabled] {
cursor: not-allowed;
--tw-border-opacity: 1;
border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
--tw-bg-opacity: 1;
background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
--tw-text-opacity: 0.2;
}

.file-input-disabled::-moz-placeholder, .file-input[disabled]::-moz-placeholder {
color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
--tw-placeholder-opacity: 0.2;
}

.file-input-disabled::placeholder,
.file-input[disabled]::placeholder {
color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
--tw-placeholder-opacity: 0.2;
}

.file-input-disabled::file-selector-button, .file-input[disabled]::file-selector-button {
--tw-border-opacity: 0;
background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
--tw-bg-opacity: 0.2;
color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
--tw-text-opacity: 0.2;
}

.label-text {
font-size: 0.875rem;
line-height: 1.25rem;
Expand Down