diff --git a/dist/amd/au-table-pagination.js b/dist/amd/au-table-pagination.js index d54858b..9d5f0ec 100644 --- a/dist/amd/au-table-pagination.js +++ b/dist/amd/au-table-pagination.js @@ -57,7 +57,7 @@ define(["exports", "aurelia-framework"], function (exports, _aureliaFramework) { var _dec, _desc, _value, _class, _descriptor, _descriptor2, _descriptor3, _descriptor4; - var AutPaginationCustomElement = exports.AutPaginationCustomElement = (_dec = (0, _aureliaFramework.bindable)({ defaultBindingMode: _aureliaFramework.bindingMode.twoWay }), (_class = function () { + var AutPaginationCustomElement = exports.AutPaginationCustomElement = (_dec = (0, _aureliaFramework.bindable)({defaultBindingMode: _aureliaFramework.bindingMode.twoWay}), (_class = function () { function AutPaginationCustomElement() { _classCallCheck(this, AutPaginationCustomElement); diff --git a/dist/amd/au-table.js b/dist/amd/au-table.js index ddf42f2..670879d 100644 --- a/dist/amd/au-table.js +++ b/dist/amd/au-table.js @@ -184,7 +184,7 @@ define(["exports", "aurelia-framework"], function (exports, _aureliaFramework) { var key = _ref2; - if (next[key]) { + if (next[key] != null) { var value = next[key].toString().toLowerCase(); if (value.indexOf(this.filterText.toLowerCase()) > -1) { diff --git a/dist/commonjs/au-table-pagination.js b/dist/commonjs/au-table-pagination.js index eaaa22c..9bc38cb 100644 --- a/dist/commonjs/au-table-pagination.js +++ b/dist/commonjs/au-table-pagination.js @@ -54,7 +54,7 @@ function _initializerWarningHelper(descriptor, context) { throw new Error('Decorating class property failed. Please ensure that transform-class-properties is enabled.'); } -var AutPaginationCustomElement = exports.AutPaginationCustomElement = (_dec = (0, _aureliaFramework.bindable)({ defaultBindingMode: _aureliaFramework.bindingMode.twoWay }), (_class = function () { +var AutPaginationCustomElement = exports.AutPaginationCustomElement = (_dec = (0, _aureliaFramework.bindable)({defaultBindingMode: _aureliaFramework.bindingMode.twoWay}), (_class = function () { function AutPaginationCustomElement() { _classCallCheck(this, AutPaginationCustomElement); diff --git a/dist/commonjs/au-table.js b/dist/commonjs/au-table.js index 4debad3..727dfa9 100644 --- a/dist/commonjs/au-table.js +++ b/dist/commonjs/au-table.js @@ -181,7 +181,7 @@ var AureliaTableCustomAttribute = exports.AureliaTableCustomAttribute = (_dec = var key = _ref2; - if (next[key]) { + if (next[key] != null) { var value = next[key].toString().toLowerCase(); if (value.indexOf(this.filterText.toLowerCase()) > -1) { diff --git a/dist/es2015/au-table-pagination.js b/dist/es2015/au-table-pagination.js index 9eed9d5..5045d7e 100644 --- a/dist/es2015/au-table-pagination.js +++ b/dist/es2015/au-table-pagination.js @@ -45,7 +45,7 @@ function _initializerWarningHelper(descriptor, context) { import { bindable, bindingMode } from "aurelia-framework"; -export let AutPaginationCustomElement = (_dec = bindable({ defaultBindingMode: bindingMode.twoWay }), (_class = class AutPaginationCustomElement { +export let AutPaginationCustomElement = (_dec = bindable({defaultBindingMode: bindingMode.twoWay}), (_class = class AutPaginationCustomElement { constructor() { _initDefineProp(this, "currentPage", _descriptor, this); diff --git a/dist/es2015/au-table.js b/dist/es2015/au-table.js index 9537723..c6e8cd0 100644 --- a/dist/es2015/au-table.js +++ b/dist/es2015/au-table.js @@ -141,7 +141,7 @@ export let AureliaTableCustomAttribute = (_dec = inject(BindingEngine), _dec2 = for (let next of toFilter) { for (let key of this.filterKeys) { - if (next[key]) { + if (next[key] != null) { let value = next[key].toString().toLowerCase(); if (value.indexOf(this.filterText.toLowerCase()) > -1) { diff --git a/dist/system/au-table-pagination.js b/dist/system/au-table-pagination.js index d75773c..f48aa6e 100644 --- a/dist/system/au-table-pagination.js +++ b/dist/system/au-table-pagination.js @@ -60,7 +60,7 @@ System.register(["aurelia-framework"], function (_export, _context) { bindingMode = _aureliaFramework.bindingMode; }], execute: function () { - _export("AutPaginationCustomElement", AutPaginationCustomElement = (_dec = bindable({ defaultBindingMode: bindingMode.twoWay }), (_class = function () { + _export("AutPaginationCustomElement", AutPaginationCustomElement = (_dec = bindable({defaultBindingMode: bindingMode.twoWay}), (_class = function () { function AutPaginationCustomElement() { _classCallCheck(this, AutPaginationCustomElement); diff --git a/dist/system/au-table.js b/dist/system/au-table.js index 3e6374b..76aca7f 100644 --- a/dist/system/au-table.js +++ b/dist/system/au-table.js @@ -189,7 +189,7 @@ System.register(["aurelia-framework"], function (_export, _context) { var key = _ref2; - if (next[key]) { + if (next[key] != null) { var value = next[key].toString().toLowerCase(); if (value.indexOf(this.filterText.toLowerCase()) > -1) {