Skip to content

Commit

Permalink
showcase textarea
Browse files Browse the repository at this point in the history
  • Loading branch information
zombieFox committed Aug 4, 2024
1 parent be2b2ab commit fb45394
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/component/showcase/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ import { clearChildNode } from '../../utility/clearChildNode';
import { applyCSSVar } from '../../utility/applyCSSVar';
import { applyCSSClass } from '../../utility/applyCSSClass';
import { applyCSSState } from '../../utility/applyCSSState';
import { trimString } from '../../utility/trimString';
import { isValidString } from '../../utility/isValidString';

import './index.css';
import { inputButton } from '../form/input';
Expand Down Expand Up @@ -473,12 +471,14 @@ showcase.area.assemble = () => {

showcase.control.input.text = new Control_text({
labelText: 'Text',
placeholder: 'Placeholder'
placeholder: 'Placeholder',
id: 'text',
})

showcase.control.input.textarea = new Control_textarea({
labelText: 'Textarea',
placeholder: 'Placeholder'
placeholder: 'Placeholder',
id: 'textarea',
})

showcase.control.input.color = {
Expand Down

0 comments on commit fb45394

Please sign in to comment.