@commercetools-uikit/selectable-search-input 19.25.1 → 20.0.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.
@@ -195,7 +195,7 @@ export type TSelectableSearchInputProps = {
195
195
  rightActionProps?: TIconButtonProps;
196
196
  };
197
197
  declare const SelectableSearchInput: {
198
- ({ horizontalConstraint, isClearable, menuHorizontalConstraint, showSubmitButton, menuPortalZIndex, ...props }: TSelectableSearchInputProps): import("@emotion/react/jsx-runtime").JSX.Element;
198
+ ({ horizontalConstraint, isClearable, menuHorizontalConstraint, showSubmitButton, menuPortalZIndex, onChange, ...props }: TSelectableSearchInputProps): import("@emotion/react/jsx-runtime").JSX.Element;
199
199
  displayName: string;
200
200
  isEmpty(formValue: TSelectableSearchInputProps["value"]): boolean;
201
201
  getTextInputId: (name?: string) => string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@commercetools-uikit/selectable-search-input",
3
3
  "description": "A controlled selectable search input component for single-line strings with validation states.",
4
- "version": "19.25.1",
4
+ "version": "20.0.0",
5
5
  "bugs": "https://github.com/commercetools/ui-kit/issues",
6
6
  "repository": {
7
7
  "type": "git",
@@ -21,29 +21,28 @@
21
21
  "dependencies": {
22
22
  "@babel/runtime": "^7.20.13",
23
23
  "@babel/runtime-corejs3": "^7.20.13",
24
- "@commercetools-uikit/constraints": "19.25.1",
25
- "@commercetools-uikit/design-system": "19.25.1",
26
- "@commercetools-uikit/hooks": "19.25.1",
27
- "@commercetools-uikit/icon-button": "19.25.1",
28
- "@commercetools-uikit/icons": "19.25.1",
29
- "@commercetools-uikit/input-utils": "19.25.1",
30
- "@commercetools-uikit/secondary-icon-button": "19.25.1",
31
- "@commercetools-uikit/select-utils": "19.25.1",
32
- "@commercetools-uikit/utils": "19.25.1",
24
+ "@commercetools-uikit/constraints": "20.0.0",
25
+ "@commercetools-uikit/design-system": "20.0.0",
26
+ "@commercetools-uikit/hooks": "20.0.0",
27
+ "@commercetools-uikit/icon-button": "20.0.0",
28
+ "@commercetools-uikit/icons": "20.0.0",
29
+ "@commercetools-uikit/input-utils": "20.0.0",
30
+ "@commercetools-uikit/secondary-icon-button": "20.0.0",
31
+ "@commercetools-uikit/select-utils": "20.0.0",
32
+ "@commercetools-uikit/utils": "20.0.0",
33
33
  "@emotion/react": "^11.10.5",
34
34
  "@emotion/styled": "^11.10.5",
35
35
  "lodash": "4.17.21",
36
- "prop-types": "15.8.1",
37
36
  "react-select": "5.10.1"
38
37
  },
39
38
  "devDependencies": {
40
- "react": "17.0.2",
41
- "react-dom": "17.0.2",
42
- "react-intl": "^6.3.2"
39
+ "react": "19.0.0",
40
+ "react-dom": "19.0.0",
41
+ "react-intl": "^7.1.4"
43
42
  },
44
43
  "peerDependencies": {
45
- "react": "17.x",
46
- "react-dom": "17.x",
47
- "react-intl": "6.x"
44
+ "react": "19.x",
45
+ "react-dom": "19.x",
46
+ "react-intl": "7.x"
48
47
  }
49
48
  }