@plaidev/karte-action-sdk 1.1.264-29037816.a7f00a03 → 1.1.264-29046374.a006e69f
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 +6 -6
- package/dist/hydrate/index.es.js +1155 -807
- package/dist/index.es.d.ts +6 -6
- package/dist/index.es.js +1125 -810
- package/dist/svelte5/hydrate/index.es.d.ts +2922 -0
- package/dist/svelte5/hydrate/index.es.js +7359 -0
- package/dist/svelte5/index.es.d.ts +2922 -0
- package/dist/svelte5/index.es.js +7608 -0
- package/dist/svelte5/index.front2.es.d.ts +2 -0
- package/dist/svelte5/index.front2.es.js +7895 -0
- package/package.json +42 -15
package/dist/index.es.d.ts
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
import {
|
2
|
-
import { Writable as Writable_ } from "svelte/store";
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
3
2
|
import { onMount as onMountSvelte } from "svelte";
|
4
3
|
import { onDestroy as onDestorySvelte } from "svelte";
|
5
4
|
import { beforeUpdate as beforeUpdateSvelte } from "svelte";
|
6
5
|
import { afterUpdate as afterUpdateSvelte } from "svelte";
|
7
6
|
import { tick as tickSvelte } from "svelte";
|
7
|
+
import { Writable as Writable_ } from "svelte/store";
|
8
8
|
import { Properties } from "csstype";
|
9
9
|
import { Properties as Properties$0 } from "preact/src/jsx-csstype";
|
10
10
|
/** @internal */
|
@@ -413,7 +413,7 @@ type ModalProps = Props;
|
|
413
413
|
*
|
414
414
|
* @public
|
415
415
|
*/
|
416
|
-
declare function create<Props extends ModalProps, Variables, VariablesQuery extends Array<VariableQuery>>(App: typeof
|
416
|
+
declare function create<Props extends ModalProps, Variables, VariablesQuery extends Array<VariableQuery>>(App: typeof SvelteComponentTyped, options?: ActionOptions<Props, Variables & ActionVariables, VariablesQuery>): () => void;
|
417
417
|
/**
|
418
418
|
* アクションの破棄する
|
419
419
|
*
|
@@ -1476,7 +1476,7 @@ declare const ensureModalRoot: typeof ensureActionRoot;
|
|
1476
1476
|
*
|
1477
1477
|
* @internal
|
1478
1478
|
*/
|
1479
|
-
declare function createApp<Props, Variables, VariablesQuery>(App:
|
1479
|
+
declare function createApp<Props, Variables, VariablesQuery>(App: SvelteComponentTyped, options?: AppOptions<Props, VariablesQuery, VariablesQuery>): App;
|
1480
1480
|
/**
|
1481
1481
|
* 非推奨
|
1482
1482
|
*
|
@@ -2051,7 +2051,7 @@ declare namespace widget {
|
|
2051
2051
|
*/
|
2052
2052
|
function getActionRoot(): ShadowRoot | null;
|
2053
2053
|
/** @internal */
|
2054
|
-
function createModal<Props extends ModalProps, Variables, VariablesQuery extends Array<VariableQuery>>(App: typeof
|
2054
|
+
function createModal<Props extends ModalProps, Variables, VariablesQuery extends Array<VariableQuery>>(App: typeof SvelteComponentTyped, options?: ActionOptions<Props, VariablesQuery & ActionVariables, VariablesQuery>): () => void;
|
2055
2055
|
/** @internal */
|
2056
2056
|
function ensureActionRoot(useShadow?: boolean): ShadowRoot | HTMLElement;
|
2057
2057
|
// -------- The following codes are deprecated --------
|
@@ -2127,7 +2127,7 @@ declare namespace widget {
|
|
2127
2127
|
*
|
2128
2128
|
* @internal
|
2129
2129
|
*/
|
2130
|
-
function createApp<Props, Variables, VariablesQuery>(App:
|
2130
|
+
function createApp<Props, Variables, VariablesQuery>(App: SvelteComponentTyped, options?: AppOptions<Props, VariablesQuery, VariablesQuery>): App;
|
2131
2131
|
/**
|
2132
2132
|
* 非推奨
|
2133
2133
|
*
|