survery-lib 2.1.8 → 2.1.10
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/components/question-institutions-template/question-institutions-template.component.mjs +2 -2
- package/esm2022/lib/core/states/survey-store/survey.action.mjs +1 -1
- package/esm2022/lib/core/states/survey-store/survey.reducer.mjs +1 -1
- package/esm2022/lib/services/api.service.mjs +7 -7
- package/fesm2022/survery-lib.mjs +12 -7
- package/fesm2022/survery-lib.mjs.map +1 -1
- package/lib/components/question-institutions-template/question-institutions-template.component.d.ts +1 -1
- package/lib/core/states/survey-store/survey.action.d.ts +1 -1
- package/lib/core/states/survey-store/survey.reducer.d.ts +1 -1
- package/package.json +1 -1
package/lib/components/question-institutions-template/question-institutions-template.component.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { QuestionGroupChildOfQuestionInstitutionsTemplateFormInterface, Question
|
|
|
6
6
|
import { QuestionNgrxModel } from '../../core/states/entites/question.entity';
|
|
7
7
|
import { SurveyQuestionDto } from '../../../shared/dtos/survey-question.dto';
|
|
8
8
|
import { ApiService } from '../../services/api.service';
|
|
9
|
-
import { SurveyLanguageEnum } from '
|
|
9
|
+
import { SurveyLanguageEnum } from '../../../shared/enums/survey-language.enum';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare class QuestionInstitutionsTemplateComponent implements OnInit {
|
|
12
12
|
private _Store;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { QuestionNgrxModel } from "../entites/question.entity";
|
|
2
2
|
import { RuleNgrxModel } from "../entites/rule.entity";
|
|
3
3
|
import { QuestionGroupNgrxModel } from "../entites/question-group.entity";
|
|
4
|
-
import { InstitutionDto } from "
|
|
4
|
+
import { InstitutionDto } from "../../../../shared/dtos/institution.dto";
|
|
5
5
|
export declare const surveyActions: {
|
|
6
6
|
loadSurvey: import("@ngrx/store").ActionCreator<"[Survey library] Load Survey", (props: {
|
|
7
7
|
questionArr: QuestionNgrxModel[];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { QuestionEntityState } from "../entites/question.entity";
|
|
2
2
|
import { RuleEntityState } from "../entites/rule.entity";
|
|
3
3
|
import { QuestionGroupEntityState } from "../entites/question-group.entity";
|
|
4
|
-
import { InstitutionDto } from "
|
|
4
|
+
import { InstitutionDto } from "../../../../shared/dtos/institution.dto";
|
|
5
5
|
export interface SurveyState {
|
|
6
6
|
selectedPageId: number;
|
|
7
7
|
questionGroupArr: QuestionGroupEntityState;
|