@plaidev/karte-action-sdk 1.1.224 → 1.1.225-28453458.8b5dd950
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/hydrate/index.es.d.ts +4 -4
- package/dist/hydrate/index.es.js +133 -130
- package/dist/index.es.d.ts +4 -4
- package/dist/index.es.js +133 -130
- package/package.json +1 -1
package/dist/index.es.d.ts
CHANGED
@@ -371,7 +371,7 @@ declare function hideOnTime<ModalProps extends Pick<Props, "hide_on_time" | "hid
|
|
371
371
|
* スクロール率が `show_on_scroll_rate` に達したときに `show` 関数を呼び出します。
|
372
372
|
* `hide_on_scroll_releave` が `true` で、かつ `show_on_scroll_rate` 以下の場合は、アクションに対して `hide` 関数が呼び出されます。
|
373
373
|
*
|
374
|
-
* @param props - アクションのプロパティ。プロパティには `show_on_scroll`、`show_on_scroll_rate
|
374
|
+
* @param props - アクションのプロパティ。プロパティには `show_on_scroll`、`show_on_scroll_rate`、'hide_on_scroll_releave' そして `show_on_scroll_reenter` が必要です。
|
375
375
|
* @param show - アクションを表示するロジックが実装された関数。指定ない場合は noop 関数が使用されます。
|
376
376
|
* @param hide - アクションを非表示にするロジックが実装された関数。指定ない場合は noop 関数が使用されます。
|
377
377
|
*
|
@@ -380,7 +380,7 @@ declare function hideOnTime<ModalProps extends Pick<Props, "hide_on_time" | "hid
|
|
380
380
|
*
|
381
381
|
* @internal
|
382
382
|
*/
|
383
|
-
declare function showOnScroll<ModalProps extends Pick<Props, "show_on_scroll" | "show_on_scroll_rate" | "hide_on_scroll_releave">>(props: ModalProps, show?: Function, hide?: Function): (() => void) | null;
|
383
|
+
declare function showOnScroll<ModalProps extends Pick<Props, "show_on_scroll" | "show_on_scroll_rate" | "hide_on_scroll_releave" | "show_on_scroll_reenter">>(props: ModalProps, show?: Function, hide?: Function): (() => void) | null;
|
384
384
|
/**
|
385
385
|
* 時間に応じてアクションを表示するトリガー関数
|
386
386
|
*
|
@@ -1942,7 +1942,7 @@ declare namespace widget {
|
|
1942
1942
|
* スクロール率が `show_on_scroll_rate` に達したときに `show` 関数を呼び出します。
|
1943
1943
|
* `hide_on_scroll_releave` が `true` で、かつ `show_on_scroll_rate` 以下の場合は、アクションに対して `hide` 関数が呼び出されます。
|
1944
1944
|
*
|
1945
|
-
* @param props - アクションのプロパティ。プロパティには `show_on_scroll`、`show_on_scroll_rate
|
1945
|
+
* @param props - アクションのプロパティ。プロパティには `show_on_scroll`、`show_on_scroll_rate`、'hide_on_scroll_releave' そして `show_on_scroll_reenter` が必要です。
|
1946
1946
|
* @param show - アクションを表示するロジックが実装された関数。指定ない場合は noop 関数が使用されます。
|
1947
1947
|
* @param hide - アクションを非表示にするロジックが実装された関数。指定ない場合は noop 関数が使用されます。
|
1948
1948
|
*
|
@@ -1951,7 +1951,7 @@ declare namespace widget {
|
|
1951
1951
|
*
|
1952
1952
|
* @internal
|
1953
1953
|
*/
|
1954
|
-
function showOnScroll<ModalProps extends Pick<Props, "show_on_scroll" | "show_on_scroll_rate" | "hide_on_scroll_releave">>(props: ModalProps, show?: Function, hide?: Function): (() => void) | null;
|
1954
|
+
function showOnScroll<ModalProps extends Pick<Props, "show_on_scroll" | "show_on_scroll_rate" | "hide_on_scroll_releave" | "show_on_scroll_reenter">>(props: ModalProps, show?: Function, hide?: Function): (() => void) | null;
|
1955
1955
|
/**
|
1956
1956
|
* 時間に応じてアクションを表示するトリガー関数
|
1957
1957
|
*
|