@teselagen/ui 0.3.5 → 0.3.7
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/index.umd.js +165 -133
- package/package.json +3 -3
- package/src/DataTable/FilterAndSortMenu.js +68 -56
- package/src/DataTable/index.js +143 -142
- package/src/DataTable/utils/queryParams.js +1 -1
|
@@ -306,7 +306,7 @@ function getSubFilter(
|
|
|
306
306
|
stringFilterValue.toLowerCase && stringFilterValue.toLowerCase();
|
|
307
307
|
const arrayFilterValue = Array.isArray(filterValue)
|
|
308
308
|
? filterValue
|
|
309
|
-
: stringFilterValue.split("
|
|
309
|
+
: stringFilterValue.split(";");
|
|
310
310
|
if (ccSelectedFilter === "startsWith") {
|
|
311
311
|
return qb
|
|
312
312
|
? qb.startsWith(stringFilterValue) //filter using qb (aka we're backend connected)
|