@factorialco/f0-react 1.427.3 → 1.428.0
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/f0.d.ts +4 -0
- package/dist/f0.js +2208 -2192
- package/package.json +1 -1
package/dist/f0.d.ts
CHANGED
|
@@ -3592,6 +3592,8 @@ declare type DropdownSingleQuestionProps = BaseQuestionPropsForOtherQuestionComp
|
|
|
3592
3592
|
type: "dropdown-single";
|
|
3593
3593
|
options: SelectQuestionOption[];
|
|
3594
3594
|
value?: string | null;
|
|
3595
|
+
showSearchBox?: boolean;
|
|
3596
|
+
searchBoxPlaceholder?: string;
|
|
3595
3597
|
};
|
|
3596
3598
|
|
|
3597
3599
|
export declare type DropIntent = {
|
|
@@ -8352,6 +8354,8 @@ declare type OnChangeQuestionParams = BaseQuestionOnChangeParams & ({
|
|
|
8352
8354
|
type: "dropdown-single";
|
|
8353
8355
|
value?: string | null;
|
|
8354
8356
|
options?: SelectQuestionOption[];
|
|
8357
|
+
showSearchBox?: boolean;
|
|
8358
|
+
searchBoxPlaceholder?: string;
|
|
8355
8359
|
} | {
|
|
8356
8360
|
type: "numeric";
|
|
8357
8361
|
value?: number | null;
|