@bitrise/bitkit 13.112.0 → 13.114.0
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
|
@@ -109,7 +109,9 @@ const FilterForm = (props: FilterFormProps) => {
|
|
|
109
109
|
const isEditMode = value.length !== 0;
|
|
110
110
|
|
|
111
111
|
const items =
|
|
112
|
-
isAsync && !!searchValue
|
|
112
|
+
isAsync && !!searchValue
|
|
113
|
+
? Array.from(new Set([...value, ...foundOptions]))
|
|
114
|
+
: Array.from(new Set([...value, ...filteredOptions]));
|
|
113
115
|
|
|
114
116
|
return (
|
|
115
117
|
<Box as="form" data-testid={`${category}-form`} onSubmit={onSubmit} sx={filterStyle.form}>
|
package/src/index.ts
CHANGED
|
@@ -168,6 +168,7 @@ export { default as LightBox } from './Components/LightBox/LightBox';
|
|
|
168
168
|
|
|
169
169
|
export type { LabeledDataProps } from './Components/LabeledData/LabeledData';
|
|
170
170
|
export { default as LabeledData } from './Components/LabeledData/LabeledData';
|
|
171
|
+
export { default as LabeledDataList } from './Components/LabeledData/LabeledDataList';
|
|
171
172
|
|
|
172
173
|
export type { AspectRatioProps } from './Components/AspectRatio/AspectRatio';
|
|
173
174
|
export { default as AspectRatio } from './Components/AspectRatio/AspectRatio';
|