survey-analytics 1.9.42 → 1.9.43
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 +1 -1
- package/survey.analytics.css +1 -1
- package/survey.analytics.d.ts +2 -1
- package/survey.analytics.datatables.css +1 -1
- package/survey.analytics.datatables.js +1 -1
- package/survey.analytics.datatables.min.css +1 -1
- package/survey.analytics.datatables.min.js +1 -1
- package/survey.analytics.js +29 -20
- package/survey.analytics.min.css +1 -1
- package/survey.analytics.min.js +2 -2
- package/survey.analytics.tabulator.css +1 -1
- package/survey.analytics.tabulator.js +1 -1
- package/survey.analytics.tabulator.min.css +1 -1
- package/survey.analytics.tabulator.min.js +1 -1
package/package.json
CHANGED
package/survey.analytics.css
CHANGED
package/survey.analytics.d.ts
CHANGED
|
@@ -1737,7 +1737,7 @@ declare module "wordcloud/stopwords/index" {
|
|
|
1737
1737
|
};
|
|
1738
1738
|
}
|
|
1739
1739
|
declare module "wordcloud/wordcloud" {
|
|
1740
|
-
import { Question } from "survey-core";
|
|
1740
|
+
import { Question, Event } from "survey-core";
|
|
1741
1741
|
import { VisualizerBase } from "visualizerBase";
|
|
1742
1742
|
export class WordCloudAdapter {
|
|
1743
1743
|
private model;
|
|
@@ -1746,6 +1746,7 @@ declare module "wordcloud/wordcloud" {
|
|
|
1746
1746
|
static shrinkToFit: boolean;
|
|
1747
1747
|
static abortThreshold: any;
|
|
1748
1748
|
static weightFactor: number;
|
|
1749
|
+
static onWordcloudCreating: Event<(sender: WordCloud, options: any) => any, any>;
|
|
1749
1750
|
constructor(model: WordCloud);
|
|
1750
1751
|
get wordcloud(): any;
|
|
1751
1752
|
create(node: HTMLElement): any;
|