survey-react 1.9.11 → 1.9.12
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/modern.css +1 -1
- package/modern.min.css +1 -1
- package/package.json +1 -1
- package/survey.css +1 -1
- package/survey.min.css +1 -1
- package/survey.react.d.ts +9 -1
- package/survey.react.js +38 -17
- package/survey.react.min.js +3 -3
package/modern.css
CHANGED
package/modern.min.css
CHANGED
package/package.json
CHANGED
package/survey.css
CHANGED
package/survey.min.css
CHANGED
package/survey.react.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
* Type definition for Survey JavaScript library for React v1.9.
|
2
|
+
* Type definition for Survey JavaScript library for React v1.9.12
|
3
3
|
* Copyright (c) 2015-2022 Devsoft Baltic OÜ - https://surveyjs.io/
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
5
5
|
*/
|
@@ -1167,6 +1167,14 @@ export declare class ReactQuestionFactory {
|
|
1167
1167
|
getAllTypes(): Array<any>;
|
1168
1168
|
createQuestion(questionType: string, params: any): any;
|
1169
1169
|
}
|
1170
|
+
export declare class ReactSurveyElementsWrapper {
|
1171
|
+
constructor(survey: any);
|
1172
|
+
survey: any;
|
1173
|
+
wrapRow(element: any, row: any): any;
|
1174
|
+
wrapElement(element: any, question: any): any;
|
1175
|
+
wrapItemValue(element: any, question: any, item: any): any;
|
1176
|
+
wrapMatrixCell(element: any, cell: any, reason?: string): any;
|
1177
|
+
}
|
1170
1178
|
export declare class RendererFactory {
|
1171
1179
|
static Instance: RendererFactory;
|
1172
1180
|
renderersHash: any;
|