@coveo/platform-client 40.9.0 → 40.9.2
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.
|
@@ -34,8 +34,8 @@ export interface HostedPage {
|
|
|
34
34
|
*/
|
|
35
35
|
css?: HostedPageCssFile[];
|
|
36
36
|
}
|
|
37
|
-
export type HostedPageCssFile =
|
|
38
|
-
export interface
|
|
37
|
+
export type HostedPageCssFile = HostedPageCssFileInline | HostedPageCssFileUrl;
|
|
38
|
+
export interface HostedPageCssFileInline {
|
|
39
39
|
/**
|
|
40
40
|
* The content of the header `style` tag. If this property is defined, the `url` property should not be specified.
|
|
41
41
|
*/
|
|
@@ -324,4 +324,10 @@ export interface IPXButtonModel {
|
|
|
324
324
|
*/
|
|
325
325
|
verticalPosition: ButtonPositionVerticalResponseModel;
|
|
326
326
|
};
|
|
327
|
+
/**
|
|
328
|
+
* The button host's CSS selector, which defines where the button is rendered.
|
|
329
|
+
* If unset, it defaults to "" and renders a floating button in the `<body>`.
|
|
330
|
+
* @default `""`
|
|
331
|
+
*/
|
|
332
|
+
buttonTargetSelector: string;
|
|
327
333
|
}
|