@bitrise/bitkit-v2 0.3.69 → 0.3.70

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.
@@ -0,0 +1,8 @@
1
+ import { HTMLChakraProps } from '@chakra-ui/react/styled-system';
2
+ import { ColorPaletteKeys } from '../../theme/tokens/colors';
3
+ export interface ColorButtonProps extends HTMLChakraProps<'button'> {
4
+ size: 'sm' | 'md' | 'lg';
5
+ colorPalette: ColorPaletteKeys;
6
+ }
7
+ declare const BitkitColorButton: import('react').ForwardRefExoticComponent<ColorButtonProps & import('react').RefAttributes<HTMLButtonElement>>;
8
+ export default BitkitColorButton;
@@ -0,0 +1,20 @@
1
+ declare const colorButtonRecipe: import('@chakra-ui/react').RecipeDefinition<{
2
+ size: {
3
+ sm: {
4
+ height: "32";
5
+ paddingInline: "12";
6
+ textStyle: "comp/button/sm";
7
+ };
8
+ md: {
9
+ height: "40";
10
+ paddingInline: "12";
11
+ textStyle: "comp/button/md";
12
+ };
13
+ lg: {
14
+ height: "48";
15
+ paddingInline: "16";
16
+ textStyle: "comp/button/lg";
17
+ };
18
+ };
19
+ }>;
20
+ export default colorButtonRecipe;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit-v2",
3
3
  "private": false,
4
- "version": "0.3.69",
4
+ "version": "0.3.70",
5
5
  "description": "Bitrise Design System Components built with Chakra UI v3",
6
6
  "keywords": [
7
7
  "react",