survey-react-ui 1.12.4 → 1.12.5

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.
@@ -0,0 +1,13 @@
1
+ /// <reference types="react" />
2
+ import { SurveyElementBase } from "../../reactquestion_element";
3
+ import { QuestionFileModel } from "survey-core";
4
+ export declare class SurveyFileItem extends SurveyElementBase<{
5
+ question: QuestionFileModel;
6
+ item: any;
7
+ }, {}> {
8
+ protected get question(): QuestionFileModel;
9
+ protected get item(): any;
10
+ protected renderFileSign(className: string, val: any): JSX.Element | null;
11
+ protected renderElement(): JSX.Element | null;
12
+ protected canRender(): boolean;
13
+ }
@@ -0,0 +1,11 @@
1
+ /// <reference types="react" />
2
+ import { SurveyElementBase } from "../../reactquestion_element";
3
+ import { QuestionFileModel, QuestionFilePage } from "survey-core";
4
+ export declare class SurveyFilePage extends SurveyElementBase<{
5
+ question: QuestionFileModel;
6
+ page: QuestionFilePage;
7
+ }, {}> {
8
+ protected get question(): QuestionFileModel;
9
+ protected get page(): any;
10
+ protected renderElement(): JSX.Element | null;
11
+ }