@centreon/ui 25.5.5 → 25.5.6

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": "25.5.5",
3
+ "version": "25.5.6",
4
4
  "description": "Centreon UI Components",
5
5
  "scripts": {
6
6
  "update:deps": "pnpx npm-check-updates -i --format group",
@@ -57,7 +57,8 @@ const ConnectedAutocomplete = ({
57
57
  ...parameters.search
58
58
  },
59
59
  sort: { [filterKey]: 'ASC' }
60
- }
60
+ },
61
+ customQueryParameters: connectedAutocomplete?.customQueryParameters || []
61
62
  });
62
63
 
63
64
  const fieldNamePath = split('.', fieldName);
@@ -4,6 +4,7 @@ import { SvgIconProps, TypographyProps } from '@mui/material';
4
4
 
5
5
  import { SelectEntry } from '../../InputField/Select';
6
6
  import { ConditionsSearchParameter } from '../../api/buildListingEndpoint/models';
7
+ import { QueryParameter } from '../../queryParameters/models';
7
8
 
8
9
  export enum InputType {
9
10
  Switch = 0,
@@ -55,6 +56,7 @@ export interface InputProps {
55
56
  };
56
57
  connectedAutocomplete?: {
57
58
  additionalConditionParameters: Array<ConditionsSearchParameter>;
59
+ customQueryParameters: Array<QueryParameter>;
58
60
  chipColor?: string;
59
61
  endpoint?: string;
60
62
  filterKey?: string;