@connectif/ui-components 5.4.1 → 5.4.2

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
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [5.4.2] - 2026-02-26
4
+
5
+ ### Fixed
6
+
7
+ - Several components not using theme colors: TextField, NumberField, Autocomplete, Select.
8
+
3
9
  ## [5.4.1] - 2026-02-25
4
10
 
5
11
  ### Fixed
@@ -72,7 +72,7 @@ export type TextFieldProps = {
72
72
  */
73
73
  placeholder?: string;
74
74
  /**
75
- * The main color used by this TextField, used to represent states like active or hightlighted.
75
+ * The main color used by this TextField, used to represent states like active or highlighted.
76
76
  */
77
77
  activeColor?: string;
78
78
  /**
@@ -94,7 +94,7 @@ export type TextFieldProps = {
94
94
  */
95
95
  iconId?: IconId;
96
96
  /**
97
- * The max lenth of text allowed in the input
97
+ * The max length of text allowed in the input
98
98
  */
99
99
  maxLength?: number;
100
100
  /**
@@ -126,7 +126,7 @@ export type TextFieldProps = {
126
126
  */
127
127
  onFocus?: (event: React.FocusEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
128
128
  /**
129
- * Called when the input losts the focus
129
+ * Called when the input loses the focus
130
130
  */
131
131
  onBlur?: (event: React.FocusEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
132
132
  /**
@@ -163,7 +163,7 @@ export type TextFieldProps = {
163
163
  * It comes with some optional features like an InputLabel, an InputHelperText, a leading Icon
164
164
  * and an IconButton to clear the current value of input or textarea.
165
165
  *
166
- * The exposed `ref` property is the refference to the native &lt;input&gt; element,
166
+ * The exposed `ref` property is the reference to the native &lt;input&gt; element,
167
167
  * typed as React.Ref&lt;HTMLInputElement&gt;
168
168
  */
169
169
  declare const TextField: React.ForwardRefExoticComponent<TextFieldProps & React.RefAttributes<HTMLInputElement>>;
@@ -33,7 +33,7 @@ export type AutocompleteProps<T extends string, Multiple extends boolean | undef
33
33
  */
34
34
  textFieldProps?: TextFieldFilteredProps;
35
35
  /**
36
- * Wheather the search pattern is case sensitive or not.
36
+ * Whether the search pattern is case sensitive or not.
37
37
  */
38
38
  isCaseSensitive?: boolean;
39
39
  /**
@@ -53,7 +53,7 @@ export type AutocompleteProps<T extends string, Multiple extends boolean | undef
53
53
  */
54
54
  isLoading?: boolean;
55
55
  /**
56
- * This callback will be called when the searchText changes, so you can perform asynchronous on-deman load of options.
56
+ * This callback will be called when the searchText changes, so you can perform asynchronous on-demand load of options.
57
57
  * Use it along with the `isLoading` prop.
58
58
  */
59
59
  onSearch?: (searchText: string) => void;