@bitrise/bitkit 13.162.0 → 13.162.1-alpha.1

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.
Files changed (25) hide show
  1. package/package.json +1 -1
  2. package/src/Components/CloseButton/CloseButton.tsx +1 -1
  3. package/src/Components/Dialog/Dialog.tsx +1 -1
  4. package/src/Components/Drawer/Drawer.tsx +1 -1
  5. package/src/Components/Filter/Filter.tsx +1 -1
  6. package/src/Components/Filter/FilterAdd/FilterAdd.tsx +1 -1
  7. package/src/Components/Filter/FilterItem/FilterItem.tsx +1 -1
  8. package/src/Components/Filter/FilterSearch/FilterSearch.tsx +1 -1
  9. package/src/Components/Form/Checkbox/Checkbox.tsx +1 -1
  10. package/src/Components/Form/FileInput/FileInput.tsx +1 -1
  11. package/src/Components/Icons/16x16/{CloseSmall.tsx → Cross.tsx} +2 -2
  12. package/src/Components/Icons/16x16/{MinusClose.tsx → Minus.tsx} +2 -2
  13. package/src/Components/Icons/16x16/{MinusRemove.tsx → MinusCircle.tsx} +2 -2
  14. package/src/Components/Icons/16x16/{PlusOpen.tsx → Plus.tsx} +2 -2
  15. package/src/Components/Icons/16x16/{PlusAdd.tsx → PlusCircle.tsx} +2 -2
  16. package/src/Components/Icons/16x16/index.ts +5 -5
  17. package/src/Components/Icons/24x24/{CloseSmall.tsx → Cross.tsx} +2 -2
  18. package/src/Components/Icons/24x24/{MinusClose.tsx → Minus.tsx} +2 -2
  19. package/src/Components/Icons/24x24/{MinusRemove.tsx → MinusCircle.tsx} +2 -2
  20. package/src/Components/Icons/24x24/{PlusOpen.tsx → Plus.tsx} +2 -2
  21. package/src/Components/Icons/24x24/{PlusAdd.tsx → PlusCircle.tsx} +2 -2
  22. package/src/Components/Icons/24x24/index.ts +5 -5
  23. package/src/Components/LabeledData/LabeledData.tsx +1 -1
  24. package/src/Components/SearchInput/SearchInput.tsx +1 -1
  25. package/src/Components/Tag/Tag.tsx +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "13.162.0",
