@plaidev/karte-action-sdk 1.1.224 → 1.1.225-28564491.a5f35b08
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/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
@@ -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
|
*
|