@bitrise/bitkit-v2 0.3.34 → 0.3.35

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,17 @@
1
+ import { FieldRootProps, InputProps } from '@chakra-ui/react';
2
+ import { ReactNode } from 'react';
3
+ export interface TextFieldProps extends FieldRootProps {
4
+ errorText?: ReactNode;
5
+ icon?: string;
6
+ helperText?: ReactNode;
7
+ inputProps?: InputProps;
8
+ label?: string;
9
+ optional?: boolean;
10
+ placeholder?: string;
11
+ size?: 'md' | 'lg';
12
+ state?: 'disabled' | 'error' | 'readOnly' | 'warning';
13
+ tooltip?: string;
14
+ warningText?: ReactNode;
15
+ }
16
+ declare const TextField: import('react').ForwardRefExoticComponent<TextFieldProps & import('react').RefAttributes<HTMLDivElement>>;
17
+ export default TextField;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit-v2",
3
3
  "private": false,
4
- "version": "0.3.34",
4
+ "version": "0.3.35",
5
5
  "description": "Bitrise Design System Components built with Chakra UI v3",
6
6
  "keywords": [
7
7
  "react",
@@ -65,8 +65,8 @@
65
65
  "@eslint/compat": "^1.4.0",
66
66
  "@eslint/js": "^9.36.0",
67
67
  "@google-cloud/storage": "^7.17.1",
68
- "@storybook/addon-docs": "^9.1.7",
69
- "@storybook/react-vite": "^9.1.7",
68
+ "@storybook/addon-docs": "^9.1.8",
69
+ "@storybook/react-vite": "^9.1.8",
70
70
  "@types/node": "^24.5.2",
71
71
  "@types/react": "^19.1.13",
72
72
  "@types/react-dom": "^19.1.9",
@@ -84,7 +84,7 @@
84
84
  "react": "^19.1.1",
85
85
  "react-dom": "^19.1.1",
86
86
  "release-it": "^19.0.5",
87
- "storybook": "^9.1.7",
87
+ "storybook": "^9.1.8",
88
88
  "typescript": "^5.9.2",
89
89
  "vite": "^7.1.7",
90
90
  "vite-plugin-dts": "^4.5.4"
@@ -95,7 +95,7 @@
95
95
  "@emotion/styled": "^11.14.1",
96
96
  "@fontsource-variable/figtree": "^5.2.10",
97
97
  "@fontsource-variable/source-code-pro": "^5.2.7",
98
- "framer-motion": "^12.23.18"
98
+ "framer-motion": "^12.23.21"
99
99
  },
100
100
  "publishConfig": {
101
101
  "access": "public"