survey-angular-ui 1.9.47 → 1.9.48
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/angular-ui.d.ts +68 -5
- package/angular-ui.module.d.ts +81 -80
- package/esm2020/angular-ui.mjs +69 -6
- package/esm2020/angular-ui.module.mjs +32 -5
- package/esm2020/components/list/list-item.component.mjs +8 -7
- package/esm2020/survey-content.component.mjs +46 -0
- package/esm2020/survey.component.mjs +8 -30
- package/esm2020/utils/dynamic.directive.mjs +3 -1
- package/fesm2015/survey-angular-ui.mjs +115 -67
- package/fesm2015/survey-angular-ui.mjs.map +1 -1
- package/fesm2020/survey-angular-ui.mjs +115 -67
- package/fesm2020/survey-angular-ui.mjs.map +1 -1
- package/package.json +6 -2
- package/survey-content.component.d.ts +15 -0
- package/survey.component.d.ts +2 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-angular-ui",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.48",
|
|
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",
|
|
@@ -18,8 +18,12 @@
|
|
|
18
18
|
},
|
|
19
19
|
"typings": "survey-angular-ui.d.ts",
|
|
20
20
|
"peerDependencies": {
|
|
21
|
+
"@angular/cdk": "*",
|
|
22
|
+
"@angular/core": "*",
|
|
23
|
+
"@angular/forms": "*",
|
|
21
24
|
"rxjs": "~7.4.0",
|
|
22
|
-
"zone.js": "~0.11.4"
|
|
25
|
+
"zone.js": "~0.11.4",
|
|
26
|
+
"survey-core": "^1.9.46"
|
|
23
27
|
},
|
|
24
28
|
"module": "fesm2015/survey-angular-ui.mjs",
|
|
25
29
|
"es2020": "fesm2020/survey-angular-ui.mjs",
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, OnInit } from "@angular/core";
|
|
2
|
+
import { SurveyModel } from "survey-core";
|
|
3
|
+
import { BaseAngular } from "./base-angular";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SurveyContentComponent extends BaseAngular<SurveyModel> implements OnInit, AfterViewInit {
|
|
6
|
+
model: SurveyModel;
|
|
7
|
+
rootEl: ElementRef<HTMLDivElement>;
|
|
8
|
+
protected getModel(): SurveyModel;
|
|
9
|
+
protected onModelChanged(): void;
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
ngOnDestroy(): void;
|
|
12
|
+
ngAfterViewInit(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SurveyContentComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SurveyContentComponent, "survey-content", never, { "model": "model"; }, {}, never, never>;
|
|
15
|
+
}
|
package/survey.component.d.ts
CHANGED
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ChangeDetectorRef } from "@angular/core";
|
|
2
2
|
import { SurveyModel } from "survey-core";
|
|
3
3
|
import { BaseAngular } from "./base-angular";
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class SurveyComponent extends BaseAngular<SurveyModel>
|
|
5
|
+
export declare class SurveyComponent extends BaseAngular<SurveyModel> {
|
|
6
6
|
model: SurveyModel;
|
|
7
|
-
rootEl: ElementRef<HTMLDivElement>;
|
|
8
7
|
protected getModel(): SurveyModel;
|
|
9
8
|
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
10
9
|
protected onModelChanged(): void;
|
|
11
|
-
ngOnInit(): void;
|
|
12
|
-
ngOnDestroy(): void;
|
|
13
|
-
ngAfterViewInit(): void;
|
|
14
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<SurveyComponent, never>;
|
|
15
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<SurveyComponent, "survey", never, { "model": "model"; }, {}, never, never>;
|
|
16
12
|
}
|