orc-shared 1.7.0-dev.2 → 1.7.0-dev.3
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.
|
@@ -156,6 +156,9 @@ var Autocomplete = function Autocomplete(_ref) {
|
|
|
156
156
|
return option.label;
|
|
157
157
|
},
|
|
158
158
|
onChange: onChangeOption,
|
|
159
|
+
openText: null,
|
|
160
|
+
closeText: null,
|
|
161
|
+
clearText: null,
|
|
159
162
|
classes: {
|
|
160
163
|
paper: classes.selectPaper,
|
|
161
164
|
popupIndicator: classes.popupIndicator,
|
package/package.json
CHANGED
|
@@ -125,6 +125,9 @@ const Autocomplete = ({ id, options, autocompleteProps }) => {
|
|
|
125
125
|
options={options}
|
|
126
126
|
getOptionLabel={option => option.label}
|
|
127
127
|
onChange={onChangeOption}
|
|
128
|
+
openText={null}
|
|
129
|
+
closeText={null}
|
|
130
|
+
clearText={null}
|
|
128
131
|
classes={{
|
|
129
132
|
paper: classes.selectPaper,
|
|
130
133
|
popupIndicator: classes.popupIndicator,
|
|
@@ -64,6 +64,9 @@ describe("Autocomplete Component", () => {
|
|
|
64
64
|
closeIcon={<Icon id="close2" />}
|
|
65
65
|
popupIcon={<Icon id="dropdown-chevron-down" />}
|
|
66
66
|
getOptionLabel={option => option.label}
|
|
67
|
+
openText={null}
|
|
68
|
+
closeText={null}
|
|
69
|
+
clearText={null}
|
|
67
70
|
renderInput={params => (
|
|
68
71
|
<TextField
|
|
69
72
|
{...params}
|
|
@@ -109,6 +112,9 @@ describe("Autocomplete Component", () => {
|
|
|
109
112
|
closeIcon={<Icon id="close2" />}
|
|
110
113
|
popupIcon={<Icon id="dropdown-chevron-down" />}
|
|
111
114
|
getOptionLabel={option => option.label}
|
|
115
|
+
openText={null}
|
|
116
|
+
closeText={null}
|
|
117
|
+
clearText={null}
|
|
112
118
|
renderInput={params => (
|
|
113
119
|
<TextField
|
|
114
120
|
{...params}
|
|
@@ -156,6 +162,9 @@ describe("Autocomplete Component", () => {
|
|
|
156
162
|
closeIcon={<Icon id="close2" />}
|
|
157
163
|
popupIcon={<Icon id="dropdown-chevron-down" />}
|
|
158
164
|
getOptionLabel={option => option.label}
|
|
165
|
+
openText={null}
|
|
166
|
+
closeText={null}
|
|
167
|
+
clearText={null}
|
|
159
168
|
renderInput={params => (
|
|
160
169
|
<TextField
|
|
161
170
|
{...params}
|