@colijnit/sharedcomponents 260.1.9 → 260.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/bundles/colijnit-sharedcomponents.umd.js +6 -2
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/form-builder/form-builder-user-form/form-builder-question.component.js +6 -9
- package/esm2015/lib/components/form-builder/form-builder-user-form/form-builder-user-form.component.js +2 -1
- package/fesm2015/colijnit-sharedcomponents.js +5 -8
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/form-builder/form-builder-user-form/form-builder-question.component.d.ts +4 -0
- package/package.json +1 -1
package/lib/components/form-builder/form-builder-user-form/form-builder-question.component.d.ts
CHANGED
|
@@ -5,10 +5,14 @@ import { FormQuestion } from '@colijnit/mainapi/build/model/form-question.bo';
|
|
|
5
5
|
import { FormQuestionAnswer } from '@colijnit/mainapi/build/model/form-question-answer.bo';
|
|
6
6
|
import { FormQuestionResponse } from '@colijnit/mainapi/build/model/form-question-response.bo';
|
|
7
7
|
import { Icon } from '../../../enum/icon.enum';
|
|
8
|
+
import { UserFormMode } from '../../../enum/user-form-mode.enum';
|
|
8
9
|
export declare class FormBuilderQuestionComponent implements OnInit {
|
|
9
10
|
readonly formQuestionType: typeof FormQuestionType;
|
|
10
11
|
readonly TableName: typeof TableName;
|
|
11
12
|
readonly icons: typeof Icon;
|
|
13
|
+
readonly modes: typeof UserFormMode;
|
|
14
|
+
readonly formQuestionTypes: typeof FormQuestionType;
|
|
15
|
+
mode: UserFormMode;
|
|
12
16
|
question: FormQuestion;
|
|
13
17
|
formResponse: FormQuestionResponse[];
|
|
14
18
|
questionIndex: number;
|