@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 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
@@ -249,7 +249,7 @@ export class SelectComponent extends Component {
249
249
  options,
250
250
  valueField,
251
251
  textField,
252
- customProps
252
+ customProps = {}
253
253
  } = props;
254
254
  let {
255
255
  listItemProps = {}
@@ -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({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/components",
3
- "version": "1.0.0-alpha-217",
3
+ "version": "1.0.0-alpha-218",
4
4
  "main": "lib/index.js",
5
5
  "module": "es/index.js",
6
6
  "jsnext:main": "es/index.js",