@simoncomputing/mui-bueno-v2 0.22.0 → 0.23.1

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/CHANGELOG.md CHANGED
@@ -11,6 +11,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
  - Minor increment --> singlular/minor changes. Minimal breaking changes.
12
12
  - Patch increment --> singlular/minor changes. Zero breaking changes.
13
13
 
14
+ ## [0.23.1] - 2026-01-23
15
+
16
+ ### Fixed
17
+
18
+ - `TextField`
19
+ - Fixed trim on blur not applying
20
+
21
+ ## [0.23.0] - 2026-01-23
22
+
23
+ ### Fixed
24
+
25
+ - `TextField`
26
+ - Fixed lag while typing/interacting with the field, due to formik's `setValue` being called in the `onChange` handler.
27
+ - Fixed formik not being notified of the field blurring, which can cause incorrect `touched` value for the field.
28
+
29
+ ### Changed
30
+
31
+ - `TextField`
32
+ - Autoformatting (`autoFormat` & `format` props) will occur during on blur instead of on change, due to fix mentioned above.
33
+
34
+ ### Added
35
+
36
+ - New `TextArea` component
37
+ - Wrapper for `TextField`, which will hardcode the `multiline` prop and provide a default for the `rows` prop (`3`).
38
+
14
39
  ## [0.22.0] - 2026-01-21
15
40
 
16
41
  ### Removed
@@ -2,6 +2,8 @@
2
2
  * Base props for ALL inputs
3
3
  *
4
4
  * TODO: Add other shared props, if possible. Maybe `label`, `required`, etc.?
5
+ *
6
+ * TODO: make sure components are correctly calling formik's handlers (onChange, onBlur, etc.) like TextField
5
7
  */
6
8
  export type BaseInputProps = {
7
9
  /**
@@ -0,0 +1,7 @@
1
+ import { TextFieldProps } from '../TextField/TextField';
2
+ import * as React from 'react';
3
+ export type TextAreaProps = Omit<TextFieldProps, 'multiline'>;
4
+ /**
5
+ * TextArea is a TextField but has more lines. Intended for larger blocks of text.
6
+ */
7
+ export declare const TextArea: React.FC<TextAreaProps>;