survey-analytics 2.0.2 → 2.0.4
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/fesm/{shared.js → shared.mjs} +2 -2
- package/fesm/shared.mjs.map +1 -0
- package/fesm/{survey.analytics.js → survey.analytics.mjs} +4 -4
- package/fesm/survey.analytics.mjs.map +1 -0
- package/fesm/{survey.analytics.tabulator.js → survey.analytics.tabulator.mjs} +7 -5
- package/fesm/{survey.analytics.tabulator.js.map → survey.analytics.tabulator.mjs.map} +1 -1
- package/package.json +6 -6
- package/survey.analytics.css +1 -1
- package/survey.analytics.js +185 -185
- package/survey.analytics.js.map +1 -1
- package/survey.analytics.min.css +1 -1
- package/survey.analytics.min.js +1 -1
- package/survey.analytics.min.js.LICENSE.txt +1 -1
- package/survey.analytics.tabulator.css +1 -1
- package/survey.analytics.tabulator.js +136 -134
- package/survey.analytics.tabulator.js.map +1 -1
- package/survey.analytics.tabulator.min.css +1 -1
- package/survey.analytics.tabulator.min.js +1 -1
- package/survey.analytics.tabulator.min.js.LICENSE.txt +1 -1
- package/fesm/shared.js.map +0 -1
- package/fesm/survey.analytics.js.map +0 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v2.0.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v2.0.4
|
|
3
3
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import { D as DocumentHelper, l as localization, e as createImagesContainer, f as createLinksContainer, b as createCommercialLicenseLink, s as svgTemplate } from './shared.
|
|
8
|
-
export { d as surveyStrings } from './shared.
|
|
7
|
+
import { D as DocumentHelper, l as localization, e as createImagesContainer, f as createLinksContainer, b as createCommercialLicenseLink, s as svgTemplate } from './shared.mjs';
|
|
8
|
+
export { d as surveyStrings } from './shared.mjs';
|
|
9
9
|
import { ItemValue, settings, hasLicense, Serializer, EventBase, Event } from 'survey-core';
|
|
10
10
|
import { TabulatorFull } from 'tabulator-tables';
|
|
11
11
|
|
|
@@ -1433,7 +1433,9 @@ class Tabulator extends Table {
|
|
|
1433
1433
|
applyFilter(value) {
|
|
1434
1434
|
var customFilter = (data, filterParams) => {
|
|
1435
1435
|
for (var key in data) {
|
|
1436
|
-
if (data[key]
|
|
1436
|
+
if (data[key] &&
|
|
1437
|
+
typeof data[key] === "string" &&
|
|
1438
|
+
data[key].toLowerCase().includes(filterParams.value.toLowerCase())) {
|
|
1437
1439
|
return true;
|
|
1438
1440
|
}
|
|
1439
1441
|
}
|
|
@@ -1512,4 +1514,4 @@ class TabulatorRow extends TableRow {
|
|
|
1512
1514
|
Tabulator.initTabulatorConstructor(TabulatorFull);
|
|
1513
1515
|
|
|
1514
1516
|
export { DocumentHelper, Table, TableEvent, TableExtensions, TableRow, Tabulator, TabulatorRow, defaultDownloadOptions, defaultOptions, localization };
|
|
1515
|
-
//# sourceMappingURL=survey.analytics.tabulator.
|
|
1517
|
+
//# sourceMappingURL=survey.analytics.tabulator.mjs.map
|