4
+ "version": "13.162.1-alpha.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+ssh://git@github.com/bitrise-io/bitkit.git"
@@ -14,7 +14,7 @@ export interface CloseButtonProps extends ChakraCloseButtonProps {
14
14
 
15
15
  const CloseButton = forwardRef<CloseButtonProps, 'button'>((props, ref) => (
16
16
  <ChakraCloseButton ref={ref} {...CloseButtonTheme.defaultProps} {...props}>
17
- <Icon name="CloseSmall" />
17
+ <Icon name="Cross" />
18
18
  </ChakraCloseButton>
19
19
  ));
20
20
 
@@ -52,7 +52,7 @@ const Dialog: ComponentWithAs<'section', DialogProps> = ({
52
52
 
53
53
  const closeBtn = (
54
54
  <ModalCloseButton isDisabled={!isClosable} size="large">
55
- <Icon name="CloseSmall" />
55
+ <Icon name="Cross" />
56
56
  </ModalCloseButton>
57
57
  );
58
58
 
@@ -52,7 +52,7 @@ const Drawer = ({ overlayProps, contentProps, headerProps, bodyProps, footerProp
52
52
  <DrawerOverlay {...overlayProps} />
53
53
  <DrawerContent maxWidth={maxWidth} padding={padding} margin={margin} {...contentProps}>
54
54
  <DrawerCloseButton size="md">
55
- <Icon name="CloseSmall" />
55
+ <Icon name="Cross" />
56
56
  </DrawerCloseButton>
57
57
  <DrawerHeader as="h3" padding={headerPadding} {...headerProps}>
58
58
  {title}
@@ -165,7 +165,7 @@ const Filter = (props: FilterProps) => {
165
165
  {showClearFilters && (
166
166
  <Button
167
167
  isDisabled={isLoading}
168
- leftIconName="CloseSmall"
168
+ leftIconName="Cross"
169
169
  minWidth="7.5rem"
170
170
  onClick={onClearFilters}
171
171
  size="sm"
@@ -55,7 +55,7 @@ const FilterAdd = (props: FilterAddProps) => {
55
55
  as={Button}
56
56
  isDisabled={isDisabled}
57
57
  isLoading={isLoading}
58
- leftIconName="PlusOpen"
58
+ leftIconName="Plus"
59
59
  position={isOpen ? 'relative' : undefined}
60
60
  size="sm"
61
61
  variant="tertiary"
@@ -84,7 +84,7 @@ const FilterItem = (props: FilterItemProps) => {
84
84
  {type !== 'select' && (
85
85
  <IconButton
86
86
  aria-label={isLoading ? '' : 'Clear'}
87
- iconName="CloseSmall"
87
+ iconName="Cross"
88
88
  isDisabled={isLoading}
89
89
  onClick={() => onFilterClear(category)}
90
90
  size="sm"
@@ -61,7 +61,7 @@ const FilterSearch = (props: FilterSearchProps) => {
61
61
  </Tooltip>
62
62
  {!!searchValue && (
63
63
  <InputRightElement>
64
- <IconButton aria-label="Clear" iconName="CloseSmall" onClick={onClearClick} size="sm" variant="tertiary" />
64
+ <IconButton aria-label="Clear" iconName="Cross" onClick={onClearClick} size="sm" variant="tertiary" />
65
65
  </InputRightElement>
66
66
  )}
67
67
  </InputGroup>
@@ -34,7 +34,7 @@ const CustomIcon = (props: CheckboxIconProps) => {
34
34
  if (!isChecked) {
35
35
  return null;
36
36
  }
37
- return <Icon __css={__css} name={isIndeterminate ? 'MinusClose' : 'Check'} />;
37
+ return <Icon __css={__css} name={isIndeterminate ? 'Minus' : 'Check'} />;
38
38
  };
39
39
 
40
40
  /**
@@ -104,7 +104,7 @@ const FileInput = forwardRef<FileInputProps, 'div'>((props, ref) => {
104
104
  </Text>
105
105
  <Text as="span">{selectedFileNames[0]}</Text>
106
106
  </Box>
107
- <Button flexShrink={0} leftIconName="MinusRemove" onClick={onRemoveClick} size="sm" variant="secondary">
107
+ <Button flexShrink={0} leftIconName="MinusCircle" onClick={onRemoveClick} size="sm" variant="secondary">
108
108
  Remove
109
109
  </Button>
110
110
  </>
@@ -1,6 +1,6 @@
1
1
  import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
2
2
 
3
- const CloseSmall = forwardRef<IconProps, 'svg'>((props, ref) => (
3
+ const Cross = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
5
  <path
6
6
  d="M7.99996 6.93954L4.99474 3.93433L3.93408 4.99499L6.9393 8.0002L3.9341 11.0054L4.99476 12.0661L7.99996 9.06086L11.0051 12.0661L12.0658 11.0054L9.06062 8.0002L12.0658 4.99499L11.0052 3.93433L7.99996 6.93954Z"
@@ -9,4 +9,4 @@ const CloseSmall = forwardRef<IconProps, 'svg'>((props, ref) => (
9
9
  </Icon>
10
10
  ));
11
11
 
12
- export default CloseSmall;
12
+ export default Cross;
@@ -1,9 +1,9 @@
1
1
  import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
2
2
 
3
- const MinusClose = forwardRef<IconProps, 'svg'>((props, ref) => (
3
+ const Minus = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
5
  <path clipRule="evenodd" d="M3 7.25L13 7.25L13 8.75L3 8.75L3 7.25Z" fill="currentColor" fillRule="evenodd" />
6
6
  </Icon>
7
7
  ));
8
8
 
9
- export default MinusClose;
9
+ export default Minus;
@@ -1,6 +1,6 @@
1
1
  import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
2
2
 
3
- const MinusRemove = forwardRef<IconProps, 'svg'>((props, ref) => (
3
+ const MinusCircle = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
5
  <path d="M11.5 7.25H4.5V8.75H11.5V7.25Z" fill="currentColor" />
6
6
  <path
@@ -12,4 +12,4 @@ const MinusRemove = forwardRef<IconProps, 'svg'>((props, ref) => (
12
12
  </Icon>
13
13
  ));
14
14
 
15
- export default MinusRemove;
15
+ export default MinusCircle;
@@ -1,9 +1,9 @@
1
1
  import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
2
2
 
3
- const PlusOpen = forwardRef<IconProps, 'svg'>((props, ref) => (
3
+ const Plus = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
5
  <path d="M8.75 7.25L8.75 3H7.25L7.25 7.25H3V8.75H7.25L7.25 13H8.75L8.75 8.75H13V7.25H8.75Z" fill="currentColor" />
6
6
  </Icon>
7
7
  ));
8
8
 
9
- export default PlusOpen;
9
+ export default Plus;
@@ -1,6 +1,6 @@
1
1
  import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
2
2
 
3
- const PlusAdd = forwardRef<IconProps, 'svg'>((props, ref) => (
3
+ const PlusCircle = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
5
  <path d="M8.75 7.25H11.5V8.75H8.75V11.5H7.25V8.75H4.5V7.25H7.25V4.5H8.75V7.25Z" fill="currentColor" />
6
6
  <path
@@ -12,4 +12,4 @@ const PlusAdd = forwardRef<IconProps, 'svg'>((props, ref) => (
12
12
  </Icon>
13
13
  ));
14
14
 
15
- export default PlusAdd;
15
+ export default PlusCircle;
@@ -66,7 +66,7 @@ export { default as ChevronLeft } from './ChevronLeft';
66
66
  export { default as ChevronRight } from './ChevronRight';
67
67
  export { default as ChevronUp } from './ChevronUp';
68
68
  export { default as Clock } from './Clock';
69
- export { default as CloseSmall } from './CloseSmall';
69
+ export { default as Cross } from './Cross';
70
70
  export { default as Code } from './Code';
71
71
  export { default as CodeSigning } from './CodeSigning';
72
72
  export { default as Coffee } from './Coffee';
@@ -151,8 +151,8 @@ export { default as MenuHamburger } from './MenuHamburger';
151
151
  export { default as Message } from './Message';
152
152
  export { default as MessageQuestion } from './MessageQuestion';
153
153
  export { default as MinusCircleFilled } from './MinusCircleFilled';
154
- export { default as MinusClose } from './MinusClose';
155
- export { default as MinusRemove } from './MinusRemove';
154
+ export { default as Minus } from './Minus';
155
+ export { default as MinusCircle } from './MinusCircle';
156
156
  export { default as Mobile } from './Mobile';
157
157
  export { default as MonitorChart } from './MonitorChart';
158
158
  export { default as MoreHorizontal } from './MoreHorizontal';
@@ -172,9 +172,9 @@ export { default as Pencil } from './Pencil';
172
172
  export { default as Percent } from './Percent';
173
173
  export { default as Person } from './Person';
174
174
  export { default as Play } from './Play';
175
- export { default as PlusAdd } from './PlusAdd';
175
+ export { default as PlusCircle } from './PlusCircle';
176
176
  export { default as PlusCircleFilled } from './PlusCircleFilled';
177
- export { default as PlusOpen } from './PlusOpen';
177
+ export { default as Plus } from './Plus';
178
178
  export { default as Podcast } from './Podcast';
179
179
  export { default as Power } from './Power';
180
180
  export { default as Pull } from './Pull';
@@ -1,6 +1,6 @@
1
1
  import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
2
2
 
3
- const CloseSmall = forwardRef<IconProps, 'svg'>((props, ref) => (
3
+ const Cross = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
5
  <path
6
6
  d="M12 13.4143L16.5426 17.9569C16.5426 17.9569 16.5428 17.9572 17.25 17.2501C17.9571 16.543 17.957 16.5429 17.957 16.5429L13.4142 12.0001L17.9571 7.45718L16.5428 6.04297L12 10.5859L7.45706 6.04297L6.04285 7.45718L10.5857 12.0001L6.04285 16.543L7.45706 17.9572L12 13.4143Z"
@@ -9,4 +9,4 @@ const CloseSmall = forwardRef<IconProps, 'svg'>((props, ref) => (
9
9
  </Icon>
10
10
  ));
11
11
 
12
- export default CloseSmall;
12
+ export default Cross;
@@ -1,9 +1,9 @@
1
1
  import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
2
2
 
3
- const MinusClose = forwardRef<IconProps, 'svg'>((props, ref) => (
3
+ const Minus = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
5
  <path clipRule="evenodd" d="M18 13H6V11H18V13Z" fill="currentColor" fillRule="evenodd" />
6
6
  </Icon>
7
7
  ));
8
8
 
9
- export default MinusClose;
9
+ export default Minus;
@@ -1,6 +1,6 @@
1
1
  import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
2
2
 
3
- const MinusRemove = forwardRef<IconProps, 'svg'>((props, ref) => (
3
+ const MinusCircle = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
5
  <path d="M7 13H17V11H7V13Z" fill="currentColor" />
6
6
  <path
@@ -12,4 +12,4 @@ const MinusRemove = forwardRef<IconProps, 'svg'>((props, ref) => (
12
12
  </Icon>
13
13
  ));
14
14
 
15
- export default MinusRemove;
15
+ export default MinusCircle;
@@ -1,9 +1,9 @@
1
1
  import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
2
2
 
3
- const PlusOpen = forwardRef<IconProps, 'svg'>((props, ref) => (
3
+ const Plus = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
5
  <path d="M11 13V18H13V13H18V11H13V6H11V11H6V13H11Z" fill="currentColor" />
6
6
  </Icon>
7
7
  ));
8
8
 
9
- export default PlusOpen;
9
+ export default Plus;
@@ -1,6 +1,6 @@
1
1
  import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
2
2
 
3
- const PlusAdd = forwardRef<IconProps, 'svg'>((props, ref) => (
3
+ const PlusCircle = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
5
  <path d="M11 13H7V11H11V7H13V11H17V13H13V17H11V13Z" fill="currentColor" />
6
6
  <path
@@ -12,4 +12,4 @@ const PlusAdd = forwardRef<IconProps, 'svg'>((props, ref) => (
12
12
  </Icon>
13
13
  ));
14
14
 
15
- export default PlusAdd;
15
+ export default PlusCircle;
@@ -63,7 +63,7 @@ export { default as ChevronLeft } from './ChevronLeft';
63
63
  export { default as ChevronRight } from './ChevronRight';
64
64
  export { default as ChevronUp } from './ChevronUp';
65
65
  export { default as Clock } from './Clock';
66
- export { default as CloseSmall } from './CloseSmall';
66
+ export { default as Cross } from './Cross';
67
67
  export { default as Code } from './Code';
68
68
  export { default as CodeSigning } from './CodeSigning';
69
69
  export { default as Coffee } from './Coffee';
@@ -149,8 +149,8 @@ export { default as MenuHamburger } from './MenuHamburger';
149
149
  export { default as Message } from './Message';
150
150
  export { default as MessageQuestion } from './MessageQuestion';
151
151
  export { default as MinusCircleFilled } from './MinusCircleFilled';
152
- export { default as MinusClose } from './MinusClose';
153
- export { default as MinusRemove } from './MinusRemove';
152
+ export { default as Minus } from './Minus';
153
+ export { default as MinusCircle } from './MinusCircle';
154
154
  export { default as Mobile } from './Mobile';
155
155
  export { default as MonitorChart } from './MonitorChart';
156
156
  export { default as MoreHorizontal } from './MoreHorizontal';
@@ -170,9 +170,9 @@ export { default as Pencil } from './Pencil';
170
170
  export { default as Percent } from './Percent';
171
171
  export { default as Person } from './Person';
172
172
  export { default as Play } from './Play';
173
- export { default as PlusAdd } from './PlusAdd';
173
+ export { default as PlusCircle } from './PlusCircle';
174
174
  export { default as PlusCircleFilled } from './PlusCircleFilled';
175
- export { default as PlusOpen } from './PlusOpen';
175
+ export { default as Plus } from './Plus';
176
176
  export { default as Podcast } from './Podcast';
177
177
  export { default as Power } from './Power';
178
178
  export { default as Pull } from './Pull';
@@ -67,7 +67,7 @@ const LabeledData = ({
67
67
  trendIconName = 'ArrowDown';
68
68
  break;
69
69
  case 'neutral':
70
- trendIconName = 'MinusClose';
70
+ trendIconName = 'Minus';
71
71
  break;
72
72
  }
73
73
 
@@ -23,7 +23,7 @@ const SearchInput = (props: SearchInputProps) => {
23
23
  _active={{ background: 'transparent' }}
24
24
  _hover={{ background: 'transparent' }}
25
25
  aria-label="Clear"
26
- iconName="CloseSmall"
26
+ iconName="Cross"
27
27
  onClick={onClearClick}
28
28
  variant="tertiary"
29
29
  />
@@ -67,7 +67,7 @@ const Tag = forwardRef<TagProps, 'span'>((props, ref) => {
67
67
  {!!onClose && (
68
68
  <Tooltip isDisabled={!closeButtonTooltip} label={closeButtonTooltip}>
69
69
  <TagCloseButton isDisabled={isDisabled || isLoading} onClick={onClose}>
70
- <Icon name="CloseSmall" size="16" />
70
+ <Icon name="Cross" size="16" />
71
71
  </TagCloseButton>
72
72
  </Tooltip>
73
73
  )}