@connectif/ui-components 5.4.1 → 5.5.0
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,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [5.5.0] - 2026-03-02
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Fixed issue with `TimeField` component where input events were not working properly.
|
|
8
|
+
- Updated input components styles when `disabled` is true.
|
|
9
|
+
|
|
10
|
+
## [5.4.2] - 2026-02-26
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Several components not using theme colors: TextField, NumberField, Autocomplete, Select.
|
|
15
|
+
|
|
3
16
|
## [5.4.1] - 2026-02-25
|
|
4
17
|
|
|
5
18
|
### 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
|
|
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
|
|
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
|
|
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
|
|
166
|
+
* The exposed `ref` property is the reference to the native <input> element,
|
|
167
167
|
* typed as React.Ref<HTMLInputElement>
|
|
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
|
-
*
|
|
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-
|
|
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;
|