survey-react-ui 1.9.52 → 1.9.53

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.52",
3
+ "version": "1.9.53",
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,5 +1,5 @@
1
1
  /*
2
- * Type definition for Survey JavaScript library for React (without core) v1.9.52
2
+ * Type definition for Survey JavaScript library for React (without core) v1.9.53
3
3
  * Copyright (c) 2015-2022 Devsoft Baltic OÜ - https://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -226,7 +226,7 @@ export declare class Popup extends SurveyElementBase<IPopupProps, any> {
226
226
  popup: PopupBaseViewModel;
227
227
  containerRef: any;
228
228
  get model(): any;
229
- protected getStateElement(): PopupModel;
229
+ protected getStateElement(): Base;
230
230
  componentDidMount(): void;
231
231
  componentDidUpdate(prevProps: any, prevState: any): void;
232
232
  componentWillUnmount(): void;
@@ -238,16 +238,14 @@ export declare class PopupContainer extends SurveyElementBase<any, any> {
238
238
  prevIsVisible: boolean;
239
239
  handleKeydown: (event: any) => void;
240
240
  get model(): PopupBaseViewModel;
241
- protected getStateElement(): PopupBaseViewModel;
241
+ protected getStateElement(): Base;
242
242
  clickInside: (ev: any) => void;
243
243
  componentDidUpdate(prevProps: any, prevState: any): void;
244
- renderContainer(): JSX.Element;
245
- renderPointer(): JSX.Element;
246
- renderHeader(): JSX.Element;
244
+ renderContainer(PopupBaseViewModel: PopupBaseViewModel): JSX.Element;
245
+ renderHeaderContent(): JSX.Element;
247
246
  renderContent(): JSX.Element;
248
- renderCancelButton(): JSX.Element;
249
- renderApplyButton(): JSX.Element;
250
- renderFooter(): JSX.Element;
247
+ protected renderHeaderPopup(popupModel: PopupBaseViewModel): JSX.Element;
248
+ protected renderFooter(popuModel: PopupBaseViewModel): JSX.Element;
251
249
  render(): JSX.Element;
252
250
  }
253
251
  export declare class ReactSurveyElement extends SurveyElementBase<any, any> {
@@ -433,6 +431,10 @@ export declare class TagboxFilterString extends SurveyElementBase<ITagboxFilterP
433
431
  getStateElement(): DropdownMultiSelectListModel;
434
432
  render(): JSX.Element;
435
433
  }
434
+ export declare class PopupDropdownContainer extends PopupContainer {
435
+ constructor(props: any);
436
+ protected renderHeaderPopup(popupModel: PopupBaseViewModel): JSX.Element;
437
+ }
436
438
  export declare class PopupSurvey extends Survey {
437
439
  constructor(props: any);
438
440
  protected popup: PopupSurveyModel;
@@ -768,6 +770,7 @@ export declare class SurveyQuestionRankingItem extends ReactSurveyElement {
768
770
  protected get handlePointerDown(): (event: any) => void;
769
771
  protected get cssClasses(): any;
770
772
  protected get itemClass(): string;
773
+ protected get itemTabIndex(): number;
771
774
  protected get question(): any;
772
775
  protected renderElement(): JSX.Element;
773
776
  }