@botonic/plugin-flow-builder 0.23.0 → 0.23.1-alpha.0
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ActionRequest } from '@botonic/react';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { FlowContent } from '../content-fields';
|
|
4
|
-
type FlowBuilderActionProps = {
|
|
4
|
+
export type FlowBuilderActionProps = {
|
|
5
5
|
contents: FlowContent[];
|
|
6
6
|
};
|
|
7
7
|
export declare class FlowBuilderAction extends React.Component<FlowBuilderActionProps> {
|
|
@@ -20,4 +20,3 @@ export declare class FlowBuilderAction extends React.Component<FlowBuilderAction
|
|
|
20
20
|
export declare class FlowBuilderMultichannelAction extends FlowBuilderAction {
|
|
21
21
|
render(): JSX.Element | JSX.Element[];
|
|
22
22
|
}
|
|
23
|
-
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ActionRequest } from '@botonic/react';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { FlowContent } from '../content-fields';
|
|
4
|
-
type FlowBuilderActionProps = {
|
|
4
|
+
export type FlowBuilderActionProps = {
|
|
5
5
|
contents: FlowContent[];
|
|
6
6
|
};
|
|
7
7
|
export declare class FlowBuilderAction extends React.Component<FlowBuilderActionProps> {
|
|
@@ -20,4 +20,3 @@ export declare class FlowBuilderAction extends React.Component<FlowBuilderAction
|
|
|
20
20
|
export declare class FlowBuilderMultichannelAction extends FlowBuilderAction {
|
|
21
21
|
render(): JSX.Element | JSX.Element[];
|
|
22
22
|
}
|
|
23
|
-
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@botonic/plugin-flow-builder",
|
|
3
|
-
"version": "0.23.0",
|
|
3
|
+
"version": "0.23.1-alpha.0",
|
|
4
4
|
"main": "./lib/cjs/index.js",
|
|
5
5
|
"module": "./lib/esm/index.js",
|
|
6
6
|
"description": "Use Flow Builder to show your contents",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@babel/runtime": "^7.21.0",
|
|
50
|
-
"@botonic/react": "^0.23.0",
|
|
50
|
+
"@botonic/react": "^0.23.1-alpha.0",
|
|
51
51
|
"axios": "^1.3.6"
|
|
52
52
|
}
|
|
53
53
|
}
|
package/src/action/index.tsx
CHANGED
|
@@ -9,7 +9,7 @@ import { getFlowBuilderPlugin } from '../helpers'
|
|
|
9
9
|
import { EventName, trackEvent } from './tracking'
|
|
10
10
|
import { getNodeByUserInput } from './user-input'
|
|
11
11
|
|
|
12
|
-
type FlowBuilderActionProps = {
|
|
12
|
+
export type FlowBuilderActionProps = {
|
|
13
13
|
contents: FlowContent[]
|
|
14
14
|
}
|
|
15
15
|
|