app-v3-scripts-editor 1.7.1 → 1.7.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.
- package/dist/app-v3-scripts-editor.css +1 -1
- package/dist/app-v3-scripts-editor.es.js +5075 -5023
- package/dist/app-v3-scripts-editor.umd.js +76 -76
- package/dist/src/lib/components/Blocks/Listen/index.css.d.ts +4 -0
- package/dist/src/lib/components/Blocks/Listen/settings/AddConditionButton.d.ts +2 -0
- package/dist/src/lib/components/Shared/ButtonEdge/index.d.ts +1 -1
- package/dist/src/lib/provider/settings-modal-provider/components/SettingsModal/index.d.ts +1 -0
- package/dist/src/lib/styles/colors.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export declare const wrapper: string;
|
|
1
2
|
export declare const listenCard: string;
|
|
2
3
|
export declare const listenCardBorder: {
|
|
3
4
|
default: string;
|
|
@@ -10,3 +11,6 @@ export declare const listenTitle: string;
|
|
|
10
11
|
export declare const listenContent: string;
|
|
11
12
|
export declare const listenText: string;
|
|
12
13
|
export declare const intentItem: string;
|
|
14
|
+
export declare const modalRenderBase: string;
|
|
15
|
+
export declare const ModalRenderListenCondition: string;
|
|
16
|
+
export declare const ModalNodeRenderListenCondition: string;
|
|
@@ -2,6 +2,8 @@ import { default as React, PropsWithChildren } from 'react';
|
|
|
2
2
|
type AddConditionButtonProps = {
|
|
3
3
|
nodeId?: string;
|
|
4
4
|
isOuter?: boolean;
|
|
5
|
+
containerRenderID?: string;
|
|
6
|
+
onToggleModal?: (isOpen: boolean) => void;
|
|
5
7
|
};
|
|
6
8
|
declare const AddConditionButton: React.FC<PropsWithChildren<AddConditionButtonProps>>;
|
|
7
9
|
export default AddConditionButton;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { EdgeProps } from '@xyflow/react';
|
|
2
|
-
declare const ButtonEdge: ({ id, sourceX, sourceY, targetX, targetY, sourcePosition, targetPosition, style,
|
|
2
|
+
declare const ButtonEdge: ({ id, sourceX, sourceY, targetX, targetY, sourcePosition, targetPosition, style, target, markerEnd, }: EdgeProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default ButtonEdge;
|