@commercetools-uikit/search-select-input 13.0.2 → 13.0.4
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/README.md +2 -0
- package/dist/commercetools-uikit-search-select-input.cjs.dev.js +1 -1
- package/dist/commercetools-uikit-search-select-input.cjs.prod.js +1 -1
- package/dist/commercetools-uikit-search-select-input.esm.js +1 -1
- package/dist/declarations/src/search-select-input.d.ts +2 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -65,6 +65,8 @@ export default Example;
|
|
|
65
65
|
| `horizontalConstraint` | `union`<br/>Possible values:<br/>`, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 'scale', 'auto'` | | | Horizontal size limit of the input fields. |
|
|
66
66
|
| `aria-label` | `AsyncProps['aria-label']` | | | Aria label (for assistive tech)
<br>
[Props from React select was used](https://react-select.com/props) |
|
|
67
67
|
| `aria-labelledby` | `AsyncProps['aria-labelledby']` | | | HTML ID of an element that should be used as the label (for assistive tech)
<br>
[Props from React select was used](https://react-select.com/props) |
|
|
68
|
+
| `aria-invalid` | `AsyncProps['aria-invalid']` | | | Indicate if the value entered in the input is invalid.
<br>
[Props from React select was used](https://react-select.com/props) |
|
|
69
|
+
| `aria-errormessage` | `AsyncProps['aria-errormessage']` | | | HTML ID of an element containing an error message related to the input.
<br>
[Props from React select was used](https://react-select.com/props) |
|
|
68
70
|
| `id` | `AsyncProps['inputId']` | | | The id of the search input. This forwarded as react-select's "inputId"
<br>
[Props from React select was used](https://react-select.com/props) |
|
|
69
71
|
| `containerId` | `AsyncProps['id']` | | | The id to set on the SelectContainer component. This is forwarded as react-select's "id"
<br>
[Props from React select was used](https://react-select.com/props) |
|
|
70
72
|
| `name` | `AsyncProps['name']` | | | Name of the HTML Input (optional - without this, no input will be rendered)
<br>
[Props from React select was used](https://react-select.com/props) |
|
|
@@ -127,7 +127,7 @@ SearchSelectInput.displayName = 'SearchSelectInput';
|
|
|
127
127
|
var SearchSelectInput$1 = SearchSelectInput;
|
|
128
128
|
|
|
129
129
|
// NOTE: This string will be replaced on build time with the package version.
|
|
130
|
-
var version = "13.0.
|
|
130
|
+
var version = "13.0.4";
|
|
131
131
|
|
|
132
132
|
exports["default"] = SearchSelectInput$1;
|
|
133
133
|
exports.version = version;
|
|
@@ -109,7 +109,7 @@ SearchSelectInput.displayName = 'SearchSelectInput';
|
|
|
109
109
|
var SearchSelectInput$1 = SearchSelectInput;
|
|
110
110
|
|
|
111
111
|
// NOTE: This string will be replaced on build time with the package version.
|
|
112
|
-
var version = "13.0.
|
|
112
|
+
var version = "13.0.4";
|
|
113
113
|
|
|
114
114
|
exports["default"] = SearchSelectInput$1;
|
|
115
115
|
exports.version = version;
|
|
@@ -109,6 +109,6 @@ SearchSelectInput.displayName = 'SearchSelectInput';
|
|
|
109
109
|
var SearchSelectInput$1 = SearchSelectInput;
|
|
110
110
|
|
|
111
111
|
// NOTE: This string will be replaced on build time with the package version.
|
|
112
|
-
var version = "13.0.
|
|
112
|
+
var version = "13.0.4";
|
|
113
113
|
|
|
114
114
|
export { SearchSelectInput$1 as default, version };
|
|
@@ -12,6 +12,8 @@ export declare type TSearchSelectInputProps = {
|
|
|
12
12
|
horizontalConstraint?: 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 'scale' | 'auto';
|
|
13
13
|
'aria-label'?: ReactSelectAsyncProps['aria-label'];
|
|
14
14
|
'aria-labelledby'?: ReactSelectAsyncProps['aria-labelledby'];
|
|
15
|
+
'aria-invalid'?: ReactSelectAsyncProps['aria-invalid'];
|
|
16
|
+
'aria-errormessage'?: ReactSelectAsyncProps['aria-errormessage'];
|
|
15
17
|
id?: ReactSelectAsyncProps['inputId'];
|
|
16
18
|
containerId?: ReactSelectAsyncProps['id'];
|
|
17
19
|
name?: ReactSelectAsyncProps['name'];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercetools-uikit/search-select-input",
|
|
3
3
|
"description": "A search select input component built on top of `@commercetools-uikit/async-select-input` to asynchronously load results (options) using the keyword that the user has entered.",
|
|
4
|
-
"version": "13.0.
|
|
4
|
+
"version": "13.0.4",
|
|
5
5
|
"bugs": "https://github.com/commercetools/ui-kit/issues",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@babel/runtime": "7.17.2",
|
|
23
23
|
"@babel/runtime-corejs3": "7.17.2",
|
|
24
|
-
"@commercetools-uikit/async-select-input": "13.0.
|
|
24
|
+
"@commercetools-uikit/async-select-input": "13.0.4",
|
|
25
25
|
"@commercetools-uikit/design-system": "13.0.0",
|
|
26
|
-
"@commercetools-uikit/select-utils": "13.0.
|
|
26
|
+
"@commercetools-uikit/select-utils": "13.0.4",
|
|
27
27
|
"@commercetools-uikit/spacings": "13.0.2",
|
|
28
|
-
"@commercetools-uikit/text": "13.0.
|
|
28
|
+
"@commercetools-uikit/text": "13.0.4",
|
|
29
29
|
"@commercetools-uikit/utils": "13.0.2",
|
|
30
30
|
"@emotion/react": "^11.4.0",
|
|
31
31
|
"@emotion/styled": "^11.3.0",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"react": "17.0.2",
|
|
36
36
|
"react-dom": "17.0.2",
|
|
37
|
-
"react-intl": "5.24.6"
|
|
37
|
+
"react-intl": "^5.24.6"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"react": "17.x",
|