@bitrise/bitkit 12.31.2 → 12.33.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 +1 -1
- package/src/Components/Icons/16x16/Agent.tsx +14 -0
- package/src/Components/Icons/16x16/Bazel.tsx +50 -0
- package/src/Components/Icons/16x16/Gradle.tsx +14 -0
- package/src/Components/Icons/16x16/index.ts +3 -0
- package/src/Components/Icons/24x24/Agent.tsx +14 -0
- package/src/Components/Icons/24x24/Bazel.tsx +50 -0
- package/src/Components/Icons/24x24/Gradle.tsx +14 -0
- package/src/Components/Icons/24x24/index.ts +3 -0
package/package.json
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const Agent = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 16 16" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
fill="currentColor"
|
|
7
|
+
fillRule="evenodd"
|
|
8
|
+
d="M13.3333 2.66671H2.66665V6.00004H13.3333V2.66671ZM13.3333 10H2.66665V13.3334H13.3333V10ZM2.66665 1.33337C1.93027 1.33337 1.33331 1.93033 1.33331 2.66671V6.00004C1.33331 6.73642 1.93027 7.33337 2.66665 7.33337H13.3333C14.0697 7.33337 14.6666 6.73642 14.6666 6.00004V2.66671C14.6666 1.93033 14.0697 1.33337 13.3333 1.33337H2.66665ZM2.66665 8.66671C1.93027 8.66671 1.33331 9.26366 1.33331 10V13.3334C1.33331 14.0698 1.93027 14.6667 2.66665 14.6667H13.3333C14.0697 14.6667 14.6666 14.0698 14.6666 13.3334V10C14.6666 9.26366 14.0697 8.66671 13.3333 8.66671H2.66665Z"
|
|
9
|
+
clipRule="evenodd"
|
|
10
|
+
/>
|
|
11
|
+
</Icon>
|
|
12
|
+
));
|
|
13
|
+
|
|
14
|
+
export default Agent;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const Bazel = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 16 16" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
clipRule="evenodd"
|
|
7
|
+
fill="currentColor"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
d="m4.96003 2 2.87688 2.87688-2.87688 2.87688-2.87688-2.87688z"
|
|
10
|
+
/>
|
|
11
|
+
<path
|
|
12
|
+
clipRule="evenodd"
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
fillRule="evenodd"
|
|
15
|
+
d="m8.11975 5.15972-2.87688 2.87688 2.87688 2.8769 2.87685-2.8769z"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
clipRule="evenodd"
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
fillRule="evenodd"
|
|
21
|
+
d="m4.76003 10.7135v-2.59406l-2.75972-2.75972v2.59404z"
|
|
22
|
+
/>
|
|
23
|
+
<path
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
fill="currentColor"
|
|
26
|
+
fillRule="evenodd"
|
|
27
|
+
d="m5.16003 8.51944v2.59406l2.75972 2.7597v-2.594z"
|
|
28
|
+
/>
|
|
29
|
+
<path
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
fill="currentColor"
|
|
32
|
+
fillRule="evenodd"
|
|
33
|
+
d="m8.31975 11.2792v2.594l2.75975-2.7597v-2.59406z"
|
|
34
|
+
/>
|
|
35
|
+
<path
|
|
36
|
+
clipRule="evenodd"
|
|
37
|
+
fill="currentColor"
|
|
38
|
+
fillRule="evenodd"
|
|
39
|
+
d="m14.2392 7.95376-2.7597 2.75974v-2.59406l2.7597-2.75972z"
|
|
40
|
+
/>
|
|
41
|
+
<path
|
|
42
|
+
clipRule="evenodd"
|
|
43
|
+
fill="currentColor"
|
|
44
|
+
fillRule="evenodd"
|
|
45
|
+
d="m11.2795 7.75376 2.8769-2.87688-2.8769-2.87688-2.87691 2.87688z"
|
|
46
|
+
/>
|
|
47
|
+
</Icon>
|
|
48
|
+
));
|
|
49
|
+
|
|
50
|
+
export default Bazel;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const Gradle = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 16 16" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
clipRule="evenodd"
|
|
7
|
+
fill="currentColor"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
d="M14.2932 3.56906C13.9152 3.21285 13.405 3.00892 12.8705 3.00029C12.3359 2.99165 11.8187 3.17899 11.4279 3.52277C11.4083 3.54032 11.3927 3.56144 11.382 3.58484C11.3714 3.60824 11.3659 3.63344 11.3659 3.65891C11.3659 3.68437 11.3714 3.70957 11.382 3.73298C11.3927 3.75638 11.4083 3.7775 11.4279 3.79504L11.6764 4.03464C11.71 4.06611 11.7545 4.08509 11.8018 4.0881C11.849 4.0911 11.8958 4.07792 11.9336 4.05098C12.1719 3.87162 12.4746 3.78601 12.7784 3.81206C13.0822 3.83811 13.3635 3.9738 13.5636 4.19076C13.7636 4.40771 13.8669 4.68913 13.8518 4.97617C13.8367 5.2632 13.7044 5.53363 13.4826 5.73089C11.8455 7.27195 9.66071 2.951 4.70168 5.17818C4.61799 5.21606 4.54353 5.26987 4.48301 5.33622C4.4225 5.40257 4.37723 5.48002 4.35008 5.56367C4.32293 5.64733 4.31447 5.73538 4.32525 5.82227C4.33602 5.90916 4.3658 5.993 4.4127 6.06851L5.26376 7.45301C5.35188 7.59742 5.49698 7.70319 5.66747 7.74729C5.83796 7.7914 6.02004 7.77028 6.17408 7.68852L6.19431 7.67763L6.17841 7.68852L6.55121 7.49249C6.97155 7.2466 7.3689 6.96742 7.73894 6.65798C7.77557 6.62652 7.82291 6.60841 7.87245 6.60692C7.92198 6.60542 7.97046 6.62063 8.00915 6.64981C8.03007 6.66634 8.04704 6.68685 8.05895 6.71C8.07087 6.73314 8.07745 6.7584 8.07827 6.78411C8.07908 6.80982 8.07412 6.83541 8.0637 6.85919C8.05329 6.88296 8.03765 6.9044 8.01782 6.92208C7.62834 7.25261 7.20864 7.55009 6.76361 7.81104H6.75061L6.37348 8.0098C6.2142 8.09407 6.03452 8.13815 5.85185 8.13777C5.66266 8.13841 5.47663 8.09206 5.31251 8.00339C5.14838 7.91472 5.01196 7.78687 4.91698 7.63271L4.11215 6.32444C2.57329 7.35635 1.6283 9.33849 2.13981 11.8488C2.1482 11.8911 2.17198 11.9294 2.20705 11.9569C2.24213 11.9845 2.2863 11.9997 2.33198 11.9999H3.2394C3.2894 12.0012 3.338 11.9844 3.37532 11.953C3.41263 11.9216 3.43586 11.8781 3.44025 11.8311C3.48288 11.527 3.64137 11.2479 3.88619 11.0457C4.131 10.8435 4.44547 10.732 4.77104 10.732C5.09661 10.732 5.41108 10.8435 5.65589 11.0457C5.90071 11.2479 6.0592 11.527 6.10183 11.8311C6.10748 11.8758 6.13031 11.9169 6.16599 11.9468C6.20167 11.9766 6.24773 11.9931 6.29545 11.9931H7.18264C7.23027 11.9928 7.27617 11.9762 7.31178 11.9464C7.3474 11.9166 7.37031 11.8757 7.37627 11.8311C7.4189 11.527 7.57738 11.2479 7.8222 11.0457C8.06702 10.8435 8.38149 10.732 8.70705 10.732C9.03262 10.732 9.34709 10.8435 9.59191 11.0457C9.83673 11.2479 9.99521 11.527 10.0378 11.8311C10.0438 11.8757 10.0667 11.9166 10.1023 11.9464C10.1379 11.9762 10.1838 11.9928 10.2315 11.9931H11.1129C11.1645 11.9931 11.2141 11.974 11.2508 11.9399C11.2876 11.9057 11.3086 11.8593 11.3094 11.8107C11.3296 10.6399 11.6648 9.29492 12.6199 8.62105C15.9289 6.28905 15.059 4.29058 14.2932 3.56906ZM10.9193 7.09089L10.2878 6.79275C10.2878 6.72905 10.305 6.6664 10.3379 6.61077C10.3709 6.55514 10.4184 6.50837 10.4759 6.47494C10.5334 6.4415 10.5991 6.4225 10.6667 6.41975C10.7342 6.41701 10.8014 6.4306 10.8618 6.45925C10.9221 6.48789 10.9737 6.53062 11.0116 6.58338C11.0495 6.63613 11.0724 6.69715 11.0782 6.76061C11.084 6.82408 11.0724 6.88788 11.0446 6.94593C11.0167 7.00398 10.9736 7.05436 10.9193 7.09225V7.09089Z"
|
|
10
|
+
/>
|
|
11
|
+
</Icon>
|
|
12
|
+
));
|
|
13
|
+
|
|
14
|
+
export default Gradle;
|
|
@@ -2,6 +2,7 @@ export { default as AddonsTuorqouise } from './AddonsTuorqouise';
|
|
|
2
2
|
export { default as AddonsViolet } from './AddonsViolet';
|
|
3
3
|
export { default as AddonsWhite } from './AddonsWhite';
|
|
4
4
|
export { default as Addons } from './Addons';
|
|
5
|
+
export { default as Agent } from './Agent';
|
|
5
6
|
export { default as Anchor } from './Anchor';
|
|
6
7
|
export { default as Android } from './Android';
|
|
7
8
|
export { default as App } from './App';
|
|
@@ -15,6 +16,7 @@ export { default as ArrowUp } from './ArrowUp';
|
|
|
15
16
|
export { default as BackArrow } from './BackArrow';
|
|
16
17
|
export { default as Badge3rdParty } from './Badge3rdParty';
|
|
17
18
|
export { default as BadgeBitrise } from './BadgeBitrise';
|
|
19
|
+
export { default as Bazel } from './Bazel';
|
|
18
20
|
export { default as Bell } from './Bell';
|
|
19
21
|
export { default as BitbotError } from './BitbotError';
|
|
20
22
|
export { default as Bitbot } from './Bitbot';
|
|
@@ -91,6 +93,7 @@ export { default as GitlabShadedWhite } from './GitlabShadedWhite';
|
|
|
91
93
|
export { default as Globe } from './Globe';
|
|
92
94
|
export { default as Go } from './Go';
|
|
93
95
|
export { default as GoogleColor } from './GoogleColor';
|
|
96
|
+
export { default as Gradle } from './Gradle';
|
|
94
97
|
export { default as Group } from './Group';
|
|
95
98
|
export { default as Heart } from './Heart';
|
|
96
99
|
export { default as HidePassword } from './HidePassword';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const Agent = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
fill="currentColor"
|
|
7
|
+
fillRule="evenodd"
|
|
8
|
+
d="M20 4H4V9H20V4ZM20 15H4V20H20V15ZM4 2C2.89543 2 2 2.89543 2 4V9C2 10.1046 2.89543 11 4 11H20C21.1046 11 22 10.1046 22 9V4C22 2.89543 21.1046 2 20 2H4ZM4 13C2.89543 13 2 13.8954 2 15V20C2 21.1046 2.89543 22 4 22H20C21.1046 22 22 21.1046 22 20V15C22 13.8954 21.1046 13 20 13H4Z"
|
|
9
|
+
clipRule="evenodd"
|
|
10
|
+
/>
|
|
11
|
+
</Icon>
|
|
12
|
+
));
|
|
13
|
+
|
|
14
|
+
export default Agent;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const Bazel = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
d="M7.44001 3L11.7553 7.31532L7.44001 11.6306L3.12469 7.31532L7.44001 3Z"
|
|
7
|
+
fill="currentColor"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
clipRule="evenodd"
|
|
10
|
+
/>
|
|
11
|
+
<path
|
|
12
|
+
d="M12.1796 7.73958L7.86427 12.0549L12.1796 16.3702L16.4949 12.0549L12.1796 7.73958Z"
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
fillRule="evenodd"
|
|
15
|
+
clipRule="evenodd"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M7.14001 16.0702V12.1792L3.00043 8.03958V11.9306L7.14001 16.0702Z"
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
fillRule="evenodd"
|
|
21
|
+
clipRule="evenodd"
|
|
22
|
+
/>
|
|
23
|
+
<path
|
|
24
|
+
d="M7.74001 12.7792V16.6702L11.8796 20.8098V16.9187L7.74001 12.7792Z"
|
|
25
|
+
fill="currentColor"
|
|
26
|
+
fillRule="evenodd"
|
|
27
|
+
clipRule="evenodd"
|
|
28
|
+
/>
|
|
29
|
+
<path
|
|
30
|
+
d="M12.4796 16.9187V20.8098L16.6192 16.6702V12.7792L12.4796 16.9187Z"
|
|
31
|
+
fill="currentColor"
|
|
32
|
+
fillRule="evenodd"
|
|
33
|
+
clipRule="evenodd"
|
|
34
|
+
/>
|
|
35
|
+
<path
|
|
36
|
+
d="M21.3588 11.9306L17.2192 16.0702V12.1792L21.3588 8.03958V11.9306Z"
|
|
37
|
+
fill="currentColor"
|
|
38
|
+
fillRule="evenodd"
|
|
39
|
+
clipRule="evenodd"
|
|
40
|
+
/>
|
|
41
|
+
<path
|
|
42
|
+
d="M16.9192 11.6306L21.2345 7.31532L16.9192 3L12.6039 7.31532L16.9192 11.6306Z"
|
|
43
|
+
fill="currentColor"
|
|
44
|
+
fillRule="evenodd"
|
|
45
|
+
clipRule="evenodd"
|
|
46
|
+
/>
|
|
47
|
+
</Icon>
|
|
48
|
+
));
|
|
49
|
+
|
|
50
|
+
export default Bazel;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const Gradle = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
fill="currentColor"
|
|
7
|
+
fillRule="evenodd"
|
|
8
|
+
clipRule="evenodd"
|
|
9
|
+
d="M21.4398 5.35359C20.8727 4.81928 20.1076 4.51338 19.3057 4.50043C18.5038 4.48748 17.728 4.76848 17.1418 5.28416C17.1124 5.31048 17.089 5.34216 17.0731 5.37726C17.0571 5.41237 17.0488 5.45016 17.0488 5.48836C17.0488 5.52656 17.0571 5.56436 17.0731 5.59946C17.089 5.63457 17.1124 5.66624 17.1418 5.69257L17.5146 6.05196C17.565 6.09917 17.6318 6.12764 17.7026 6.13214C17.7735 6.13665 17.8438 6.11688 17.9004 6.07647C18.2579 5.80743 18.712 5.67902 19.1676 5.71809C19.6233 5.75717 20.0453 5.9607 20.3453 6.28614C20.6454 6.61157 20.8003 7.0337 20.7777 7.46425C20.755 7.89481 20.5566 8.30044 20.2239 8.59634C17.7682 10.9079 14.4911 4.4265 7.05252 7.76727C6.92698 7.82409 6.81529 7.90481 6.72452 8.00433C6.63374 8.10385 6.56585 8.22002 6.52512 8.34551C6.48439 8.47099 6.4717 8.60307 6.48787 8.73341C6.50404 8.86374 6.5487 8.98951 6.61904 9.10276L7.89565 11.1795C8.02783 11.3961 8.24547 11.5548 8.5012 11.6209C8.75694 11.6871 9.03006 11.6554 9.26111 11.5328L9.29146 11.5164L9.26762 11.5328L9.82681 11.2387C10.4573 10.8699 11.0534 10.4511 11.6084 9.98696C11.6634 9.93978 11.7344 9.91262 11.8087 9.91037C11.883 9.90813 11.9557 9.93094 12.0137 9.97471C12.0451 9.99951 12.0706 10.0303 12.0884 10.065C12.1063 10.0997 12.1162 10.1376 12.1174 10.1762C12.1186 10.2147 12.1112 10.2531 12.0956 10.2888C12.0799 10.3244 12.0565 10.3566 12.0267 10.3831C11.4425 10.8789 10.813 11.3251 10.1454 11.7166H10.1259L9.56022 12.0147C9.3213 12.1411 9.05179 12.2072 8.77778 12.2067C8.49399 12.2076 8.21495 12.1381 7.96876 12.0051C7.72257 11.8721 7.51793 11.6803 7.37547 11.4491L6.16822 9.48667C3.85993 11.0345 2.44245 14.0077 3.20971 17.7732C3.2223 17.8367 3.25797 17.894 3.31058 17.9354C3.36319 17.9768 3.42945 17.9996 3.49797 17.9999H4.85911C4.93409 18.0017 5.007 17.9766 5.06298 17.9295C5.11895 17.8825 5.15378 17.8171 5.16038 17.7467C5.22433 17.2906 5.46205 16.8719 5.82928 16.5686C6.19651 16.2653 6.66821 16.0981 7.15656 16.0981C7.64491 16.0981 8.11661 16.2653 8.48384 16.5686C8.85107 16.8719 9.08879 17.2906 9.15274 17.7467C9.16123 17.8137 9.19547 17.8754 9.24899 17.9201C9.30251 17.9649 9.3716 17.9897 9.44318 17.9897H10.774C10.8454 17.9892 10.9142 17.9643 10.9677 17.9196C11.0211 17.8749 11.0555 17.8135 11.0644 17.7467C11.1283 17.2906 11.3661 16.8719 11.7333 16.5686C12.1005 16.2653 12.5722 16.0981 13.0606 16.0981C13.5489 16.0981 14.0206 16.2653 14.3879 16.5686C14.7551 16.8719 14.9928 17.2906 15.0568 17.7467C15.0657 17.8135 15.1001 17.8749 15.1535 17.9196C15.2069 17.9643 15.2758 17.9892 15.3472 17.9897H16.6693C16.7467 17.9897 16.8211 17.961 16.8762 17.9098C16.9314 17.8586 16.9629 17.789 16.9641 17.7161C16.9944 15.9599 17.4973 13.9424 18.9299 12.9316C23.8933 9.43357 22.5885 6.43587 21.4398 5.35359ZM16.3789 10.6363L15.4317 10.1891C15.4316 10.0936 15.4575 9.9996 15.5069 9.91615C15.5563 9.8327 15.6275 9.76256 15.7139 9.7124C15.8002 9.66225 15.8987 9.63375 16 9.62963C16.1013 9.62551 16.2021 9.64591 16.2926 9.68887C16.3832 9.73183 16.4606 9.79593 16.5174 9.87507C16.5743 9.9542 16.6087 10.0457 16.6173 10.1409C16.626 10.2361 16.6086 10.3318 16.5668 10.4189C16.5251 10.506 16.4604 10.5815 16.3789 10.6384V10.6363Z"
|
|
10
|
+
/>
|
|
11
|
+
</Icon>
|
|
12
|
+
));
|
|
13
|
+
|
|
14
|
+
export default Gradle;
|
|
@@ -2,6 +2,7 @@ export { default as AddonsTuorqouise } from './AddonsTuorqouise';
|
|
|
2
2
|
export { default as AddonsViolet } from './AddonsViolet';
|
|
3
3
|
export { default as AddonsWhite } from './AddonsWhite';
|
|
4
4
|
export { default as Addons } from './Addons';
|
|
5
|
+
export { default as Agent } from './Agent';
|
|
5
6
|
export { default as Anchor } from './Anchor';
|
|
6
7
|
export { default as Android } from './Android';
|
|
7
8
|
export { default as App } from './App';
|
|
@@ -15,6 +16,7 @@ export { default as ArrowUp } from './ArrowUp';
|
|
|
15
16
|
export { default as BackArrow } from './BackArrow';
|
|
16
17
|
export { default as Badge3rdParty } from './Badge3rdParty';
|
|
17
18
|
export { default as BadgeBitrise } from './BadgeBitrise';
|
|
19
|
+
export { default as Bazel } from './Bazel';
|
|
18
20
|
export { default as Bell } from './Bell';
|
|
19
21
|
export { default as BitbotError } from './BitbotError';
|
|
20
22
|
export { default as Bitbot } from './Bitbot';
|
|
@@ -91,6 +93,7 @@ export { default as GitlabShadedWhite } from './GitlabShadedWhite';
|
|
|
91
93
|
export { default as Globe } from './Globe';
|
|
92
94
|
export { default as Go } from './Go';
|
|
93
95
|
export { default as GoogleColor } from './GoogleColor';
|
|
96
|
+
export { default as Gradle } from './Gradle';
|
|
94
97
|
export { default as Group } from './Group';
|
|
95
98
|
export { default as Heart } from './Heart';
|
|
96
99
|
export { default as HidePassword } from './HidePassword';
|