@sapia-ai/chatbot 2.32.0-beta.2249 → 2.32.0-beta.2254
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/CHANGELOG.md +2 -1
- package/components/FTQResponse/view.d.ts +2 -1
- package/components/PlacesAutoComplete/types.d.ts +1 -1
- package/package.json +1 -1
- package/predictivehire.js +6487 -6480
- package/predictivehire.umd.js +230 -230
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
# [2.32.0-beta.
|
|
1
|
+
# [2.32.0-beta.2254](https://github.com/PredictiveHire/phapp-fi-widget/compare/v2.32.0...v2.32.0-beta.2254) (2026-02-18)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Features
|
|
5
5
|
|
|
6
|
+
* **common:** [ED-1316] add manual fallback for location autocomplete ([781ab23](https://github.com/PredictiveHire/phapp-fi-widget/commit/781ab233572dc04226126150b528f069285b6019))
|
|
6
7
|
* handle vimeo video config with whitelist domain ([92f07d2](https://github.com/PredictiveHire/phapp-fi-widget/commit/92f07d238865961129b11fb587d721f0e27da8a3))
|
|
7
8
|
* upgrade react-player to v3 to resolve some video issue ([392c3a5](https://github.com/PredictiveHire/phapp-fi-widget/commit/392c3a55b96507abac15224bcdad18ca017a05e4))
|
|
8
9
|
* **videoPlayer:** [TG-20968] fix Vimeo player with whitelisting config ([6767f1d](https://github.com/PredictiveHire/phapp-fi-widget/commit/6767f1df653ea0e067d64f0da8cb5888ada469df))
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { SendResponse, WordCountRule } from "@/components/PHEditor/types";
|
|
2
2
|
import { SendCircleButtonProps } from "@/components/SendCircleButton";
|
|
3
|
-
export declare const FTQResponse: ({ sendCircleButtonProps, onSend, onChange, wordCountRule, hideClickableBar, isSendButtonShown }: {
|
|
3
|
+
export declare const FTQResponse: ({ sendCircleButtonProps, onSend, onChange, wordCountRule, hideClickableBar, isSendButtonShown, initialValue }: {
|
|
4
4
|
wordCountRule: WordCountRule;
|
|
5
5
|
sendCircleButtonProps: SendCircleButtonProps;
|
|
6
6
|
onSend?: (text: string) => Promise<SendResponse>;
|
|
7
7
|
onChange?: (text: string) => void;
|
|
8
8
|
isSendButtonShown?: boolean;
|
|
9
9
|
hideClickableBar?: boolean;
|
|
10
|
+
initialValue?: string;
|
|
10
11
|
}) => import("react/jsx-runtime").JSX.Element;
|