@centreon/ui 26.3.16 → 26.3.17

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@centreon/ui",
3
- "version": "26.3.16",
3
+ "version": "26.3.17",
4
4
  "description": "Centreon UI Components",
5
5
  "scripts": {
6
6
  "update:deps": "pnpx npm-check-updates -i --format group",
@@ -145,6 +145,7 @@ const ConnectedAutocomplete = ({
145
145
  getEndpoint={getEndpoint}
146
146
  getOptionLabel={connectedAutocomplete?.getOptionLabel}
147
147
  getRenderedOptionText={connectedAutocomplete?.getRenderedOptionText}
148
+ helperText={connectedAutocomplete?.helperText}
148
149
  initialPage={1}
149
150
  isOptionEqualToValue={isOptionEqualToValue}
150
151
  label={t(label)}
@@ -63,6 +63,7 @@ export interface InputProps {
63
63
  filterKey?: string;
64
64
  getRenderedOptionText?: (option) => string | JSX.Element;
65
65
  getOptionLabel?: (option) => string;
66
+ helperText?: string;
66
67
  optionProperty?: string;
67
68
  disableSelectAll?: boolean;
68
69
  limitTags?: number;