@bitrise/bitkit 13.311.0 → 13.313.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
|
@@ -17,7 +17,16 @@ export interface IconButtonProps extends ChakraIconButtonProps {
|
|
|
17
17
|
size?: 'sm' | 'md' | 'lg';
|
|
18
18
|
tooltipCloseDelay?: number;
|
|
19
19
|
tooltipProps?: Omit<TooltipProps, 'children'>;
|
|
20
|
-
variant?:
|
|
20
|
+
variant?:
|
|
21
|
+
| 'primary'
|
|
22
|
+
| 'secondary'
|
|
23
|
+
| 'tertiary'
|
|
24
|
+
| 'danger-primary'
|
|
25
|
+
| 'danger-secondary'
|
|
26
|
+
| 'danger-tertiary'
|
|
27
|
+
| 'ai-primary'
|
|
28
|
+
| 'ai-secondary'
|
|
29
|
+
| 'ai-tertiary';
|
|
21
30
|
}
|
|
22
31
|
|
|
23
32
|
/**
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { forwardRef, Icon, IconProps } from 'chakra-ui-2--react';
|
|
2
|
+
|
|
3
|
+
const CodePush = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 16 16" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
d="M12.5 1C13.3284 1 14 1.67157 14 2.5V13.5L13.9922 13.6533C13.9205 14.3593 13.3593 14.9205 12.6533 14.9922L12.5 15H5.5L5.34668 14.9922C4.64069 14.9205 4.07949 14.3593 4.00781 13.6533L4 13.5V9H5.5V13.5H12.5V2.5H5.5V4.5H4V2.5C4 1.67157 4.67157 1 5.5 1H12.5Z"
|
|
7
|
+
fill="currentColor"
|
|
8
|
+
/>
|
|
9
|
+
<path d="M9.75 12.5H8.25V11H9.75V12.5Z" fill="currentColor" />
|
|
10
|
+
<path
|
|
11
|
+
d="M10.5605 6.75L7.53027 9.78027L6.46973 8.71973L7.68945 7.5H3.25V6H7.68945L6.46973 4.78027L7.53027 3.71973L10.5605 6.75Z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
<path d="M2.5 7.5H1V6H2.5V7.5Z" fill="currentColor" />
|
|
15
|
+
</Icon>
|
|
16
|
+
));
|
|
17
|
+
|
|
18
|
+
export default CodePush;
|
|
@@ -70,6 +70,7 @@ export { default as ChevronUp } from './ChevronUp';
|
|
|
70
70
|
export { default as Clock } from './Clock';
|
|
71
71
|
export { default as Cross } from './Cross';
|
|
72
72
|
export { default as Code } from './Code';
|
|
73
|
+
export { default as CodePush } from './CodePush';
|
|
73
74
|
export { default as CodeSigning } from './CodeSigning';
|
|
74
75
|
export { default as Coffee } from './Coffee';
|
|
75
76
|
export { default as Commit } from './Commit';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { forwardRef, Icon, IconProps } from 'chakra-ui-2--react';
|
|
2
|
+
|
|
3
|
+
const CodePush = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
d="M18 2C19.1 2 20 2.9 20 4V20C20 21.1 19.1 22 18 22H8C6.9 22 6 21.1 6 20V13H8V20H18V4H8V7H6V4C6 2.9 6.9 2 8 2H18Z"
|
|
7
|
+
fill="currentColor"
|
|
8
|
+
/>
|
|
9
|
+
<path d="M14 18H12V16H14V18Z" fill="currentColor" />
|
|
10
|
+
<path
|
|
11
|
+
d="M15.4141 10L11.207 14.207L9.79297 12.793L11.5859 11H5V9H11.5859L9.79297 7.20703L11.207 5.79297L15.4141 10Z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
<path d="M4 11H2V9H4V11Z" fill="currentColor" />
|
|
15
|
+
</Icon>
|
|
16
|
+
));
|
|
17
|
+
|
|
18
|
+
export default CodePush;
|
|
@@ -67,6 +67,7 @@ export { default as ChevronUp } from './ChevronUp';
|
|
|
67
67
|
export { default as Clock } from './Clock';
|
|
68
68
|
export { default as Cross } from './Cross';
|
|
69
69
|
export { default as Code } from './Code';
|
|
70
|
+
export { default as CodePush } from './CodePush';
|
|
70
71
|
export { default as CodeSigning } from './CodeSigning';
|
|
71
72
|
export { default as Coffee } from './Coffee';
|
|
72
73
|
export { default as Commit } from './Commit';
|