@inspirer-dev/crm-dashboard 1.0.38 → 1.0.39
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/admin/src/components/StepFlowBuilder/flow-canvas/FlowCanvas.tsx +11 -2
- package/dist/_chunks/{FlowCanvas-tmCIVe_p.mjs → FlowCanvas-Dosn1PWx.mjs} +10 -3
- package/dist/_chunks/{FlowCanvas-BJyDTsca.js → FlowCanvas-O8LZmpU9.js} +9 -2
- package/dist/_chunks/{index-MrBFs8TG.js → index-BAEkCRvB.js} +1 -1
- package/dist/_chunks/{index-BEjwi-jA.mjs → index-Bxnf94Nw.mjs} +1 -1
- package/dist/_chunks/{index-CxuUnGy4.js → index-C-Vbihve.js} +216 -146
- package/dist/_chunks/{index-DFteljYi.mjs → index-CR4G6zrn.mjs} +1 -1
- package/dist/admin/index.js +2 -2
- package/dist/admin/index.mjs +2 -2
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ import ReactFlow, {
|
|
|
5
5
|
MiniMap,
|
|
6
6
|
useNodesState,
|
|
7
7
|
useEdgesState,
|
|
8
|
+
useReactFlow,
|
|
8
9
|
addEdge,
|
|
9
10
|
type Connection,
|
|
10
11
|
type OnNodesChange,
|
|
@@ -44,6 +45,7 @@ const FlowCanvas: React.FC<FlowCanvasProps> = ({ steps, onStepsChange, disabled,
|
|
|
44
45
|
const isInitialMount = useRef(true);
|
|
45
46
|
const syncTimeoutRef = useRef<NodeJS.Timeout | null>(null);
|
|
46
47
|
const lastStepsRef = useRef<string>('');
|
|
48
|
+
const { fitView } = useReactFlow();
|
|
47
49
|
|
|
48
50
|
useEffect(() => {
|
|
49
51
|
const stepsJson = JSON.stringify(steps);
|
|
@@ -60,9 +62,13 @@ const FlowCanvas: React.FC<FlowCanvasProps> = ({ steps, onStepsChange, disabled,
|
|
|
60
62
|
const layoutedNodes = applyAutoLayout(n, e);
|
|
61
63
|
setNodes(layoutedNodes);
|
|
62
64
|
setEdges(e);
|
|
65
|
+
|
|
66
|
+
setTimeout(() => {
|
|
67
|
+
fitView({ padding: 0.2, duration: 200 });
|
|
68
|
+
}, 50);
|
|
63
69
|
}
|
|
64
70
|
isInitialMount.current = false;
|
|
65
|
-
}, [steps, setNodes, setEdges]);
|
|
71
|
+
}, [steps, setNodes, setEdges, fitView]);
|
|
66
72
|
|
|
67
73
|
const syncToParent = useCallback(() => {
|
|
68
74
|
if (isInitialMount.current) return;
|
|
@@ -168,7 +174,10 @@ const FlowCanvas: React.FC<FlowCanvasProps> = ({ steps, onStepsChange, disabled,
|
|
|
168
174
|
const handleAutoLayout = useCallback(() => {
|
|
169
175
|
const layoutedNodes = applyAutoLayout(nodes, edges);
|
|
170
176
|
setNodes(layoutedNodes);
|
|
171
|
-
|
|
177
|
+
setTimeout(() => {
|
|
178
|
+
fitView({ padding: 0.2, duration: 200 });
|
|
179
|
+
}, 50);
|
|
180
|
+
}, [nodes, edges, setNodes, fitView]);
|
|
172
181
|
|
|
173
182
|
const handleNodeUpdate = useCallback(
|
|
174
183
|
(nodeId: string, data: Partial<FlowNodeData>) => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs, Fragment, jsx } from "react/jsx-runtime";
|
|
2
2
|
import { memo, useState, useEffect, useRef, useCallback } from "react";
|
|
3
|
-
import ReactFlow, { Handle, Position, getSmoothStepPath, BaseEdge, EdgeLabelRenderer, useNodesState, useEdgesState, addEdge, Background, Controls, MiniMap } from "reactflow";
|
|
3
|
+
import ReactFlow, { Handle, Position, getSmoothStepPath, BaseEdge, EdgeLabelRenderer, useNodesState, useEdgesState, useReactFlow, addEdge, Background, Controls, MiniMap } from "reactflow";
|
|
4
4
|
import "reactflow/dist/style.css";
|
|
5
5
|
import { Flex, Box, Typography, SingleSelect, SingleSelectOption, TextInput, NumberInput, Loader, Tooltip } from "@strapi/design-system";
|
|
6
6
|
import { Plus, Trash, Cross, Layout } from "@strapi/icons";
|
|
@@ -2404,6 +2404,7 @@ const FlowCanvas = ({ steps, onStepsChange, disabled, error, campaignContext })
|
|
|
2404
2404
|
const isInitialMount = useRef(true);
|
|
2405
2405
|
const syncTimeoutRef = useRef(null);
|
|
2406
2406
|
const lastStepsRef = useRef("");
|
|
2407
|
+
const { fitView } = useReactFlow();
|
|
2407
2408
|
useEffect(() => {
|
|
2408
2409
|
const stepsJson = JSON.stringify(steps);
|
|
2409
2410
|
if (stepsJson === lastStepsRef.current) return;
|
|
@@ -2417,9 +2418,12 @@ const FlowCanvas = ({ steps, onStepsChange, disabled, error, campaignContext })
|
|
|
2417
2418
|
const layoutedNodes = applyAutoLayout(n, e);
|
|
2418
2419
|
setNodes(layoutedNodes);
|
|
2419
2420
|
setEdges(e);
|
|
2421
|
+
setTimeout(() => {
|
|
2422
|
+
fitView({ padding: 0.2, duration: 200 });
|
|
2423
|
+
}, 50);
|
|
2420
2424
|
}
|
|
2421
2425
|
isInitialMount.current = false;
|
|
2422
|
-
}, [steps, setNodes, setEdges]);
|
|
2426
|
+
}, [steps, setNodes, setEdges, fitView]);
|
|
2423
2427
|
const syncToParent = useCallback(() => {
|
|
2424
2428
|
if (isInitialMount.current) return;
|
|
2425
2429
|
if (syncTimeoutRef.current) {
|
|
@@ -2505,7 +2509,10 @@ const FlowCanvas = ({ steps, onStepsChange, disabled, error, campaignContext })
|
|
|
2505
2509
|
const handleAutoLayout = useCallback(() => {
|
|
2506
2510
|
const layoutedNodes = applyAutoLayout(nodes, edges);
|
|
2507
2511
|
setNodes(layoutedNodes);
|
|
2508
|
-
|
|
2512
|
+
setTimeout(() => {
|
|
2513
|
+
fitView({ padding: 0.2, duration: 200 });
|
|
2514
|
+
}, 50);
|
|
2515
|
+
}, [nodes, edges, setNodes, fitView]);
|
|
2509
2516
|
const handleNodeUpdate = useCallback(
|
|
2510
2517
|
(nodeId, data) => {
|
|
2511
2518
|
setNodes(
|
|
@@ -2430,6 +2430,7 @@ const FlowCanvas = ({ steps, onStepsChange, disabled, error, campaignContext })
|
|
|
2430
2430
|
const isInitialMount = React.useRef(true);
|
|
2431
2431
|
const syncTimeoutRef = React.useRef(null);
|
|
2432
2432
|
const lastStepsRef = React.useRef("");
|
|
2433
|
+
const { fitView } = ReactFlow.useReactFlow();
|
|
2433
2434
|
React.useEffect(() => {
|
|
2434
2435
|
const stepsJson = JSON.stringify(steps);
|
|
2435
2436
|
if (stepsJson === lastStepsRef.current) return;
|
|
@@ -2443,9 +2444,12 @@ const FlowCanvas = ({ steps, onStepsChange, disabled, error, campaignContext })
|
|
|
2443
2444
|
const layoutedNodes = applyAutoLayout(n, e);
|
|
2444
2445
|
setNodes(layoutedNodes);
|
|
2445
2446
|
setEdges(e);
|
|
2447
|
+
setTimeout(() => {
|
|
2448
|
+
fitView({ padding: 0.2, duration: 200 });
|
|
2449
|
+
}, 50);
|
|
2446
2450
|
}
|
|
2447
2451
|
isInitialMount.current = false;
|
|
2448
|
-
}, [steps, setNodes, setEdges]);
|
|
2452
|
+
}, [steps, setNodes, setEdges, fitView]);
|
|
2449
2453
|
const syncToParent = React.useCallback(() => {
|
|
2450
2454
|
if (isInitialMount.current) return;
|
|
2451
2455
|
if (syncTimeoutRef.current) {
|
|
@@ -2531,7 +2535,10 @@ const FlowCanvas = ({ steps, onStepsChange, disabled, error, campaignContext })
|
|
|
2531
2535
|
const handleAutoLayout = React.useCallback(() => {
|
|
2532
2536
|
const layoutedNodes = applyAutoLayout(nodes, edges);
|
|
2533
2537
|
setNodes(layoutedNodes);
|
|
2534
|
-
|
|
2538
|
+
setTimeout(() => {
|
|
2539
|
+
fitView({ padding: 0.2, duration: 200 });
|
|
2540
|
+
}, 50);
|
|
2541
|
+
}, [nodes, edges, setNodes, fitView]);
|
|
2535
2542
|
const handleNodeUpdate = React.useCallback(
|
|
2536
2543
|
(nodeId, data) => {
|
|
2537
2544
|
setNodes(
|
|
@@ -28,7 +28,7 @@ const ReactFlow = require("reactflow");
|
|
|
28
28
|
require("reactflow/dist/style.css");
|
|
29
29
|
const designSystem = require("@strapi/design-system");
|
|
30
30
|
const admin = require("@strapi/strapi/admin");
|
|
31
|
-
const FlowCanvas = require("./FlowCanvas-
|
|
31
|
+
const FlowCanvas = require("./FlowCanvas-O8LZmpU9.js");
|
|
32
32
|
const StepFlowBuilderInner = React.forwardRef(
|
|
33
33
|
({ name, value, onChange, intlLabel, disabled, error, required, hint }, ref) => {
|
|
34
34
|
const [steps, setSteps] = React.useState([]);
|
|
@@ -11,7 +11,7 @@ import "react-intl";
|
|
|
11
11
|
import { createGlobalStyle, styled } from "styled-components";
|
|
12
12
|
import "reactflow/dist/style.css";
|
|
13
13
|
import { ReactFlowProvider } from "reactflow";
|
|
14
|
-
import { F as FlowCanvas } from "./FlowCanvas-
|
|
14
|
+
import { F as FlowCanvas } from "./FlowCanvas-Dosn1PWx.mjs";
|
|
15
15
|
var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
|
|
16
16
|
function getDefaultExportFromCjs(x2) {
|
|
17
17
|
return x2 && x2.__esModule && Object.prototype.hasOwnProperty.call(x2, "default") ? x2["default"] : x2;
|
|
@@ -12,7 +12,7 @@ require("react-intl");
|
|
|
12
12
|
const styled = require("styled-components");
|
|
13
13
|
require("reactflow/dist/style.css");
|
|
14
14
|
const ReactFlow = require("reactflow");
|
|
15
|
-
const FlowCanvas = require("./FlowCanvas-
|
|
15
|
+
const FlowCanvas = require("./FlowCanvas-O8LZmpU9.js");
|
|
16
16
|
const _interopDefault = (e2) => e2 && e2.__esModule ? e2 : { default: e2 };
|
|
17
17
|
function _interopNamespace(e2) {
|
|
18
18
|
if (e2 && e2.__esModule) return e2;
|
|
@@ -68,13 +68,13 @@ var freeSelf = typeof self == "object" && self && self.Object === Object && self
|
|
|
68
68
|
var root$c = freeGlobal || freeSelf || Function("return this")();
|
|
69
69
|
var _root = root$c;
|
|
70
70
|
var root$b = _root;
|
|
71
|
-
var Symbol$
|
|
72
|
-
var _Symbol = Symbol$
|
|
73
|
-
var Symbol$
|
|
71
|
+
var Symbol$6 = root$b.Symbol;
|
|
72
|
+
var _Symbol = Symbol$6;
|
|
73
|
+
var Symbol$5 = _Symbol;
|
|
74
74
|
var objectProto$g = Object.prototype;
|
|
75
75
|
var hasOwnProperty$d = objectProto$g.hasOwnProperty;
|
|
76
76
|
var nativeObjectToString$1 = objectProto$g.toString;
|
|
77
|
-
var symToStringTag$1 = Symbol$
|
|
77
|
+
var symToStringTag$1 = Symbol$5 ? Symbol$5.toStringTag : void 0;
|
|
78
78
|
function getRawTag$1(value) {
|
|
79
79
|
var isOwn = hasOwnProperty$d.call(value, symToStringTag$1), tag = value[symToStringTag$1];
|
|
80
80
|
try {
|
|
@@ -99,9 +99,9 @@ function objectToString$2(value) {
|
|
|
99
99
|
return nativeObjectToString.call(value);
|
|
100
100
|
}
|
|
101
101
|
var _objectToString = objectToString$2;
|
|
102
|
-
var Symbol$
|
|
102
|
+
var Symbol$4 = _Symbol, getRawTag = _getRawTag, objectToString$1 = _objectToString;
|
|
103
103
|
var nullTag = "[object Null]", undefinedTag = "[object Undefined]";
|
|
104
|
-
var symToStringTag = Symbol$
|
|
104
|
+
var symToStringTag = Symbol$4 ? Symbol$4.toStringTag : void 0;
|
|
105
105
|
function baseGetTag$7(value) {
|
|
106
106
|
if (value == null) {
|
|
107
107
|
return value === void 0 ? undefinedTag : nullTag;
|
|
@@ -429,7 +429,7 @@ Stack$4.prototype.has = stackHas;
|
|
|
429
429
|
Stack$4.prototype.set = stackSet;
|
|
430
430
|
var _Stack = Stack$4;
|
|
431
431
|
var getNative$4 = _getNative;
|
|
432
|
-
var defineProperty$
|
|
432
|
+
var defineProperty$1 = function() {
|
|
433
433
|
try {
|
|
434
434
|
var func2 = getNative$4(Object, "defineProperty");
|
|
435
435
|
func2({}, "", {});
|
|
@@ -437,11 +437,11 @@ var defineProperty$2 = function() {
|
|
|
437
437
|
} catch (e2) {
|
|
438
438
|
}
|
|
439
439
|
}();
|
|
440
|
-
var _defineProperty = defineProperty$
|
|
441
|
-
var defineProperty
|
|
440
|
+
var _defineProperty = defineProperty$1;
|
|
441
|
+
var defineProperty = _defineProperty;
|
|
442
442
|
function baseAssignValue$5(object2, key, value) {
|
|
443
|
-
if (key == "__proto__" && defineProperty
|
|
444
|
-
defineProperty
|
|
443
|
+
if (key == "__proto__" && defineProperty) {
|
|
444
|
+
defineProperty(object2, key, {
|
|
445
445
|
"configurable": true,
|
|
446
446
|
"enumerable": true,
|
|
447
447
|
"value": value,
|
|
@@ -572,14 +572,14 @@ var baseIsArguments = _baseIsArguments, isObjectLike$9 = isObjectLike_1;
|
|
|
572
572
|
var objectProto$a = Object.prototype;
|
|
573
573
|
var hasOwnProperty$9 = objectProto$a.hasOwnProperty;
|
|
574
574
|
var propertyIsEnumerable$1 = objectProto$a.propertyIsEnumerable;
|
|
575
|
-
var isArguments$
|
|
575
|
+
var isArguments$3 = baseIsArguments(/* @__PURE__ */ function() {
|
|
576
576
|
return arguments;
|
|
577
577
|
}()) ? baseIsArguments : function(value) {
|
|
578
578
|
return isObjectLike$9(value) && hasOwnProperty$9.call(value, "callee") && !propertyIsEnumerable$1.call(value, "callee");
|
|
579
579
|
};
|
|
580
|
-
var isArguments_1 = isArguments$
|
|
581
|
-
var isArray$
|
|
582
|
-
var isArray_1 = isArray$
|
|
580
|
+
var isArguments_1 = isArguments$3;
|
|
581
|
+
var isArray$f = Array.isArray;
|
|
582
|
+
var isArray_1 = isArray$f;
|
|
583
583
|
var MAX_SAFE_INTEGER$1 = 9007199254740991;
|
|
584
584
|
function isLength$3(value) {
|
|
585
585
|
return typeof value == "number" && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER$1;
|
|
@@ -727,11 +727,11 @@ function isIndex$5(value, length) {
|
|
|
727
727
|
return !!length && (type2 == "number" || type2 != "symbol" && reIsUint.test(value)) && (value > -1 && value % 1 == 0 && value < length);
|
|
728
728
|
}
|
|
729
729
|
var _isIndex = isIndex$5;
|
|
730
|
-
var baseTimes = _baseTimes, isArguments$
|
|
730
|
+
var baseTimes = _baseTimes, isArguments$2 = isArguments_1, isArray$e = isArray_1, isBuffer$4 = isBufferExports, isIndex$4 = _isIndex, isTypedArray$2 = isTypedArray_1;
|
|
731
731
|
var objectProto$7 = Object.prototype;
|
|
732
732
|
var hasOwnProperty$6 = objectProto$7.hasOwnProperty;
|
|
733
733
|
function arrayLikeKeys$2(value, inherited) {
|
|
734
|
-
var isArr = isArray$
|
|
734
|
+
var isArr = isArray$e(value), isArg = !isArr && isArguments$2(value), isBuff = !isArr && !isArg && isBuffer$4(value), isType = !isArr && !isArg && !isBuff && isTypedArray$2(value), skipIndexes = isArr || isArg || isBuff || isType, result = skipIndexes ? baseTimes(value.length, String) : [], length = result.length;
|
|
735
735
|
for (var key in value) {
|
|
736
736
|
if ((inherited || hasOwnProperty$6.call(value, key)) && !(skipIndexes && // Safari 9 has enumerable `arguments.length` in strict mode.
|
|
737
737
|
(key == "length" || // Node.js 0.10 has enumerable non-index properties on buffers.
|
|
@@ -780,7 +780,7 @@ function toPlainObject$1(value) {
|
|
|
780
780
|
return copyObject$5(value, keysIn$4(value));
|
|
781
781
|
}
|
|
782
782
|
var toPlainObject_1 = toPlainObject$1;
|
|
783
|
-
var assignMergeValue$1 = _assignMergeValue, cloneBuffer$1 = _cloneBufferExports, cloneTypedArray$1 = _cloneTypedArray, copyArray$3 = _copyArray, initCloneObject$1 = _initCloneObject, isArguments$
|
|
783
|
+
var assignMergeValue$1 = _assignMergeValue, cloneBuffer$1 = _cloneBufferExports, cloneTypedArray$1 = _cloneTypedArray, copyArray$3 = _copyArray, initCloneObject$1 = _initCloneObject, isArguments$1 = isArguments_1, isArray$d = isArray_1, isArrayLikeObject = isArrayLikeObject_1, isBuffer$3 = isBufferExports, isFunction$1 = isFunction_1, isObject$9 = isObject_1, isPlainObject$6 = isPlainObject_1, isTypedArray$1 = isTypedArray_1, safeGet$1 = _safeGet, toPlainObject = toPlainObject_1;
|
|
784
784
|
function baseMergeDeep$1(object2, source, key, srcIndex, mergeFunc, customizer, stack) {
|
|
785
785
|
var objValue = safeGet$1(object2, key), srcValue = safeGet$1(source, key), stacked = stack.get(srcValue);
|
|
786
786
|
if (stacked) {
|
|
@@ -790,10 +790,10 @@ function baseMergeDeep$1(object2, source, key, srcIndex, mergeFunc, customizer,
|
|
|
790
790
|
var newValue = customizer ? customizer(objValue, srcValue, key + "", object2, source, stack) : void 0;
|
|
791
791
|
var isCommon = newValue === void 0;
|
|
792
792
|
if (isCommon) {
|
|
793
|
-
var isArr = isArray$
|
|
793
|
+
var isArr = isArray$d(srcValue), isBuff = !isArr && isBuffer$3(srcValue), isTyped = !isArr && !isBuff && isTypedArray$1(srcValue);
|
|
794
794
|
newValue = srcValue;
|
|
795
795
|
if (isArr || isBuff || isTyped) {
|
|
796
|
-
if (isArray$
|
|
796
|
+
if (isArray$d(objValue)) {
|
|
797
797
|
newValue = objValue;
|
|
798
798
|
} else if (isArrayLikeObject(objValue)) {
|
|
799
799
|
newValue = copyArray$3(objValue);
|
|
@@ -806,9 +806,9 @@ function baseMergeDeep$1(object2, source, key, srcIndex, mergeFunc, customizer,
|
|
|
806
806
|
} else {
|
|
807
807
|
newValue = [];
|
|
808
808
|
}
|
|
809
|
-
} else if (isPlainObject$6(srcValue) || isArguments$
|
|
809
|
+
} else if (isPlainObject$6(srcValue) || isArguments$1(srcValue)) {
|
|
810
810
|
newValue = objValue;
|
|
811
|
-
if (isArguments$
|
|
811
|
+
if (isArguments$1(objValue)) {
|
|
812
812
|
newValue = toPlainObject(objValue);
|
|
813
813
|
} else if (!isObject$9(objValue) || isFunction$1(objValue)) {
|
|
814
814
|
newValue = initCloneObject$1(srcValue);
|
|
@@ -844,83 +844,125 @@ function baseMerge$3(object2, source, srcIndex, customizer, stack) {
|
|
|
844
844
|
}, keysIn$3);
|
|
845
845
|
}
|
|
846
846
|
var _baseMerge = baseMerge$3;
|
|
847
|
-
function identity$
|
|
847
|
+
function identity$3(value) {
|
|
848
848
|
return value;
|
|
849
849
|
}
|
|
850
|
-
var identity_1 = identity$
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
850
|
+
var identity_1 = identity$3;
|
|
851
|
+
var _apply;
|
|
852
|
+
var hasRequired_apply;
|
|
853
|
+
function require_apply() {
|
|
854
|
+
if (hasRequired_apply) return _apply;
|
|
855
|
+
hasRequired_apply = 1;
|
|
856
|
+
function apply2(func2, thisArg, args) {
|
|
857
|
+
switch (args.length) {
|
|
858
|
+
case 0:
|
|
859
|
+
return func2.call(thisArg);
|
|
860
|
+
case 1:
|
|
861
|
+
return func2.call(thisArg, args[0]);
|
|
862
|
+
case 2:
|
|
863
|
+
return func2.call(thisArg, args[0], args[1]);
|
|
864
|
+
case 3:
|
|
865
|
+
return func2.call(thisArg, args[0], args[1], args[2]);
|
|
866
|
+
}
|
|
867
|
+
return func2.apply(thisArg, args);
|
|
868
|
+
}
|
|
869
|
+
_apply = apply2;
|
|
870
|
+
return _apply;
|
|
871
|
+
}
|
|
872
|
+
var _overRest;
|
|
873
|
+
var hasRequired_overRest;
|
|
874
|
+
function require_overRest() {
|
|
875
|
+
if (hasRequired_overRest) return _overRest;
|
|
876
|
+
hasRequired_overRest = 1;
|
|
877
|
+
var apply2 = require_apply();
|
|
878
|
+
var nativeMax2 = Math.max;
|
|
879
|
+
function overRest2(func2, start, transform) {
|
|
880
|
+
start = nativeMax2(start === void 0 ? func2.length - 1 : start, 0);
|
|
881
|
+
return function() {
|
|
882
|
+
var args = arguments, index2 = -1, length = nativeMax2(args.length - start, 0), array2 = Array(length);
|
|
883
|
+
while (++index2 < length) {
|
|
884
|
+
array2[index2] = args[start + index2];
|
|
885
|
+
}
|
|
886
|
+
index2 = -1;
|
|
887
|
+
var otherArgs = Array(start + 1);
|
|
888
|
+
while (++index2 < start) {
|
|
889
|
+
otherArgs[index2] = args[index2];
|
|
890
|
+
}
|
|
891
|
+
otherArgs[start] = transform(array2);
|
|
892
|
+
return apply2(func2, this, otherArgs);
|
|
893
|
+
};
|
|
861
894
|
}
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
var _apply = apply$4;
|
|
865
|
-
var apply$3 = _apply;
|
|
866
|
-
var nativeMax$3 = Math.max;
|
|
867
|
-
function overRest$2(func2, start, transform) {
|
|
868
|
-
start = nativeMax$3(start === void 0 ? func2.length - 1 : start, 0);
|
|
869
|
-
return function() {
|
|
870
|
-
var args = arguments, index2 = -1, length = nativeMax$3(args.length - start, 0), array2 = Array(length);
|
|
871
|
-
while (++index2 < length) {
|
|
872
|
-
array2[index2] = args[start + index2];
|
|
873
|
-
}
|
|
874
|
-
index2 = -1;
|
|
875
|
-
var otherArgs = Array(start + 1);
|
|
876
|
-
while (++index2 < start) {
|
|
877
|
-
otherArgs[index2] = args[index2];
|
|
878
|
-
}
|
|
879
|
-
otherArgs[start] = transform(array2);
|
|
880
|
-
return apply$3(func2, this, otherArgs);
|
|
881
|
-
};
|
|
895
|
+
_overRest = overRest2;
|
|
896
|
+
return _overRest;
|
|
882
897
|
}
|
|
883
|
-
var
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
898
|
+
var constant_1;
|
|
899
|
+
var hasRequiredConstant;
|
|
900
|
+
function requireConstant() {
|
|
901
|
+
if (hasRequiredConstant) return constant_1;
|
|
902
|
+
hasRequiredConstant = 1;
|
|
903
|
+
function constant(value) {
|
|
904
|
+
return function() {
|
|
905
|
+
return value;
|
|
906
|
+
};
|
|
907
|
+
}
|
|
908
|
+
constant_1 = constant;
|
|
909
|
+
return constant_1;
|
|
910
|
+
}
|
|
911
|
+
var _baseSetToString;
|
|
912
|
+
var hasRequired_baseSetToString;
|
|
913
|
+
function require_baseSetToString() {
|
|
914
|
+
if (hasRequired_baseSetToString) return _baseSetToString;
|
|
915
|
+
hasRequired_baseSetToString = 1;
|
|
916
|
+
var constant = requireConstant(), defineProperty2 = _defineProperty, identity2 = identity_1;
|
|
917
|
+
var baseSetToString = !defineProperty2 ? identity2 : function(func2, string2) {
|
|
918
|
+
return defineProperty2(func2, "toString", {
|
|
919
|
+
"configurable": true,
|
|
920
|
+
"enumerable": false,
|
|
921
|
+
"value": constant(string2),
|
|
922
|
+
"writable": true
|
|
923
|
+
});
|
|
887
924
|
};
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
var
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
var
|
|
900
|
-
|
|
901
|
-
var nativeNow =
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
return arguments[0];
|
|
925
|
+
_baseSetToString = baseSetToString;
|
|
926
|
+
return _baseSetToString;
|
|
927
|
+
}
|
|
928
|
+
var _shortOut;
|
|
929
|
+
var hasRequired_shortOut;
|
|
930
|
+
function require_shortOut() {
|
|
931
|
+
if (hasRequired_shortOut) return _shortOut;
|
|
932
|
+
hasRequired_shortOut = 1;
|
|
933
|
+
var HOT_COUNT = 800, HOT_SPAN = 16;
|
|
934
|
+
var nativeNow = Date.now;
|
|
935
|
+
function shortOut2(func2) {
|
|
936
|
+
var count = 0, lastCalled = 0;
|
|
937
|
+
return function() {
|
|
938
|
+
var stamp = nativeNow(), remaining = HOT_SPAN - (stamp - lastCalled);
|
|
939
|
+
lastCalled = stamp;
|
|
940
|
+
if (remaining > 0) {
|
|
941
|
+
if (++count >= HOT_COUNT) {
|
|
942
|
+
return arguments[0];
|
|
943
|
+
}
|
|
944
|
+
} else {
|
|
945
|
+
count = 0;
|
|
910
946
|
}
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
947
|
+
return func2.apply(void 0, arguments);
|
|
948
|
+
};
|
|
949
|
+
}
|
|
950
|
+
_shortOut = shortOut2;
|
|
951
|
+
return _shortOut;
|
|
916
952
|
}
|
|
917
|
-
var
|
|
918
|
-
var
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
953
|
+
var _setToString;
|
|
954
|
+
var hasRequired_setToString;
|
|
955
|
+
function require_setToString() {
|
|
956
|
+
if (hasRequired_setToString) return _setToString;
|
|
957
|
+
hasRequired_setToString = 1;
|
|
958
|
+
var baseSetToString = require_baseSetToString(), shortOut2 = require_shortOut();
|
|
959
|
+
var setToString2 = shortOut2(baseSetToString);
|
|
960
|
+
_setToString = setToString2;
|
|
961
|
+
return _setToString;
|
|
962
|
+
}
|
|
963
|
+
var identity$2 = identity_1, overRest = require_overRest(), setToString$1 = require_setToString();
|
|
922
964
|
function baseRest$2(func2, start) {
|
|
923
|
-
return setToString$
|
|
965
|
+
return setToString$1(overRest(func2, start, identity$2), func2 + "");
|
|
924
966
|
}
|
|
925
967
|
var _baseRest = baseRest$2;
|
|
926
968
|
var eq$1 = eq_1, isArrayLike$1 = isArrayLike_1, isIndex$3 = _isIndex, isObject$7 = isObject_1;
|
|
@@ -965,10 +1007,10 @@ function isSymbol$6(value) {
|
|
|
965
1007
|
return typeof value == "symbol" || isObjectLike$5(value) && baseGetTag$2(value) == symbolTag$3;
|
|
966
1008
|
}
|
|
967
1009
|
var isSymbol_1 = isSymbol$6;
|
|
968
|
-
var isArray$
|
|
1010
|
+
var isArray$c = isArray_1, isSymbol$5 = isSymbol_1;
|
|
969
1011
|
var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, reIsPlainProp = /^\w*$/;
|
|
970
1012
|
function isKey$3(value, object2) {
|
|
971
|
-
if (isArray$
|
|
1013
|
+
if (isArray$c(value)) {
|
|
972
1014
|
return false;
|
|
973
1015
|
}
|
|
974
1016
|
var type2 = typeof value;
|
|
@@ -1033,13 +1075,13 @@ function arrayMap$3(array2, iteratee2) {
|
|
|
1033
1075
|
return result;
|
|
1034
1076
|
}
|
|
1035
1077
|
var _arrayMap = arrayMap$3;
|
|
1036
|
-
var Symbol$
|
|
1037
|
-
var symbolProto$2 = Symbol$
|
|
1078
|
+
var Symbol$3 = _Symbol, arrayMap$2 = _arrayMap, isArray$b = isArray_1, isSymbol$4 = isSymbol_1;
|
|
1079
|
+
var symbolProto$2 = Symbol$3 ? Symbol$3.prototype : void 0, symbolToString$1 = symbolProto$2 ? symbolProto$2.toString : void 0;
|
|
1038
1080
|
function baseToString$1(value) {
|
|
1039
1081
|
if (typeof value == "string") {
|
|
1040
1082
|
return value;
|
|
1041
1083
|
}
|
|
1042
|
-
if (isArray$
|
|
1084
|
+
if (isArray$b(value)) {
|
|
1043
1085
|
return arrayMap$2(value, baseToString$1) + "";
|
|
1044
1086
|
}
|
|
1045
1087
|
if (isSymbol$4(value)) {
|
|
@@ -1054,9 +1096,9 @@ function toString$7(value) {
|
|
|
1054
1096
|
return value == null ? "" : baseToString(value);
|
|
1055
1097
|
}
|
|
1056
1098
|
var toString_1 = toString$7;
|
|
1057
|
-
var isArray$
|
|
1099
|
+
var isArray$a = isArray_1, isKey$2 = _isKey, stringToPath$2 = _stringToPath, toString$6 = toString_1;
|
|
1058
1100
|
function castPath$6(value, object2) {
|
|
1059
|
-
if (isArray$
|
|
1101
|
+
if (isArray$a(value)) {
|
|
1060
1102
|
return value;
|
|
1061
1103
|
}
|
|
1062
1104
|
return isKey$2(value, object2) ? [value] : stringToPath$2(toString$6(value));
|
|
@@ -1122,7 +1164,7 @@ function baseHasIn$1(object2, key) {
|
|
|
1122
1164
|
return object2 != null && key in Object(object2);
|
|
1123
1165
|
}
|
|
1124
1166
|
var _baseHasIn = baseHasIn$1;
|
|
1125
|
-
var castPath$2 = _castPath, isArguments
|
|
1167
|
+
var castPath$2 = _castPath, isArguments = isArguments_1, isArray$9 = isArray_1, isIndex$1 = _isIndex, isLength = isLength_1, toKey$4 = _toKey;
|
|
1126
1168
|
function hasPath$2(object2, path, hasFunc) {
|
|
1127
1169
|
path = castPath$2(path, object2);
|
|
1128
1170
|
var index2 = -1, length = path.length, result = false;
|
|
@@ -1137,7 +1179,7 @@ function hasPath$2(object2, path, hasFunc) {
|
|
|
1137
1179
|
return result;
|
|
1138
1180
|
}
|
|
1139
1181
|
length = object2 == null ? 0 : object2.length;
|
|
1140
|
-
return !!length && isLength(length) && isIndex$1(key, length) && (isArray$
|
|
1182
|
+
return !!length && isLength(length) && isIndex$1(key, length) && (isArray$9(object2) || isArguments(object2));
|
|
1141
1183
|
}
|
|
1142
1184
|
var _hasPath = hasPath$2;
|
|
1143
1185
|
var baseHasIn = _baseHasIn, hasPath$1 = _hasPath;
|
|
@@ -1152,52 +1194,80 @@ function basePick$1(object2, paths) {
|
|
|
1152
1194
|
});
|
|
1153
1195
|
}
|
|
1154
1196
|
var _basePick = basePick$1;
|
|
1155
|
-
function arrayPush$
|
|
1197
|
+
function arrayPush$2(array2, values) {
|
|
1156
1198
|
var index2 = -1, length = values.length, offset = array2.length;
|
|
1157
1199
|
while (++index2 < length) {
|
|
1158
1200
|
array2[offset + index2] = values[index2];
|
|
1159
1201
|
}
|
|
1160
1202
|
return array2;
|
|
1161
1203
|
}
|
|
1162
|
-
var _arrayPush = arrayPush$
|
|
1163
|
-
var
|
|
1164
|
-
var
|
|
1165
|
-
function
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
var
|
|
1169
|
-
var
|
|
1170
|
-
function
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1204
|
+
var _arrayPush = arrayPush$2;
|
|
1205
|
+
var _isFlattenable;
|
|
1206
|
+
var hasRequired_isFlattenable;
|
|
1207
|
+
function require_isFlattenable() {
|
|
1208
|
+
if (hasRequired_isFlattenable) return _isFlattenable;
|
|
1209
|
+
hasRequired_isFlattenable = 1;
|
|
1210
|
+
var Symbol2 = _Symbol, isArguments2 = isArguments_1, isArray2 = isArray_1;
|
|
1211
|
+
var spreadableSymbol = Symbol2 ? Symbol2.isConcatSpreadable : void 0;
|
|
1212
|
+
function isFlattenable(value) {
|
|
1213
|
+
return isArray2(value) || isArguments2(value) || !!(spreadableSymbol && value && value[spreadableSymbol]);
|
|
1214
|
+
}
|
|
1215
|
+
_isFlattenable = isFlattenable;
|
|
1216
|
+
return _isFlattenable;
|
|
1217
|
+
}
|
|
1218
|
+
var _baseFlatten;
|
|
1219
|
+
var hasRequired_baseFlatten;
|
|
1220
|
+
function require_baseFlatten() {
|
|
1221
|
+
if (hasRequired_baseFlatten) return _baseFlatten;
|
|
1222
|
+
hasRequired_baseFlatten = 1;
|
|
1223
|
+
var arrayPush2 = _arrayPush, isFlattenable = require_isFlattenable();
|
|
1224
|
+
function baseFlatten(array2, depth, predicate, isStrict, result) {
|
|
1225
|
+
var index2 = -1, length = array2.length;
|
|
1226
|
+
predicate || (predicate = isFlattenable);
|
|
1227
|
+
result || (result = []);
|
|
1228
|
+
while (++index2 < length) {
|
|
1229
|
+
var value = array2[index2];
|
|
1230
|
+
if (depth > 0 && predicate(value)) {
|
|
1231
|
+
if (depth > 1) {
|
|
1232
|
+
baseFlatten(value, depth - 1, predicate, isStrict, result);
|
|
1233
|
+
} else {
|
|
1234
|
+
arrayPush2(result, value);
|
|
1235
|
+
}
|
|
1236
|
+
} else if (!isStrict) {
|
|
1237
|
+
result[result.length] = value;
|
|
1181
1238
|
}
|
|
1182
|
-
} else if (!isStrict) {
|
|
1183
|
-
result[result.length] = value;
|
|
1184
1239
|
}
|
|
1240
|
+
return result;
|
|
1185
1241
|
}
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
var
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
var
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
}
|
|
1199
|
-
|
|
1200
|
-
|
|
1242
|
+
_baseFlatten = baseFlatten;
|
|
1243
|
+
return _baseFlatten;
|
|
1244
|
+
}
|
|
1245
|
+
var flatten_1;
|
|
1246
|
+
var hasRequiredFlatten;
|
|
1247
|
+
function requireFlatten() {
|
|
1248
|
+
if (hasRequiredFlatten) return flatten_1;
|
|
1249
|
+
hasRequiredFlatten = 1;
|
|
1250
|
+
var baseFlatten = require_baseFlatten();
|
|
1251
|
+
function flatten2(array2) {
|
|
1252
|
+
var length = array2 == null ? 0 : array2.length;
|
|
1253
|
+
return length ? baseFlatten(array2, 1) : [];
|
|
1254
|
+
}
|
|
1255
|
+
flatten_1 = flatten2;
|
|
1256
|
+
return flatten_1;
|
|
1257
|
+
}
|
|
1258
|
+
var _flatRest;
|
|
1259
|
+
var hasRequired_flatRest;
|
|
1260
|
+
function require_flatRest() {
|
|
1261
|
+
if (hasRequired_flatRest) return _flatRest;
|
|
1262
|
+
hasRequired_flatRest = 1;
|
|
1263
|
+
var flatten2 = requireFlatten(), overRest2 = require_overRest(), setToString2 = require_setToString();
|
|
1264
|
+
function flatRest2(func2) {
|
|
1265
|
+
return setToString2(overRest2(func2, void 0, flatten2), func2 + "");
|
|
1266
|
+
}
|
|
1267
|
+
_flatRest = flatRest2;
|
|
1268
|
+
return _flatRest;
|
|
1269
|
+
}
|
|
1270
|
+
var basePick = _basePick, flatRest$2 = require_flatRest();
|
|
1201
1271
|
flatRest$2(function(object2, paths) {
|
|
1202
1272
|
return object2 == null ? {} : basePick(object2, paths);
|
|
1203
1273
|
});
|
|
@@ -10428,7 +10498,7 @@ function require_isLaziable() {
|
|
|
10428
10498
|
_isLaziable = isLaziable2;
|
|
10429
10499
|
return _isLaziable;
|
|
10430
10500
|
}
|
|
10431
|
-
var baseSetData$1 = _baseSetData, shortOut =
|
|
10501
|
+
var baseSetData$1 = _baseSetData, shortOut = require_shortOut();
|
|
10432
10502
|
var setData$2 = shortOut(baseSetData$1);
|
|
10433
10503
|
var _setData = setData$2;
|
|
10434
10504
|
var reWrapDetails = /\{\n\/\* \[wrapped with (.+)\] \*/, reSplitDetails = /,? & /;
|
|
@@ -10517,7 +10587,7 @@ function updateWrapDetails$1(details, bitmask) {
|
|
|
10517
10587
|
return details.sort();
|
|
10518
10588
|
}
|
|
10519
10589
|
var _updateWrapDetails = updateWrapDetails$1;
|
|
10520
|
-
var getWrapDetails = _getWrapDetails, insertWrapDetails = _insertWrapDetails, setToString =
|
|
10590
|
+
var getWrapDetails = _getWrapDetails, insertWrapDetails = _insertWrapDetails, setToString = require_setToString(), updateWrapDetails = _updateWrapDetails;
|
|
10521
10591
|
function setWrapToString$2(wrapper, reference, bitmask) {
|
|
10522
10592
|
var source = reference + "";
|
|
10523
10593
|
return setToString(wrapper, insertWrapDetails(source, updateWrapDetails(getWrapDetails(source), bitmask)));
|
|
@@ -10633,7 +10703,7 @@ function createHybrid$2(func2, bitmask, thisArg, partials, holders, partialsRigh
|
|
|
10633
10703
|
return wrapper;
|
|
10634
10704
|
}
|
|
10635
10705
|
var _createHybrid = createHybrid$2;
|
|
10636
|
-
var apply$2 =
|
|
10706
|
+
var apply$2 = require_apply(), createCtor$1 = _createCtor, createHybrid$1 = _createHybrid, createRecurry = _createRecurry, getHolder = _getHolder, replaceHolders$1 = _replaceHolders, root$4 = _root;
|
|
10637
10707
|
function createCurry$1(func2, bitmask, arity) {
|
|
10638
10708
|
var Ctor = createCtor$1(func2);
|
|
10639
10709
|
function wrapper() {
|
|
@@ -10663,7 +10733,7 @@ function createCurry$1(func2, bitmask, arity) {
|
|
|
10663
10733
|
return wrapper;
|
|
10664
10734
|
}
|
|
10665
10735
|
var _createCurry = createCurry$1;
|
|
10666
|
-
var apply$1 =
|
|
10736
|
+
var apply$1 = require_apply(), createCtor = _createCtor, root$3 = _root;
|
|
10667
10737
|
var WRAP_BIND_FLAG$2 = 1;
|
|
10668
10738
|
function createPartial$1(func2, bitmask, thisArg, partials) {
|
|
10669
10739
|
var isBind = bitmask & WRAP_BIND_FLAG$2, Ctor = createCtor(func2);
|
|
@@ -11538,7 +11608,7 @@ function iteratee(func2) {
|
|
|
11538
11608
|
return baseIteratee$2(typeof func2 == "function" ? func2 : baseClone$2(func2, CLONE_DEEP_FLAG$1));
|
|
11539
11609
|
}
|
|
11540
11610
|
var iteratee_1 = iteratee;
|
|
11541
|
-
var createWrap = _createWrap, flatRest$1 =
|
|
11611
|
+
var createWrap = _createWrap, flatRest$1 = require_flatRest();
|
|
11542
11612
|
var WRAP_REARG_FLAG = 256;
|
|
11543
11613
|
var rearg = flatRest$1(function(func2, indexes) {
|
|
11544
11614
|
return createWrap(func2, WRAP_REARG_FLAG, void 0, void 0, void 0, indexes);
|
|
@@ -11578,7 +11648,7 @@ var hasRequired_createFlow;
|
|
|
11578
11648
|
function require_createFlow() {
|
|
11579
11649
|
if (hasRequired_createFlow) return _createFlow;
|
|
11580
11650
|
hasRequired_createFlow = 1;
|
|
11581
|
-
var LodashWrapper = require_LodashWrapper(), flatRest2 =
|
|
11651
|
+
var LodashWrapper = require_LodashWrapper(), flatRest2 = require_flatRest(), getData2 = require_getData(), getFuncName = require_getFuncName(), isArray2 = isArray_1, isLaziable2 = require_isLaziable();
|
|
11582
11652
|
var FUNC_ERROR_TEXT2 = "Expected a function";
|
|
11583
11653
|
var WRAP_CURRY_FLAG2 = 8, WRAP_PARTIAL_FLAG2 = 32, WRAP_ARY_FLAG2 = 128, WRAP_REARG_FLAG2 = 256;
|
|
11584
11654
|
function createFlow(fromRight) {
|
|
@@ -13970,7 +14040,7 @@ var mergeWith$1 = createAssigner(function(object2, source, srcIndex, customizer)
|
|
|
13970
14040
|
baseMerge(object2, source, srcIndex, customizer);
|
|
13971
14041
|
});
|
|
13972
14042
|
var mergeWith_1 = mergeWith$1;
|
|
13973
|
-
var apply =
|
|
14043
|
+
var apply = require_apply(), baseRest = _baseRest, customDefaultsMerge = _customDefaultsMerge, mergeWith = mergeWith_1;
|
|
13974
14044
|
baseRest(function(args) {
|
|
13975
14045
|
args.push(void 0, customDefaultsMerge);
|
|
13976
14046
|
return apply(mergeWith, void 0, args);
|
|
@@ -16389,7 +16459,7 @@ function customOmitClone$1(value) {
|
|
|
16389
16459
|
return isPlainObject(value) ? void 0 : value;
|
|
16390
16460
|
}
|
|
16391
16461
|
var _customOmitClone = customOmitClone$1;
|
|
16392
|
-
var arrayMap = _arrayMap, baseClone = _baseClone, baseUnset = _baseUnset, castPath = _castPath, copyObject = _copyObject, customOmitClone = _customOmitClone, flatRest =
|
|
16462
|
+
var arrayMap = _arrayMap, baseClone = _baseClone, baseUnset = _baseUnset, castPath = _castPath, copyObject = _copyObject, customOmitClone = _customOmitClone, flatRest = require_flatRest(), getAllKeysIn = _getAllKeysIn;
|
|
16393
16463
|
var CLONE_DEEP_FLAG = 1, CLONE_FLAT_FLAG = 2, CLONE_SYMBOLS_FLAG = 4;
|
|
16394
16464
|
flatRest(function(object2, paths) {
|
|
16395
16465
|
var result = {};
|
|
@@ -4,7 +4,7 @@ import { ReactFlowProvider } from "reactflow";
|
|
|
4
4
|
import "reactflow/dist/style.css";
|
|
5
5
|
import { Field, Flex, Badge, Box } from "@strapi/design-system";
|
|
6
6
|
import { useForm, unstable_useContentManagerContext } from "@strapi/strapi/admin";
|
|
7
|
-
import { p as parseValue, F as FlowCanvas } from "./FlowCanvas-
|
|
7
|
+
import { p as parseValue, F as FlowCanvas } from "./FlowCanvas-Dosn1PWx.mjs";
|
|
8
8
|
const StepFlowBuilderInner = forwardRef(
|
|
9
9
|
({ name, value, onChange, intlLabel, disabled, error, required, hint }, ref) => {
|
|
10
10
|
const [steps, setSteps] = useState([]);
|
package/dist/admin/index.js
CHANGED
|
@@ -131,7 +131,7 @@ const index = {
|
|
|
131
131
|
components: {
|
|
132
132
|
Input: async () => Promise.resolve().then(() => require(
|
|
133
133
|
/* webpackChunkName: "crm-step-flow-builder" */
|
|
134
|
-
"../_chunks/index-
|
|
134
|
+
"../_chunks/index-BAEkCRvB.js"
|
|
135
135
|
))
|
|
136
136
|
},
|
|
137
137
|
options: {
|
|
@@ -149,7 +149,7 @@ const index = {
|
|
|
149
149
|
Component: async () => {
|
|
150
150
|
const component = await Promise.resolve().then(() => require(
|
|
151
151
|
/* webpackChunkName: "crm-dashboard-page" */
|
|
152
|
-
"../_chunks/index-
|
|
152
|
+
"../_chunks/index-C-Vbihve.js"
|
|
153
153
|
));
|
|
154
154
|
return component;
|
|
155
155
|
},
|
package/dist/admin/index.mjs
CHANGED
|
@@ -130,7 +130,7 @@ const index = {
|
|
|
130
130
|
components: {
|
|
131
131
|
Input: async () => import(
|
|
132
132
|
/* webpackChunkName: "crm-step-flow-builder" */
|
|
133
|
-
"../_chunks/index-
|
|
133
|
+
"../_chunks/index-CR4G6zrn.mjs"
|
|
134
134
|
)
|
|
135
135
|
},
|
|
136
136
|
options: {
|
|
@@ -148,7 +148,7 @@ const index = {
|
|
|
148
148
|
Component: async () => {
|
|
149
149
|
const component = await import(
|
|
150
150
|
/* webpackChunkName: "crm-dashboard-page" */
|
|
151
|
-
"../_chunks/index-
|
|
151
|
+
"../_chunks/index-Bxnf94Nw.mjs"
|
|
152
152
|
);
|
|
153
153
|
return component;
|
|
154
154
|
},
|