@bitrise/bitkit 12.93.1-alpha.1 → 12.93.1-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -105,6 +105,7 @@ const ChipInput = ({
|
|
|
105
105
|
flexWrap="wrap"
|
|
106
106
|
gap="4"
|
|
107
107
|
paddingRight={isInvalid ? '42px' : undefined}
|
|
108
|
+
position="relative"
|
|
108
109
|
>
|
|
109
110
|
{value.map((item, idx) => (
|
|
110
111
|
<Tag
|
|
@@ -133,7 +134,7 @@ const ChipInput = ({
|
|
|
133
134
|
onKeyDown={keyupHandler}
|
|
134
135
|
onPaste={pasteEventHandler}
|
|
135
136
|
/>
|
|
136
|
-
{isInvalid && <Icon color="icon.negative" name="ErrorCircleFilled" position="absolute" right="
|
|
137
|
+
{isInvalid && <Icon color="icon.negative" name="ErrorCircleFilled" position="absolute" right="16" />}
|
|
137
138
|
</Box>
|
|
138
139
|
{errorText && <FormErrorMessage as="p">{errorText}</FormErrorMessage>}
|
|
139
140
|
{helperText && <FormHelperText as="p">{helperText}</FormHelperText>}
|