survey-angular-ui 1.9.51 → 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.
Files changed (40) hide show
  1. package/angular-ui.d.ts +2 -0
  2. package/angular-ui.module.d.ts +68 -66
  3. package/components/popup/popup-container.component.d.ts +7 -5
  4. package/components/popup/popup-pointer.component.d.ts +10 -0
  5. package/components/survey-header/logo-image.component.d.ts +9 -0
  6. package/components/survey-header/survey-header.component.d.ts +5 -3
  7. package/element.component.d.ts +1 -0
  8. package/esm2020/angular-ui.mjs +3 -1
  9. package/esm2020/angular-ui.module.mjs +12 -10
  10. package/esm2020/components/dropdown/dropdown.component.mjs +6 -5
  11. package/esm2020/components/popup/popup-container.component.mjs +22 -9
  12. package/esm2020/components/popup/popup-pointer.component.mjs +22 -0
  13. package/esm2020/components/popup/popup.component.mjs +3 -3
  14. package/esm2020/components/popup/popup.service.mjs +3 -3
  15. package/esm2020/components/renderAs/boolean-checkbox/boolean-checkbox.component.mjs +3 -3
  16. package/esm2020/components/survey-actions/survey-nav-btn.component.mjs +3 -3
  17. package/esm2020/components/survey-header/logo-image.component.mjs +20 -0
  18. package/esm2020/components/survey-header/survey-header.component.mjs +14 -7
  19. package/esm2020/components/svg-icon/svg-icon.component.mjs +2 -2
  20. package/esm2020/components/tagbox/tagbox.component.mjs +3 -3
  21. package/esm2020/element.component.mjs +12 -3
  22. package/esm2020/question.component.mjs +15 -3
  23. package/esm2020/questions/boolean.component.mjs +4 -4
  24. package/esm2020/questions/matrix.component.mjs +3 -3
  25. package/esm2020/questions/paneldynamic.component.mjs +33 -9
  26. package/esm2020/questions/ranking-item.component.mjs +5 -3
  27. package/esm2020/questions/ranking.component.mjs +16 -7
  28. package/esm2020/questions/selectbase.component.mjs +6 -3
  29. package/esm2020/string-editor.component.mjs +3 -3
  30. package/esm2020/string-viewer.component.mjs +12 -7
  31. package/fesm2015/survey-angular-ui.mjs +297 -182
  32. package/fesm2015/survey-angular-ui.mjs.map +1 -1
  33. package/fesm2020/survey-angular-ui.mjs +297 -182
  34. package/fesm2020/survey-angular-ui.mjs.map +1 -1
  35. package/package.json +1 -1
  36. package/question.component.d.ts +2 -0
  37. package/questions/paneldynamic.component.d.ts +2 -0
  38. package/questions/ranking.component.d.ts +5 -2
  39. package/questions/selectbase.component.d.ts +1 -0
  40. package/string-viewer.component.d.ts +5 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "survey-angular-ui",
3
- "version": "1.9.51",
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",
@@ -8,6 +8,8 @@ export declare class QuestionComponent extends EmbeddedViewContentComponent {
8
8
  protected getModel(): Question;
9
9
  ngAfterViewInit(): void;
10
10
  getComponentName(): string;
11
+ getQuestionContentWrapperComponentName(): string;
12
+ getQuestionContentWrapperComponentData(): any;
11
13
  static ɵfac: i0.ɵɵFactoryDeclaration<QuestionComponent, never>;
12
14
  static ɵcmp: i0.ɵɵComponentDeclaration<QuestionComponent, "sv-ng-question", never, { "model": "model"; }, {}, never, never>;
13
15
  }
@@ -7,6 +7,8 @@ export declare class PanelDynamicQuestionComponent extends QuestionAngular<Quest
7
7
  protected onModelChanged(): void;
8
8
  get progressCssClass(): any;
9
9
  ngOnDestroy(): void;
10
+ getPanelComponentName(panel: PanelModel): string;
11
+ getPanelComponentData(panel: PanelModel): any;
10
12
  static ɵfac: i0.ɵɵFactoryDeclaration<PanelDynamicQuestionComponent, never>;
11
13
  static ɵcmp: i0.ɵɵComponentDeclaration<PanelDynamicQuestionComponent, "sv-ng-paneldynamic-question", never, {}, {}, never, never>;
12
14
  }
@@ -1,8 +1,11 @@
1
- import { QuestionAngular } from "../question";
2
1
  import { ItemValue, QuestionRankingModel } from "survey-core";
2
+ import { SelectBaseComponent } from "./selectbase.component";
3
3
  import * as i0 from "@angular/core";
4
- export declare class RankingQuestionComponent extends QuestionAngular<QuestionRankingModel> {
4
+ export declare class RankingQuestionComponent extends SelectBaseComponent<QuestionRankingModel> {
5
+ inputType: string;
5
6
  trackItemBy: (index: number, item: ItemValue) => string;
7
+ getDefaultComponentName(): string;
8
+ getItemValueComponentData(item: ItemValue, index?: number): any;
6
9
  static ɵfac: i0.ɵɵFactoryDeclaration<RankingQuestionComponent, never>;
7
10
  static ɵcmp: i0.ɵɵComponentDeclaration<RankingQuestionComponent, "sv-ng-ranking-question", never, {}, {}, never, never>;
8
11
  }
@@ -5,6 +5,7 @@ export declare class SelectBaseComponent<T extends QuestionSelectBase> extends Q
5
5
  model: any;
6
6
  inputType: string;
7
7
  showLegend: boolean;
8
+ getDefaultComponentName(): string;
8
9
  getItemValueComponentName(item: ItemValue): string;
9
10
  getItemValueComponentData(item: ItemValue): any;
10
11
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectBaseComponent<any>, never>;
@@ -1,11 +1,12 @@
1
- import { ChangeDetectorRef, OnChanges, OnDestroy, SimpleChanges } from "@angular/core";
1
+ import { ChangeDetectorRef, DoCheck } from "@angular/core";
2
2
  import { LocalizableString } from "survey-core";
3
3
  import * as i0 from "@angular/core";
4
- export declare class StringViewerComponent implements OnChanges, OnDestroy {
4
+ export declare class StringViewerComponent implements DoCheck {
5
5
  private changeDetectorRef;
6
- model: any;
6
+ model: LocalizableString;
7
+ private previousModel;
7
8
  constructor(changeDetectorRef: ChangeDetectorRef);
8
- ngOnChanges(changes: SimpleChanges): void;
9
+ ngDoCheck(): void;
9
10
  clearOnChanged(model: LocalizableString): void;
10
11
  ngOnDestroy(): void;
11
12
  static ɵfac: i0.ɵɵFactoryDeclaration<StringViewerComponent, never>;