Skip to content

Commit

Permalink
Optimize input-text basic (#6098)
Browse files Browse the repository at this point in the history
  • Loading branch information
deleonio authored Feb 22, 2024
2 parents 960a96c + 9913489 commit 2eeb31a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export const InputTextCases = forwardRef<HTMLKolInputTextElement, Components.Kol
_error={ERROR_MSG}
_placeholder="Mit Icons"
_icons={{
left: 'codicon codicon-arrow-left',
right: {
icon: 'codicon codicon-arrow-right',
style: {
Expand All @@ -28,13 +27,13 @@ export const InputTextCases = forwardRef<HTMLKolInputTextElement, Components.Kol
onClick: console.log,
onFocus: console.log,
}}
_hideLabel
_required
_type="search"
_touched
_label="Suche"
_label="Vorname (text)"
_accessKey="V"
ref={ref}
/>
<KolInputText {...props} ref={ref} _accessKey="V" _placeholder="Placeholder" _label="Vorname (text)" _required />
<KolInputText {...props} _placeholder="Placeholder" _label="Suche (search)" _type="search" />
<KolInputText {...props} _placeholder="Placeholder" _error={ERROR_MSG} _touched _type="url" _label="URL (url)" />
<KolInputText {...props} _placeholder="Placeholder" _type="tel" _label="Telefon (tel)" />
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2eeb31a

Please sign in to comment.