orc-shared 1.7.0-dev.3 → 1.7.0-dev.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/package.json
CHANGED
|
@@ -128,6 +128,8 @@ const Autocomplete = ({ id, options, autocompleteProps }) => {
|
|
|
128
128
|
openText={null}
|
|
129
129
|
closeText={null}
|
|
130
130
|
clearText={null}
|
|
131
|
+
noOptionsText={null}
|
|
132
|
+
loadingText={null}
|
|
131
133
|
classes={{
|
|
132
134
|
paper: classes.selectPaper,
|
|
133
135
|
popupIndicator: classes.popupIndicator,
|
|
@@ -67,6 +67,8 @@ describe("Autocomplete Component", () => {
|
|
|
67
67
|
openText={null}
|
|
68
68
|
closeText={null}
|
|
69
69
|
clearText={null}
|
|
70
|
+
noOptionsText={null}
|
|
71
|
+
loadingText={null}
|
|
70
72
|
renderInput={params => (
|
|
71
73
|
<TextField
|
|
72
74
|
{...params}
|
|
@@ -115,6 +117,8 @@ describe("Autocomplete Component", () => {
|
|
|
115
117
|
openText={null}
|
|
116
118
|
closeText={null}
|
|
117
119
|
clearText={null}
|
|
120
|
+
noOptionsText={null}
|
|
121
|
+
loadingText={null}
|
|
118
122
|
renderInput={params => (
|
|
119
123
|
<TextField
|
|
120
124
|
{...params}
|
|
@@ -165,6 +169,8 @@ describe("Autocomplete Component", () => {
|
|
|
165
169
|
openText={null}
|
|
166
170
|
closeText={null}
|
|
167
171
|
clearText={null}
|
|
172
|
+
noOptionsText={null}
|
|
173
|
+
loadingText={null}
|
|
168
174
|
renderInput={params => (
|
|
169
175
|
<TextField
|
|
170
176
|
{...params}
|