@bitrise/bitkit 13.8.0 → 13.9.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
|
@@ -183,7 +183,7 @@ const Filter = (props: FilterProps) => {
|
|
|
183
183
|
{showSearch && (
|
|
184
184
|
<>
|
|
185
185
|
<Divider flexShrink="0" orientation="vertical" size="1" variant="solid" />
|
|
186
|
-
<FilterSearch onChange={onFilterChange} value={(cleanState.
|
|
186
|
+
<FilterSearch onChange={onFilterChange} value={(cleanState.search && cleanState.search[0]) || ''} />
|
|
187
187
|
</>
|
|
188
188
|
)}
|
|
189
189
|
</Box>
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
2
2
|
|
|
3
3
|
const LockOpen = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
-
<Icon ref={ref} viewBox="0 0 16
|
|
5
|
-
<path d="M7.25 11.5V9.5H8.75V11.5H7.25Z" fill="
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 16 16" {...props}>
|
|
5
|
+
<path d="M7.25 11.5V9.5H8.75V11.5H7.25Z" fill="currentColor" />
|
|
6
6
|
<path
|
|
7
7
|
clipRule="evenodd"
|
|
8
8
|
d="M6.25 4.5C6.25 3.5335 7.0335 2.75 8 2.75C8.9665 2.75 9.75 3.5335 9.75 4.5V6H4C3.17157 6 2.5 6.67157 2.5 7.5V13.5C2.5 14.3284 3.17157 15 4 15H11.985C12.8193 15 13.4932 14.3193 13.485 13.4851L13.4254 7.48511C13.4172 6.66253 12.7481 6 11.9255 6H11.25V4.5C11.25 2.70507 9.79493 1.25 8 1.25C6.20507 1.25 4.75 2.70507 4.75 4.5H6.25ZM4 7.5L4 13.5L11.985 13.5L11.9255 7.5L4 7.5Z"
|
|
9
|
-
fill="
|
|
9
|
+
fill="currentColor"
|
|
10
10
|
fillRule="evenodd"
|
|
11
11
|
/>
|
|
12
12
|
</Icon>
|