survey-react-ui 2.3.10 → 2.3.11

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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v2.3.10
2
+ * surveyjs - Survey JavaScript library v2.3.11
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -3,5 +3,6 @@ import { SurveyElement } from "survey-core";
3
3
  export declare class TitleActions extends React.Component<any, any> {
4
4
  protected get cssClasses(): any;
5
5
  protected get element(): SurveyElement;
6
+ private get renderActions();
6
7
  render(): React.JSX.Element;
7
8
  }
@@ -8,7 +8,7 @@ export declare class SurveyQuestionImagePicker extends SurveyQuestionElementBase
8
8
  protected getColumns(cssClasses: any): React.JSX.Element[];
9
9
  protected getItems(cssClasses: any): Array<any>;
10
10
  protected get textStyle(): any;
11
- protected renderItem(key: string, item: ImageItemValue, cssClasses: any): React.JSX.Element;
11
+ protected renderItem(item: ImageItemValue, cssClasses: any): React.JSX.Element;
12
12
  }
13
13
  export declare class SurveyQuestionImagePickerItem extends ReactSurveyElement {
14
14
  constructor(props: any);
@@ -17,7 +17,7 @@ export declare class SurveyQuestionCommentItem<P extends ISurveyQuestionCommentI
17
17
  protected canRender(): boolean;
18
18
  protected getTextAreaModel(): TextAreaModel;
19
19
  protected renderElement(): React.JSX.Element;
20
- protected getKey(): string;
20
+ protected getKey(): number;
21
21
  }
22
22
  export interface ISurveyQuestionCommentValueItemProps extends ISurveyQuestionCommentItemProps {
23
23
  question: Question;
@@ -26,5 +26,5 @@ export interface ISurveyQuestionCommentValueItemProps extends ISurveyQuestionCom
26
26
  export declare class SurveyQuestionCommentValueItem extends SurveyQuestionCommentItem<ISurveyQuestionCommentValueItemProps> {
27
27
  constructor(props: ISurveyQuestionCommentValueItemProps);
28
28
  protected getTextAreaModel(): TextAreaModel;
29
- protected getKey(): string;
29
+ protected getKey(): number;
30
30
  }
@@ -33,6 +33,7 @@ export declare class SurveyElementBase<P, S> extends React.Component<P, S> {
33
33
  private canMakeReact;
34
34
  private propertyValueChangedHandler;
35
35
  protected isCurrentStateElement(stateElement: Base): boolean;
36
+ private onArrayChangedCallback;
36
37
  private makeBaseElementReact;
37
38
  protected canUsePropInState(key: string): boolean;
38
39
  private unMakeBaseElementReact;