survery-lib 2.1.39 → 2.1.41
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/core/states/survey-store/question.selector.mjs +27 -2
- package/esm2022/lib/survery-lib.component.mjs +2 -1
- package/fesm2022/survery-lib.mjs +27 -1
- package/fesm2022/survery-lib.mjs.map +1 -1
- package/lib/core/states/survey-store/question.selector.d.ts +1 -0
- package/lib/survery-lib.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -4,4 +4,5 @@ export declare const questionSelectors: {
|
|
|
4
4
|
allQuestions: import("@ngrx/store").MemoizedSelector<object, import("../entites/question.entity").QuestionNgrxModel[], (s1: SurveyState) => import("../entites/question.entity").QuestionNgrxModel[]>;
|
|
5
5
|
pageQuestions: import("@ngrx/store").MemoizedSelector<object, import("../entites/question.entity").QuestionNgrxModel[], (s1: SurveyState) => import("../entites/question.entity").QuestionNgrxModel[]>;
|
|
6
6
|
questionAnswers: import("@ngrx/store").MemoizedSelector<object, SurveyQuestionResult[], (s1: SurveyState) => SurveyQuestionResult[]>;
|
|
7
|
+
HaveValidQuestionsCurrentPage: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: SurveyState) => boolean>;
|
|
7
8
|
};
|
|
@@ -24,6 +24,7 @@ export declare class SurveryLibComponent implements OnInit, AfterViewInit {
|
|
|
24
24
|
isFirstPage$: Observable<boolean>;
|
|
25
25
|
isLastPage$: Observable<boolean>;
|
|
26
26
|
curruntShowedSurveyPages$: Observable<number>;
|
|
27
|
+
haveValidQuestionsCurrentPage$: Observable<boolean>;
|
|
27
28
|
get fCtrls(): SurveryLibFormInterface;
|
|
28
29
|
get isFirstPage(): boolean;
|
|
29
30
|
get questionTypeEnum(): typeof QuestionTypeEnum;
|