survey-react-ui 1.9.1 → 1.9.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "survey-react-ui",
3
- "version": "1.9.1",
3
+ "version": "1.9.2",
4
4
  "description": "survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.",
5
5
  "keywords": [
6
6
  "Survey",
@@ -1,4 +1,4 @@
1
- /*Type definitions for Survey JavaScript library v1.9.1
1
+ /*Type definitions for Survey JavaScript library v1.9.2
2
2
  Copyright (c) 2015-2021 Devsoft Baltic OÜ - http://surveyjs.io/
3
3
  Definitions by: Devsoft Baltic OÜ <https://github.com/surveyjs/>
4
4
  */
@@ -168,6 +168,7 @@ export declare class SurveyPanel extends SurveyPanelBase {
168
168
  constructor(props: any);
169
169
  get panel(): PanelModel;
170
170
  protected renderElement(): JSX.Element;
171
+ protected renderHeader(): JSX.Element;
171
172
  protected wrapElement(element: JSX.Element): JSX.Element;
172
173
  protected renderContent(style: any, rows: JSX.Element[], className: string): JSX.Element;
173
174
  protected renderTitle(): JSX.Element;
@@ -398,6 +399,7 @@ export declare class SurveyQuestionFile extends SurveyQuestionElementBase {
398
399
  protected renderElement(): JSX.Element;
399
400
  protected renderFileDecorator(): JSX.Element;
400
401
  protected renderClearButton(className: string): JSX.Element;
402
+ protected renderFileSign(className: string, val: any): JSX.Element;
401
403
  protected renderPreview(): JSX.Element;
402
404
  }
403
405
 
@@ -3341,6 +3343,7 @@ export declare class QuestionMatrixDropdownModelBase extends QuestionMatrixBaseM
3341
3343
  setIsDetailPanelShowing(row: MatrixDropdownRowModelBase, val: boolean): void;
3342
3344
  getDetailPanelButtonCss(row: MatrixDropdownRowModelBase): string;
3343
3345
  getDetailPanelIconCss(row: MatrixDropdownRowModelBase): string;
3346
+ getDetailPanelIconId(row: MatrixDropdownRowModelBase): string;
3344
3347
  createRowDetailPanel(row: MatrixDropdownRowModelBase): PanelModel;
3345
3348
  getSharedQuestionByName(columnName: string, row: MatrixDropdownRowModelBase): Question;
3346
3349
  onTotalValueChanged(): any;
@@ -3536,6 +3539,7 @@ export declare class SurveyElement extends SurveyElementCore implements ISurveyE
3536
3539
  protected updateElementCssCore(cssClasses: any): void;
3537
3540
  get cssError(): string;
3538
3541
  updateElementCss(reNew?: boolean): void;
3542
+ protected clearCssClasses(): void;
3539
3543
  protected getIsLoadingFromJson(): boolean;
3540
3544
  /**
3541
3545
  * This is the identifier of a survey element - question or panel.
@@ -3837,6 +3841,8 @@ export declare class QuestionMatrixBaseModel<TRow, TColumn> extends Question {
3837
3841
  constructor(name: string);
3838
3842
  getType(): string;
3839
3843
  get isCompositeQuestion(): boolean;
3844
+ get showColumnHeader(): boolean;
3845
+ set showColumnHeader(val: boolean);
3840
3846
  /**
3841
3847
  * Set this property to false, to hide table header. The default value is true.
3842
3848
  */
@@ -4512,6 +4518,7 @@ export declare class QuestionMatrixDropdownRenderedCell {
4512
4518
  set className(val: string);
4513
4519
  get className(): string;
4514
4520
  get headers(): string;
4521
+ getTitle(): string;
4515
4522
  calculateFinalClassName(matrixCssClasses: any): string;
4516
4523
  }
4517
4524
  export declare class QuestionMatrixDropdownRenderedRow extends Base {