@wavelengthusaf/components 2.5.0 → 2.5.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/README.md CHANGED
@@ -14,6 +14,12 @@ npm install @wavelengthusaf/components
14
14
 
15
15
  ## Release Notes
16
16
 
17
+ ### 2.5.1
18
+
19
+ - 03/12/2025
20
+ - Added shrink prop to text field component
21
+ - Changed message prop in the snackbar component to be a react or jsx element
22
+
17
23
  ### 2.5.0
18
24
 
19
25
  - 03/06/2025
@@ -5911,7 +5911,7 @@ function WavelengthTextField(props) {
5911
5911
  },
5912
5912
  placeholder: props.placeholder,
5913
5913
  InputLabelProps: {
5914
- shrink: true
5914
+ shrink: props.shrink
5915
5915
  },
5916
5916
  InputProps: {
5917
5917
  style: { color: props.textColor || "inherit" }