@clxmedia/types 1.0.181 → 1.0.183
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.
|
@@ -216,6 +216,7 @@ export type CLXGridFormField = CLXFormField & {
|
|
|
216
216
|
type: "grid";
|
|
217
217
|
response_type: "GRID";
|
|
218
218
|
columns: CLXGridColumn[];
|
|
219
|
+
max_rows?: number;
|
|
219
220
|
};
|
|
220
221
|
export type CLXContactFormFieldBase = CLXFormField & {
|
|
221
222
|
type: "contact";
|
|
@@ -307,7 +308,7 @@ export type CLXSingleCompoundFormField = CLXFormField & {
|
|
|
307
308
|
export type CLXFormQuestionResponseOptions = {
|
|
308
309
|
field: CLXTextFormField | CLXNumberFormField | CLXDateFormField | CLXScheduleFormField | CLXCredentialFormField | CLXGridFormField | CLXContactFormField | CLXMultipleContactFormField | CLXSingleCompoundFormField | CLXFileFormField | CLXCompoundFormField | CLXTextAreaFormField | CLXBooleanFormField | CLXSelectFormField | CLXMultiSelectFormField | CLXMultipleTextFormField;
|
|
309
310
|
has_parent?: boolean;
|
|
310
|
-
|
|
311
|
+
locked?: boolean;
|
|
311
312
|
tags?: string[];
|
|
312
313
|
};
|
|
313
314
|
export type CLXFormQuestion = {
|