optimized-react-component-library-xyz123 0.1.44 → 0.1.46
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.d.mts +1 -42
- package/dist/index.d.ts +1 -42
- package/dist/index.js +429 -301
- package/dist/index.mjs +415 -287
- package/package.json +1 -1
- package/src/css/styles.css +650 -0
package/dist/index.d.mts
CHANGED
|
@@ -163,49 +163,8 @@ interface FilesUploadStandardProps {
|
|
|
163
163
|
|
|
164
164
|
declare const FilesUpload: React.FC<FilesUploadStandardProps>;
|
|
165
165
|
|
|
166
|
-
interface IQuestionObjectStandard {
|
|
167
|
-
Id?: number;
|
|
168
|
-
Order?: number;
|
|
169
|
-
Step?: number;
|
|
170
|
-
Category?: string;
|
|
171
|
-
CategoryOrder?: number;
|
|
172
|
-
CategoryDescription?: string;
|
|
173
|
-
CategoryMandatory?: boolean;
|
|
174
|
-
QuestionPreviewLabel?: string;
|
|
175
|
-
GroupId?: number;
|
|
176
|
-
Question?: string;
|
|
177
|
-
Answer?: string;
|
|
178
|
-
PlaceholderText?: string;
|
|
179
|
-
About?: string;
|
|
180
|
-
Mandatory?: boolean;
|
|
181
|
-
Dependent?: boolean;
|
|
182
|
-
DependentOnOrder?: number;
|
|
183
|
-
QuestionType?: string;
|
|
184
|
-
InputName?: string;
|
|
185
|
-
Options?: Array<any>;
|
|
186
|
-
isTouched?: boolean;
|
|
187
|
-
error?: boolean;
|
|
188
|
-
errorType?: Array<string>;
|
|
189
|
-
errorSpecificMessage?: string;
|
|
190
|
-
Files?: Array<any>;
|
|
191
|
-
MoreFields?: Array<string>;
|
|
192
|
-
questionArray?: Array<any>;
|
|
193
|
-
answerColumnArray?: Array<any>;
|
|
194
|
-
languageSupport?: Array<{}>;
|
|
195
|
-
Width?: string;
|
|
196
|
-
InputSize?: string;
|
|
197
|
-
CheckboxOrder?: number;
|
|
198
|
-
Details?: string;
|
|
199
|
-
Info?: string;
|
|
200
|
-
MaxLength?: number;
|
|
201
|
-
HideQuestion?: boolean;
|
|
202
|
-
inputType?: string;
|
|
203
|
-
autoComplete?: string;
|
|
204
|
-
HideMaxLength?: boolean;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
166
|
interface AddFilesProps {
|
|
208
|
-
questionObject:
|
|
167
|
+
questionObject: IQuestion;
|
|
209
168
|
isTouched: any;
|
|
210
169
|
visible?: boolean;
|
|
211
170
|
showPreview?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -163,49 +163,8 @@ interface FilesUploadStandardProps {
|
|
|
163
163
|
|
|
164
164
|
declare const FilesUpload: React.FC<FilesUploadStandardProps>;
|
|
165
165
|
|
|
166
|
-
interface IQuestionObjectStandard {
|
|
167
|
-
Id?: number;
|
|
168
|
-
Order?: number;
|
|
169
|
-
Step?: number;
|
|
170
|
-
Category?: string;
|
|
171
|
-
CategoryOrder?: number;
|
|
172
|
-
CategoryDescription?: string;
|
|
173
|
-
CategoryMandatory?: boolean;
|
|
174
|
-
QuestionPreviewLabel?: string;
|
|
175
|
-
GroupId?: number;
|
|
176
|
-
Question?: string;
|
|
177
|
-
Answer?: string;
|
|
178
|
-
PlaceholderText?: string;
|
|
179
|
-
About?: string;
|
|
180
|
-
Mandatory?: boolean;
|
|
181
|
-
Dependent?: boolean;
|
|
182
|
-
DependentOnOrder?: number;
|
|
183
|
-
QuestionType?: string;
|
|
184
|
-
InputName?: string;
|
|
185
|
-
Options?: Array<any>;
|
|
186
|
-
isTouched?: boolean;
|
|
187
|
-
error?: boolean;
|
|
188
|
-
errorType?: Array<string>;
|
|
189
|
-
errorSpecificMessage?: string;
|
|
190
|
-
Files?: Array<any>;
|
|
191
|
-
MoreFields?: Array<string>;
|
|
192
|
-
questionArray?: Array<any>;
|
|
193
|
-
answerColumnArray?: Array<any>;
|
|
194
|
-
languageSupport?: Array<{}>;
|
|
195
|
-
Width?: string;
|
|
196
|
-
InputSize?: string;
|
|
197
|
-
CheckboxOrder?: number;
|
|
198
|
-
Details?: string;
|
|
199
|
-
Info?: string;
|
|
200
|
-
MaxLength?: number;
|
|
201
|
-
HideQuestion?: boolean;
|
|
202
|
-
inputType?: string;
|
|
203
|
-
autoComplete?: string;
|
|
204
|
-
HideMaxLength?: boolean;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
166
|
interface AddFilesProps {
|
|
208
|
-
questionObject:
|
|
167
|
+
questionObject: IQuestion;
|
|
209
168
|
isTouched: any;
|
|
210
169
|
visible?: boolean;
|
|
211
170
|
showPreview?: boolean;
|