@clxmedia/types 1.0.41 → 1.0.43
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.
|
@@ -250,12 +250,12 @@ export type CLXSingleCompoundFormField = CLXFormField & {
|
|
|
250
250
|
export type CLXFormQuestionResponseOptions = {
|
|
251
251
|
field: CLXTextFormField | CLXNumberFormField | CLXDateFormField | CLXScheduleFormField | CLXContactFormField | CLXMultipleContactFormField | CLXSingleCompoundFormField | CLXFileFormField | CLXCompoundFormField | CLXTextAreaFormField | CLXBooleanFormField | CLXSelectFormField | CLXMultiSelectFormField | CLXMultipleTextFormField;
|
|
252
252
|
has_parent?: boolean;
|
|
253
|
+
tags?: string[];
|
|
253
254
|
};
|
|
254
255
|
export type CLXFormQuestion = {
|
|
255
256
|
slug: string;
|
|
256
257
|
question_text: string;
|
|
257
258
|
help_text?: string;
|
|
258
|
-
tags: string[];
|
|
259
259
|
response_options: CLXFormQuestionResponseOptions;
|
|
260
260
|
};
|
|
261
261
|
export type CLXFormQuestions = {
|