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.
@@ -1,11 +1,11 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Dashboard library v2.0.2
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.js';
8
- export { d as surveyStrings } from './shared.js';
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].toLowerCase().includes(filterParams.value.toLowerCase())) {
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.js.map
1517
+ //# sourceMappingURL=survey.analytics.tabulator.mjs.map