@bitrise/bitkit 12.117.0 → 12.118.1-alpha.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 +16 -16
- package/src/Components/Button/Button.theme.ts +91 -141
- package/src/Components/Button/Button.tsx +7 -11
- package/src/Components/CodeBlock/CodeBlock.tsx +1 -1
- package/src/Components/DatePicker/DatePickerFooter.tsx +3 -3
- package/src/Components/DatePicker/DatePickerHeader.tsx +2 -2
- package/src/Components/DatePicker/DatePickerMonth.tsx +1 -1
- package/src/Components/Filter/Filter.theme.ts +8 -7
- package/src/Components/Filter/Filter.tsx +1 -1
- package/src/Components/Filter/FilterAdd/FilterAdd.tsx +1 -1
- package/src/Components/Filter/FilterForm/FilterForm.tsx +3 -3
- package/src/Components/Filter/FilterItem/FilterItem.tsx +1 -1
- package/src/Components/Filter/FilterSearch/FilterSearch.tsx +1 -1
- package/src/Components/Form/FileInput/FileInput.tsx +1 -1
- package/src/Components/IconButton/IconButton.tsx +6 -5
- package/src/Components/Icons/16x16/Android.tsx +1 -3
- package/src/Components/Icons/16x16/AppStore.tsx +14 -0
- package/src/Components/Icons/16x16/AppStoreColor.tsx +26 -0
- package/src/Components/Icons/16x16/Apple.tsx +1 -3
- package/src/Components/Icons/16x16/BitbucketBlue.tsx +7 -7
- package/src/Components/Icons/16x16/BitbucketNeutral.tsx +33 -0
- package/src/Components/Icons/16x16/BitbucketPlain.tsx +1 -1
- package/src/Components/Icons/16x16/BitbucketShadedWhite.tsx +10 -14
- package/src/Components/Icons/16x16/Doc.tsx +4 -1
- package/src/Components/Icons/16x16/GitlabColor.tsx +8 -15
- package/src/Components/Icons/16x16/GitlabPlain.tsx +1 -3
- package/src/Components/Icons/16x16/GitlabShadedWhite.tsx +1 -38
- package/src/Components/Icons/16x16/Go.tsx +6 -10
- package/src/Components/Icons/16x16/GooglePlay.tsx +21 -0
- package/src/Components/Icons/16x16/GooglePlayColor.tsx +24 -0
- package/src/Components/Icons/16x16/XTwitter.tsx +12 -0
- package/src/Components/Icons/16x16/index.ts +8 -2
- package/src/Components/Icons/24x24/Android.tsx +1 -3
- package/src/Components/Icons/24x24/AppStore.tsx +14 -0
- package/src/Components/Icons/24x24/AppStoreColor.tsx +26 -0
- package/src/Components/Icons/24x24/Apple.tsx +1 -3
- package/src/Components/Icons/24x24/BitbucketBlue.tsx +7 -7
- package/src/Components/Icons/24x24/BitbucketNeutral.tsx +33 -0
- package/src/Components/Icons/24x24/BitbucketPlain.tsx +1 -1
- package/src/Components/Icons/24x24/BitbucketShadedWhite.tsx +10 -32
- package/src/Components/Icons/24x24/Doc.tsx +4 -1
- package/src/Components/Icons/24x24/GitlabColor.tsx +8 -15
- package/src/Components/Icons/24x24/GitlabPlain.tsx +1 -3
- package/src/Components/Icons/24x24/GitlabShadedWhite.tsx +1 -31
- package/src/Components/Icons/24x24/Go.tsx +6 -10
- package/src/Components/Icons/24x24/GooglePlay.tsx +24 -0
- package/src/Components/Icons/24x24/GooglePlayColor.tsx +24 -0
- package/src/Components/Icons/24x24/XTwitter.tsx +12 -0
- package/src/Components/Icons/24x24/index.ts +8 -2
- package/src/Components/Note/Note.tsx +1 -1
- package/src/Components/OverflowMenu/OverflowMenu.tsx +1 -1
- package/src/Components/Table/TableIconButton.tsx +1 -1
|
@@ -7,46 +7,24 @@ const BitbucketShadedWhite = forwardRef<IconProps, 'svg'>((props, ref) => {
|
|
|
7
7
|
return (
|
|
8
8
|
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
9
9
|
<path
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
fill="#fff"
|
|
13
|
-
fillRule="evenodd"
|
|
10
|
+
d="M21.1247 9.02767H15.1303L14.1313 14.9222H9.96851L5.07312 20.75C5.07312 20.75 5.30622 20.9499 5.63925 20.9499H18.6937C18.9934 20.9499 19.2599 20.7168 19.3264 20.417L21.1247 9.02767Z"
|
|
11
|
+
fill={`url(#${iconPrefix}__a)`}
|
|
14
12
|
/>
|
|
15
13
|
<path
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
fill={`url(#${iconPrefix}__a)`}
|
|
19
|
-
fillRule="evenodd"
|
|
14
|
+
d="M2.64201 3C2.24238 3 1.94269 3.36633 2.00929 3.73265L4.70678 20.2506C4.74008 20.4504 4.84 20.6503 5.00651 20.7834C5.00651 20.7834 5.23961 20.9833 5.57264 20.9833L10.6346 14.9223H9.93526L8.83626 9.02776L15.1303 9.02767H21.1247L21.9907 3.73265C22.0574 3.33303 21.7576 3 21.3579 3H2.64201Z"
|
|
15
|
+
fill="white"
|
|
20
16
|
/>
|
|
21
|
-
<mask
|
|
22
|
-
height={12}
|
|
23
|
-
id={`${iconPrefix}__b`}
|
|
24
|
-
maskUnits="userSpaceOnUse"
|
|
25
|
-
style={{
|
|
26
|
-
maskType: 'alpha',
|
|
27
|
-
}}
|
|
28
|
-
width={17}
|
|
29
|
-
x={5}
|
|
30
|
-
y={9}
|
|
31
|
-
>
|
|
32
|
-
<path
|
|
33
|
-
clipRule="evenodd"
|
|
34
|
-
d="m15.092 9-1.01 5.892H9.919L5 20.729c.156.135.355.21.56.212H18.63a.641.641 0 0 0 .625-.538L21.14 9h-6.048Z"
|
|
35
|
-
fill="#fff"
|
|
36
|
-
fillRule="evenodd"
|
|
37
|
-
/>
|
|
38
|
-
</mask>
|
|
39
17
|
<defs>
|
|
40
18
|
<linearGradient
|
|
41
19
|
gradientUnits="userSpaceOnUse"
|
|
42
20
|
id={`${iconPrefix}__a`}
|
|
43
|
-
x1={
|
|
44
|
-
x2={
|
|
45
|
-
y1={
|
|
46
|
-
y2={
|
|
21
|
+
x1={22.9852}
|
|
22
|
+
x2={9.97413}
|
|
23
|
+
y1={6.96468}
|
|
24
|
+
y2={14.2395}
|
|
47
25
|
>
|
|
48
|
-
<stop stopColor="#fff" stopOpacity={0.
|
|
49
|
-
<stop offset={1} stopColor="#
|
|
26
|
+
<stop offset={0.0718327} stopColor="#fff" stopOpacity={0.4} />
|
|
27
|
+
<stop offset={1} stopColor="#fff" />
|
|
50
28
|
</linearGradient>
|
|
51
29
|
</defs>
|
|
52
30
|
</Icon>
|
|
@@ -2,9 +2,12 @@ import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
|
2
2
|
|
|
3
3
|
const Doc = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
4
|
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
|
+
<path d="M8 8H16V6H8V8Z" fill="currentColor" />
|
|
6
|
+
<path d="M16 13H8V11H16V13Z" fill="currentColor" />
|
|
7
|
+
<path d="M8 18H13V16H8V18Z" fill="currentColor" />
|
|
5
8
|
<path
|
|
6
9
|
clipRule="evenodd"
|
|
7
|
-
d="
|
|
10
|
+
d="M4 4C4 2.89543 4.89543 2 6 2H18C19.1046 2 20 2.89543 20 4V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V4ZM6 4H18V20H6V4Z"
|
|
8
11
|
fill="currentColor"
|
|
9
12
|
fillRule="evenodd"
|
|
10
13
|
/>
|
|
@@ -3,27 +3,20 @@ import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
|
3
3
|
const GitlabColor = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
4
|
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
5
|
<path
|
|
6
|
-
d="M21.
|
|
7
|
-
fill="#
|
|
6
|
+
d="M21.6671 9.9942L21.639 9.92234L18.9168 2.81807C18.8614 2.67883 18.7634 2.56071 18.6367 2.48067C18.5099 2.40198 18.3621 2.36408 18.2131 2.37209C18.0641 2.3801 17.9212 2.43362 17.8036 2.52545C17.6873 2.6199 17.6029 2.7479 17.562 2.89201L15.724 8.51544H8.28124L6.44322 2.89201C6.40335 2.74711 6.31881 2.61848 6.20162 2.5244C6.08402 2.43258 5.94109 2.37905 5.79211 2.37105C5.64312 2.36304 5.49527 2.40094 5.36851 2.47963C5.24212 2.56 5.14414 2.67801 5.08838 2.81703L2.36102 9.91818L2.33394 9.99003C1.94208 11.0139 1.89371 12.1375 2.19613 13.1912C2.49855 14.245 3.13537 15.1719 4.01056 15.8322L4.01993 15.8394L4.04493 15.8571L8.19169 18.9625L10.2432 20.5152L11.4928 21.4587C11.639 21.5697 11.8175 21.6298 12.001 21.6298C12.1846 21.6298 12.3631 21.5697 12.5092 21.4587L13.7589 20.5152L15.8104 18.9625L19.9821 15.8384L19.9926 15.8301C20.8658 15.1697 21.5011 14.2438 21.8031 13.1914C22.105 12.139 22.0573 11.0171 21.6671 9.9942Z"
|
|
7
|
+
fill="#E24329"
|
|
8
8
|
/>
|
|
9
|
-
<path d="m11.59 21.517 3.532-11.392H8.06l3.53 11.392Z" fill="#D45202" />
|
|
10
|
-
<path d="M11.59 21.517 8.057 10.125H3.114l8.476 11.392Z" fill="#ED720C" />
|
|
11
9
|
<path
|
|
12
|
-
d="
|
|
13
|
-
fill="#
|
|
10
|
+
d="M21.6671 9.9942L21.639 9.92234C20.3126 10.1946 19.0627 10.7564 17.9785 11.5677L12 16.0883C14.0359 17.6285 15.8083 18.9667 15.8083 18.9667L19.9801 15.8426L19.9905 15.8342C20.865 15.1739 21.5013 14.2473 21.8037 13.1941C22.106 12.1408 22.0581 11.0179 21.6671 9.9942Z"
|
|
11
|
+
fill="#FC6D26"
|
|
14
12
|
/>
|
|
15
13
|
<path
|
|
16
|
-
d="
|
|
17
|
-
fill="#
|
|
14
|
+
d="M8.19169 18.9667L10.2432 20.5194L11.4928 21.4629C11.639 21.5739 11.8175 21.6339 12.001 21.6339C12.1846 21.6339 12.3631 21.5739 12.5092 21.4629L13.7589 20.5194L15.8104 18.9667C15.8104 18.9667 14.0359 17.6244 12 16.0883C9.96411 17.6244 8.19169 18.9667 8.19169 18.9667Z"
|
|
15
|
+
fill="#FCA326"
|
|
18
16
|
/>
|
|
19
|
-
<path d="m11.59 21.517 3.532-11.392h4.95L11.59 21.517Z" fill="#ED720C" />
|
|
20
17
|
<path
|
|
21
|
-
d="
|
|
22
|
-
fill="#
|
|
23
|
-
/>
|
|
24
|
-
<path
|
|
25
|
-
d="M20.072 10.128h-4.95l2.127-6.861a.383.383 0 0 1 .134-.19.356.356 0 0 1 .429 0c.063.046.11.113.134.19l2.126 6.861Z"
|
|
26
|
-
fill="#D45202"
|
|
18
|
+
d="M6.02042 11.5677C4.93717 10.7548 3.68753 10.1915 2.36102 9.91818L2.33394 9.99003C1.94208 11.0139 1.89371 12.1375 2.19613 13.1912C2.49855 14.245 3.13537 15.1719 4.01056 15.8322L4.01993 15.8394L4.04493 15.8571L8.19169 18.9625C8.19169 18.9625 9.96203 17.6244 12 16.0842L6.02042 11.5677Z"
|
|
19
|
+
fill="#FC6D26"
|
|
27
20
|
/>
|
|
28
21
|
</Icon>
|
|
29
22
|
));
|
|
@@ -3,10 +3,8 @@ import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
|
3
3
|
const GitlabPlain = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
4
|
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
5
|
<path
|
|
6
|
-
|
|
7
|
-
d="M21.598 13.104 20.525 9.8l-2.128-6.547a.366.366 0 0 0-.695 0L15.574 9.8H8.51L6.382 3.253a.366.366 0 0 0-.695 0L3.559 9.8l-1.073 3.304a.731.731 0 0 0 .265.818l9.291 6.75 9.29-6.75a.731.731 0 0 0 .266-.818"
|
|
6
|
+
d="M21.6678 9.99449L21.6397 9.92263L18.9175 2.81809C18.8621 2.67884 18.764 2.56072 18.6373 2.48067C18.5106 2.40198 18.3627 2.36408 18.2137 2.37209C18.0647 2.3801 17.9218 2.43363 17.8042 2.52545C17.6879 2.61991 17.6035 2.74791 17.5626 2.89203L15.7245 8.51568H8.28148L6.44339 2.89203C6.40352 2.74713 6.31898 2.61849 6.20178 2.52441C6.08418 2.43258 5.94124 2.37905 5.79225 2.37105C5.64326 2.36304 5.49541 2.40094 5.36864 2.47963C5.24224 2.56 5.14426 2.67802 5.0885 2.81705L2.36103 9.91847L2.33396 9.99032C1.94208 11.0142 1.8937 12.1378 2.19614 13.1916C2.49857 14.2455 3.13541 15.1724 4.01064 15.8327L4.02001 15.84L4.045 15.8577L8.19192 18.9632L10.2435 20.5159L11.4932 21.4594C11.6394 21.5704 11.8179 21.6305 12.0014 21.6305C12.185 21.6305 12.3635 21.5704 12.5096 21.4594L13.7593 20.5159L15.8109 18.9632L19.9828 15.8389L19.9933 15.8306C20.8665 15.1702 21.5019 14.2442 21.8038 13.1918C22.1058 12.1394 22.0581 11.0174 21.6678 9.99449Z"
|
|
8
7
|
fill="currentColor"
|
|
9
|
-
fillRule="evenodd"
|
|
10
8
|
/>
|
|
11
9
|
</Icon>
|
|
12
10
|
));
|
|
@@ -3,38 +3,8 @@ import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
|
3
3
|
const GitlabShadedWhite = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
4
|
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
5
|
<path
|
|
6
|
-
|
|
7
|
-
d="m3.56 9.84-1.074 3.303a.731.731 0 0 0 .266.818l9.29 6.75L3.559 9.839ZM20.525 9.84l1.073 3.303a.731.731 0 0 1-.265.818l-9.291 6.75 8.483-10.872Z"
|
|
6
|
+
d="M21.6679 9.99459L21.6397 9.92274L18.9175 2.81819C18.8621 2.67895 18.764 2.56083 18.6373 2.48078C18.5106 2.40208 18.3627 2.36418 18.2137 2.37219C18.0647 2.3802 17.9218 2.43373 17.8042 2.52556C17.6879 2.62002 17.6035 2.74802 17.5626 2.89213L15.7245 8.51578H8.28149L6.44339 2.89213C6.40352 2.74723 6.31898 2.61859 6.20178 2.52451C6.08418 2.43269 5.94124 2.37916 5.79225 2.37115C5.64326 2.36314 5.49541 2.40104 5.36864 2.47973C5.24224 2.56011 5.14426 2.67813 5.0885 2.81715L2.36103 9.91857L2.33396 9.99043C1.94208 11.0144 1.8937 12.1379 2.19614 13.1917C2.49857 14.2456 3.13541 15.1725 4.01064 15.8328L4.02001 15.8401L4.045 15.8578L8.19192 18.9633L10.2435 20.516L11.4932 21.4595C11.6394 21.5705 11.8179 21.6306 12.0014 21.6306C12.185 21.6306 12.3635 21.5705 12.5096 21.4595L13.7593 20.516L15.8109 18.9633L19.9828 15.839L19.9933 15.8307C20.8665 15.1703 21.5019 14.2443 21.8038 13.1919C22.1058 12.1395 22.0581 11.0175 21.6679 9.99459Z"
|
|
8
7
|
fill="#fff"
|
|
9
|
-
fillOpacity={0.55}
|
|
10
|
-
fillRule="evenodd"
|
|
11
|
-
/>
|
|
12
|
-
<path clipRule="evenodd" d="m12.042 20.71 3.532-10.87H8.51l3.532 10.87Z" fill="#fff" fillRule="evenodd" />
|
|
13
|
-
<path
|
|
14
|
-
clipRule="evenodd"
|
|
15
|
-
d="M12.042 20.71 8.51 9.84H3.56l8.482 10.87Z"
|
|
16
|
-
fill="#fff"
|
|
17
|
-
fillOpacity={0.8}
|
|
18
|
-
fillRule="evenodd"
|
|
19
|
-
/>
|
|
20
|
-
<path
|
|
21
|
-
clipRule="evenodd"
|
|
22
|
-
d="M3.56 9.84h4.95L6.382 3.291a.366.366 0 0 0-.695 0L3.559 9.839Z"
|
|
23
|
-
fill="#fff"
|
|
24
|
-
fillRule="evenodd"
|
|
25
|
-
/>
|
|
26
|
-
<path
|
|
27
|
-
clipRule="evenodd"
|
|
28
|
-
d="m12.042 20.71 3.532-10.87h4.95l-8.482 10.87Z"
|
|
29
|
-
fill="#fff"
|
|
30
|
-
fillOpacity={0.8}
|
|
31
|
-
fillRule="evenodd"
|
|
32
|
-
/>
|
|
33
|
-
<path
|
|
34
|
-
clipRule="evenodd"
|
|
35
|
-
d="M20.525 9.84h-4.95l2.127-6.548a.366.366 0 0 1 .695 0l2.128 6.547Z"
|
|
36
|
-
fill="#fff"
|
|
37
|
-
fillRule="evenodd"
|
|
38
8
|
/>
|
|
39
9
|
</Icon>
|
|
40
10
|
));
|
|
@@ -3,26 +3,22 @@ import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
|
3
3
|
const Go = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
4
|
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
5
|
<path
|
|
6
|
-
|
|
6
|
+
clipRule="evenodd"
|
|
7
|
+
d="M13.5947 10.3245C13.3665 10.3851 13.1351 10.4465 12.8672 10.5157L12.8511 10.52C12.7203 10.5551 12.7066 10.5588 12.5848 10.4183C12.4388 10.2527 12.3317 10.1456 12.1272 10.0483C11.5137 9.74639 10.9197 9.83402 10.3646 10.1943C9.70249 10.6228 9.36167 11.2557 9.3714 12.0445C9.38114 12.8235 9.91671 13.4662 10.686 13.5733C11.3482 13.6609 11.9032 13.4272 12.3414 12.9306C12.4064 12.8512 12.466 12.7664 12.5322 12.6723C12.5553 12.6395 12.5792 12.6055 12.6043 12.5703H10.7249C10.5204 12.5703 10.4718 12.4437 10.5399 12.2782C10.6665 11.9763 10.9002 11.47 11.0365 11.2168C11.0658 11.1583 11.1339 11.061 11.28 11.061H14.4137C14.5545 10.6151 14.7828 10.1938 15.0874 9.79511C15.7983 8.8603 16.6552 8.37341 17.814 8.16892C18.8072 7.99364 19.742 8.09102 20.5892 8.66554C21.3585 9.19138 21.8356 9.90223 21.9622 10.837C22.1278 12.1516 21.748 13.2228 20.8424 14.1381C20.1997 14.7905 19.4109 15.1995 18.5053 15.3845C18.3326 15.4165 18.1598 15.4317 17.9899 15.4466C17.9011 15.4544 17.8132 15.4622 17.7263 15.4722C16.8402 15.4527 16.032 15.1995 15.3503 14.6153C14.8709 14.2008 14.5407 13.6915 14.3766 13.0986C14.2627 13.3285 14.1265 13.5488 13.9676 13.7583C13.2665 14.6834 12.3511 15.2579 11.1923 15.4137C10.2381 15.5403 9.35193 15.3553 8.57292 14.771C7.85233 14.2257 7.44335 13.5051 7.33623 12.6093C7.20964 11.5479 7.52125 10.5936 8.16393 9.75612C8.85531 8.85052 9.77065 8.276 10.8905 8.07151C11.8058 7.90597 12.6822 8.01308 13.471 8.54865C13.9871 8.88947 14.3571 9.35688 14.6005 9.92166C14.659 10.0093 14.62 10.058 14.5032 10.0872C14.1619 10.1739 13.8808 10.2485 13.5947 10.3245ZM20.0371 11.434C20.039 11.4667 20.041 11.5012 20.0439 11.5382C19.9952 12.3756 19.5765 12.9988 18.8072 13.398C18.2911 13.661 17.7555 13.6902 17.22 13.4565C16.5189 13.1449 16.1488 12.3756 16.3241 11.6161C16.5383 10.7007 17.1226 10.1262 18.0282 9.9217C18.9533 9.70747 19.8394 10.2528 20.0147 11.2168C20.0285 11.2858 20.0325 11.3547 20.0371 11.434Z"
|
|
7
8
|
fill="currentColor"
|
|
9
|
+
fillRule="evenodd"
|
|
8
10
|
/>
|
|
9
11
|
<path
|
|
10
|
-
|
|
11
|
-
d="M12 8.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm-3 0a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0Z"
|
|
12
|
+
d="M3.50929 10.2625C3.47034 10.2625 3.4606 10.243 3.48007 10.2138L3.68457 9.95091C3.70404 9.9217 3.75273 9.90222 3.79168 9.90222H7.26803C7.30698 9.90222 7.31672 9.93143 7.29724 9.96065L7.1317 10.2138C7.11223 10.243 7.06354 10.2723 7.03432 10.2723L3.50929 10.2625Z"
|
|
12
13
|
fill="currentColor"
|
|
13
|
-
fillRule="evenodd"
|
|
14
14
|
/>
|
|
15
15
|
<path
|
|
16
|
-
|
|
17
|
-
d="M14.5 11a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0-2a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1Z"
|
|
16
|
+
d="M2.03895 11.1584C2 11.1584 1.99026 11.1389 2.00974 11.1097L2.21423 10.8468C2.2337 10.8176 2.28239 10.7981 2.32134 10.7981H6.76172C6.80067 10.7981 6.82015 10.8273 6.81041 10.8565L6.73251 11.0902C6.72277 11.1292 6.68382 11.1487 6.64487 11.1487L2.03895 11.1584Z"
|
|
18
17
|
fill="currentColor"
|
|
19
|
-
fillRule="evenodd"
|
|
20
18
|
/>
|
|
21
19
|
<path
|
|
22
|
-
|
|
23
|
-
d="M4 10.5V7.455c0-.54.106-1.123.344-1.7a1.016 1.016 0 0 1-.047-.044l-1-1a1 1 0 1 1 1.414-1.414l.782.782C6.717 2.891 8.78 1.997 12 1.997c.05 0 .098.001.146.004 3.135.026 5.155.91 6.36 2.079l.787-.787a1 1 0 1 1 1.414 1.414l-1 1a.991.991 0 0 1-.052.048c.239.577.345 1.16.345 1.7V10.5h1a1 1 0 0 1 0 2h-.979c.062.716.25 1.258.446 1.819.26.748.533 1.53.533 2.803 0 .778-.38 1.58-1.099 2.304l.763.763a1 1 0 0 1-1.414 1.415l-.987-.988c-1.484.796-3.53 1.339-6.034 1.381a3.86 3.86 0 0 1-.14.003h-.177c-.048 0-.095 0-.141-.003-2.407-.04-4.39-.544-5.858-1.289l-.852.853a1 1 0 0 1-1.415-1.415l.589-.588C3.429 18.801 3 17.948 3 17.122c0-1.273.272-2.055.533-2.803.195-.561.384-1.103.446-1.819H3a1 1 0 1 1 0-2h1Zm8.01 9.5h.079l.106-.002c2.255-.039 4.144-.534 5.434-1.323C18.572 18.1 19 17.494 19 17.122c0-.764-.095-1.205-.39-2.052l-.092-.267C18.159 13.763 18 13.027 18 12V7.455c0-1.841-1.81-3.42-5.962-3.457A.69.69 0 0 0 12 3.997c-4.15 0-6 1.592-6 3.458V12c0 1.027-.16 1.763-.518 2.803l-.093.267C5.095 15.917 5 16.358 5 17.122c0 .371.428.977 1.371 1.553 1.29.79 3.179 1.284 5.476 1.324l.065.001h.097Z"
|
|
20
|
+
d="M4.36631 11.9958C4.34683 12.0251 4.35657 12.0543 4.39552 12.0543L6.51833 12.064C6.54754 12.064 6.58649 12.0348 6.58649 11.9958L6.60597 11.7621C6.60597 11.7232 6.58649 11.694 6.54754 11.694H4.60001C4.56106 11.694 4.52211 11.7232 4.50263 11.7524L4.36631 11.9958Z"
|
|
24
21
|
fill="currentColor"
|
|
25
|
-
fillRule="evenodd"
|
|
26
22
|
/>
|
|
27
23
|
</Icon>
|
|
28
24
|
));
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const GooglePlay = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
d="M15.3813 16.5884L11.5 12.7071L3.31368 20.8935C3.3888 21.018 3.47585 21.1355 3.57386 21.2442C3.80576 21.5013 4.09296 21.7024 4.41384 21.8324C4.73473 21.9625 5.08093 22.018 5.42639 21.9949C5.77186 21.9718 6.10757 21.8706 6.40825 21.6989L15.3813 16.5884Z"
|
|
7
|
+
fill="currentColor"
|
|
8
|
+
/>
|
|
9
|
+
<path
|
|
10
|
+
d="M16.2876 16.0805L12.2071 12L16.2611 7.94608L19.9536 10.0609H19.9411C20.3404 10.2729 20.6671 10.5996 20.8791 10.9989C21.015 11.2571 21.0985 11.5395 21.1249 11.83C21.1512 12.1205 21.1199 12.4133 21.0328 12.6917C20.9456 12.97 20.8043 13.2284 20.6169 13.452C20.4296 13.6756 20.1999 13.8599 19.9411 13.9944L16.2876 16.0805Z"
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
/>
|
|
13
|
+
<path
|
|
14
|
+
d="M15.362 7.43099L11.5 11.2929L3.31314 3.10603C3.46251 2.85683 3.65917 2.63692 3.894 2.45962C4.29029 2.16043 4.77354 1.99902 5.27009 2C5.6812 2.00141 6.08463 2.11143 6.43952 2.31894L15.362 7.43099Z"
|
|
15
|
+
fill="currentColor"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M3.0002 4.20731C3.00006 4.2178 2.99999 4.22829 3 4.23878V19.7728C3 19.7795 3.00002 19.7862 3.00008 19.7929L10.7929 12L3.0002 4.20731Z"
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
/>
|
|
21
|
+
</Icon>
|
|
22
|
+
));
|
|
23
|
+
|
|
24
|
+
export default GooglePlay;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const GooglePlayColor = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
d="M11.4647 11.5525L3.07504 20.3423C3.16925 20.6762 3.33855 20.9841 3.57 21.2426C3.80146 21.501 4.08893 21.7031 4.41046 21.8334C4.73199 21.9637 5.07905 22.0188 5.42512 21.9944C5.77119 21.97 6.1071 21.8668 6.40717 21.6927L15.8471 16.3163L11.4647 11.5525Z"
|
|
7
|
+
fill="#EA4335"
|
|
8
|
+
/>
|
|
9
|
+
<path
|
|
10
|
+
d="M19.9482 10.0584L15.8659 7.72026L11.2709 11.7526L15.8847 16.3038L19.9357 13.9907C20.2946 13.8027 20.5952 13.5202 20.805 13.1736C21.0147 12.827 21.1256 12.4296 21.1256 12.0245C21.1256 11.6194 21.0147 11.222 20.805 10.8754C20.5952 10.5288 20.2946 10.2463 19.9357 10.0584H19.9482Z"
|
|
11
|
+
fill="#FBBC04"
|
|
12
|
+
/>
|
|
13
|
+
<path
|
|
14
|
+
d="M3.07504 3.66294C3.02433 3.85042 2.9991 4.04388 3.00002 4.23809V19.7672C3.00053 19.9613 3.02574 20.1546 3.07504 20.3423L11.7523 11.7776L3.07504 3.66294Z"
|
|
15
|
+
fill="#4285F4"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M11.5273 12.0026L15.8659 7.72026L6.43843 2.31884C6.08376 2.11112 5.68038 2.00111 5.26937 2C4.77298 1.99902 4.28988 2.16038 3.89371 2.45948C3.49755 2.75857 3.21005 3.17901 3.07504 3.65669L11.5273 12.0026Z"
|
|
19
|
+
fill="#34A853"
|
|
20
|
+
/>
|
|
21
|
+
</Icon>
|
|
22
|
+
));
|
|
23
|
+
|
|
24
|
+
export default GooglePlayColor;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const XTwitter = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
d="M13.9027 10.4686L21.3482 2H19.5838L13.1189 9.3532L7.95547 2H2L9.8082 13.1193L2 22H3.76443L10.5915 14.2348L16.0445 22H22L13.9027 10.4686ZM11.4861 13.2173L10.695 12.1101L4.40018 3.29968H7.11025L12.1902 10.4099L12.9813 11.5172L19.5847 20.7594H16.8746L11.4861 13.2173Z"
|
|
7
|
+
fill="currentColor"
|
|
8
|
+
/>
|
|
9
|
+
</Icon>
|
|
10
|
+
));
|
|
11
|
+
|
|
12
|
+
export default XTwitter;
|
|
@@ -8,6 +8,8 @@ export { default as Android } from './Android';
|
|
|
8
8
|
export { default as App } from './App';
|
|
9
9
|
export { default as AppleFill } from './AppleFill';
|
|
10
10
|
export { default as Apple } from './Apple';
|
|
11
|
+
export { default as AppStore } from './AppStore';
|
|
12
|
+
export { default as AppStoreColor } from './AppStoreColor';
|
|
11
13
|
export { default as ArrowMoveLeft } from './ArrowMoveLeft';
|
|
12
14
|
export { default as ArrowMoveDown } from './ArrowMoveDown';
|
|
13
15
|
export { default as ArrowMoveUp } from './ArrowMoveUp';
|
|
@@ -24,6 +26,7 @@ export { default as Bell } from './Bell';
|
|
|
24
26
|
export { default as BitbotError } from './BitbotError';
|
|
25
27
|
export { default as Bitbot } from './Bitbot';
|
|
26
28
|
export { default as BitbucketBlue } from './BitbucketBlue';
|
|
29
|
+
export { default as BitbucketNeutral } from './BitbucketNeutral';
|
|
27
30
|
export { default as BitbucketPlain } from './BitbucketPlain';
|
|
28
31
|
export { default as BitbucketShadedWhite } from './BitbucketShadedWhite';
|
|
29
32
|
export { default as Book } from './Book';
|
|
@@ -71,6 +74,7 @@ export { default as Cordova } from './Cordova';
|
|
|
71
74
|
export { default as Cpu } from './Cpu';
|
|
72
75
|
export { default as Creditcard } from './Creditcard';
|
|
73
76
|
export { default as Credits } from './Credits';
|
|
77
|
+
export { default as CrossCircle } from './CrossCircle';
|
|
74
78
|
export { default as Cycle } from './Cycle';
|
|
75
79
|
export { default as DeleteNope } from './DeleteNope';
|
|
76
80
|
export { default as Deployment } from './Deployment';
|
|
@@ -82,6 +86,7 @@ export { default as DropdownArrows } from './DropdownArrows';
|
|
|
82
86
|
export { default as Dudes } from './Dudes';
|
|
83
87
|
export { default as Duplicate } from './Duplicate';
|
|
84
88
|
export { default as Enterprise } from './Enterprise';
|
|
89
|
+
export { default as ErrorCircleFilled } from './ErrorCircleFilled';
|
|
85
90
|
export { default as ErrorGeneral } from './ErrorGeneral';
|
|
86
91
|
export { default as Expand } from './Expand';
|
|
87
92
|
export { default as Fastlane } from './Fastlane';
|
|
@@ -103,6 +108,8 @@ export { default as GitlabShadedWhite } from './GitlabShadedWhite';
|
|
|
103
108
|
export { default as Globe } from './Globe';
|
|
104
109
|
export { default as Go } from './Go';
|
|
105
110
|
export { default as GoogleColor } from './GoogleColor';
|
|
111
|
+
export { default as GooglePlay } from './GooglePlay';
|
|
112
|
+
export { default as GooglePlayColor } from './GooglePlayColor';
|
|
106
113
|
export { default as Gradle } from './Gradle';
|
|
107
114
|
export { default as Group } from './Group';
|
|
108
115
|
export { default as Heart } from './Heart';
|
|
@@ -225,5 +232,4 @@ export { default as Workflow } from './Workflow';
|
|
|
225
232
|
export { default as Wow } from './Wow';
|
|
226
233
|
export { default as WrappedLines } from './WrappedLines';
|
|
227
234
|
export { default as Xamarin } from './Xamarin';
|
|
228
|
-
export { default as
|
|
229
|
-
export { default as CrossCircle } from './CrossCircle';
|
|
235
|
+
export { default as XTwitter } from './XTwitter';
|
|
@@ -55,7 +55,7 @@ const Note = ({ children, startingHeight, status }: NoteProps) => {
|
|
|
55
55
|
</Box>
|
|
56
56
|
{!!startingHeight && (
|
|
57
57
|
<Box __css={buttonContainer}>
|
|
58
|
-
<Button leftIconName="ChevronDown" onClick={() => setExpanded(!isExpanded)} size="
|
|
58
|
+
<Button leftIconName="ChevronDown" onClick={() => setExpanded(!isExpanded)} size="sm" variant="secondary">
|
|
59
59
|
{isExpanded ? 'Show less' : 'Show more'}
|
|
60
60
|
</Button>
|
|
61
61
|
</Box>
|
|
@@ -12,7 +12,7 @@ export interface OverflowMenuProps extends MenuProps {
|
|
|
12
12
|
withPortal?: boolean;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
const OverflowMenu = ({ buttonSize = '
|
|
15
|
+
const OverflowMenu = ({ buttonSize = 'sm', children, triggerLabel, withPortal }: OverflowMenuProps) => {
|
|
16
16
|
const Wrapper = withPortal ? Portal : Fragment;
|
|
17
17
|
return (
|
|
18
18
|
<Menu isLazy>
|