survery-lib 2.1.43 → 2.1.45
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/entites/question.entity.mjs +1 -1
- package/esm2022/lib/core/states/survey-store/question.selector.mjs +25 -5
- package/esm2022/lib/core/states/survey-store/survey.action.mjs +1 -1
- package/esm2022/lib/core/states/survey-store/survey.effect.mjs +49 -25
- package/esm2022/lib/core/states/survey-store/survey.reducer.mjs +7 -7
- package/esm2022/shared/models/survery-question-result.model.mjs +1 -1
- package/fesm2022/survery-lib.mjs +78 -34
- package/fesm2022/survery-lib.mjs.map +1 -1
- package/lib/core/states/entites/question.entity.d.ts +1 -0
- package/lib/core/states/survey-store/survey.action.d.ts +16 -4
- package/package.json +1 -1
- package/shared/models/survery-question-result.model.d.ts +2 -0
|
@@ -49,10 +49,16 @@ export declare const surveyActions: {
|
|
|
49
49
|
isShow: boolean;
|
|
50
50
|
} & import("@ngrx/store/src/models").TypedAction<"[Survey library] Update Question Show">>;
|
|
51
51
|
updateQuestionsShow: import("@ngrx/store").ActionCreator<"[Survey library] Update Questions Show", (props: {
|
|
52
|
-
|
|
52
|
+
questions: {
|
|
53
|
+
id: any;
|
|
54
|
+
passedRuleQuestionId: any;
|
|
55
|
+
}[];
|
|
53
56
|
isShow: boolean;
|
|
54
57
|
}) => {
|
|
55
|
-
|
|
58
|
+
questions: {
|
|
59
|
+
id: any;
|
|
60
|
+
passedRuleQuestionId: any;
|
|
61
|
+
}[];
|
|
56
62
|
isShow: boolean;
|
|
57
63
|
} & import("@ngrx/store/src/models").TypedAction<"[Survey library] Update Questions Show">>;
|
|
58
64
|
updateQuestionDisable: import("@ngrx/store").ActionCreator<"[Survey library] Update Question Disable", (props: {
|
|
@@ -63,10 +69,16 @@ export declare const surveyActions: {
|
|
|
63
69
|
isDisabled: boolean;
|
|
64
70
|
} & import("@ngrx/store/src/models").TypedAction<"[Survey library] Update Question Disable">>;
|
|
65
71
|
updateQuestionsDisable: import("@ngrx/store").ActionCreator<"[Survey library] Update Questions Disable", (props: {
|
|
66
|
-
|
|
72
|
+
questions: {
|
|
73
|
+
id: any;
|
|
74
|
+
passedRuleQuestionId: any;
|
|
75
|
+
}[];
|
|
67
76
|
isDisabled: boolean;
|
|
68
77
|
}) => {
|
|
69
|
-
|
|
78
|
+
questions: {
|
|
79
|
+
id: any;
|
|
80
|
+
passedRuleQuestionId: any;
|
|
81
|
+
}[];
|
|
70
82
|
isDisabled: boolean;
|
|
71
83
|
} & import("@ngrx/store/src/models").TypedAction<"[Survey library] Update Questions Disable">>;
|
|
72
84
|
updateQuestionRequired: import("@ngrx/store").ActionCreator<"[Survey library] Update Question Required", (props: {
|
package/package.json
CHANGED