survey-analytics 2.5.13 → 3.0.0-beta.0
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.mjs +754 -3179
- package/fesm/shared.mjs.map +1 -1
- package/fesm/shared2.mjs +9687 -8187
- package/fesm/shared2.mjs.map +1 -1
- package/fesm/shared3.mjs +4982 -0
- package/fesm/shared3.mjs.map +1 -0
- package/fesm/shared4.mjs +42 -0
- package/fesm/shared4.mjs.map +1 -0
- package/fesm/survey.analytics.apexcharts.mjs +1061 -0
- package/fesm/survey.analytics.apexcharts.mjs.map +1 -0
- package/fesm/survey.analytics.core.mjs +3 -3
- package/fesm/survey.analytics.mjs +7 -755
- package/fesm/survey.analytics.mjs.map +1 -1
- package/fesm/survey.analytics.mongo.mjs +1 -1
- package/fesm/survey.analytics.mongo.mjs.map +1 -1
- package/fesm/survey.analytics.plotly.mjs +13 -0
- package/fesm/survey.analytics.plotly.mjs.map +1 -0
- package/fesm/survey.analytics.tabulator.mjs +343 -181
- package/fesm/survey.analytics.tabulator.mjs.map +1 -1
- package/fesm/themes/index.mjs +1942 -0
- package/fesm/themes/index.mjs.map +1 -0
- package/package.json +38 -11
- package/survey-analytics-plotly.types/alternativeVizualizersWrapper.d.ts +73 -0
- package/survey-analytics-plotly.types/analytics-localization/arabic.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/dutch.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/english.d.ts +130 -0
- package/survey-analytics-plotly.types/analytics-localization/farsi.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/finnish.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/french.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/german.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/italian.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/japanese.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/norwegian.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/polish.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/portuguese.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/russian.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/spanish.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/swedish.d.ts +100 -0
- package/survey-analytics-plotly.types/boolean.d.ts +15 -0
- package/survey-analytics-plotly.types/card.d.ts +29 -0
- package/survey-analytics-plotly.types/chartConfig.d.ts +9 -0
- package/survey-analytics-plotly.types/config.d.ts +35 -0
- package/survey-analytics-plotly.types/dashboard.d.ts +51 -0
- package/survey-analytics-plotly.types/dataProvider.d.ts +69 -0
- package/survey-analytics-plotly.types/entries/plotly.d.ts +2 -0
- package/survey-analytics-plotly.types/entries/summary.core.d.ts +44 -0
- package/survey-analytics-plotly.types/filterInfo.d.ts +11 -0
- package/survey-analytics-plotly.types/histogram.d.ts +102 -0
- package/{survey-analytics.types/layoutEngine.d.ts → survey-analytics-plotly.types/layout-engine.d.ts} +0 -12
- package/survey-analytics-plotly.types/localizationManager.d.ts +152 -0
- package/survey-analytics-plotly.types/matrix.d.ts +17 -0
- package/survey-analytics-plotly.types/matrixDropdownGrouped.d.ts +15 -0
- package/survey-analytics-plotly.types/muuri-layout-engine.d.ts +13 -0
- package/survey-analytics-plotly.types/nps.d.ts +37 -0
- package/survey-analytics-plotly.types/number.d.ts +27 -0
- package/survey-analytics-plotly.types/pivot.d.ts +59 -0
- package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/chart-adapter.d.ts +11 -2
- package/survey-analytics-plotly.types/plotly/setup.d.ts +150 -0
- package/survey-analytics-plotly.types/ranking.d.ts +12 -0
- package/survey-analytics-plotly.types/selectBase.d.ts +116 -0
- package/survey-analytics-plotly.types/statisticCalculators.d.ts +9 -0
- package/survey-analytics-plotly.types/statistics-table.d.ts +28 -0
- package/survey-analytics-plotly.types/svgbundle.d.ts +2 -0
- package/survey-analytics-plotly.types/text.d.ts +25 -0
- package/survey-analytics-plotly.types/theme.d.ts +50 -0
- package/survey-analytics-plotly.types/themes/default-light.d.ts +965 -0
- package/survey-analytics-plotly.types/utils/calculationDateRanges.d.ts +35 -0
- package/survey-analytics-plotly.types/utils/dateRangeModel.d.ts +32 -0
- package/survey-analytics-plotly.types/utils/dateRangeWidget.d.ts +38 -0
- package/survey-analytics-plotly.types/utils/dropdownActionWidget.d.ts +31 -0
- package/survey-analytics-plotly.types/utils/dropdownBase.d.ts +47 -0
- package/survey-analytics-plotly.types/utils/dropdownWidget.d.ts +40 -0
- package/survey-analytics-plotly.types/utils/index.d.ts +62 -0
- package/survey-analytics-plotly.types/utils/toggle.d.ts +17 -0
- package/survey-analytics-plotly.types/utils/utils.d.ts +9 -0
- package/survey-analytics-plotly.types/visualizationComposite.d.ts +8 -0
- package/survey-analytics-plotly.types/visualizationManager.d.ts +60 -0
- package/survey-analytics-plotly.types/visualizationMatrixDropdown.d.ts +23 -0
- package/survey-analytics-plotly.types/visualizationMatrixDynamic.d.ts +8 -0
- package/survey-analytics-plotly.types/visualizationPanel.d.ts +464 -0
- package/survey-analytics-plotly.types/visualizationPanelDynamic.d.ts +20 -0
- package/survey-analytics-plotly.types/visualizerBase.d.ts +422 -0
- package/survey-analytics-plotly.types/visualizerDescription.d.ts +19 -0
- package/survey-analytics-plotly.types/visualizerFactory.d.ts +41 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/dutch.d.ts +1 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/english.d.ts +1 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/index.d.ts +3 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/norwegian.d.ts +1 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/spanish.d.ts +1 -0
- package/survey-analytics-plotly.types/wordcloud/widget.d.ts +38 -0
- package/survey-analytics-plotly.types/wordcloud/wordcloud.d.ts +28 -0
- package/survey-analytics-tabulator.types/analytics-localization/english.d.ts +28 -0
- package/survey-analytics-tabulator.types/entries/tabulator.d.ts +2 -25
- package/survey-analytics-tabulator.types/entries/tabulator.fontless.d.ts +26 -0
- package/survey-analytics-tabulator.types/localizationManager.d.ts +28 -0
- package/survey-analytics-tabulator.types/tables/extensions/footerextensions.d.ts +1 -0
- package/survey-analytics-tabulator.types/tables/extensions/tableextensions.d.ts +2 -1
- package/survey-analytics-tabulator.types/tables/tabulator.d.ts +10 -1
- package/survey-analytics-tabulator.types/theme.d.ts +50 -0
- package/survey-analytics-tabulator.types/themes/default-light.d.ts +965 -0
- package/survey-analytics-tabulator.types/utils/dropdownActionWidget.d.ts +31 -0
- package/survey-analytics-tabulator.types/utils/dropdownBase.d.ts +47 -0
- package/survey-analytics-tabulator.types/utils/dropdownWidget.d.ts +40 -0
- package/survey-analytics-tabulator.types/utils/index.d.ts +25 -2
- package/survey-analytics.types/alternativeVizualizersWrapper.d.ts +9 -4
- package/survey-analytics.types/analytics-localization/english.d.ts +28 -0
- package/survey-analytics.types/apexcharts/chart-adapter.d.ts +29 -0
- package/survey-analytics.types/apexcharts/index.d.ts +2 -0
- package/survey-analytics.types/apexcharts/setup.d.ts +185 -0
- package/survey-analytics.types/boolean.d.ts +1 -1
- package/survey-analytics.types/card.d.ts +29 -0
- package/survey-analytics.types/chartConfig.d.ts +9 -0
- package/survey-analytics.types/config.d.ts +1 -33
- package/survey-analytics.types/dashboard.d.ts +51 -0
- package/survey-analytics.types/dataProvider.d.ts +17 -0
- package/survey-analytics.types/entries/apexcharts.d.ts +2 -0
- package/survey-analytics.types/entries/apexcharts.fontless.d.ts +2 -0
- package/survey-analytics.types/entries/summary.core.d.ts +6 -0
- package/survey-analytics.types/histogram.d.ts +29 -13
- package/survey-analytics.types/layout-engine.d.ts +29 -0
- package/survey-analytics.types/localizationManager.d.ts +28 -0
- package/survey-analytics.types/matrix.d.ts +3 -2
- package/survey-analytics.types/matrixDropdownGrouped.d.ts +3 -2
- package/survey-analytics.types/muuri-layout-engine.d.ts +13 -0
- package/survey-analytics.types/nps.d.ts +5 -10
- package/survey-analytics.types/number.d.ts +8 -7
- package/survey-analytics.types/pivot.d.ts +25 -35
- package/survey-analytics.types/ranking.d.ts +3 -2
- package/survey-analytics.types/selectBase.d.ts +12 -15
- package/survey-analytics.types/statisticCalculators.d.ts +8 -13
- package/survey-analytics.types/statistics-table.d.ts +2 -2
- package/survey-analytics.types/text.d.ts +4 -3
- package/survey-analytics.types/theme.d.ts +50 -0
- package/survey-analytics.types/themes/default-light.d.ts +965 -0
- package/survey-analytics.types/utils/calculationDateRanges.d.ts +35 -0
- package/survey-analytics.types/utils/dateRangeModel.d.ts +32 -0
- package/survey-analytics.types/utils/dateRangeWidget.d.ts +38 -0
- package/survey-analytics.types/utils/dropdownActionWidget.d.ts +31 -0
- package/survey-analytics.types/utils/dropdownBase.d.ts +47 -0
- package/survey-analytics.types/utils/dropdownWidget.d.ts +40 -0
- package/survey-analytics.types/utils/index.d.ts +25 -2
- package/survey-analytics.types/utils/toggle.d.ts +17 -0
- package/survey-analytics.types/utils/utils.d.ts +9 -0
- package/survey-analytics.types/visualizationComposite.d.ts +1 -1
- package/survey-analytics.types/visualizationManager.d.ts +5 -5
- package/survey-analytics.types/visualizationMatrixDropdown.d.ts +2 -1
- package/survey-analytics.types/visualizationMatrixDynamic.d.ts +1 -1
- package/survey-analytics.types/visualizationPanel.d.ts +20 -3
- package/survey-analytics.types/visualizationPanelDynamic.d.ts +2 -1
- package/survey-analytics.types/visualizerBase.d.ts +65 -10
- package/survey-analytics.types/visualizerDescription.d.ts +19 -0
- package/survey-analytics.types/visualizerFactory.d.ts +11 -2
- package/survey-analytics.types/wordcloud/wordcloud.d.ts +6 -4
- package/survey.analytics.core.css +1131 -99
- package/survey.analytics.core.css.map +1 -1
- package/survey.analytics.core.js +5063 -1002
- package/survey.analytics.core.js.map +1 -1
- package/survey.analytics.core.min.css +9 -6
- package/survey.analytics.core.min.js +1 -1
- package/survey.analytics.core.min.js.LICENSE.txt +1 -1
- package/survey.analytics.css +1494 -103
- package/survey.analytics.css.map +1 -1
- package/survey.analytics.d.ts +1 -2
- package/survey.analytics.fontless.css +1629 -0
- package/survey.analytics.fontless.css.map +1 -0
- package/survey.analytics.fontless.min.css +14 -0
- package/survey.analytics.js +7427 -3055
- package/survey.analytics.js.map +1 -1
- package/survey.analytics.min.css +11 -6
- package/survey.analytics.min.js +1 -1
- package/survey.analytics.min.js.LICENSE.txt +1 -1
- package/survey.analytics.mongo.js +2 -2
- package/survey.analytics.mongo.js.map +1 -1
- package/survey.analytics.mongo.min.js +1 -1
- package/survey.analytics.mongo.min.js.LICENSE.txt +1 -1
- package/survey.analytics.plotly.css +1714 -0
- package/survey.analytics.plotly.css.map +1 -0
- package/survey.analytics.plotly.d.ts +1 -0
- package/survey.analytics.plotly.fontless.css +1492 -0
- package/survey.analytics.plotly.fontless.css.map +1 -0
- package/survey.analytics.plotly.fontless.min.css +13 -0
- package/survey.analytics.plotly.js +23829 -0
- package/survey.analytics.plotly.js.map +1 -0
- package/survey.analytics.plotly.min.css +14 -0
- package/survey.analytics.plotly.min.js +2 -0
- package/survey.analytics.plotly.min.js.LICENSE.txt +22 -0
- package/survey.analytics.tabulator.css +992 -132
- package/survey.analytics.tabulator.css.map +1 -1
- package/survey.analytics.tabulator.fontless.css +1121 -0
- package/survey.analytics.tabulator.fontless.css.map +1 -0
- package/survey.analytics.tabulator.fontless.min.css +6 -0
- package/survey.analytics.tabulator.js +2634 -251
- package/survey.analytics.tabulator.js.map +1 -1
- package/survey.analytics.tabulator.min.css +3 -2
- package/survey.analytics.tabulator.min.js +1 -1
- package/survey.analytics.tabulator.min.js.LICENSE.txt +1 -1
- package/themes/default-dark.js +1032 -0
- package/themes/default-dark.js.map +1 -0
- package/themes/default-dark.min.js +2 -0
- package/themes/default-dark.min.js.LICENSE.txt +5 -0
- package/themes/default-light.js +1032 -0
- package/themes/default-light.js.map +1 -0
- package/themes/default-light.min.js +2 -0
- package/themes/default-light.min.js.LICENSE.txt +5 -0
- package/themes/index.js +2063 -0
- package/themes/index.js.map +1 -0
- package/themes/index.min.js +2 -0
- package/themes/index.min.js.LICENSE.txt +5 -0
- package/themes/themes/default-dark.d.ts +965 -0
- package/themes/themes/default-light.d.ts +965 -0
- package/themes/themes/index.d.ts +1934 -0
- package/themes/utils/helpers.d.ts +8 -0
- package/survey-analytics.types/plotly/setup.d.ts +0 -32
- /package/{survey-analytics.types/entries/summary.d.ts → survey-analytics-plotly.types/entries/plotly.fontless.d.ts} +0 -0
- /package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/index.d.ts +0 -0
- /package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/legacy.d.ts +0 -0
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
export declare var portugueseStrings: {
|
|
2
|
+
groupButton: string;
|
|
3
|
+
ungroupButton: string;
|
|
4
|
+
selectButton: string;
|
|
5
|
+
hideColumn: string;
|
|
6
|
+
showColumn: string;
|
|
7
|
+
makePrivateColumn: string;
|
|
8
|
+
makePublicColumn: string;
|
|
9
|
+
moveToDetail: string;
|
|
10
|
+
showAsColumn: string;
|
|
11
|
+
filterPlaceholder: string;
|
|
12
|
+
removeRows: string;
|
|
13
|
+
showLabel: string;
|
|
14
|
+
entriesLabel: string;
|
|
15
|
+
visualizer_text: string;
|
|
16
|
+
visualizer_wordcloud: string;
|
|
17
|
+
visualizer_histogram: string;
|
|
18
|
+
visualizer_number: string;
|
|
19
|
+
visualizer_choices: string;
|
|
20
|
+
visualizer_selectBase: string;
|
|
21
|
+
visualizer_matrix: string;
|
|
22
|
+
chartType_bar: string;
|
|
23
|
+
chartType_vbar: string;
|
|
24
|
+
chartType_stackedbar: string;
|
|
25
|
+
chartType_doughnut: string;
|
|
26
|
+
chartType_pie: string;
|
|
27
|
+
chartType_scatter: string;
|
|
28
|
+
chartType_gauge: string;
|
|
29
|
+
chartType_bullet: string;
|
|
30
|
+
chartType_line: string;
|
|
31
|
+
chartType_radar: string;
|
|
32
|
+
hideButton: string;
|
|
33
|
+
makePrivateButton: string;
|
|
34
|
+
makePublicButton: string;
|
|
35
|
+
showButton: string;
|
|
36
|
+
filter: string;
|
|
37
|
+
resetFilter: string;
|
|
38
|
+
changeLocale: string;
|
|
39
|
+
clearButton: string;
|
|
40
|
+
addElement: string;
|
|
41
|
+
defaultOrder: string;
|
|
42
|
+
ascOrder: string;
|
|
43
|
+
descOrder: string;
|
|
44
|
+
showMinorColumns: string;
|
|
45
|
+
actionsColumn: string;
|
|
46
|
+
otherCommentTitle: string;
|
|
47
|
+
showPercentages: string;
|
|
48
|
+
hidePercentages: string;
|
|
49
|
+
pdfDownloadCaption: string;
|
|
50
|
+
xlsxDownloadCaption: string;
|
|
51
|
+
csvDownloadCaption: string;
|
|
52
|
+
saveDiagramAsPNG: string;
|
|
53
|
+
hideEmptyAnswers: string;
|
|
54
|
+
showEmptyAnswers: string;
|
|
55
|
+
"topNValueText-1": string;
|
|
56
|
+
topNValueText5: string;
|
|
57
|
+
topNValueText10: string;
|
|
58
|
+
topNValueText20: string;
|
|
59
|
+
hideMissingAnswers: string;
|
|
60
|
+
showMissingAnswers: string;
|
|
61
|
+
missingAnswersLabel: string;
|
|
62
|
+
noVisualizerForQuestion: string;
|
|
63
|
+
noResults: string;
|
|
64
|
+
showPerValues: string;
|
|
65
|
+
showPerColumns: string;
|
|
66
|
+
answer: string;
|
|
67
|
+
correctAnswer: string;
|
|
68
|
+
percent: string;
|
|
69
|
+
percentage: string;
|
|
70
|
+
statistics_chart: string;
|
|
71
|
+
responses: string;
|
|
72
|
+
visualizer_nps: string;
|
|
73
|
+
visualizer_boolean: string;
|
|
74
|
+
visualizer_options: string;
|
|
75
|
+
npsScore: string;
|
|
76
|
+
npsPromoters: string;
|
|
77
|
+
npsPassives: string;
|
|
78
|
+
npsDetractors: string;
|
|
79
|
+
axisXSelectorTitle: string;
|
|
80
|
+
axisYSelectorTitle: string;
|
|
81
|
+
axisXAlternativeSelectorTitle: string;
|
|
82
|
+
axisYAlternativeSelectorTitle: string;
|
|
83
|
+
notSelected: string;
|
|
84
|
+
intervalMode_default: string;
|
|
85
|
+
intervalMode_decades: string;
|
|
86
|
+
intervalMode_years: string;
|
|
87
|
+
intervalMode_quarters: string;
|
|
88
|
+
intervalMode_months: string;
|
|
89
|
+
intervalMode_days: string;
|
|
90
|
+
intervalMode_custom: string;
|
|
91
|
+
intervalMode_auto: string;
|
|
92
|
+
intervalModeTitle: string;
|
|
93
|
+
noRunningTotals: string;
|
|
94
|
+
runningTotals: string;
|
|
95
|
+
groupDateSeries: string;
|
|
96
|
+
ungroupDateSeries: string;
|
|
97
|
+
noneAggregateText: string;
|
|
98
|
+
selectAggregateText: string;
|
|
99
|
+
groupedYearsAxisTitle: string;
|
|
100
|
+
};
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
export declare var russianStrings: {
|
|
2
|
+
groupButton: string;
|
|
3
|
+
ungroupButton: string;
|
|
4
|
+
selectButton: string;
|
|
5
|
+
hideColumn: string;
|
|
6
|
+
showColumn: string;
|
|
7
|
+
makePrivateColumn: string;
|
|
8
|
+
makePublicColumn: string;
|
|
9
|
+
moveToDetail: string;
|
|
10
|
+
showAsColumn: string;
|
|
11
|
+
filterPlaceholder: string;
|
|
12
|
+
removeRows: string;
|
|
13
|
+
showLabel: string;
|
|
14
|
+
entriesLabel: string;
|
|
15
|
+
visualizer_text: string;
|
|
16
|
+
visualizer_wordcloud: string;
|
|
17
|
+
visualizer_histogram: string;
|
|
18
|
+
visualizer_number: string;
|
|
19
|
+
visualizer_choices: string;
|
|
20
|
+
visualizer_selectBase: string;
|
|
21
|
+
visualizer_matrix: string;
|
|
22
|
+
chartType_bar: string;
|
|
23
|
+
chartType_vbar: string;
|
|
24
|
+
chartType_stackedbar: string;
|
|
25
|
+
chartType_doughnut: string;
|
|
26
|
+
chartType_pie: string;
|
|
27
|
+
chartType_scatter: string;
|
|
28
|
+
chartType_gauge: string;
|
|
29
|
+
chartType_bullet: string;
|
|
30
|
+
chartType_line: string;
|
|
31
|
+
chartType_radar: string;
|
|
32
|
+
hideButton: string;
|
|
33
|
+
makePrivateButton: string;
|
|
34
|
+
makePublicButton: string;
|
|
35
|
+
showButton: string;
|
|
36
|
+
filter: string;
|
|
37
|
+
resetFilter: string;
|
|
38
|
+
changeLocale: string;
|
|
39
|
+
clearButton: string;
|
|
40
|
+
addElement: string;
|
|
41
|
+
defaultOrder: string;
|
|
42
|
+
ascOrder: string;
|
|
43
|
+
descOrder: string;
|
|
44
|
+
showMinorColumns: string;
|
|
45
|
+
actionsColumn: string;
|
|
46
|
+
otherCommentTitle: string;
|
|
47
|
+
showPercentages: string;
|
|
48
|
+
hidePercentages: string;
|
|
49
|
+
pdfDownloadCaption: string;
|
|
50
|
+
xlsxDownloadCaption: string;
|
|
51
|
+
csvDownloadCaption: string;
|
|
52
|
+
saveDiagramAsPNG: string;
|
|
53
|
+
hideEmptyAnswers: string;
|
|
54
|
+
showEmptyAnswers: string;
|
|
55
|
+
"topNValueText-1": string;
|
|
56
|
+
topNValueText5: string;
|
|
57
|
+
topNValueText10: string;
|
|
58
|
+
topNValueText20: string;
|
|
59
|
+
hideMissingAnswers: string;
|
|
60
|
+
showMissingAnswers: string;
|
|
61
|
+
missingAnswersLabel: string;
|
|
62
|
+
noVisualizerForQuestion: string;
|
|
63
|
+
noResults: string;
|
|
64
|
+
showPerValues: string;
|
|
65
|
+
showPerColumns: string;
|
|
66
|
+
answer: string;
|
|
67
|
+
correctAnswer: string;
|
|
68
|
+
percent: string;
|
|
69
|
+
percentage: string;
|
|
70
|
+
statistics_chart: string;
|
|
71
|
+
responses: string;
|
|
72
|
+
visualizer_nps: string;
|
|
73
|
+
visualizer_boolean: string;
|
|
74
|
+
visualizer_options: string;
|
|
75
|
+
npsScore: string;
|
|
76
|
+
npsPromoters: string;
|
|
77
|
+
npsPassives: string;
|
|
78
|
+
npsDetractors: string;
|
|
79
|
+
axisXSelectorTitle: string;
|
|
80
|
+
axisYSelectorTitle: string;
|
|
81
|
+
axisXAlternativeSelectorTitle: string;
|
|
82
|
+
axisYAlternativeSelectorTitle: string;
|
|
83
|
+
notSelected: string;
|
|
84
|
+
intervalMode_default: string;
|
|
85
|
+
intervalMode_decades: string;
|
|
86
|
+
intervalMode_years: string;
|
|
87
|
+
intervalMode_quarters: string;
|
|
88
|
+
intervalMode_months: string;
|
|
89
|
+
intervalMode_days: string;
|
|
90
|
+
intervalMode_custom: string;
|
|
91
|
+
intervalMode_auto: string;
|
|
92
|
+
intervalModeTitle: string;
|
|
93
|
+
noRunningTotals: string;
|
|
94
|
+
runningTotals: string;
|
|
95
|
+
groupDateSeries: string;
|
|
96
|
+
ungroupDateSeries: string;
|
|
97
|
+
noneAggregateText: string;
|
|
98
|
+
selectAggregateText: string;
|
|
99
|
+
groupedYearsAxisTitle: string;
|
|
100
|
+
};
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
export declare var spanishStrings: {
|
|
2
|
+
groupButton: string;
|
|
3
|
+
ungroupButton: string;
|
|
4
|
+
selectButton: string;
|
|
5
|
+
hideColumn: string;
|
|
6
|
+
showColumn: string;
|
|
7
|
+
makePrivateColumn: string;
|
|
8
|
+
makePublicColumn: string;
|
|
9
|
+
moveToDetail: string;
|
|
10
|
+
showAsColumn: string;
|
|
11
|
+
filterPlaceholder: string;
|
|
12
|
+
removeRows: string;
|
|
13
|
+
showLabel: string;
|
|
14
|
+
entriesLabel: string;
|
|
15
|
+
visualizer_text: string;
|
|
16
|
+
visualizer_wordcloud: string;
|
|
17
|
+
visualizer_histogram: string;
|
|
18
|
+
visualizer_number: string;
|
|
19
|
+
visualizer_choices: string;
|
|
20
|
+
visualizer_selectBase: string;
|
|
21
|
+
visualizer_matrix: string;
|
|
22
|
+
chartType_bar: string;
|
|
23
|
+
chartType_vbar: string;
|
|
24
|
+
chartType_stackedbar: string;
|
|
25
|
+
chartType_doughnut: string;
|
|
26
|
+
chartType_pie: string;
|
|
27
|
+
chartType_scatter: string;
|
|
28
|
+
chartType_gauge: string;
|
|
29
|
+
chartType_bullet: string;
|
|
30
|
+
chartType_line: string;
|
|
31
|
+
chartType_radar: string;
|
|
32
|
+
hideButton: string;
|
|
33
|
+
makePrivateButton: string;
|
|
34
|
+
makePublicButton: string;
|
|
35
|
+
showButton: string;
|
|
36
|
+
filter: string;
|
|
37
|
+
resetFilter: string;
|
|
38
|
+
changeLocale: string;
|
|
39
|
+
clearButton: string;
|
|
40
|
+
addElement: string;
|
|
41
|
+
defaultOrder: string;
|
|
42
|
+
ascOrder: string;
|
|
43
|
+
descOrder: string;
|
|
44
|
+
showMinorColumns: string;
|
|
45
|
+
actionsColumn: string;
|
|
46
|
+
otherCommentTitle: string;
|
|
47
|
+
showPercentages: string;
|
|
48
|
+
hidePercentages: string;
|
|
49
|
+
pdfDownloadCaption: string;
|
|
50
|
+
xlsxDownloadCaption: string;
|
|
51
|
+
csvDownloadCaption: string;
|
|
52
|
+
saveDiagramAsPNG: string;
|
|
53
|
+
hideEmptyAnswers: string;
|
|
54
|
+
showEmptyAnswers: string;
|
|
55
|
+
"topNValueText-1": string;
|
|
56
|
+
topNValueText5: string;
|
|
57
|
+
topNValueText10: string;
|
|
58
|
+
topNValueText20: string;
|
|
59
|
+
hideMissingAnswers: string;
|
|
60
|
+
showMissingAnswers: string;
|
|
61
|
+
missingAnswersLabel: string;
|
|
62
|
+
noVisualizerForQuestion: string;
|
|
63
|
+
noResults: string;
|
|
64
|
+
showPerValues: string;
|
|
65
|
+
showPerColumns: string;
|
|
66
|
+
answer: string;
|
|
67
|
+
correctAnswer: string;
|
|
68
|
+
percent: string;
|
|
69
|
+
percentage: string;
|
|
70
|
+
statistics_chart: string;
|
|
71
|
+
responses: string;
|
|
72
|
+
visualizer_nps: string;
|
|
73
|
+
visualizer_boolean: string;
|
|
74
|
+
visualizer_options: string;
|
|
75
|
+
npsScore: string;
|
|
76
|
+
npsPromoters: string;
|
|
77
|
+
npsPassives: string;
|
|
78
|
+
npsDetractors: string;
|
|
79
|
+
axisXSelectorTitle: string;
|
|
80
|
+
axisYSelectorTitle: string;
|
|
81
|
+
axisXAlternativeSelectorTitle: string;
|
|
82
|
+
axisYAlternativeSelectorTitle: string;
|
|
83
|
+
notSelected: string;
|
|
84
|
+
intervalMode_default: string;
|
|
85
|
+
intervalMode_decades: string;
|
|
86
|
+
intervalMode_years: string;
|
|
87
|
+
intervalMode_quarters: string;
|
|
88
|
+
intervalMode_months: string;
|
|
89
|
+
intervalMode_days: string;
|
|
90
|
+
intervalMode_custom: string;
|
|
91
|
+
intervalMode_auto: string;
|
|
92
|
+
intervalModeTitle: string;
|
|
93
|
+
noRunningTotals: string;
|
|
94
|
+
runningTotals: string;
|
|
95
|
+
groupDateSeries: string;
|
|
96
|
+
ungroupDateSeries: string;
|
|
97
|
+
noneAggregateText: string;
|
|
98
|
+
selectAggregateText: string;
|
|
99
|
+
groupedYearsAxisTitle: string;
|
|
100
|
+
};
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
export declare var swedishStrings: {
|
|
2
|
+
groupButton: string;
|
|
3
|
+
ungroupButton: string;
|
|
4
|
+
selectButton: string;
|
|
5
|
+
hideColumn: string;
|
|
6
|
+
showColumn: string;
|
|
7
|
+
makePrivateColumn: string;
|
|
8
|
+
makePublicColumn: string;
|
|
9
|
+
moveToDetail: string;
|
|
10
|
+
showAsColumn: string;
|
|
11
|
+
filterPlaceholder: string;
|
|
12
|
+
removeRows: string;
|
|
13
|
+
showLabel: string;
|
|
14
|
+
entriesLabel: string;
|
|
15
|
+
visualizer_text: string;
|
|
16
|
+
visualizer_wordcloud: string;
|
|
17
|
+
visualizer_histogram: string;
|
|
18
|
+
visualizer_number: string;
|
|
19
|
+
visualizer_choices: string;
|
|
20
|
+
visualizer_selectBase: string;
|
|
21
|
+
visualizer_matrix: string;
|
|
22
|
+
chartType_bar: string;
|
|
23
|
+
chartType_vbar: string;
|
|
24
|
+
chartType_stackedbar: string;
|
|
25
|
+
chartType_doughnut: string;
|
|
26
|
+
chartType_pie: string;
|
|
27
|
+
chartType_scatter: string;
|
|
28
|
+
chartType_gauge: string;
|
|
29
|
+
chartType_bullet: string;
|
|
30
|
+
chartType_line: string;
|
|
31
|
+
chartType_radar: string;
|
|
32
|
+
hideButton: string;
|
|
33
|
+
makePrivateButton: string;
|
|
34
|
+
makePublicButton: string;
|
|
35
|
+
showButton: string;
|
|
36
|
+
filter: string;
|
|
37
|
+
resetFilter: string;
|
|
38
|
+
changeLocale: string;
|
|
39
|
+
clearButton: string;
|
|
40
|
+
addElement: string;
|
|
41
|
+
defaultOrder: string;
|
|
42
|
+
ascOrder: string;
|
|
43
|
+
descOrder: string;
|
|
44
|
+
showMinorColumns: string;
|
|
45
|
+
actionsColumn: string;
|
|
46
|
+
otherCommentTitle: string;
|
|
47
|
+
showPercentages: string;
|
|
48
|
+
hidePercentages: string;
|
|
49
|
+
pdfDownloadCaption: string;
|
|
50
|
+
xlsxDownloadCaption: string;
|
|
51
|
+
csvDownloadCaption: string;
|
|
52
|
+
saveDiagramAsPNG: string;
|
|
53
|
+
hideEmptyAnswers: string;
|
|
54
|
+
showEmptyAnswers: string;
|
|
55
|
+
"topNValueText-1": string;
|
|
56
|
+
topNValueText5: string;
|
|
57
|
+
topNValueText10: string;
|
|
58
|
+
topNValueText20: string;
|
|
59
|
+
hideMissingAnswers: string;
|
|
60
|
+
showMissingAnswers: string;
|
|
61
|
+
missingAnswersLabel: string;
|
|
62
|
+
noVisualizerForQuestion: string;
|
|
63
|
+
noResults: string;
|
|
64
|
+
showPerValues: string;
|
|
65
|
+
showPerColumns: string;
|
|
66
|
+
answer: string;
|
|
67
|
+
correctAnswer: string;
|
|
68
|
+
percent: string;
|
|
69
|
+
percentage: string;
|
|
70
|
+
statistics_chart: string;
|
|
71
|
+
responses: string;
|
|
72
|
+
visualizer_nps: string;
|
|
73
|
+
visualizer_boolean: string;
|
|
74
|
+
visualizer_options: string;
|
|
75
|
+
npsScore: string;
|
|
76
|
+
npsPromoters: string;
|
|
77
|
+
npsPassives: string;
|
|
78
|
+
npsDetractors: string;
|
|
79
|
+
axisXSelectorTitle: string;
|
|
80
|
+
axisYSelectorTitle: string;
|
|
81
|
+
axisXAlternativeSelectorTitle: string;
|
|
82
|
+
axisYAlternativeSelectorTitle: string;
|
|
83
|
+
notSelected: string;
|
|
84
|
+
intervalMode_default: string;
|
|
85
|
+
intervalMode_decades: string;
|
|
86
|
+
intervalMode_years: string;
|
|
87
|
+
intervalMode_quarters: string;
|
|
88
|
+
intervalMode_months: string;
|
|
89
|
+
intervalMode_days: string;
|
|
90
|
+
intervalMode_custom: string;
|
|
91
|
+
intervalMode_auto: string;
|
|
92
|
+
intervalModeTitle: string;
|
|
93
|
+
noRunningTotals: string;
|
|
94
|
+
runningTotals: string;
|
|
95
|
+
groupDateSeries: string;
|
|
96
|
+
ungroupDateSeries: string;
|
|
97
|
+
noneAggregateText: string;
|
|
98
|
+
selectAggregateText: string;
|
|
99
|
+
groupedYearsAxisTitle: string;
|
|
100
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Question, QuestionBooleanModel } from "survey-core";
|
|
2
|
+
import { ItemValue } from "survey-core";
|
|
3
|
+
import { SelectBase } from "./selectBase";
|
|
4
|
+
export declare class BooleanModel extends SelectBase {
|
|
5
|
+
constructor(question: Question, data: Array<{
|
|
6
|
+
[index: string]: any;
|
|
7
|
+
}>, options?: Object, type?: string);
|
|
8
|
+
protected getCorrectAnswerText(): string;
|
|
9
|
+
get booleanQuestion(): QuestionBooleanModel;
|
|
10
|
+
static trueColor: string;
|
|
11
|
+
static falseColor: string;
|
|
12
|
+
getSelectedItemByText(itemText: string): ItemValue;
|
|
13
|
+
getValues(): Array<any>;
|
|
14
|
+
getLabels(): Array<string>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Question } from "survey-core";
|
|
2
|
+
import { ICalculationResult } from "./visualizerBase";
|
|
3
|
+
import { NumberModel } from "./number";
|
|
4
|
+
import "./card.scss";
|
|
5
|
+
export declare class CardVisualizerWidget {
|
|
6
|
+
private _model;
|
|
7
|
+
private _data;
|
|
8
|
+
private _renderedTarget;
|
|
9
|
+
constructor(_model: NumberModel, _data: ICalculationResult);
|
|
10
|
+
render(target: HTMLDivElement): void;
|
|
11
|
+
dispose(): void;
|
|
12
|
+
}
|
|
13
|
+
export declare class CardAdapter {
|
|
14
|
+
private model;
|
|
15
|
+
private _cardVisualizer;
|
|
16
|
+
constructor(model: CardVisualizer);
|
|
17
|
+
create(element: HTMLElement): Promise<any>;
|
|
18
|
+
destroy(node: HTMLElement): void;
|
|
19
|
+
}
|
|
20
|
+
export declare class CardVisualizer extends NumberModel {
|
|
21
|
+
precision: number;
|
|
22
|
+
private _cardAdapter;
|
|
23
|
+
constructor(question: Question, data: Array<{
|
|
24
|
+
[index: string]: any;
|
|
25
|
+
}>, options?: Object, type?: string);
|
|
26
|
+
protected destroyContent(container: HTMLElement): void;
|
|
27
|
+
protected renderContentAsync(container: HTMLElement): Promise<HTMLElement>;
|
|
28
|
+
destroy(): void;
|
|
29
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface IChartConfigOption {
|
|
2
|
+
visualizerType: string;
|
|
3
|
+
chartType?: string;
|
|
4
|
+
}
|
|
5
|
+
export declare const chartConfig: {
|
|
6
|
+
[key: string]: IChartConfigOption;
|
|
7
|
+
};
|
|
8
|
+
export declare function getVisualizerTypes(chartKeys: Array<string>): Array<string>;
|
|
9
|
+
export declare function getChartTypes(chartKeys: Array<string>): any;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* An interface that describes a visualization item (chart, gauge, etc.).
|
|
3
|
+
*
|
|
4
|
+
* To access `IVisualizerPanelElement` objects, you can use the following properties and methods of `VisualizationPanel`:
|
|
5
|
+
*
|
|
6
|
+
* - [`getElements()`](https://surveyjs.io/dashboard/documentation/api-reference/visualizationpanel#getElements)
|
|
7
|
+
* - [`visibleElements`](https://surveyjs.io/dashboard/documentation/api-reference/visualizationpanel#visibleElements)
|
|
8
|
+
* - [`hiddenElements`](https://surveyjs.io/dashboard/documentation/api-reference/visualizationpanel#hiddenElements)
|
|
9
|
+
*/
|
|
10
|
+
export interface IVisualizerPanelElement {
|
|
11
|
+
/**
|
|
12
|
+
* The name of a survey question visualized by this item.
|
|
13
|
+
*/
|
|
14
|
+
name: string;
|
|
15
|
+
/**
|
|
16
|
+
* The title of a survey question visualized by this item. The visualization item displays the same title.
|
|
17
|
+
*/
|
|
18
|
+
displayName: string;
|
|
19
|
+
/**
|
|
20
|
+
* Indicates whether the visualization item is currently visible.
|
|
21
|
+
*
|
|
22
|
+
* If you want to disallow users to hide visualization items, set the [`allowHideQuestions`](https://surveyjs.io/dashboard/documentation/api-reference/ivisualizationpaneloptions#allowHideQuestions) property to `false`.
|
|
23
|
+
*/
|
|
24
|
+
isVisible: boolean;
|
|
25
|
+
isPublic: boolean;
|
|
26
|
+
}
|
|
27
|
+
export interface IState {
|
|
28
|
+
locale?: string;
|
|
29
|
+
elements?: IVisualizerPanelElement[];
|
|
30
|
+
[key: string]: any;
|
|
31
|
+
}
|
|
32
|
+
export interface IPermission {
|
|
33
|
+
name: string;
|
|
34
|
+
isPublic: boolean;
|
|
35
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Question, SurveyModel, Event } from "survey-core";
|
|
2
|
+
import { IVisualizerOptions, ToolbarItemType, VisualizerBase } from "./visualizerBase";
|
|
3
|
+
import { VisualizationPanel } from "./visualizationPanel";
|
|
4
|
+
import { DataProvider, GetDataFn } from "./dataProvider";
|
|
5
|
+
import { IVisualizerDescription } from "./visualizerDescription";
|
|
6
|
+
import { LayoutEngine } from "./layout-engine";
|
|
7
|
+
import { IDashboardTheme } from "./theme";
|
|
8
|
+
import { IState } from "./config";
|
|
9
|
+
import { DatePeriodEnum, DateRangeTuple, IDateRangeChangedOptions } from "./utils/dateRangeModel";
|
|
10
|
+
export interface IDashboardOptions {
|
|
11
|
+
data?: any[];
|
|
12
|
+
questions?: Question[];
|
|
13
|
+
visualizers?: Array<string | IVisualizerOptions>;
|
|
14
|
+
survey?: SurveyModel;
|
|
15
|
+
dataProvider?: DataProvider;
|
|
16
|
+
allowHideQuestions?: boolean;
|
|
17
|
+
allowDynamicLayout?: boolean;
|
|
18
|
+
allowDragDrop?: boolean;
|
|
19
|
+
layoutEngine?: LayoutEngine;
|
|
20
|
+
stripHtmlFromTitles?: boolean;
|
|
21
|
+
showToolbar?: boolean;
|
|
22
|
+
dateFieldName?: string;
|
|
23
|
+
datePeriod?: DatePeriodEnum;
|
|
24
|
+
availableDatePeriods?: DatePeriodEnum[];
|
|
25
|
+
dateRange?: DateRangeTuple;
|
|
26
|
+
showAnswerCount?: boolean;
|
|
27
|
+
showDatePanel?: boolean;
|
|
28
|
+
[key: string]: any;
|
|
29
|
+
}
|
|
30
|
+
export declare function getVisualizerDescriptions(visualizers: Array<string | IVisualizerOptions>, questions?: Question[]): Array<Question | IVisualizerDescription>;
|
|
31
|
+
export declare class Dashboard extends VisualizerBase {
|
|
32
|
+
private readonly _options;
|
|
33
|
+
private _panel;
|
|
34
|
+
private _data;
|
|
35
|
+
private _questions;
|
|
36
|
+
private _visualizers;
|
|
37
|
+
onDateRangeChanged: Event<(sender: Dashboard, options: IDateRangeChangedOptions) => any, Dashboard, any>;
|
|
38
|
+
constructor(options: IDashboardOptions);
|
|
39
|
+
registerToolbarItem(name: string, creator: (toolbar?: HTMLDivElement) => HTMLElement, type: ToolbarItemType, index?: number, groupIndex?: number): void;
|
|
40
|
+
get state(): IState;
|
|
41
|
+
set state(newState: IState);
|
|
42
|
+
get locale(): string;
|
|
43
|
+
set locale(newLocale: string);
|
|
44
|
+
get panel(): VisualizationPanel;
|
|
45
|
+
render(targetElement: HTMLElement | string, isRoot?: boolean): void;
|
|
46
|
+
updateData(data: Array<{
|
|
47
|
+
[index: string]: any;
|
|
48
|
+
}> | GetDataFn): void;
|
|
49
|
+
applyTheme(theme: IDashboardTheme): void;
|
|
50
|
+
destroy(): void;
|
|
51
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { Event } from "survey-core";
|
|
2
|
+
export type SummaryFilter = {
|
|
3
|
+
field: string;
|
|
4
|
+
type: string;
|
|
5
|
+
value: any;
|
|
6
|
+
};
|
|
7
|
+
export type GetDataUsingCallbackFn = (params: {
|
|
8
|
+
visualizer: any;
|
|
9
|
+
filter?: Array<SummaryFilter>;
|
|
10
|
+
callback?: (response: {
|
|
11
|
+
data: Array<Object>;
|
|
12
|
+
error?: any;
|
|
13
|
+
}) => void;
|
|
14
|
+
}) => void;
|
|
15
|
+
export type GetDataUsingPromiseFn = (params: {
|
|
16
|
+
visualizer: any;
|
|
17
|
+
filter?: Array<SummaryFilter>;
|
|
18
|
+
}) => Promise<Array<Object>>;
|
|
19
|
+
export type GetDataFn = GetDataUsingCallbackFn | GetDataUsingPromiseFn;
|
|
20
|
+
export declare class DataProvider {
|
|
21
|
+
private _data;
|
|
22
|
+
static seriesMarkerKey: string;
|
|
23
|
+
private _filteredData;
|
|
24
|
+
protected filterValues: {
|
|
25
|
+
[index: string]: any;
|
|
26
|
+
};
|
|
27
|
+
protected systemFilterValues: {
|
|
28
|
+
[index: string]: any;
|
|
29
|
+
};
|
|
30
|
+
private convertFilterValuesToSummaryFilters;
|
|
31
|
+
constructor(_data?: Array<any> | GetDataFn);
|
|
32
|
+
get data(): Array<any>;
|
|
33
|
+
set data(data: Array<any> | GetDataFn);
|
|
34
|
+
get dataFn(): GetDataFn;
|
|
35
|
+
get filteredData(): Array<any>;
|
|
36
|
+
private setFilterCore;
|
|
37
|
+
private resetFilterCore;
|
|
38
|
+
/**
|
|
39
|
+
* Sets filter by question name and value.
|
|
40
|
+
*/
|
|
41
|
+
setSystemFilter(questionName: string, selectedValue: any): void;
|
|
42
|
+
/**
|
|
43
|
+
* Resets filter.
|
|
44
|
+
*/
|
|
45
|
+
resetSystemFilter(): void;
|
|
46
|
+
/**
|
|
47
|
+
* Sets filter by question name and value.
|
|
48
|
+
*/
|
|
49
|
+
setFilter(questionName: string, selectedValue: any): void;
|
|
50
|
+
/**
|
|
51
|
+
* Resets filter.
|
|
52
|
+
*/
|
|
53
|
+
resetFilter(): void;
|
|
54
|
+
/**
|
|
55
|
+
* Fires when data has been changed.
|
|
56
|
+
*/
|
|
57
|
+
onFilterChanged: Event<(sender: DataProvider, options: any) => any, DataProvider, any>;
|
|
58
|
+
raiseFilterChanged(questionName?: string, selectedValue?: any): void;
|
|
59
|
+
/**
|
|
60
|
+
* Fires when data has been changed.
|
|
61
|
+
*/
|
|
62
|
+
onDataChanged: Event<(sender: DataProvider, options: any) => any, DataProvider, any>;
|
|
63
|
+
raiseDataChanged(questionName?: string): void;
|
|
64
|
+
getAllFilters(): SummaryFilter[];
|
|
65
|
+
getFilters(): SummaryFilter[];
|
|
66
|
+
fixDropdownData(dataNames: string[]): void;
|
|
67
|
+
getCount(): Promise<number>;
|
|
68
|
+
getFilterValues(): {};
|
|
69
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export * from "../localizationManager";
|
|
2
|
+
import "../analytics-localization/farsi";
|
|
3
|
+
import "../analytics-localization/french";
|
|
4
|
+
import "../analytics-localization/german";
|
|
5
|
+
import "../analytics-localization/norwegian";
|
|
6
|
+
import "../analytics-localization/portuguese";
|
|
7
|
+
import "../analytics-localization/russian";
|
|
8
|
+
import "../analytics-localization/dutch";
|
|
9
|
+
import "../analytics-localization/spanish";
|
|
10
|
+
import "../analytics-localization/italian";
|
|
11
|
+
import "../analytics-localization/arabic";
|
|
12
|
+
import "../analytics-localization/japanese";
|
|
13
|
+
import "../analytics-localization/polish";
|
|
14
|
+
import "../analytics-localization/finnish";
|
|
15
|
+
import "../analytics-localization/swedish";
|
|
16
|
+
export * from "../dataProvider";
|
|
17
|
+
export * from "../visualizerFactory";
|
|
18
|
+
export * from "../selectBase";
|
|
19
|
+
export * from "../matrix";
|
|
20
|
+
export * from "../matrixDropdownGrouped";
|
|
21
|
+
export * from "../boolean";
|
|
22
|
+
export * from "../histogram";
|
|
23
|
+
export * from "../number";
|
|
24
|
+
export * from "../visualizerBase";
|
|
25
|
+
export * from "../visualizationManager";
|
|
26
|
+
export * from "../visualizationPanel";
|
|
27
|
+
export * from "../visualizationPanelDynamic";
|
|
28
|
+
export * from "../visualizationMatrixDynamic";
|
|
29
|
+
export * from "../visualizationMatrixDropdown";
|
|
30
|
+
export * from "../alternativeVizualizersWrapper";
|
|
31
|
+
export * from "../visualizationComposite";
|
|
32
|
+
export * from "../dashboard";
|
|
33
|
+
export * from "../wordcloud/wordcloud";
|
|
34
|
+
export * from "../wordcloud/stopwords/index";
|
|
35
|
+
export * from "../text";
|
|
36
|
+
export * from "../statistics-table";
|
|
37
|
+
export * from "../nps";
|
|
38
|
+
export * from "../card";
|
|
39
|
+
export * from "../ranking";
|
|
40
|
+
export * from "../pivot";
|
|
41
|
+
export * from "../theme";
|
|
42
|
+
export { DocumentHelper } from "../utils/index";
|
|
43
|
+
export * from "../layout-engine";
|
|
44
|
+
export * from "../muuri-layout-engine";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IVisualizerWithSelection } from "./selectBase";
|
|
2
|
+
export declare class FilterInfo {
|
|
3
|
+
private _htmlElement;
|
|
4
|
+
private text;
|
|
5
|
+
constructor(visualizer: IVisualizerWithSelection);
|
|
6
|
+
get htmlElement(): HTMLDivElement;
|
|
7
|
+
update(selection: {
|
|
8
|
+
value: any;
|
|
9
|
+
text: string;
|
|
10
|
+
}): void;
|
|
11
|
+
}
|