survey-analytics 1.9.70 → 1.9.72
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/package.json +2 -2
- package/survey.analytics.css +1 -1
- package/survey.analytics.d.ts +28 -27
- package/survey.analytics.datatables.css +1 -1
- package/survey.analytics.datatables.d.ts +24 -22
- package/survey.analytics.datatables.js +140 -127
- package/survey.analytics.datatables.min.css +1 -1
- package/survey.analytics.datatables.min.js +2 -2
- package/survey.analytics.js +1425 -1425
- package/survey.analytics.min.css +1 -1
- package/survey.analytics.min.js +3 -3
- package/survey.analytics.tabulator.css +1 -1
- package/survey.analytics.tabulator.d.ts +23 -21
- package/survey.analytics.tabulator.js +144 -131
- package/survey.analytics.tabulator.min.css +1 -1
- package/survey.analytics.tabulator.min.js +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare module "localization/english" {
|
|
1
|
+
declare module "analytics-localization/english" {
|
|
2
2
|
export var englishStrings: {
|
|
3
3
|
groupButton: string;
|
|
4
4
|
ungroupButton: string;
|
|
@@ -157,7 +157,7 @@ declare module "localizationManager" {
|
|
|
157
157
|
responses: string;
|
|
158
158
|
};
|
|
159
159
|
}
|
|
160
|
-
declare module "localization/farsi" {
|
|
160
|
+
declare module "analytics-localization/farsi" {
|
|
161
161
|
export var farsiStrings: {
|
|
162
162
|
groupButton: string;
|
|
163
163
|
ungroupButton: string;
|
|
@@ -179,7 +179,7 @@ declare module "localization/farsi" {
|
|
|
179
179
|
addElement: string;
|
|
180
180
|
};
|
|
181
181
|
}
|
|
182
|
-
declare module "localization/french" {
|
|
182
|
+
declare module "analytics-localization/french" {
|
|
183
183
|
export var frenchStrings: {
|
|
184
184
|
groupButton: string;
|
|
185
185
|
ungroupButton: string;
|
|
@@ -227,7 +227,7 @@ declare module "localization/french" {
|
|
|
227
227
|
responses: string;
|
|
228
228
|
};
|
|
229
229
|
}
|
|
230
|
-
declare module "localization/norwegian" {
|
|
230
|
+
declare module "analytics-localization/norwegian" {
|
|
231
231
|
export var norwegianStrings: {
|
|
232
232
|
groupButton: string;
|
|
233
233
|
ungroupButton: string;
|
|
@@ -268,7 +268,7 @@ declare module "localization/norwegian" {
|
|
|
268
268
|
hidePercentages: string;
|
|
269
269
|
};
|
|
270
270
|
}
|
|
271
|
-
declare module "localization/portuguese" {
|
|
271
|
+
declare module "analytics-localization/portuguese" {
|
|
272
272
|
export var portugueseStrings: {
|
|
273
273
|
groupButton: string;
|
|
274
274
|
ungroupButton: string;
|
|
@@ -318,7 +318,7 @@ declare module "localization/portuguese" {
|
|
|
318
318
|
noResults: string;
|
|
319
319
|
};
|
|
320
320
|
}
|
|
321
|
-
declare module "localization/russian" {
|
|
321
|
+
declare module "analytics-localization/russian" {
|
|
322
322
|
export var russianStrings: {
|
|
323
323
|
groupButton: string;
|
|
324
324
|
ungroupButton: string;
|
|
@@ -354,7 +354,7 @@ declare module "localization/russian" {
|
|
|
354
354
|
noResults: string;
|
|
355
355
|
};
|
|
356
356
|
}
|
|
357
|
-
declare module "localization/dutch" {
|
|
357
|
+
declare module "analytics-localization/dutch" {
|
|
358
358
|
export var dutchStrings: {
|
|
359
359
|
groupButton: string;
|
|
360
360
|
ungroupButton: string;
|
|
@@ -405,7 +405,7 @@ declare module "localization/dutch" {
|
|
|
405
405
|
topNValueText20: string;
|
|
406
406
|
};
|
|
407
407
|
}
|
|
408
|
-
declare module "localization/arabic" {
|
|
408
|
+
declare module "analytics-localization/arabic" {
|
|
409
409
|
export var arabicStrings: {
|
|
410
410
|
groupButton: string;
|
|
411
411
|
ungroupButton: string;
|
|
@@ -705,7 +705,7 @@ declare module "tables/columnbuilder" {
|
|
|
705
705
|
}
|
|
706
706
|
}
|
|
707
707
|
declare module "tables/table" {
|
|
708
|
-
import { SurveyModel, Question, Event } from "survey-core";
|
|
708
|
+
import { SurveyModel, Question, Event, EventBase } from "survey-core";
|
|
709
709
|
import { IPermission, QuestionLocation, ITableState, IColumn, IColumnData } from "tables/config";
|
|
710
710
|
import { Details } from "tables/extensions/detailsextensions";
|
|
711
711
|
import { TableExtensions } from "tables/extensions/tableextensions";
|
|
@@ -726,6 +726,8 @@ declare module "tables/table" {
|
|
|
726
726
|
displayValue: any;
|
|
727
727
|
}) => void;
|
|
728
728
|
}
|
|
729
|
+
export class TableEvent extends EventBase<Table> {
|
|
730
|
+
}
|
|
729
731
|
export abstract class Table {
|
|
730
732
|
protected _survey: SurveyModel;
|
|
731
733
|
protected data: Array<Object>;
|
|
@@ -747,9 +749,9 @@ declare module "tables/table" {
|
|
|
747
749
|
* Sets pagination selector content.
|
|
748
750
|
*/
|
|
749
751
|
paginationSizeSelector: number[];
|
|
750
|
-
onColumnsVisibilityChanged:
|
|
751
|
-
onColumnsLocationChanged:
|
|
752
|
-
onRowRemoved:
|
|
752
|
+
onColumnsVisibilityChanged: TableEvent;
|
|
753
|
+
onColumnsLocationChanged: TableEvent;
|
|
754
|
+
onRowRemoved: TableEvent;
|
|
753
755
|
renderDetailActions: (container: HTMLElement, row: TableRow) => HTMLElement;
|
|
754
756
|
getData(): Object[];
|
|
755
757
|
get survey(): SurveyModel;
|
|
@@ -809,7 +811,7 @@ declare module "tables/table" {
|
|
|
809
811
|
/**
|
|
810
812
|
* Fires when table state changed.
|
|
811
813
|
*/
|
|
812
|
-
onStateChanged:
|
|
814
|
+
onStateChanged: TableEvent;
|
|
813
815
|
/**
|
|
814
816
|
* Gets table permissions.
|
|
815
817
|
*/
|
|
@@ -832,7 +834,7 @@ declare module "tables/table" {
|
|
|
832
834
|
extensions: TableExtensions;
|
|
833
835
|
private detailedRowClass;
|
|
834
836
|
private isDetailsExpanded;
|
|
835
|
-
onToggleDetails: Event<(sender: TableRow, options: any) => any, any>;
|
|
837
|
+
onToggleDetails: Event<(sender: TableRow, options: any) => any, TableRow, any>;
|
|
836
838
|
/**
|
|
837
839
|
* Returns row's html element
|
|
838
840
|
*/
|
|
@@ -949,13 +951,13 @@ declare module "tables/tabulator" {
|
|
|
949
951
|
}
|
|
950
952
|
declare module "entries/tabulator" {
|
|
951
953
|
export * from "localizationManager";
|
|
952
|
-
import "localization/farsi";
|
|
953
|
-
import "localization/french";
|
|
954
|
-
import "localization/norwegian";
|
|
955
|
-
import "localization/portuguese";
|
|
956
|
-
import "localization/russian";
|
|
957
|
-
import "localization/dutch";
|
|
958
|
-
import "localization/arabic";
|
|
954
|
+
import "analytics-localization/farsi";
|
|
955
|
+
import "analytics-localization/french";
|
|
956
|
+
import "analytics-localization/norwegian";
|
|
957
|
+
import "analytics-localization/portuguese";
|
|
958
|
+
import "analytics-localization/russian";
|
|
959
|
+
import "analytics-localization/dutch";
|
|
960
|
+
import "analytics-localization/arabic";
|
|
959
961
|
import "tables/extensions/rowextensions";
|
|
960
962
|
import "tables/extensions/headerextensions";
|
|
961
963
|
import "tables/extensions/columnextensions";
|