File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
packages/blade/src/components Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -397,10 +397,14 @@ const BaseInputControlledWithTagsTemplate: StoryFn<typeof BaseInputComponent> =
397
397
< BaseInput
398
398
id = "base-input"
399
399
label = "First Name"
400
+ as = "textarea"
401
+ maxTagRows = "multiple"
400
402
value = { inputValue }
401
403
autoCompleteSuggestionType = "none"
402
404
tags = { getTags ( ) }
403
405
activeTagIndex = { activeTagIndex }
406
+ showAllTags = { true }
407
+ isDropdownTrigger = { true }
404
408
setActiveTagIndex = { setActiveTagIndex }
405
409
name = "fullName"
406
410
onChange = { ( { name, value } ) : void => {
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ const getBaseTextStyles = ({
41
41
'line-clamp' : `${ numberOfLines } ` ,
42
42
'-webkit-line-clamp' : `${ numberOfLines } ` ,
43
43
'-webkit-box-orient' : 'vertical' ,
44
+ overflowWrap : 'break-word' ,
44
45
} ;
45
46
}
46
47
}
You can’t perform that action at this time.
0 commit comments