survey-creator-react 3.0.0-beta.2 → 3.0.0-beta.3

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.
@@ -8,6 +8,5 @@ export declare class SurveyQuestionColor extends SurveyQuestionText {
8
8
  protected renderElement(): React.JSX.Element;
9
9
  protected getValueCore(): string;
10
10
  protected renderColorSwatch(): React.JSX.Element;
11
- protected renderDropdownAction(): React.JSX.Element;
12
- protected renderPopup(): React.JSX.Element;
11
+ protected renderButtons(): React.JSX.Element;
13
12
  }
@@ -1,14 +1,20 @@
1
1
  import * as React from "react";
2
+ import { Action, Base } from "survey-core";
2
3
  import { QuestionFileEditorModel } from "survey-creator-core";
3
- import { SurveyQuestionText } from "survey-react-ui";
4
+ import { SurveyElementBase, SurveyQuestionText } from "survey-react-ui";
4
5
  export declare class SurveyQuestionFileEditor extends SurveyQuestionText {
5
6
  constructor(props: any);
6
7
  protected get questionFile(): QuestionFileEditorModel;
7
8
  protected getValueCore(): any;
8
9
  protected renderInput(): React.JSX.Element;
9
- protected renderFileInput(): React.JSX.Element;
10
10
  protected renderButtons(): React.JSX.Element;
11
- protected renderClearButton(): React.JSX.Element;
12
- protected renderChooseButton(): React.JSX.Element;
13
11
  protected renderElement(): React.JSX.Element;
14
12
  }
13
+ export declare class SurveyQuestionFileEditorButton extends SurveyElementBase<{
14
+ item: Action;
15
+ }, any> {
16
+ protected get item(): Action;
17
+ protected get question(): QuestionFileEditorModel;
18
+ protected getStateElement(): Base | null;
19
+ protected renderElement(): React.JSX.Element | null;
20
+ }
@@ -1,6 +1,7 @@
1
1
  import * as React from "react";
2
- import { QuestionSpinEditorModel } from "survey-creator-core";
3
- import { SurveyQuestionText } from "survey-react-ui";
2
+ import { Action } from "survey-core";
3
+ import { QuestionSpinEditorModel, ISpinEditorButton } from "survey-creator-core";
4
+ import { SurveyElementBase, SurveyQuestionText } from "survey-react-ui";
4
5
  export declare class SurveyQuestionSpinEditor extends SurveyQuestionText {
5
6
  constructor(props: any);
6
7
  protected get question(): QuestionSpinEditorModel;
@@ -9,3 +10,12 @@ export declare class SurveyQuestionSpinEditor extends SurveyQuestionText {
9
10
  protected getValueCore(): string;
10
11
  protected renderButtons(): React.JSX.Element;
11
12
  }
13
+ export declare class SurveySpinEditorButton extends SurveyElementBase<{
14
+ item: ISpinEditorButton;
15
+ }, any> {
16
+ get item(): ISpinEditorButton;
17
+ get itemAction(): Action;
18
+ getStateElement(): Action;
19
+ get question(): QuestionSpinEditorModel;
20
+ protected renderElement(): React.JSX.Element | null;
21
+ }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * SurveyJS Creator v3.0.0-beta.2
2
+ * SurveyJS Creator v3.0.0-beta.3
3
3
  * (c) 2015-2026 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * Github: https://github.com/surveyjs/survey-creator
5
5
  * License: https://surveyjs.io/Licenses#SurveyCreator
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * SurveyJS Creator v3.0.0-beta.2
2
+ * SurveyJS Creator v3.0.0-beta.3
3
3
  * (c) 2015-2026 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * Github: https://github.com/surveyjs/survey-creator
5
5
  * License: https://surveyjs.io/Licenses#SurveyCreator