survery-lib 0.2.1 → 0.2.2
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/esm2022/lib/services/survey-lib.service.mjs +36 -27
- package/esm2022/lib/survery-lib.component.mjs +6 -2
- package/fesm2022/survery-lib.mjs +39 -28
- package/fesm2022/survery-lib.mjs.map +1 -1
- package/lib/services/survey-lib.service.d.ts +4 -1
- package/lib/survery-lib.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -4,10 +4,13 @@ import { Store } from '@ngrx/store';
|
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class SurveyLibService {
|
|
6
6
|
private _Store;
|
|
7
|
+
private reloadSurveySubject;
|
|
8
|
+
get reloadSurveyObsrv(): import("rxjs").Observable<string>;
|
|
7
9
|
constructor(_Store: Store);
|
|
8
10
|
setSurveyData(survey: SurveyDto): void;
|
|
9
|
-
private addQuestion;
|
|
10
11
|
setsurveyAnswers(model: surveyAnswersSubjectDto): void;
|
|
12
|
+
setReloadSurvey(): void;
|
|
13
|
+
private addQuestion;
|
|
11
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<SurveyLibService, never>;
|
|
12
15
|
static ɵprov: i0.ɵɵInjectableDeclaration<SurveyLibService>;
|
|
13
16
|
}
|
|
@@ -24,6 +24,7 @@ export declare class SurveryLibComponent implements OnInit, AfterViewInit {
|
|
|
24
24
|
isLastPage$: Observable<boolean>;
|
|
25
25
|
curruntShowedSurveyPages$: Observable<number>;
|
|
26
26
|
get fCtrls(): SurveryLibFormInterface;
|
|
27
|
+
get isFirstPage(): boolean;
|
|
27
28
|
get questionTypeEnum(): typeof QuestionTypeEnum;
|
|
28
29
|
get surveyResult(): {
|
|
29
30
|
answers: SurveyQuestionResult[];
|