@bitrise/bitkit-v2 0.3.43 → 0.3.45
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/dist/bitkit-v2.js +2518 -2487
- package/dist/bitkit-v2.umd.cjs +8 -8
- package/dist/theme/recipes/Button.recipe.d.ts +6 -1
- package/dist/theme/recipes/Input.recipe.d.ts +1 -3
- package/dist/theme/recipes/InputAndTextarea.common.d.ts +4 -0
- package/dist/theme/recipes/Textarea.recipe.d.ts +2 -0
- package/dist/theme/recipes/index.d.ts +6 -0
- package/package.json +3 -3
|
@@ -1,21 +1,26 @@
|
|
|
1
1
|
import { SystemStyleObject } from '@chakra-ui/react';
|
|
2
|
-
|
|
2
|
+
declare const buttonVariants: string[];
|
|
3
3
|
export type Variant = (typeof buttonVariants)[number];
|
|
4
4
|
declare const button: import('@chakra-ui/react').RecipeDefinition<{
|
|
5
5
|
variant: Record<string, SystemStyleObject>;
|
|
6
6
|
size: {
|
|
7
7
|
sm: {
|
|
8
|
+
minWidth: "32";
|
|
9
|
+
height: "32";
|
|
8
10
|
paddingInline: string | number;
|
|
9
11
|
paddingBlock: string | number;
|
|
10
12
|
textStyle: "comp/button/sm";
|
|
11
13
|
};
|
|
12
14
|
md: {
|
|
15
|
+
minWidth: "40";
|
|
13
16
|
height: "40";
|
|
14
17
|
paddingInline: string | number;
|
|
15
18
|
paddingBlock: string | number;
|
|
16
19
|
textStyle: "comp/button/md";
|
|
17
20
|
};
|
|
18
21
|
lg: {
|
|
22
|
+
minWidth: "48";
|
|
23
|
+
height: "48";
|
|
19
24
|
padding: string | number;
|
|
20
25
|
textStyle: "comp/button/lg";
|
|
21
26
|
};
|
|
@@ -1,4 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const inputConfig: RecipeDefinition<Record<'size', Record<'md' | 'lg', SystemStyleObject>>>;
|
|
3
|
-
declare const input: RecipeDefinition<Record<"size", Record<"md" | "lg", SystemStyleObject>>>;
|
|
1
|
+
declare const input: import('@chakra-ui/react').RecipeDefinition<Record<"size", Record<"md" | "lg", import('@chakra-ui/react').SystemStyleObject>>>;
|
|
4
2
|
export default input;
|
|
@@ -3,17 +3,22 @@ declare const recipes: {
|
|
|
3
3
|
variant: Record<string, import('@chakra-ui/react').SystemStyleObject>;
|
|
4
4
|
size: {
|
|
5
5
|
sm: {
|
|
6
|
+
minWidth: "32";
|
|
7
|
+
height: "32";
|
|
6
8
|
paddingInline: string | number;
|
|
7
9
|
paddingBlock: string | number;
|
|
8
10
|
textStyle: "comp/button/sm";
|
|
9
11
|
};
|
|
10
12
|
md: {
|
|
13
|
+
minWidth: "40";
|
|
11
14
|
height: "40";
|
|
12
15
|
paddingInline: string | number;
|
|
13
16
|
paddingBlock: string | number;
|
|
14
17
|
textStyle: "comp/button/md";
|
|
15
18
|
};
|
|
16
19
|
lg: {
|
|
20
|
+
minWidth: "48";
|
|
21
|
+
height: "48";
|
|
17
22
|
padding: string | number;
|
|
18
23
|
textStyle: "comp/button/lg";
|
|
19
24
|
};
|
|
@@ -44,5 +49,6 @@ declare const recipes: {
|
|
|
44
49
|
};
|
|
45
50
|
};
|
|
46
51
|
}>;
|
|
52
|
+
textarea: import('@chakra-ui/react').RecipeDefinition<Record<"size", Record<"md" | "lg", import('@chakra-ui/react').SystemStyleObject>>>;
|
|
47
53
|
};
|
|
48
54
|
export default recipes;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitrise/bitkit-v2",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.45",
|
|
5
5
|
"description": "Bitrise Design System Components built with Chakra UI v3",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"react",
|
|
@@ -89,11 +89,11 @@
|
|
|
89
89
|
"@storybook/addon-docs": "10.0.0",
|
|
90
90
|
"@storybook/react-vite": "10.0.0",
|
|
91
91
|
"@svgr/plugin-jsx": "^8.1.0",
|
|
92
|
-
"@types/node": "^24.9.
|
|
92
|
+
"@types/node": "^24.9.2",
|
|
93
93
|
"@types/react-dom": "^19.2.2",
|
|
94
94
|
"@types/react": "^19.2.2",
|
|
95
95
|
"@vitejs/plugin-react": "^5.1.0",
|
|
96
|
-
"axios": "^1.13.
|
|
96
|
+
"axios": "^1.13.1",
|
|
97
97
|
"react-dom": "^19.2.0",
|
|
98
98
|
"react": "^19.2.0",
|
|
99
99
|
"release-it": "^19.0.5",
|