@zohodesk/components 1.0.0-alpha-217 → 1.0.0-alpha-218
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 +4 -0
- package/es/Select/Select.js +1 -1
- package/lib/Select/Select.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,6 +32,10 @@ In this Package we Provide Some Basic Components to Build Web App
|
|
|
32
32
|
- TextBoxIcon
|
|
33
33
|
- Tooltip
|
|
34
34
|
|
|
35
|
+
# 1.0.0-alpha-218
|
|
36
|
+
|
|
37
|
+
- Select => Custom props undefined issue solved
|
|
38
|
+
|
|
35
39
|
# 1.0.0-alpha-217
|
|
36
40
|
|
|
37
41
|
- TextBox, Multiselect, Tag missing dark palette variables moved under Themes folder file
|
package/es/Select/Select.js
CHANGED
package/lib/Select/Select.js
CHANGED
|
@@ -295,7 +295,8 @@ var SelectComponent = /*#__PURE__*/function (_Component) {
|
|
|
295
295
|
var options = props.options,
|
|
296
296
|
valueField = props.valueField,
|
|
297
297
|
textField = props.textField,
|
|
298
|
-
customProps = props.customProps
|
|
298
|
+
_props$customProps = props.customProps,
|
|
299
|
+
customProps = _props$customProps === void 0 ? {} : _props$customProps;
|
|
299
300
|
var _customProps$listItem = customProps.listItemProps,
|
|
300
301
|
listItemProps = _customProps$listItem === void 0 ? {} : _customProps$listItem;
|
|
301
302
|
return this.formatOptions({
|