@parra/parra-js-sdk 0.3.280 → 0.3.281
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/ParraAPI.d.ts +8 -8
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -628,12 +628,12 @@ export declare enum FeedbackFormFieldType {
|
|
|
628
628
|
select = "select"
|
|
629
629
|
}
|
|
630
630
|
export interface FeedbackFormTextFieldData {
|
|
631
|
-
placeholder?: string;
|
|
632
|
-
lines?: number;
|
|
633
|
-
max_lines?: number;
|
|
634
|
-
min_characters?: number;
|
|
635
|
-
max_characters?: number;
|
|
636
|
-
max_height?: number;
|
|
631
|
+
placeholder?: string | null;
|
|
632
|
+
lines?: number | null;
|
|
633
|
+
max_lines?: number | null;
|
|
634
|
+
min_characters?: number | null;
|
|
635
|
+
max_characters?: number | null;
|
|
636
|
+
max_height?: number | null;
|
|
637
637
|
}
|
|
638
638
|
export interface FeedbackFormSelectFieldOption {
|
|
639
639
|
title: string;
|
|
@@ -641,11 +641,11 @@ export interface FeedbackFormSelectFieldOption {
|
|
|
641
641
|
is_other?: boolean;
|
|
642
642
|
}
|
|
643
643
|
export interface FeedbackFormSelectFieldData {
|
|
644
|
-
placeholder?: string;
|
|
644
|
+
placeholder?: string | null;
|
|
645
645
|
options: Array<FeedbackFormSelectFieldOption>;
|
|
646
646
|
}
|
|
647
647
|
export interface FeedbackFormInputFieldData {
|
|
648
|
-
placeholder?: string;
|
|
648
|
+
placeholder?: string | null;
|
|
649
649
|
}
|
|
650
650
|
export type FeedbackFormFieldData = FeedbackFormTextFieldData | FeedbackFormSelectFieldData | FeedbackFormInputFieldData;
|
|
651
651
|
export interface FeedbackFormField {
|