optimized-react-component-library-xyz123 0.0.1 → 0.0.3
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/dist/index.css +620 -0
- package/dist/index.d.mts +265 -0
- package/dist/index.d.ts +265 -0
- package/dist/index.js +1615 -0
- package/dist/index.mjs +1553 -0
- package/package.json +1 -1
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
+
|
|
4
|
+
interface IApplicationContent {
|
|
5
|
+
mainHeadline?: string;
|
|
6
|
+
ingressBody?: string;
|
|
7
|
+
linksForMoreInfo?: Array<IPTSLink>;
|
|
8
|
+
pageTitle?: string;
|
|
9
|
+
textblocks?: Array<ITextBlock>;
|
|
10
|
+
languageSupport: [
|
|
11
|
+
{
|
|
12
|
+
language: string;
|
|
13
|
+
mainHeadline: string;
|
|
14
|
+
ingressBody: string;
|
|
15
|
+
linksForMoreInfo: Array<IPTSLink>;
|
|
16
|
+
pageTitle: string;
|
|
17
|
+
textblocks: Array<ITextBlock>;
|
|
18
|
+
}
|
|
19
|
+
];
|
|
20
|
+
}
|
|
21
|
+
interface IFormState {
|
|
22
|
+
applicationContent: IApplicationContent;
|
|
23
|
+
steps: Array<IStepObject>;
|
|
24
|
+
questions: Array<IQuestion>;
|
|
25
|
+
questionsLoaded: boolean;
|
|
26
|
+
status: 'notloaded' | 'idle' | 'loading' | 'failed' | 'success';
|
|
27
|
+
}
|
|
28
|
+
interface IOption {
|
|
29
|
+
label: string;
|
|
30
|
+
value: string;
|
|
31
|
+
}
|
|
32
|
+
interface IPTSLink {
|
|
33
|
+
title: string;
|
|
34
|
+
url: string;
|
|
35
|
+
ariaLabel: string;
|
|
36
|
+
}
|
|
37
|
+
interface IStepObject {
|
|
38
|
+
step: number;
|
|
39
|
+
stepHeadline?: string;
|
|
40
|
+
stepDescription?: string;
|
|
41
|
+
shortNameInStepper: string;
|
|
42
|
+
shortNameInPreview?: string;
|
|
43
|
+
languageSupport?: Array<any>;
|
|
44
|
+
}
|
|
45
|
+
interface ITextBlock {
|
|
46
|
+
id?: string;
|
|
47
|
+
headline?: string;
|
|
48
|
+
body?: string;
|
|
49
|
+
linksForMoreInfo?: Array<IPTSLink>;
|
|
50
|
+
}
|
|
51
|
+
interface IQuestion {
|
|
52
|
+
id?: number;
|
|
53
|
+
mappingId?: string;
|
|
54
|
+
step?: number;
|
|
55
|
+
categoryLabel?: string;
|
|
56
|
+
categoryDescription?: string;
|
|
57
|
+
hideCategory?: boolean;
|
|
58
|
+
questionLabel?: string;
|
|
59
|
+
previewLabel?: string;
|
|
60
|
+
hideQuestion?: boolean;
|
|
61
|
+
answer?: string;
|
|
62
|
+
files?: Array<File>;
|
|
63
|
+
aboutText?: string;
|
|
64
|
+
isQuestionMandatory?: boolean;
|
|
65
|
+
questionType?: string;
|
|
66
|
+
options?: Array<IOption>;
|
|
67
|
+
visible?: boolean;
|
|
68
|
+
isDisplayed?: boolean;
|
|
69
|
+
hasValidationError?: boolean;
|
|
70
|
+
validationType?: Array<string>;
|
|
71
|
+
validationDefaultMessesege?: string;
|
|
72
|
+
questionGroupId?: number;
|
|
73
|
+
questionGroupType?: string;
|
|
74
|
+
dependsOnOtherQuestion?: Array<any>;
|
|
75
|
+
questionExtraAttribute?: IQuestionExtraAttribute;
|
|
76
|
+
languageSupport: Array<any>;
|
|
77
|
+
}
|
|
78
|
+
interface IQuestionExtraAttribute {
|
|
79
|
+
answerMaxLength?: number;
|
|
80
|
+
disabled?: boolean;
|
|
81
|
+
autoComplete?: boolean;
|
|
82
|
+
inputType?: string;
|
|
83
|
+
showTextAreaCounter?: boolean;
|
|
84
|
+
hideValidationMessage?: boolean;
|
|
85
|
+
}
|
|
86
|
+
interface IStepQuestionData {
|
|
87
|
+
step: number;
|
|
88
|
+
stepHeadline?: string;
|
|
89
|
+
stepDescription?: string;
|
|
90
|
+
categories?: {
|
|
91
|
+
visible?: boolean;
|
|
92
|
+
isDisplayed?: boolean;
|
|
93
|
+
category: string;
|
|
94
|
+
questionGroups: {
|
|
95
|
+
questionGroupId: string;
|
|
96
|
+
questionGroupType: string;
|
|
97
|
+
questions: IQuestion[];
|
|
98
|
+
}[];
|
|
99
|
+
}[];
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
interface RadioProps {
|
|
103
|
+
question: IQuestion;
|
|
104
|
+
isTouched: any;
|
|
105
|
+
showPreview?: boolean;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
declare const InputRadio: FC<RadioProps>;
|
|
109
|
+
|
|
110
|
+
interface MultipleCheckboxesProps {
|
|
111
|
+
question: IQuestion;
|
|
112
|
+
isTouched: any;
|
|
113
|
+
showPreview?: boolean;
|
|
114
|
+
activatedLanguage?: string;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
declare const MultipleCheckboxes: FC<MultipleCheckboxesProps>;
|
|
118
|
+
|
|
119
|
+
interface TextAreaProps {
|
|
120
|
+
question: IQuestion;
|
|
121
|
+
isTouched: any;
|
|
122
|
+
showPreview?: boolean;
|
|
123
|
+
activatedLanguage?: string;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
declare const InputTextarea: FC<TextAreaProps>;
|
|
127
|
+
|
|
128
|
+
interface TextFieldStandardProps {
|
|
129
|
+
question: IQuestion;
|
|
130
|
+
isTouched: any;
|
|
131
|
+
showPreview?: boolean;
|
|
132
|
+
activatedLanguage?: string;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
declare const TextFieldStandard: FC<TextFieldStandardProps>;
|
|
136
|
+
|
|
137
|
+
declare const questionHasValidationError: (questionObject: any, arrayOfQuestionObjects: any[]) => boolean;
|
|
138
|
+
|
|
139
|
+
interface TranslatedAnswers {
|
|
140
|
+
[questionId: string]: {
|
|
141
|
+
[originalAnswer: string]: string;
|
|
142
|
+
};
|
|
143
|
+
}
|
|
144
|
+
interface ApiDataObject {
|
|
145
|
+
[key: string]: string | number | boolean | File[];
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
declare function CreateApiDataObject(data: any[], specialMappedQuestions: Set<string>, translatedAnswers: TranslatedAnswers): ApiDataObject;
|
|
149
|
+
|
|
150
|
+
declare function groupQuestionByStepPreviewPage(steps: IStepObject[], questions: IQuestion[]): any[];
|
|
151
|
+
|
|
152
|
+
declare const isDependsOnOtherQuestionTrue: (data: any[], question: any) => boolean;
|
|
153
|
+
|
|
154
|
+
interface ILanguageSupport {
|
|
155
|
+
languageSupport?: Array<ILanguage>;
|
|
156
|
+
activatedLanguage: string;
|
|
157
|
+
forwardButton?: string;
|
|
158
|
+
backButton?: string;
|
|
159
|
+
sendButton?: string;
|
|
160
|
+
languageSupportLoaded: boolean;
|
|
161
|
+
}
|
|
162
|
+
interface ILanguage {
|
|
163
|
+
language: string;
|
|
164
|
+
forwardButton: string;
|
|
165
|
+
backButton: string;
|
|
166
|
+
sendButton: string;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
declare const QuestioninitialState: IFormState;
|
|
170
|
+
declare const ILanguageSupportinitialState: ILanguageSupport;
|
|
171
|
+
|
|
172
|
+
declare const doCategoriesAndQuestionsVisible: (questions: IQuestion[], validationErrorsList: number[]) => any[];
|
|
173
|
+
|
|
174
|
+
declare function validationCheckAllVisibleQuestions(data: any, formQuestion: any): number[];
|
|
175
|
+
|
|
176
|
+
declare function groupQuestionsByStepCategoryGroup(questions: IQuestion[], steps: IStepObject[], validationErrorsList: number[]): any[];
|
|
177
|
+
|
|
178
|
+
declare const RenderQuestion: ({ question, isTouched, activatedLanguage, showPreview, hideValidationMessage, }: any) => react_jsx_runtime.JSX.Element;
|
|
179
|
+
|
|
180
|
+
declare const RenderQuestionGroup: ({ questionArray, wrapper, legend, isTouched, activatedLanguage, showPreview, AddQuestionDisplayed, hideValidationMessage, }: any) => react_jsx_runtime.JSX.Element;
|
|
181
|
+
|
|
182
|
+
interface EditPreviewLinkProps {
|
|
183
|
+
row: any;
|
|
184
|
+
arraySteps: any;
|
|
185
|
+
changeStepHandler: any;
|
|
186
|
+
activatedLanguage?: string;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
declare const EditPreviewLink: FC<EditPreviewLinkProps>;
|
|
190
|
+
|
|
191
|
+
interface FooterProps {
|
|
192
|
+
activatedLanguage?: string;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
declare const Footer: FC<FooterProps>;
|
|
196
|
+
|
|
197
|
+
interface HeaderProps {
|
|
198
|
+
activatedLanguage?: string;
|
|
199
|
+
useLanguage?: boolean;
|
|
200
|
+
SetActivatedLanguage?: (language: string) => void;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
declare const Header: FC<HeaderProps>;
|
|
204
|
+
|
|
205
|
+
interface InfoOnlyProps {
|
|
206
|
+
questionObject: IQuestion;
|
|
207
|
+
isTouched: any;
|
|
208
|
+
visible?: boolean;
|
|
209
|
+
showErrors?: boolean;
|
|
210
|
+
showPreview?: boolean;
|
|
211
|
+
showConfigure?: boolean;
|
|
212
|
+
tabIndex?: number;
|
|
213
|
+
activatedLanguage?: string;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
declare const InfoOnly: FC<InfoOnlyProps>;
|
|
217
|
+
|
|
218
|
+
interface ModalProps {
|
|
219
|
+
showModal: boolean;
|
|
220
|
+
activatedLanguage?: string;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
declare const Modal: FC<ModalProps>;
|
|
224
|
+
|
|
225
|
+
interface PrincipleOfPublicityProps {
|
|
226
|
+
activatedLanguage?: string;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
declare const PrincipleOfPublicity: FC<PrincipleOfPublicityProps>;
|
|
230
|
+
|
|
231
|
+
interface ServiceHeadlineAndBodyProps {
|
|
232
|
+
data: IApplicationContent;
|
|
233
|
+
activeStep?: number;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
declare const ServiceHeadlineAndBody: FC<ServiceHeadlineAndBodyProps>;
|
|
237
|
+
|
|
238
|
+
declare const SkipLink: FC;
|
|
239
|
+
|
|
240
|
+
interface StepperButtonsProps {
|
|
241
|
+
languageSupported?: any;
|
|
242
|
+
handleActiveStep: (activeStep: number) => void;
|
|
243
|
+
forwardButtonHandler?: (e: any) => void;
|
|
244
|
+
submitButtonHandler?: (e: any) => void;
|
|
245
|
+
arraySteps?: any[];
|
|
246
|
+
activeStep: number;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
declare const StepperButtons: FC<StepperButtonsProps>;
|
|
250
|
+
|
|
251
|
+
interface StepperProps {
|
|
252
|
+
arraySteps?: Array<IStepObject>;
|
|
253
|
+
activeStep?: number;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
declare const Stepper: FC<StepperProps>;
|
|
257
|
+
|
|
258
|
+
interface TextHeadlineAndBodyProps {
|
|
259
|
+
data: ITextBlock;
|
|
260
|
+
headlineType?: 'h1' | 'h2';
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
declare const TextHeadlineAndBody: FC<TextHeadlineAndBodyProps>;
|
|
264
|
+
|
|
265
|
+
export { CreateApiDataObject, doCategoriesAndQuestionsVisible as DoCategoriesAndQuestionsVisible, EditPreviewLink as EditPreviewLinkStandard, Footer as FooterStandard, groupQuestionByStepPreviewPage as GroupQuestionByStepPreviewPage, groupQuestionsByStepCategoryGroup as GroupQuestionsByStepCategoryGroup, Header as HeaderStandard, type IApplicationContent, type IFormState, type ILanguage, type ILanguageSupport, ILanguageSupportinitialState, type IOption, type IPTSLink, type IQuestion, type IQuestionExtraAttribute, type IStepObject, type IStepQuestionData, type ITextBlock, InfoOnly as InfoOnlyStandard, isDependsOnOtherQuestionTrue as IsDependsOnOtherQuestionTrue, Modal as ModalStandard, MultipleCheckboxes as MultipleCheckboxesStandard, PrincipleOfPublicity as PrincipleOfPublicityStandard, questionHasValidationError as QuestionHasValidationError, QuestioninitialState, InputRadio as RadioMultipleStandard, RenderQuestion, RenderQuestionGroup, ServiceHeadlineAndBody as ServiceHeadlineAndBodyStandard, SkipLink as SkipLinkStandard, StepperButtons as StepperButtonsStandard, Stepper as StepperStandard, InputTextarea as TextAreaStandard, TextFieldStandard, TextHeadlineAndBody as TextHeadlineAndBodyStandard, validationCheckAllVisibleQuestions as ValidationCheckAllVisibleQuestion };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
+
|
|
4
|
+
interface IApplicationContent {
|
|
5
|
+
mainHeadline?: string;
|
|
6
|
+
ingressBody?: string;
|
|
7
|
+
linksForMoreInfo?: Array<IPTSLink>;
|
|
8
|
+
pageTitle?: string;
|
|
9
|
+
textblocks?: Array<ITextBlock>;
|
|
10
|
+
languageSupport: [
|
|
11
|
+
{
|
|
12
|
+
language: string;
|
|
13
|
+
mainHeadline: string;
|
|
14
|
+
ingressBody: string;
|
|
15
|
+
linksForMoreInfo: Array<IPTSLink>;
|
|
16
|
+
pageTitle: string;
|
|
17
|
+
textblocks: Array<ITextBlock>;
|
|
18
|
+
}
|
|
19
|
+
];
|
|
20
|
+
}
|
|
21
|
+
interface IFormState {
|
|
22
|
+
applicationContent: IApplicationContent;
|
|
23
|
+
steps: Array<IStepObject>;
|
|
24
|
+
questions: Array<IQuestion>;
|
|
25
|
+
questionsLoaded: boolean;
|
|
26
|
+
status: 'notloaded' | 'idle' | 'loading' | 'failed' | 'success';
|
|
27
|
+
}
|
|
28
|
+
interface IOption {
|
|
29
|
+
label: string;
|
|
30
|
+
value: string;
|
|
31
|
+
}
|
|
32
|
+
interface IPTSLink {
|
|
33
|
+
title: string;
|
|
34
|
+
url: string;
|
|
35
|
+
ariaLabel: string;
|
|
36
|
+
}
|
|
37
|
+
interface IStepObject {
|
|
38
|
+
step: number;
|
|
39
|
+
stepHeadline?: string;
|
|
40
|
+
stepDescription?: string;
|
|
41
|
+
shortNameInStepper: string;
|
|
42
|
+
shortNameInPreview?: string;
|
|
43
|
+
languageSupport?: Array<any>;
|
|
44
|
+
}
|
|
45
|
+
interface ITextBlock {
|
|
46
|
+
id?: string;
|
|
47
|
+
headline?: string;
|
|
48
|
+
body?: string;
|
|
49
|
+
linksForMoreInfo?: Array<IPTSLink>;
|
|
50
|
+
}
|
|
51
|
+
interface IQuestion {
|
|
52
|
+
id?: number;
|
|
53
|
+
mappingId?: string;
|
|
54
|
+
step?: number;
|
|
55
|
+
categoryLabel?: string;
|
|
56
|
+
categoryDescription?: string;
|
|
57
|
+
hideCategory?: boolean;
|
|
58
|
+
questionLabel?: string;
|
|
59
|
+
previewLabel?: string;
|
|
60
|
+
hideQuestion?: boolean;
|
|
61
|
+
answer?: string;
|
|
62
|
+
files?: Array<File>;
|
|
63
|
+
aboutText?: string;
|
|
64
|
+
isQuestionMandatory?: boolean;
|
|
65
|
+
questionType?: string;
|
|
66
|
+
options?: Array<IOption>;
|
|
67
|
+
visible?: boolean;
|
|
68
|
+
isDisplayed?: boolean;
|
|
69
|
+
hasValidationError?: boolean;
|
|
70
|
+
validationType?: Array<string>;
|
|
71
|
+
validationDefaultMessesege?: string;
|
|
72
|
+
questionGroupId?: number;
|
|
73
|
+
questionGroupType?: string;
|
|
74
|
+
dependsOnOtherQuestion?: Array<any>;
|
|
75
|
+
questionExtraAttribute?: IQuestionExtraAttribute;
|
|
76
|
+
languageSupport: Array<any>;
|
|
77
|
+
}
|
|
78
|
+
interface IQuestionExtraAttribute {
|
|
79
|
+
answerMaxLength?: number;
|
|
80
|
+
disabled?: boolean;
|
|
81
|
+
autoComplete?: boolean;
|
|
82
|
+
inputType?: string;
|
|
83
|
+
showTextAreaCounter?: boolean;
|
|
84
|
+
hideValidationMessage?: boolean;
|
|
85
|
+
}
|
|
86
|
+
interface IStepQuestionData {
|
|
87
|
+
step: number;
|
|
88
|
+
stepHeadline?: string;
|
|
89
|
+
stepDescription?: string;
|
|
90
|
+
categories?: {
|
|
91
|
+
visible?: boolean;
|
|
92
|
+
isDisplayed?: boolean;
|
|
93
|
+
category: string;
|
|
94
|
+
questionGroups: {
|
|
95
|
+
questionGroupId: string;
|
|
96
|
+
questionGroupType: string;
|
|
97
|
+
questions: IQuestion[];
|
|
98
|
+
}[];
|
|
99
|
+
}[];
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
interface RadioProps {
|
|
103
|
+
question: IQuestion;
|
|
104
|
+
isTouched: any;
|
|
105
|
+
showPreview?: boolean;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
declare const InputRadio: FC<RadioProps>;
|
|
109
|
+
|
|
110
|
+
interface MultipleCheckboxesProps {
|
|
111
|
+
question: IQuestion;
|
|
112
|
+
isTouched: any;
|
|
113
|
+
showPreview?: boolean;
|
|
114
|
+
activatedLanguage?: string;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
declare const MultipleCheckboxes: FC<MultipleCheckboxesProps>;
|
|
118
|
+
|
|
119
|
+
interface TextAreaProps {
|
|
120
|
+
question: IQuestion;
|
|
121
|
+
isTouched: any;
|
|
122
|
+
showPreview?: boolean;
|
|
123
|
+
activatedLanguage?: string;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
declare const InputTextarea: FC<TextAreaProps>;
|
|
127
|
+
|
|
128
|
+
interface TextFieldStandardProps {
|
|
129
|
+
question: IQuestion;
|
|
130
|
+
isTouched: any;
|
|
131
|
+
showPreview?: boolean;
|
|
132
|
+
activatedLanguage?: string;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
declare const TextFieldStandard: FC<TextFieldStandardProps>;
|
|
136
|
+
|
|
137
|
+
declare const questionHasValidationError: (questionObject: any, arrayOfQuestionObjects: any[]) => boolean;
|
|
138
|
+
|
|
139
|
+
interface TranslatedAnswers {
|
|
140
|
+
[questionId: string]: {
|
|
141
|
+
[originalAnswer: string]: string;
|
|
142
|
+
};
|
|
143
|
+
}
|
|
144
|
+
interface ApiDataObject {
|
|
145
|
+
[key: string]: string | number | boolean | File[];
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
declare function CreateApiDataObject(data: any[], specialMappedQuestions: Set<string>, translatedAnswers: TranslatedAnswers): ApiDataObject;
|
|
149
|
+
|
|
150
|
+
declare function groupQuestionByStepPreviewPage(steps: IStepObject[], questions: IQuestion[]): any[];
|
|
151
|
+
|
|
152
|
+
declare const isDependsOnOtherQuestionTrue: (data: any[], question: any) => boolean;
|
|
153
|
+
|
|
154
|
+
interface ILanguageSupport {
|
|
155
|
+
languageSupport?: Array<ILanguage>;
|
|
156
|
+
activatedLanguage: string;
|
|
157
|
+
forwardButton?: string;
|
|
158
|
+
backButton?: string;
|
|
159
|
+
sendButton?: string;
|
|
160
|
+
languageSupportLoaded: boolean;
|
|
161
|
+
}
|
|
162
|
+
interface ILanguage {
|
|
163
|
+
language: string;
|
|
164
|
+
forwardButton: string;
|
|
165
|
+
backButton: string;
|
|
166
|
+
sendButton: string;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
declare const QuestioninitialState: IFormState;
|
|
170
|
+
declare const ILanguageSupportinitialState: ILanguageSupport;
|
|
171
|
+
|
|
172
|
+
declare const doCategoriesAndQuestionsVisible: (questions: IQuestion[], validationErrorsList: number[]) => any[];
|
|
173
|
+
|
|
174
|
+
declare function validationCheckAllVisibleQuestions(data: any, formQuestion: any): number[];
|
|
175
|
+
|
|
176
|
+
declare function groupQuestionsByStepCategoryGroup(questions: IQuestion[], steps: IStepObject[], validationErrorsList: number[]): any[];
|
|
177
|
+
|
|
178
|
+
declare const RenderQuestion: ({ question, isTouched, activatedLanguage, showPreview, hideValidationMessage, }: any) => react_jsx_runtime.JSX.Element;
|
|
179
|
+
|
|
180
|
+
declare const RenderQuestionGroup: ({ questionArray, wrapper, legend, isTouched, activatedLanguage, showPreview, AddQuestionDisplayed, hideValidationMessage, }: any) => react_jsx_runtime.JSX.Element;
|
|
181
|
+
|
|
182
|
+
interface EditPreviewLinkProps {
|
|
183
|
+
row: any;
|
|
184
|
+
arraySteps: any;
|
|
185
|
+
changeStepHandler: any;
|
|
186
|
+
activatedLanguage?: string;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
declare const EditPreviewLink: FC<EditPreviewLinkProps>;
|
|
190
|
+
|
|
191
|
+
interface FooterProps {
|
|
192
|
+
activatedLanguage?: string;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
declare const Footer: FC<FooterProps>;
|
|
196
|
+
|
|
197
|
+
interface HeaderProps {
|
|
198
|
+
activatedLanguage?: string;
|
|
199
|
+
useLanguage?: boolean;
|
|
200
|
+
SetActivatedLanguage?: (language: string) => void;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
declare const Header: FC<HeaderProps>;
|
|
204
|
+
|
|
205
|
+
interface InfoOnlyProps {
|
|
206
|
+
questionObject: IQuestion;
|
|
207
|
+
isTouched: any;
|
|
208
|
+
visible?: boolean;
|
|
209
|
+
showErrors?: boolean;
|
|
210
|
+
showPreview?: boolean;
|
|
211
|
+
showConfigure?: boolean;
|
|
212
|
+
tabIndex?: number;
|
|
213
|
+
activatedLanguage?: string;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
declare const InfoOnly: FC<InfoOnlyProps>;
|
|
217
|
+
|
|
218
|
+
interface ModalProps {
|
|
219
|
+
showModal: boolean;
|
|
220
|
+
activatedLanguage?: string;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
declare const Modal: FC<ModalProps>;
|
|
224
|
+
|
|
225
|
+
interface PrincipleOfPublicityProps {
|
|
226
|
+
activatedLanguage?: string;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
declare const PrincipleOfPublicity: FC<PrincipleOfPublicityProps>;
|
|
230
|
+
|
|
231
|
+
interface ServiceHeadlineAndBodyProps {
|
|
232
|
+
data: IApplicationContent;
|
|
233
|
+
activeStep?: number;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
declare const ServiceHeadlineAndBody: FC<ServiceHeadlineAndBodyProps>;
|
|
237
|
+
|
|
238
|
+
declare const SkipLink: FC;
|
|
239
|
+
|
|
240
|
+
interface StepperButtonsProps {
|
|
241
|
+
languageSupported?: any;
|
|
242
|
+
handleActiveStep: (activeStep: number) => void;
|
|
243
|
+
forwardButtonHandler?: (e: any) => void;
|
|
244
|
+
submitButtonHandler?: (e: any) => void;
|
|
245
|
+
arraySteps?: any[];
|
|
246
|
+
activeStep: number;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
declare const StepperButtons: FC<StepperButtonsProps>;
|
|
250
|
+
|
|
251
|
+
interface StepperProps {
|
|
252
|
+
arraySteps?: Array<IStepObject>;
|
|
253
|
+
activeStep?: number;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
declare const Stepper: FC<StepperProps>;
|
|
257
|
+
|
|
258
|
+
interface TextHeadlineAndBodyProps {
|
|
259
|
+
data: ITextBlock;
|
|
260
|
+
headlineType?: 'h1' | 'h2';
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
declare const TextHeadlineAndBody: FC<TextHeadlineAndBodyProps>;
|
|
264
|
+
|
|
265
|
+
export { CreateApiDataObject, doCategoriesAndQuestionsVisible as DoCategoriesAndQuestionsVisible, EditPreviewLink as EditPreviewLinkStandard, Footer as FooterStandard, groupQuestionByStepPreviewPage as GroupQuestionByStepPreviewPage, groupQuestionsByStepCategoryGroup as GroupQuestionsByStepCategoryGroup, Header as HeaderStandard, type IApplicationContent, type IFormState, type ILanguage, type ILanguageSupport, ILanguageSupportinitialState, type IOption, type IPTSLink, type IQuestion, type IQuestionExtraAttribute, type IStepObject, type IStepQuestionData, type ITextBlock, InfoOnly as InfoOnlyStandard, isDependsOnOtherQuestionTrue as IsDependsOnOtherQuestionTrue, Modal as ModalStandard, MultipleCheckboxes as MultipleCheckboxesStandard, PrincipleOfPublicity as PrincipleOfPublicityStandard, questionHasValidationError as QuestionHasValidationError, QuestioninitialState, InputRadio as RadioMultipleStandard, RenderQuestion, RenderQuestionGroup, ServiceHeadlineAndBody as ServiceHeadlineAndBodyStandard, SkipLink as SkipLinkStandard, StepperButtons as StepperButtonsStandard, Stepper as StepperStandard, InputTextarea as TextAreaStandard, TextFieldStandard, TextHeadlineAndBody as TextHeadlineAndBodyStandard, validationCheckAllVisibleQuestions as ValidationCheckAllVisibleQuestion };
|