@bitrise/bitkit 13.348.0 → 13.349.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.349.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.34.
|
|
41
|
+
"framer-motion": "^12.34.3",
|
|
42
42
|
"luxon": "^3.7.2",
|
|
43
43
|
"react": "^18.3.1",
|
|
44
44
|
"react-dom": "^18.3.1",
|
|
@@ -57,10 +57,10 @@
|
|
|
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.19",
|
|
61
|
+
"@storybook/addon-links": "^9.1.19",
|
|
62
62
|
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
|
|
63
|
-
"@storybook/react-webpack5": "^9.1.
|
|
63
|
+
"@storybook/react-webpack5": "^9.1.19",
|
|
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",
|
|
@@ -71,16 +71,16 @@
|
|
|
71
71
|
"@types/react-dom": "^18.3.7",
|
|
72
72
|
"axios": "^1.13.5",
|
|
73
73
|
"chakra-ui-2--cli": "npm:@chakra-ui/cli@2.5.8",
|
|
74
|
-
"eslint": "^9.39.
|
|
74
|
+
"eslint": "^9.39.3",
|
|
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
79
|
"lodash": "^4.17.23",
|
|
80
80
|
"prettier": "^3.8.1",
|
|
81
|
-
"react-hook-form": "^7.71.
|
|
81
|
+
"react-hook-form": "^7.71.2",
|
|
82
82
|
"release-it": "^19.2.4",
|
|
83
|
-
"storybook": "^9.1.
|
|
83
|
+
"storybook": "^9.1.19",
|
|
84
84
|
"ts-jest": "^29.4.6",
|
|
85
85
|
"typescript": "^5.9.3"
|
|
86
86
|
},
|
|
@@ -168,9 +168,9 @@ const FilterForm = (props: FilterFormProps) => {
|
|
|
168
168
|
</Checkbox>
|
|
169
169
|
))
|
|
170
170
|
: getEmptyText()}
|
|
171
|
-
{items.length > MAX_ITEMS && (
|
|
171
|
+
{(items.length > MAX_ITEMS || isAsync) && (
|
|
172
172
|
<Text textStyle="body/sm/regular" color="text.secondary" marginBlockStart="4">
|
|
173
|
-
Showing first {MAX_ITEMS} items. Use search to find more.
|
|
173
|
+
Showing first {isAsync ? items.length : MAX_ITEMS} items. Use search to find more.
|
|
174
174
|
</Text>
|
|
175
175
|
)}
|
|
176
176
|
</CheckboxGroup>
|
|
@@ -202,9 +202,9 @@ const FilterForm = (props: FilterFormProps) => {
|
|
|
202
202
|
);
|
|
203
203
|
})
|
|
204
204
|
: getEmptyText()}
|
|
205
|
-
{items.length > MAX_ITEMS && (
|
|
205
|
+
{(items.length > MAX_ITEMS || isAsync) && (
|
|
206
206
|
<Text textStyle="body/sm/regular" color="text.secondary" marginBlockStart="4">
|
|
207
|
-
Showing first {MAX_ITEMS} items. Use search to find more.
|
|
207
|
+
Showing first {isAsync ? items.length : MAX_ITEMS} items. Use search to find more.
|
|
208
208
|
</Text>
|
|
209
209
|
)}
|
|
210
210
|
</RadioGroup>
|