survey-analytics 1.9.84 → 1.9.86
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 +266 -154
- package/survey.analytics.datatables.css +1 -1
- package/survey.analytics.datatables.d.ts +55 -0
- package/survey.analytics.datatables.js +94 -22
- package/survey.analytics.datatables.min.css +1 -1
- package/survey.analytics.datatables.min.js +2 -2
- package/survey.analytics.js +340 -223
- 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 +55 -0
- package/survey.analytics.tabulator.js +96 -24
- package/survey.analytics.tabulator.min.css +1 -1
- package/survey.analytics.tabulator.min.js +2 -2
|
@@ -227,6 +227,60 @@ declare module "analytics-localization/french" {
|
|
|
227
227
|
responses: string;
|
|
228
228
|
};
|
|
229
229
|
}
|
|
230
|
+
declare module "analytics-localization/german" {
|
|
231
|
+
export var germanStrings: {
|
|
232
|
+
groupButton: string;
|
|
233
|
+
ungroupButton: string;
|
|
234
|
+
selectButton: string;
|
|
235
|
+
hideColumn: string;
|
|
236
|
+
showColumn: string;
|
|
237
|
+
makePrivateColumn: string;
|
|
238
|
+
makePublicColumn: string;
|
|
239
|
+
moveToDetail: string;
|
|
240
|
+
showAsColumn: string;
|
|
241
|
+
filterPlaceholder: string;
|
|
242
|
+
removeRows: string;
|
|
243
|
+
showLabel: string;
|
|
244
|
+
entriesLabel: string;
|
|
245
|
+
visualizer_text: string;
|
|
246
|
+
visualizer_wordcloud: string;
|
|
247
|
+
chartType_bar: string;
|
|
248
|
+
chartType_stackedbar: string;
|
|
249
|
+
chartType_doughnut: string;
|
|
250
|
+
chartType_pie: string;
|
|
251
|
+
chartType_scatter: string;
|
|
252
|
+
chartType_gauge: string;
|
|
253
|
+
chartType_bullet: string;
|
|
254
|
+
hideButton: string;
|
|
255
|
+
makePrivateButton: string;
|
|
256
|
+
makePublicButton: string;
|
|
257
|
+
showButton: string;
|
|
258
|
+
filter: string;
|
|
259
|
+
resetFilter: string;
|
|
260
|
+
changeLocale: string;
|
|
261
|
+
clearButton: string;
|
|
262
|
+
addElement: string;
|
|
263
|
+
defaultOrder: string;
|
|
264
|
+
ascOrder: string;
|
|
265
|
+
descOrder: string;
|
|
266
|
+
showMinorColumns: string;
|
|
267
|
+
otherCommentTitle: string;
|
|
268
|
+
showPercentages: string;
|
|
269
|
+
hidePercentages: string;
|
|
270
|
+
pdfDownloadCaption: string;
|
|
271
|
+
xlsxDownloadCaption: string;
|
|
272
|
+
csvDownloadCaption: string;
|
|
273
|
+
saveDiagramAsPNG: string;
|
|
274
|
+
hideEmptyAnswers: string;
|
|
275
|
+
showEmptyAnswers: string;
|
|
276
|
+
"topNValueText-1": string;
|
|
277
|
+
topNValueText5: string;
|
|
278
|
+
topNValueText10: string;
|
|
279
|
+
topNValueText20: string;
|
|
280
|
+
noVisualizerForQuestion: string;
|
|
281
|
+
noResults: string;
|
|
282
|
+
};
|
|
283
|
+
}
|
|
230
284
|
declare module "analytics-localization/norwegian" {
|
|
231
285
|
export var norwegianStrings: {
|
|
232
286
|
groupButton: string;
|
|
@@ -940,6 +994,7 @@ declare module "entries/datatables" {
|
|
|
940
994
|
export * from "localizationManager";
|
|
941
995
|
import "analytics-localization/farsi";
|
|
942
996
|
import "analytics-localization/french";
|
|
997
|
+
import "analytics-localization/german";
|
|
943
998
|
import "analytics-localization/norwegian";
|
|
944
999
|
import "analytics-localization/portuguese";
|
|
945
1000
|
import "analytics-localization/russian";
|