@bitrise/bitkit 13.352.0 → 13.354.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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitrise/bitkit",
|
|
3
3
|
"description": "Bitrise React component library",
|
|
4
|
-
"version": "13.
|
|
4
|
+
"version": "13.354.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+ssh://git@github.com/bitrise-io/bitkit.git"
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"chakra-ui-2--theme": "npm:@chakra-ui/theme@3.4.9",
|
|
39
39
|
"chakra-ui-2--theme-tools": "npm:@chakra-ui/theme-tools@2.2.9",
|
|
40
40
|
"clsx": "^2.1.1",
|
|
41
|
-
"framer-motion": "^12.
|
|
41
|
+
"framer-motion": "^12.38.0",
|
|
42
42
|
"luxon": "^3.7.2",
|
|
43
43
|
"react": "^18.3.1",
|
|
44
44
|
"react-dom": "^18.3.1",
|
|
@@ -52,15 +52,15 @@
|
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@babel/core": "^7.29.0",
|
|
55
|
-
"@babel/preset-env": "^7.29.
|
|
55
|
+
"@babel/preset-env": "^7.29.2",
|
|
56
56
|
"@babel/preset-react": "^7.28.5",
|
|
57
57
|
"@babel/preset-typescript": "^7.28.5",
|
|
58
58
|
"@bitrise/eslint-plugin": "^4.1.0",
|
|
59
59
|
"@google-cloud/storage": "^7.19.0",
|
|
60
|
-
"@storybook/addon-docs": "^9.1.
|
|
61
|
-
"@storybook/addon-links": "^9.1.
|
|
60
|
+
"@storybook/addon-docs": "^9.1.20",
|
|
61
|
+
"@storybook/addon-links": "^9.1.20",
|
|
62
62
|
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
|
|
63
|
-
"@storybook/react-webpack5": "^9.1.
|
|
63
|
+
"@storybook/react-webpack5": "^9.1.20",
|
|
64
64
|
"@testing-library/dom": "^10.4.1",
|
|
65
65
|
"@testing-library/jest-dom": "6.9.1",
|
|
66
66
|
"@testing-library/react": "16.3.2",
|
|
@@ -69,19 +69,19 @@
|
|
|
69
69
|
"@types/luxon": "^3.7.1",
|
|
70
70
|
"@types/react": "^18.3.28",
|
|
71
71
|
"@types/react-dom": "^18.3.7",
|
|
72
|
-
"axios": "^1.
|
|
72
|
+
"axios": "^1.15.0",
|
|
73
73
|
"chakra-ui-2--cli": "npm:@chakra-ui/cli@2.5.8",
|
|
74
|
-
"eslint": "^9.39.
|
|
74
|
+
"eslint": "^9.39.4",
|
|
75
75
|
"glob": "^11.1.0",
|
|
76
76
|
"jest": "^29.7.0",
|
|
77
77
|
"jest-environment-jsdom": "^29.7.0",
|
|
78
78
|
"jsdom": "26.1.0",
|
|
79
|
-
"lodash": "^4.
|
|
80
|
-
"prettier": "^3.8.
|
|
81
|
-
"react-hook-form": "^7.
|
|
79
|
+
"lodash": "^4.18.1",
|
|
80
|
+
"prettier": "^3.8.2",
|
|
81
|
+
"react-hook-form": "^7.72.1",
|
|
82
82
|
"release-it": "^19.2.4",
|
|
83
|
-
"storybook": "^9.1.
|
|
84
|
-
"ts-jest": "^29.4.
|
|
83
|
+
"storybook": "^9.1.20",
|
|
84
|
+
"ts-jest": "^29.4.9",
|
|
85
85
|
"typescript": "^5.9.3"
|
|
86
86
|
},
|
|
87
87
|
"files": [
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { forwardRef, Icon, IconProps } from 'chakra-ui-2--react';
|
|
2
|
+
|
|
3
|
+
const Python = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 16 16" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
fill="currentColor"
|
|
7
|
+
d="M7.976 1c-3.305 0-3.34 1.283-3.34 1.547V4.15H8.04v.481H3.283C2.271 4.631 1 5.246 1 7.972c0 2.504.992 3.472 1.993 3.472h1.189v-1.67c0-.699.346-1.993 1.96-1.993H9.52c.497 0 1.897-.216 1.897-1.833V2.865c0-.401-.068-1.865-3.44-1.865M6.1 2.078A.612.612 0 1 1 6.1 3.302.612.612 0 0 1 6.1 2.078"
|
|
8
|
+
/>
|
|
9
|
+
<path
|
|
10
|
+
fill="currentColor"
|
|
11
|
+
d="M8.024 15c3.304 0 3.345-1.307 3.345-1.547V11.85H7.96v-.481h4.757c1.02 0 2.283-.63 2.283-3.341 0-2.968-1.341-3.472-1.993-3.472h-1.189v1.67c0 .7-.335 1.993-1.96 1.993H6.48c-.496 0-1.898.241-1.898 1.833v3.083c0 .665.407 1.865 3.44 1.865M9.9 13.922a.612.612 0 1 1-.001-1.224.612.612 0 0 1 .001 1.224"
|
|
12
|
+
/>
|
|
13
|
+
</Icon>
|
|
14
|
+
));
|
|
15
|
+
|
|
16
|
+
export default Python;
|
|
@@ -201,6 +201,7 @@ export { default as Project } from './Project';
|
|
|
201
201
|
export { default as Pull } from './Pull';
|
|
202
202
|
export { default as Push } from './Push';
|
|
203
203
|
export { default as Puzzle } from './Puzzle';
|
|
204
|
+
export { default as Python } from './Python';
|
|
204
205
|
export { default as QuestionCircle } from './QuestionCircle';
|
|
205
206
|
export { default as QuestionCircleFilled } from './QuestionCircleFilled';
|
|
206
207
|
export { default as ReactIcon } from './ReactIcon';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { forwardRef, Icon, IconProps } from 'chakra-ui-2--react';
|
|
2
|
+
|
|
3
|
+
const Python = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
fill="currentColor"
|
|
7
|
+
d="M11.966 2C7.244 2 7.193 3.833 7.193 4.21V6.5h4.864v.687H5.26C3.816 7.187 2 8.067 2 11.96c0 3.577 1.417 4.96 2.847 4.96h1.698v-2.386c0-.998.495-2.847 2.802-2.847h4.823c.71 0 2.71-.308 2.71-2.619V4.665C16.88 4.09 16.784 2 11.967 2M9.284 3.54a.874.874 0 1 1 0 1.75.874.874 0 1 1 0-1.75"
|
|
8
|
+
/>
|
|
9
|
+
<path
|
|
10
|
+
fill="currentColor"
|
|
11
|
+
d="M12.034 22c4.72 0 4.778-1.867 4.778-2.21V17.5h-4.869v-.687h6.795c1.457 0 3.262-.901 3.262-4.773 0-4.24-1.916-4.96-2.846-4.96h-1.7v2.386c0 .998-.478 2.847-2.8 2.847H9.828c-.707 0-2.71.344-2.71 2.619v4.403c0 .951.581 2.665 4.915 2.665m2.682-1.54a.874.874 0 1 1-.002-1.748.874.874 0 0 1 .002 1.748"
|
|
12
|
+
/>
|
|
13
|
+
</Icon>
|
|
14
|
+
));
|
|
15
|
+
|
|
16
|
+
export default Python;
|
|
@@ -201,6 +201,7 @@ export { default as Project } from './Project';
|
|
|
201
201
|
export { default as Pull } from './Pull';
|
|
202
202
|
export { default as Push } from './Push';
|
|
203
203
|
export { default as Puzzle } from './Puzzle';
|
|
204
|
+
export { default as Python } from './Python';
|
|
204
205
|
export { default as QuestionCircle } from './QuestionCircle';
|
|
205
206
|
export { default as QuestionCircleFilled } from './QuestionCircleFilled';
|
|
206
207
|
export { default as ReactIcon } from './ReactIcon';
|