@wise/dynamic-flow-types 3.8.0 → 3.9.0-experimental-1c8f72d
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/build/main.js +451 -446
- package/build/main.mjs +451 -446
- package/build/next/feature/Behavior.d.ts +2 -1
- package/build/next/feature/CopyBehavior.d.ts +13 -0
- package/build/next/index.d.ts +1 -0
- package/build/zod/schemas.d.ts +1402 -1392
- package/build/zod/schemas.ts +564 -558
- package/package.json +4 -4
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { ActionBehavior } from './ActionBehavior';
|
|
2
2
|
import type { ContainerBehavior } from './ContainerBehavior';
|
|
3
|
+
import type { CopyBehavior } from './CopyBehavior';
|
|
3
4
|
import type { DismissBehavior } from './DismissBehavior';
|
|
4
5
|
import type { LinkBehavior } from './LinkBehavior';
|
|
5
6
|
import type { ModalBehavior } from './ModalBehavior';
|
|
@@ -7,4 +8,4 @@ import type { RefreshBehavior } from './RefreshBehavior';
|
|
|
7
8
|
/**
|
|
8
9
|
* Describes the result of performing some interaction.
|
|
9
10
|
*/
|
|
10
|
-
export type Behavior = ActionBehavior | ContainerBehavior | DismissBehavior | LinkBehavior | ModalBehavior | RefreshBehavior;
|
|
11
|
+
export type Behavior = ActionBehavior | ContainerBehavior | CopyBehavior | DismissBehavior | LinkBehavior | ModalBehavior | RefreshBehavior;
|
package/build/next/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export type { Polling } from './feature/Polling';
|
|
|
7
7
|
export type { PollingOnError } from './feature/PollingOnError';
|
|
8
8
|
export type { ValidateAsync } from './feature/ValidateAsync';
|
|
9
9
|
export type { ActionBehavior } from './feature/ActionBehavior';
|
|
10
|
+
export type { CopyBehavior } from './feature/CopyBehavior';
|
|
10
11
|
export type { Behavior } from './feature/Behavior';
|
|
11
12
|
export type { DismissBehavior } from './feature/DismissBehavior';
|
|
12
13
|
export type { LinkBehavior } from './feature/LinkBehavior';
|