@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.
- package/dist/commercetools-uikit-selectable-search-input.cjs.dev.js +14 -69
- package/dist/commercetools-uikit-selectable-search-input.cjs.prod.js +10 -12
- package/dist/commercetools-uikit-selectable-search-input.esm.js +14 -68
- package/dist/declarations/src/selectable-search-input.d.ts +1 -1
- package/package.json +16 -17
|
@@ -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": "
|
|
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": "
|
|
25
|
-
"@commercetools-uikit/design-system": "
|
|
26
|
-
"@commercetools-uikit/hooks": "
|
|
27
|
-
"@commercetools-uikit/icon-button": "
|
|
28
|
-
"@commercetools-uikit/icons": "
|
|
29
|
-
"@commercetools-uikit/input-utils": "
|
|
30
|
-
"@commercetools-uikit/secondary-icon-button": "
|
|
31
|
-
"@commercetools-uikit/select-utils": "
|
|
32
|
-
"@commercetools-uikit/utils": "
|
|
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": "
|
|
41
|
-
"react-dom": "
|
|
42
|
-
"react-intl": "^
|
|
39
|
+
"react": "19.0.0",
|
|
40
|
+
"react-dom": "19.0.0",
|
|
41
|
+
"react-intl": "^7.1.4"
|
|
43
42
|
},
|
|
44
43
|
"peerDependencies": {
|
|
45
|
-
"react": "
|
|
46
|
-
"react-dom": "
|
|
47
|
-
"react-intl": "
|
|
44
|
+
"react": "19.x",
|
|
45
|
+
"react-dom": "19.x",
|
|
46
|
+
"react-intl": "7.x"
|
|
48
47
|
}
|
|
49
48
|
}
|