survey-react-ui 1.9.121 → 1.9.123

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.
@@ -12,6 +12,7 @@ export declare class SurveyQuestionDropdownBase<T extends Question> extends Surv
12
12
  protected getStateElement(): any;
13
13
  protected setValueCore(newValue: any): void;
14
14
  protected getValueCore(): any;
15
+ protected renderReadOnlyElement(): JSX.Element | null;
15
16
  protected renderSelect(cssClasses: any): JSX.Element;
16
17
  renderValueElement(dropdownListModel: DropdownListModel): JSX.Element | null;
17
18
  protected renderInput(dropdownListModel: DropdownListModel): JSX.Element;
@@ -26,7 +26,6 @@ export declare class SurveyQuestionCheckboxItem extends ReactSurveyElement {
26
26
  private get hideCaption();
27
27
  shouldComponentUpdate(nextProps: any, nextState: any): boolean;
28
28
  handleOnChange: (event: any) => void;
29
- selectAllChanged: (event: any) => void;
30
29
  protected canRender(): boolean;
31
30
  protected renderElement(): JSX.Element;
32
31
  protected get inputStyle(): any;
@@ -6,4 +6,5 @@ export declare class SurveyQuestionTagbox extends SurveyQuestionDropdownBase<Que
6
6
  protected renderItem(key: string, item: any): JSX.Element;
7
7
  protected renderInput(dropdownListModel: DropdownListModel): JSX.Element;
8
8
  protected renderElement(): JSX.Element;
9
+ protected renderReadOnlyElement(): JSX.Element | null;
9
10
  }