@clxmedia/types 1.0.180 → 1.0.181
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.
|
@@ -95,10 +95,7 @@ export type CLXGridColumn = {
|
|
|
95
95
|
export type CLXGridRow = {
|
|
96
96
|
[x: string]: string | number | boolean;
|
|
97
97
|
};
|
|
98
|
-
export type CLXGridData =
|
|
99
|
-
columns: CLXGridColumn[];
|
|
100
|
-
rows: CLXGridRow[];
|
|
101
|
-
};
|
|
98
|
+
export type CLXGridData = CLXGridRow[];
|
|
102
99
|
export type CLXFormResponseStringValue = CLXFormResponseValueBase & {
|
|
103
100
|
type: "STRING";
|
|
104
101
|
value: string;
|
|
@@ -218,6 +215,7 @@ export type CLXCredentialFormField = CLXFormField & {
|
|
|
218
215
|
export type CLXGridFormField = CLXFormField & {
|
|
219
216
|
type: "grid";
|
|
220
217
|
response_type: "GRID";
|
|
218
|
+
columns: CLXGridColumn[];
|
|
221
219
|
};
|
|
222
220
|
export type CLXContactFormFieldBase = CLXFormField & {
|
|
223
221
|
type: "contact";
|