@longline/aqua-ui 1.0.30 → 1.0.31

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.
@@ -7,7 +7,7 @@ var Body = function (props) {
7
7
  className: [
8
8
  props.active == row ? 'active' : null,
9
9
  (props.onClick || props.onDoubleClick) ? 'clickable' : null
10
- ].join(' '), onClick: props.onClick, onDoubleClick: props.onDoubleClick },
10
+ ].join(' '), onClick: function () { return props.onClick(row); }, onDoubleClick: function () { return props.onDoubleClick(row); } },
11
11
  props.onCheck && React.createElement("td", null,
12
12
  React.createElement(Selector, { checked: !!row.checked, onChange: function () { return props.onCheck(index); } })),
13
13
  props.columns.map(function (col, index) {
@@ -29,7 +29,7 @@ interface IListViewProps {
29
29
  */
30
30
  grid?: boolean;
31
31
  /**
32
- * Active record, if any. This record will be highlighted. If an `infoBox`
32
+ * Active record, if any. This record will be highlighted. If an `aux`
33
33
  * is set, it will be shown by the active record, but not shown when there
34
34
  * is no active record.
35
35
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@longline/aqua-ui",
3
- "version": "1.0.30",
3
+ "version": "1.0.31",
4
4
  "description": "AquaUI",
5
5
  "author": "Alexander van Oostenrijk / Longline Environment",
6
6
  "license": "Commercial",