survey-react-ui 1.9.123 → 1.9.125

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.
@@ -22,7 +22,7 @@ export { SurveyQuestionDropdown } from "../react/reactquestion_dropdown";
22
22
  export { SurveyQuestionTagboxItem } from "../react/tagbox-item";
23
23
  export { SurveyQuestionTagbox } from "../react/reactquestion_tagbox";
24
24
  export { SurveyQuestionDropdownSelect } from "../react/dropdown-select";
25
- export { SurveyQuestionMatrix, SurveyQuestionMatrixRow, } from "../react/reactquestion_matrix";
25
+ export { SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionMatrixCell } from "../react/reactquestion_matrix";
26
26
  export { SurveyQuestionHtml } from "../react/reactquestion_html";
27
27
  export { SurveyQuestionFile } from "../react/reactquestion_file";
28
28
  export { SurveyFileChooseButton } from "../react/components/file/file-choose-button";
@@ -12,11 +12,21 @@ export declare class SurveyQuestionMatrixRow extends ReactSurveyElement {
12
12
  constructor(props: any);
13
13
  private get question();
14
14
  private get row();
15
- handleOnChange(event: any): void;
16
- handleOnMouseDown(event: any): void;
17
15
  protected wrapCell(cell: any, element: JSX.Element, reason: string): JSX.Element;
18
16
  protected canRender(): boolean;
19
17
  protected renderElement(): JSX.Element;
20
- generateTds(): JSX.Element[];
18
+ generateTds(): Array<JSX.Element>;
21
19
  cellClick(row: any, column: any): void;
22
20
  }
21
+ export declare class SurveyQuestionMatrixCell extends ReactSurveyElement {
22
+ constructor(props: any);
23
+ handleOnChange(event: any): void;
24
+ handleOnMouseDown(event: any): void;
25
+ private get question();
26
+ private get row();
27
+ private get column();
28
+ private get columnIndex();
29
+ protected canRender(): boolean;
30
+ protected renderElement(): JSX.Element;
31
+ protected renderInput(inputId: string, isChecked: boolean): JSX.Element;
32
+ }