@flowerforce/flower-react 3.5.1-beta.2 → 4.0.4-beta.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.
- package/README.md +264 -207
- package/dist/index.cjs.js +219 -629
- package/dist/index.esm.js +189 -603
- package/dist/src/components/Flower.d.ts +7 -7
- package/dist/src/components/FlowerAction.d.ts +2 -3
- package/dist/src/components/FlowerComponent.d.ts +2 -4
- package/dist/src/components/FlowerFlow.d.ts +2 -3
- package/dist/src/components/FlowerNavigate/FlowerNavigate.d.ts +3 -0
- package/dist/src/components/FlowerNavigate/WrapperComponent.d.ts +3 -3
- package/dist/src/components/FlowerNavigate/index.d.ts +2 -4
- package/dist/src/components/FlowerNavigate/useFlowerNavigate.d.ts +1 -1
- package/dist/src/components/FlowerNode.d.ts +2 -3
- package/dist/src/components/FlowerRoute.d.ts +2 -3
- package/dist/src/components/FlowerServer.d.ts +2 -3
- package/dist/src/components/FlowerStart.d.ts +3 -4
- package/dist/src/components/index.d.ts +10 -0
- package/dist/src/components/useFlower/utils.d.ts +20 -0
- package/dist/src/components/useFlower.d.ts +2 -3
- package/dist/src/features/index.d.ts +2 -0
- package/dist/src/features/reducer/flowerReducer.d.ts +6 -0
- package/dist/src/{selectors.d.ts → features/selectors/selectors.d.ts} +494 -383
- package/dist/src/index.d.ts +5 -33
- package/dist/src/provider/index.d.ts +1 -0
- package/dist/src/provider/provider.d.ts +11 -0
- package/dist/src/types/FlowContext.d.ts +6 -0
- package/dist/src/types/FlowerHooks.d.ts +27 -0
- package/dist/src/{components/types → types}/FlowerProvider.d.ts +3 -3
- package/dist/src/types/index.d.ts +10 -0
- package/package.json +5 -2
- package/dist/src/components/FlowerField.d.ts +0 -4
- package/dist/src/components/FlowerRule.d.ts +0 -4
- package/dist/src/components/FlowerValue.d.ts +0 -4
- package/dist/src/components/types/FlowerField.d.ts +0 -124
- package/dist/src/components/types/FlowerHooks.d.ts +0 -72
- package/dist/src/components/types/FlowerRule.d.ts +0 -35
- package/dist/src/components/types/FlowerValue.d.ts +0 -33
- package/dist/src/components/useFlowerForm.d.ts +0 -26
- package/dist/src/context.d.ts +0 -10
- package/dist/src/provider.d.ts +0 -25
- package/dist/src/reducer.d.ts +0 -7
- /package/dist/src/{components/types → types}/DefaultNode.d.ts +0 -0
- /package/dist/src/{components/types → types}/FlowerComponent.d.ts +0 -0
- /package/dist/src/{components/types → types}/FlowerFlow.d.ts +0 -0
- /package/dist/src/{components/types → types}/FlowerNavigate.d.ts +0 -0
- /package/dist/src/{components/types → types}/FlowerNode.d.ts +0 -0
- /package/dist/src/{components/types → types}/FlowerRoute.d.ts +0 -0
- /package/dist/src/{components/types → types}/FlowerServer.d.ts +0 -0
@@ -1,6 +1,83 @@
|
|
1
1
|
import { RulesObject, FunctionRule } from '@flowerforce/flower-core';
|
2
|
-
declare const
|
3
|
-
|
2
|
+
export declare const selectFlower: (name: string) => ((state: {
|
3
|
+
FlowerFlow: {
|
4
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
5
|
+
};
|
6
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
7
|
+
clearCache: () => void;
|
8
|
+
resultsCount: () => number;
|
9
|
+
resetResultsCount: () => void;
|
10
|
+
} & {
|
11
|
+
resultFunc: (resultFuncArgs_0: {
|
12
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
13
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
14
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
15
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
16
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
17
|
+
clearCache: () => void;
|
18
|
+
resultsCount: () => number;
|
19
|
+
resetResultsCount: () => void;
|
20
|
+
};
|
21
|
+
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
22
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
23
|
+
FlowerFlow: {
|
24
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
25
|
+
};
|
26
|
+
}) => {
|
27
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
28
|
+
}];
|
29
|
+
recomputations: () => number;
|
30
|
+
resetRecomputations: () => void;
|
31
|
+
dependencyRecomputations: () => number;
|
32
|
+
resetDependencyRecomputations: () => void;
|
33
|
+
} & {
|
34
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
35
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
36
|
+
};
|
37
|
+
export declare const selectFlowerData: <T extends Record<string, any>>(state: {
|
38
|
+
FlowerData: {
|
39
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
40
|
+
};
|
41
|
+
}) => {
|
42
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
43
|
+
};
|
44
|
+
export declare const selectFlowerDataNode: (name: string) => ((state: {
|
45
|
+
FlowerData: {
|
46
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
47
|
+
};
|
48
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
49
|
+
clearCache: () => void;
|
50
|
+
resultsCount: () => number;
|
51
|
+
resetResultsCount: () => void;
|
52
|
+
} & {
|
53
|
+
resultFunc: (resultFuncArgs_0: {
|
54
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
55
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
56
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
57
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
58
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
59
|
+
clearCache: () => void;
|
60
|
+
resultsCount: () => number;
|
61
|
+
resetResultsCount: () => void;
|
62
|
+
};
|
63
|
+
lastResult: () => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
64
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
65
|
+
FlowerData: {
|
66
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
67
|
+
};
|
68
|
+
}) => {
|
69
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
70
|
+
}];
|
71
|
+
recomputations: () => number;
|
72
|
+
resetRecomputations: () => void;
|
73
|
+
dependencyRecomputations: () => number;
|
74
|
+
resetDependencyRecomputations: () => void;
|
75
|
+
} & {
|
76
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
77
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
78
|
+
};
|
79
|
+
export declare const selectFlowerHistory: (name: string) => ((state: {
|
80
|
+
FlowerFlow: {
|
4
81
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
5
82
|
};
|
6
83
|
}) => string[]) & {
|
@@ -16,7 +93,7 @@ declare const selectFlowerHistory: (name: string) => ((state: {
|
|
16
93
|
};
|
17
94
|
lastResult: () => string[];
|
18
95
|
dependencies: [((state: {
|
19
|
-
|
96
|
+
FlowerFlow: {
|
20
97
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
21
98
|
};
|
22
99
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -36,7 +113,7 @@ declare const selectFlowerHistory: (name: string) => ((state: {
|
|
36
113
|
};
|
37
114
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
38
115
|
dependencies: [<T extends Record<string, any>>(state: {
|
39
|
-
|
116
|
+
FlowerFlow: {
|
40
117
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
41
118
|
};
|
42
119
|
}) => {
|
@@ -58,8 +135,8 @@ declare const selectFlowerHistory: (name: string) => ((state: {
|
|
58
135
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
59
136
|
memoize: typeof import("reselect").weakMapMemoize;
|
60
137
|
};
|
61
|
-
declare const makeSelectNodesIds: (name: string) => ((state: {
|
62
|
-
|
138
|
+
export declare const makeSelectNodesIds: (name: string) => ((state: {
|
139
|
+
FlowerFlow: {
|
63
140
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
64
141
|
};
|
65
142
|
}) => {
|
@@ -83,7 +160,7 @@ declare const makeSelectNodesIds: (name: string) => ((state: {
|
|
83
160
|
[x: string]: import("@flowerforce/flower-core").INode;
|
84
161
|
};
|
85
162
|
dependencies: [((state: {
|
86
|
-
|
163
|
+
FlowerFlow: {
|
87
164
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
88
165
|
};
|
89
166
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -103,7 +180,7 @@ declare const makeSelectNodesIds: (name: string) => ((state: {
|
|
103
180
|
};
|
104
181
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
105
182
|
dependencies: [<T extends Record<string, any>>(state: {
|
106
|
-
|
183
|
+
FlowerFlow: {
|
107
184
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
108
185
|
};
|
109
186
|
}) => {
|
@@ -125,8 +202,8 @@ declare const makeSelectNodesIds: (name: string) => ((state: {
|
|
125
202
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
126
203
|
memoize: typeof import("reselect").weakMapMemoize;
|
127
204
|
};
|
128
|
-
declare const makeSelectStartNodeId: (name: string) => ((state: {
|
129
|
-
|
205
|
+
export declare const makeSelectStartNodeId: (name: string) => ((state: {
|
206
|
+
FlowerFlow: {
|
130
207
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
131
208
|
};
|
132
209
|
}) => string) & {
|
@@ -142,7 +219,7 @@ declare const makeSelectStartNodeId: (name: string) => ((state: {
|
|
142
219
|
};
|
143
220
|
lastResult: () => string;
|
144
221
|
dependencies: [((state: {
|
145
|
-
|
222
|
+
FlowerFlow: {
|
146
223
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
147
224
|
};
|
148
225
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -162,7 +239,7 @@ declare const makeSelectStartNodeId: (name: string) => ((state: {
|
|
162
239
|
};
|
163
240
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
164
241
|
dependencies: [<T extends Record<string, any>>(state: {
|
165
|
-
|
242
|
+
FlowerFlow: {
|
166
243
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
167
244
|
};
|
168
245
|
}) => {
|
@@ -184,8 +261,8 @@ declare const makeSelectStartNodeId: (name: string) => ((state: {
|
|
184
261
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
185
262
|
memoize: typeof import("reselect").weakMapMemoize;
|
186
263
|
};
|
187
|
-
declare const makeSelectCurrentNodeId: (name: string) => ((state: {
|
188
|
-
|
264
|
+
export declare const makeSelectCurrentNodeId: (name: string) => ((state: {
|
265
|
+
FlowerFlow: {
|
189
266
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
190
267
|
};
|
191
268
|
}) => string) & {
|
@@ -201,7 +278,7 @@ declare const makeSelectCurrentNodeId: (name: string) => ((state: {
|
|
201
278
|
};
|
202
279
|
lastResult: () => string;
|
203
280
|
dependencies: [((state: {
|
204
|
-
|
281
|
+
FlowerFlow: {
|
205
282
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
206
283
|
};
|
207
284
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -221,7 +298,7 @@ declare const makeSelectCurrentNodeId: (name: string) => ((state: {
|
|
221
298
|
};
|
222
299
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
223
300
|
dependencies: [<T extends Record<string, any>>(state: {
|
224
|
-
|
301
|
+
FlowerFlow: {
|
225
302
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
226
303
|
};
|
227
304
|
}) => {
|
@@ -235,7 +312,7 @@ declare const makeSelectCurrentNodeId: (name: string) => ((state: {
|
|
235
312
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
236
313
|
memoize: typeof import("reselect").weakMapMemoize;
|
237
314
|
}, ((state: {
|
238
|
-
|
315
|
+
FlowerFlow: {
|
239
316
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
240
317
|
};
|
241
318
|
}) => string) & {
|
@@ -251,7 +328,7 @@ declare const makeSelectCurrentNodeId: (name: string) => ((state: {
|
|
251
328
|
};
|
252
329
|
lastResult: () => string;
|
253
330
|
dependencies: [((state: {
|
254
|
-
|
331
|
+
FlowerFlow: {
|
255
332
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
256
333
|
};
|
257
334
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -271,7 +348,7 @@ declare const makeSelectCurrentNodeId: (name: string) => ((state: {
|
|
271
348
|
};
|
272
349
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
273
350
|
dependencies: [<T extends Record<string, any>>(state: {
|
274
|
-
|
351
|
+
FlowerFlow: {
|
275
352
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
276
353
|
};
|
277
354
|
}) => {
|
@@ -301,8 +378,8 @@ declare const makeSelectCurrentNodeId: (name: string) => ((state: {
|
|
301
378
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
302
379
|
memoize: typeof import("reselect").weakMapMemoize;
|
303
380
|
};
|
304
|
-
declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
305
|
-
|
381
|
+
export declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
382
|
+
FlowerFlow: {
|
306
383
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
307
384
|
};
|
308
385
|
}) => string | undefined) & {
|
@@ -322,7 +399,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
322
399
|
};
|
323
400
|
lastResult: () => string | undefined;
|
324
401
|
dependencies: [((state: {
|
325
|
-
|
402
|
+
FlowerFlow: {
|
326
403
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
327
404
|
};
|
328
405
|
}) => {
|
@@ -346,7 +423,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
346
423
|
[x: string]: import("@flowerforce/flower-core").INode;
|
347
424
|
};
|
348
425
|
dependencies: [((state: {
|
349
|
-
|
426
|
+
FlowerFlow: {
|
350
427
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
351
428
|
};
|
352
429
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -366,7 +443,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
366
443
|
};
|
367
444
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
368
445
|
dependencies: [<T extends Record<string, any>>(state: {
|
369
|
-
|
446
|
+
FlowerFlow: {
|
370
447
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
371
448
|
};
|
372
449
|
}) => {
|
@@ -388,7 +465,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
388
465
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
389
466
|
memoize: typeof import("reselect").weakMapMemoize;
|
390
467
|
}, ((state: {
|
391
|
-
|
468
|
+
FlowerFlow: {
|
392
469
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
393
470
|
};
|
394
471
|
}) => string[]) & {
|
@@ -404,7 +481,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
404
481
|
};
|
405
482
|
lastResult: () => string[];
|
406
483
|
dependencies: [((state: {
|
407
|
-
|
484
|
+
FlowerFlow: {
|
408
485
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
409
486
|
};
|
410
487
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -424,7 +501,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
424
501
|
};
|
425
502
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
426
503
|
dependencies: [<T extends Record<string, any>>(state: {
|
427
|
-
|
504
|
+
FlowerFlow: {
|
428
505
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
429
506
|
};
|
430
507
|
}) => {
|
@@ -446,7 +523,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
446
523
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
447
524
|
memoize: typeof import("reselect").weakMapMemoize;
|
448
525
|
}, ((state: {
|
449
|
-
|
526
|
+
FlowerFlow: {
|
450
527
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
451
528
|
};
|
452
529
|
}) => string) & {
|
@@ -462,7 +539,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
462
539
|
};
|
463
540
|
lastResult: () => string;
|
464
541
|
dependencies: [((state: {
|
465
|
-
|
542
|
+
FlowerFlow: {
|
466
543
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
467
544
|
};
|
468
545
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -482,7 +559,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
482
559
|
};
|
483
560
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
484
561
|
dependencies: [<T extends Record<string, any>>(state: {
|
485
|
-
|
562
|
+
FlowerFlow: {
|
486
563
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
487
564
|
};
|
488
565
|
}) => {
|
@@ -496,7 +573,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
496
573
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
497
574
|
memoize: typeof import("reselect").weakMapMemoize;
|
498
575
|
}, ((state: {
|
499
|
-
|
576
|
+
FlowerFlow: {
|
500
577
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
501
578
|
};
|
502
579
|
}) => string) & {
|
@@ -512,7 +589,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
512
589
|
};
|
513
590
|
lastResult: () => string;
|
514
591
|
dependencies: [((state: {
|
515
|
-
|
592
|
+
FlowerFlow: {
|
516
593
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
517
594
|
};
|
518
595
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -532,7 +609,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
532
609
|
};
|
533
610
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
534
611
|
dependencies: [<T extends Record<string, any>>(state: {
|
535
|
-
|
612
|
+
FlowerFlow: {
|
536
613
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
537
614
|
};
|
538
615
|
}) => {
|
@@ -570,8 +647,8 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
570
647
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
571
648
|
memoize: typeof import("reselect").weakMapMemoize;
|
572
649
|
};
|
573
|
-
declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
574
|
-
|
650
|
+
export declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
651
|
+
FlowerFlow: {
|
575
652
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
576
653
|
};
|
577
654
|
}) => boolean) & {
|
@@ -591,7 +668,7 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
591
668
|
};
|
592
669
|
lastResult: () => boolean;
|
593
670
|
dependencies: [((state: {
|
594
|
-
|
671
|
+
FlowerFlow: {
|
595
672
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
596
673
|
};
|
597
674
|
}) => {
|
@@ -615,7 +692,7 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
615
692
|
[x: string]: import("@flowerforce/flower-core").INode;
|
616
693
|
};
|
617
694
|
dependencies: [((state: {
|
618
|
-
|
695
|
+
FlowerFlow: {
|
619
696
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
620
697
|
};
|
621
698
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -635,7 +712,7 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
635
712
|
};
|
636
713
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
637
714
|
dependencies: [<T extends Record<string, any>>(state: {
|
638
|
-
|
715
|
+
FlowerFlow: {
|
639
716
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
640
717
|
};
|
641
718
|
}) => {
|
@@ -657,7 +734,7 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
657
734
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
658
735
|
memoize: typeof import("reselect").weakMapMemoize;
|
659
736
|
}, ((state: {
|
660
|
-
|
737
|
+
FlowerFlow: {
|
661
738
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
662
739
|
};
|
663
740
|
}) => string) & {
|
@@ -673,7 +750,7 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
673
750
|
};
|
674
751
|
lastResult: () => string;
|
675
752
|
dependencies: [((state: {
|
676
|
-
|
753
|
+
FlowerFlow: {
|
677
754
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
678
755
|
};
|
679
756
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -693,7 +770,7 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
693
770
|
};
|
694
771
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
695
772
|
dependencies: [<T extends Record<string, any>>(state: {
|
696
|
-
|
773
|
+
FlowerFlow: {
|
697
774
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
698
775
|
};
|
699
776
|
}) => {
|
@@ -707,7 +784,7 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
707
784
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
708
785
|
memoize: typeof import("reselect").weakMapMemoize;
|
709
786
|
}, ((state: {
|
710
|
-
|
787
|
+
FlowerFlow: {
|
711
788
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
712
789
|
};
|
713
790
|
}) => string) & {
|
@@ -723,7 +800,7 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
723
800
|
};
|
724
801
|
lastResult: () => string;
|
725
802
|
dependencies: [((state: {
|
726
|
-
|
803
|
+
FlowerFlow: {
|
727
804
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
728
805
|
};
|
729
806
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -743,7 +820,7 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
743
820
|
};
|
744
821
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
745
822
|
dependencies: [<T extends Record<string, any>>(state: {
|
746
|
-
|
823
|
+
FlowerFlow: {
|
747
824
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
748
825
|
};
|
749
826
|
}) => {
|
@@ -781,48 +858,48 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
781
858
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
782
859
|
memoize: typeof import("reselect").weakMapMemoize;
|
783
860
|
};
|
784
|
-
declare const
|
785
|
-
|
786
|
-
[x: string]: import("@flowerforce/flower-core").
|
861
|
+
export declare const makeSelectData: (name: string) => ((state: {
|
862
|
+
FlowerData: {
|
863
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
787
864
|
};
|
788
865
|
}) => Record<string, any>) & {
|
789
866
|
clearCache: () => void;
|
790
867
|
resultsCount: () => number;
|
791
868
|
resetResultsCount: () => void;
|
792
869
|
} & {
|
793
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").
|
794
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").
|
870
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => Record<string, any>;
|
871
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => Record<string, any>) & {
|
795
872
|
clearCache: () => void;
|
796
873
|
resultsCount: () => number;
|
797
874
|
resetResultsCount: () => void;
|
798
875
|
};
|
799
876
|
lastResult: () => Record<string, any>;
|
800
877
|
dependencies: [((state: {
|
801
|
-
|
802
|
-
[x: string]: import("@flowerforce/flower-core").
|
878
|
+
FlowerData: {
|
879
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
803
880
|
};
|
804
|
-
}) => import("@flowerforce/flower-core").
|
881
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
805
882
|
clearCache: () => void;
|
806
883
|
resultsCount: () => number;
|
807
884
|
resetResultsCount: () => void;
|
808
885
|
} & {
|
809
886
|
resultFunc: (resultFuncArgs_0: {
|
810
|
-
[x: string]: import("@flowerforce/flower-core").
|
811
|
-
}) => import("@flowerforce/flower-core").
|
887
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
888
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
812
889
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
813
|
-
[x: string]: import("@flowerforce/flower-core").
|
814
|
-
}) => import("@flowerforce/flower-core").
|
890
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
891
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
815
892
|
clearCache: () => void;
|
816
893
|
resultsCount: () => number;
|
817
894
|
resetResultsCount: () => void;
|
818
895
|
};
|
819
|
-
lastResult: () => import("@flowerforce/flower-core").
|
896
|
+
lastResult: () => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
820
897
|
dependencies: [<T extends Record<string, any>>(state: {
|
821
|
-
|
822
|
-
[x: string]: import("@flowerforce/flower-core").
|
898
|
+
FlowerData: {
|
899
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
823
900
|
};
|
824
901
|
}) => {
|
825
|
-
[x: string]: import("@flowerforce/flower-core").
|
902
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
826
903
|
}];
|
827
904
|
recomputations: () => number;
|
828
905
|
resetRecomputations: () => void;
|
@@ -840,9 +917,9 @@ declare const getDataByFlow: (name: string) => ((state: {
|
|
840
917
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
841
918
|
memoize: typeof import("reselect").weakMapMemoize;
|
842
919
|
};
|
843
|
-
declare const getDataFromState: (name: string, id: string | string[]) => ((state: {
|
844
|
-
|
845
|
-
[x: string]: import("@flowerforce/flower-core").
|
920
|
+
export declare const getDataFromState: (name: string, id: string | string[]) => ((state: {
|
921
|
+
FlowerData: {
|
922
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
846
923
|
};
|
847
924
|
}) => Partial<Record<string, any>>) & {
|
848
925
|
clearCache: () => void;
|
@@ -857,47 +934,47 @@ declare const getDataFromState: (name: string, id: string | string[]) => ((state
|
|
857
934
|
};
|
858
935
|
lastResult: () => Partial<Record<string, any>>;
|
859
936
|
dependencies: [((state: {
|
860
|
-
|
861
|
-
[x: string]: import("@flowerforce/flower-core").
|
937
|
+
FlowerData: {
|
938
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
862
939
|
};
|
863
940
|
}) => Record<string, any>) & {
|
864
941
|
clearCache: () => void;
|
865
942
|
resultsCount: () => number;
|
866
943
|
resetResultsCount: () => void;
|
867
944
|
} & {
|
868
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").
|
869
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").
|
945
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => Record<string, any>;
|
946
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => Record<string, any>) & {
|
870
947
|
clearCache: () => void;
|
871
948
|
resultsCount: () => number;
|
872
949
|
resetResultsCount: () => void;
|
873
950
|
};
|
874
951
|
lastResult: () => Record<string, any>;
|
875
952
|
dependencies: [((state: {
|
876
|
-
|
877
|
-
[x: string]: import("@flowerforce/flower-core").
|
953
|
+
FlowerData: {
|
954
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
878
955
|
};
|
879
|
-
}) => import("@flowerforce/flower-core").
|
956
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
880
957
|
clearCache: () => void;
|
881
958
|
resultsCount: () => number;
|
882
959
|
resetResultsCount: () => void;
|
883
960
|
} & {
|
884
961
|
resultFunc: (resultFuncArgs_0: {
|
885
|
-
[x: string]: import("@flowerforce/flower-core").
|
886
|
-
}) => import("@flowerforce/flower-core").
|
962
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
963
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
887
964
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
888
|
-
[x: string]: import("@flowerforce/flower-core").
|
889
|
-
}) => import("@flowerforce/flower-core").
|
965
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
966
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
890
967
|
clearCache: () => void;
|
891
968
|
resultsCount: () => number;
|
892
969
|
resetResultsCount: () => void;
|
893
970
|
};
|
894
|
-
lastResult: () => import("@flowerforce/flower-core").
|
971
|
+
lastResult: () => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
895
972
|
dependencies: [<T extends Record<string, any>>(state: {
|
896
|
-
|
897
|
-
[x: string]: import("@flowerforce/flower-core").
|
973
|
+
FlowerData: {
|
974
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
898
975
|
};
|
899
976
|
}) => {
|
900
|
-
[x: string]: import("@flowerforce/flower-core").
|
977
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
901
978
|
}];
|
902
979
|
recomputations: () => number;
|
903
980
|
resetRecomputations: () => void;
|
@@ -923,9 +1000,9 @@ declare const getDataFromState: (name: string, id: string | string[]) => ((state
|
|
923
1000
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
924
1001
|
memoize: typeof import("reselect").weakMapMemoize;
|
925
1002
|
};
|
926
|
-
declare const makeSelectNodeErrors: (name: string
|
927
|
-
|
928
|
-
[x: string]: import("@flowerforce/flower-core").
|
1003
|
+
export declare const makeSelectNodeErrors: (name: string) => ((state: {
|
1004
|
+
FlowerData: {
|
1005
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
929
1006
|
};
|
930
1007
|
}) => {
|
931
1008
|
isSubmitted: boolean;
|
@@ -940,7 +1017,7 @@ declare const makeSelectNodeErrors: (name: string, currentNodeId: string) => ((s
|
|
940
1017
|
resultsCount: () => number;
|
941
1018
|
resetResultsCount: () => void;
|
942
1019
|
} & {
|
943
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").
|
1020
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => {
|
944
1021
|
isSubmitted: boolean;
|
945
1022
|
isDirty: boolean;
|
946
1023
|
hasFocus: string | undefined;
|
@@ -949,7 +1026,7 @@ declare const makeSelectNodeErrors: (name: string, currentNodeId: string) => ((s
|
|
949
1026
|
isValid: boolean;
|
950
1027
|
isValidating?: boolean | undefined;
|
951
1028
|
};
|
952
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").
|
1029
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => {
|
953
1030
|
isSubmitted: boolean;
|
954
1031
|
isDirty: boolean;
|
955
1032
|
hasFocus: string | undefined;
|
@@ -972,55 +1049,31 @@ declare const makeSelectNodeErrors: (name: string, currentNodeId: string) => ((s
|
|
972
1049
|
isValidating?: boolean | undefined;
|
973
1050
|
};
|
974
1051
|
dependencies: [((state: {
|
975
|
-
|
976
|
-
[x: string]: import("@flowerforce/flower-core").
|
1052
|
+
FlowerData: {
|
1053
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
977
1054
|
};
|
978
|
-
}) => import("@flowerforce/flower-core").
|
1055
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
979
1056
|
clearCache: () => void;
|
980
1057
|
resultsCount: () => number;
|
981
1058
|
resetResultsCount: () => void;
|
982
1059
|
} & {
|
983
|
-
resultFunc: (resultFuncArgs_0:
|
984
|
-
|
1060
|
+
resultFunc: (resultFuncArgs_0: {
|
1061
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1062
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1063
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
1064
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1065
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
985
1066
|
clearCache: () => void;
|
986
1067
|
resultsCount: () => number;
|
987
1068
|
resetResultsCount: () => void;
|
988
1069
|
};
|
989
|
-
lastResult: () => import("@flowerforce/flower-core").
|
990
|
-
dependencies: [(
|
991
|
-
|
992
|
-
[x: string]: import("@flowerforce/flower-core").
|
993
|
-
};
|
994
|
-
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
995
|
-
clearCache: () => void;
|
996
|
-
resultsCount: () => number;
|
997
|
-
resetResultsCount: () => void;
|
998
|
-
} & {
|
999
|
-
resultFunc: (resultFuncArgs_0: {
|
1000
|
-
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1001
|
-
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1002
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
1003
|
-
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1004
|
-
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
1005
|
-
clearCache: () => void;
|
1006
|
-
resultsCount: () => number;
|
1007
|
-
resetResultsCount: () => void;
|
1070
|
+
lastResult: () => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1071
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
1072
|
+
FlowerData: {
|
1073
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1008
1074
|
};
|
1009
|
-
|
1010
|
-
|
1011
|
-
flower: {
|
1012
|
-
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1013
|
-
};
|
1014
|
-
}) => {
|
1015
|
-
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1016
|
-
}];
|
1017
|
-
recomputations: () => number;
|
1018
|
-
resetRecomputations: () => void;
|
1019
|
-
dependencyRecomputations: () => number;
|
1020
|
-
resetDependencyRecomputations: () => void;
|
1021
|
-
} & {
|
1022
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1023
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
1075
|
+
}) => {
|
1076
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1024
1077
|
}];
|
1025
1078
|
recomputations: () => number;
|
1026
1079
|
resetRecomputations: () => void;
|
@@ -1038,72 +1091,48 @@ declare const makeSelectNodeErrors: (name: string, currentNodeId: string) => ((s
|
|
1038
1091
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1039
1092
|
memoize: typeof import("reselect").weakMapMemoize;
|
1040
1093
|
};
|
1041
|
-
declare const makeSelectNodeFieldTouched: (name: string,
|
1042
|
-
|
1043
|
-
[x: string]: import("@flowerforce/flower-core").
|
1094
|
+
export declare const makeSelectNodeFieldTouched: (name: string, fieldId: string) => ((state: {
|
1095
|
+
FlowerData: {
|
1096
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1044
1097
|
};
|
1045
1098
|
}) => boolean | undefined) & {
|
1046
1099
|
clearCache: () => void;
|
1047
1100
|
resultsCount: () => number;
|
1048
1101
|
resetResultsCount: () => void;
|
1049
1102
|
} & {
|
1050
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").
|
1051
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").
|
1103
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => boolean | undefined;
|
1104
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => boolean | undefined) & {
|
1052
1105
|
clearCache: () => void;
|
1053
1106
|
resultsCount: () => number;
|
1054
1107
|
resetResultsCount: () => void;
|
1055
1108
|
};
|
1056
1109
|
lastResult: () => boolean | undefined;
|
1057
1110
|
dependencies: [((state: {
|
1058
|
-
|
1059
|
-
[x: string]: import("@flowerforce/flower-core").
|
1111
|
+
FlowerData: {
|
1112
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1060
1113
|
};
|
1061
|
-
}) => import("@flowerforce/flower-core").
|
1114
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1062
1115
|
clearCache: () => void;
|
1063
1116
|
resultsCount: () => number;
|
1064
1117
|
resetResultsCount: () => void;
|
1065
1118
|
} & {
|
1066
|
-
resultFunc: (resultFuncArgs_0:
|
1067
|
-
|
1119
|
+
resultFunc: (resultFuncArgs_0: {
|
1120
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1121
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1122
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
1123
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1124
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1068
1125
|
clearCache: () => void;
|
1069
1126
|
resultsCount: () => number;
|
1070
1127
|
resetResultsCount: () => void;
|
1071
1128
|
};
|
1072
|
-
lastResult: () => import("@flowerforce/flower-core").
|
1073
|
-
dependencies: [(
|
1074
|
-
|
1075
|
-
[x: string]: import("@flowerforce/flower-core").
|
1076
|
-
};
|
1077
|
-
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
1078
|
-
clearCache: () => void;
|
1079
|
-
resultsCount: () => number;
|
1080
|
-
resetResultsCount: () => void;
|
1081
|
-
} & {
|
1082
|
-
resultFunc: (resultFuncArgs_0: {
|
1083
|
-
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1084
|
-
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1085
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
1086
|
-
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1087
|
-
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
1088
|
-
clearCache: () => void;
|
1089
|
-
resultsCount: () => number;
|
1090
|
-
resetResultsCount: () => void;
|
1129
|
+
lastResult: () => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1130
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
1131
|
+
FlowerData: {
|
1132
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1091
1133
|
};
|
1092
|
-
|
1093
|
-
|
1094
|
-
flower: {
|
1095
|
-
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1096
|
-
};
|
1097
|
-
}) => {
|
1098
|
-
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1099
|
-
}];
|
1100
|
-
recomputations: () => number;
|
1101
|
-
resetRecomputations: () => void;
|
1102
|
-
dependencyRecomputations: () => number;
|
1103
|
-
resetDependencyRecomputations: () => void;
|
1104
|
-
} & {
|
1105
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1106
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
1134
|
+
}) => {
|
1135
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1107
1136
|
}];
|
1108
1137
|
recomputations: () => number;
|
1109
1138
|
resetRecomputations: () => void;
|
@@ -1121,72 +1150,48 @@ declare const makeSelectNodeFieldTouched: (name: string, currentNodeId: string,
|
|
1121
1150
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1122
1151
|
memoize: typeof import("reselect").weakMapMemoize;
|
1123
1152
|
};
|
1124
|
-
declare const makeSelectNodeFieldFocused: (name: string,
|
1125
|
-
|
1126
|
-
[x: string]: import("@flowerforce/flower-core").
|
1153
|
+
export declare const makeSelectNodeFieldFocused: (name: string, fieldId: string) => ((state: {
|
1154
|
+
FlowerData: {
|
1155
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1127
1156
|
};
|
1128
1157
|
}) => string | undefined) & {
|
1129
1158
|
clearCache: () => void;
|
1130
1159
|
resultsCount: () => number;
|
1131
1160
|
resetResultsCount: () => void;
|
1132
1161
|
} & {
|
1133
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").
|
1134
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").
|
1162
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => string | undefined;
|
1163
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => string | undefined) & {
|
1135
1164
|
clearCache: () => void;
|
1136
1165
|
resultsCount: () => number;
|
1137
1166
|
resetResultsCount: () => void;
|
1138
1167
|
};
|
1139
1168
|
lastResult: () => string | undefined;
|
1140
1169
|
dependencies: [((state: {
|
1141
|
-
|
1142
|
-
[x: string]: import("@flowerforce/flower-core").
|
1170
|
+
FlowerData: {
|
1171
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1143
1172
|
};
|
1144
|
-
}) => import("@flowerforce/flower-core").
|
1173
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1145
1174
|
clearCache: () => void;
|
1146
1175
|
resultsCount: () => number;
|
1147
1176
|
resetResultsCount: () => void;
|
1148
1177
|
} & {
|
1149
|
-
resultFunc: (resultFuncArgs_0:
|
1150
|
-
|
1178
|
+
resultFunc: (resultFuncArgs_0: {
|
1179
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1180
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1181
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
1182
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1183
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1151
1184
|
clearCache: () => void;
|
1152
1185
|
resultsCount: () => number;
|
1153
1186
|
resetResultsCount: () => void;
|
1154
1187
|
};
|
1155
|
-
lastResult: () => import("@flowerforce/flower-core").
|
1156
|
-
dependencies: [(
|
1157
|
-
|
1158
|
-
[x: string]: import("@flowerforce/flower-core").
|
1159
|
-
};
|
1160
|
-
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
1161
|
-
clearCache: () => void;
|
1162
|
-
resultsCount: () => number;
|
1163
|
-
resetResultsCount: () => void;
|
1164
|
-
} & {
|
1165
|
-
resultFunc: (resultFuncArgs_0: {
|
1166
|
-
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1167
|
-
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1168
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
1169
|
-
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1170
|
-
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
1171
|
-
clearCache: () => void;
|
1172
|
-
resultsCount: () => number;
|
1173
|
-
resetResultsCount: () => void;
|
1188
|
+
lastResult: () => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1189
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
1190
|
+
FlowerData: {
|
1191
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1174
1192
|
};
|
1175
|
-
|
1176
|
-
|
1177
|
-
flower: {
|
1178
|
-
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1179
|
-
};
|
1180
|
-
}) => {
|
1181
|
-
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1182
|
-
}];
|
1183
|
-
recomputations: () => number;
|
1184
|
-
resetRecomputations: () => void;
|
1185
|
-
dependencyRecomputations: () => number;
|
1186
|
-
resetDependencyRecomputations: () => void;
|
1187
|
-
} & {
|
1188
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1189
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
1193
|
+
}) => {
|
1194
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1190
1195
|
}];
|
1191
1196
|
recomputations: () => number;
|
1192
1197
|
resetRecomputations: () => void;
|
@@ -1204,72 +1209,107 @@ declare const makeSelectNodeFieldFocused: (name: string, currentNodeId: string,
|
|
1204
1209
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1205
1210
|
memoize: typeof import("reselect").weakMapMemoize;
|
1206
1211
|
};
|
1207
|
-
declare const makeSelectNodeFieldDirty: (name: string,
|
1208
|
-
|
1209
|
-
[x: string]: import("@flowerforce/flower-core").
|
1212
|
+
export declare const makeSelectNodeFieldDirty: (name: string, fieldId: string) => ((state: {
|
1213
|
+
FlowerData: {
|
1214
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1210
1215
|
};
|
1211
1216
|
}) => boolean | undefined) & {
|
1212
1217
|
clearCache: () => void;
|
1213
1218
|
resultsCount: () => number;
|
1214
1219
|
resetResultsCount: () => void;
|
1215
1220
|
} & {
|
1216
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").
|
1217
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").
|
1221
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => boolean | undefined;
|
1222
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => boolean | undefined) & {
|
1218
1223
|
clearCache: () => void;
|
1219
1224
|
resultsCount: () => number;
|
1220
1225
|
resetResultsCount: () => void;
|
1221
1226
|
};
|
1222
1227
|
lastResult: () => boolean | undefined;
|
1223
1228
|
dependencies: [((state: {
|
1224
|
-
|
1225
|
-
[x: string]: import("@flowerforce/flower-core").
|
1229
|
+
FlowerData: {
|
1230
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1226
1231
|
};
|
1227
|
-
}) => import("@flowerforce/flower-core").
|
1232
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1228
1233
|
clearCache: () => void;
|
1229
1234
|
resultsCount: () => number;
|
1230
1235
|
resetResultsCount: () => void;
|
1231
1236
|
} & {
|
1232
|
-
resultFunc: (resultFuncArgs_0:
|
1233
|
-
|
1237
|
+
resultFunc: (resultFuncArgs_0: {
|
1238
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1239
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1240
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
1241
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1242
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1234
1243
|
clearCache: () => void;
|
1235
1244
|
resultsCount: () => number;
|
1236
1245
|
resetResultsCount: () => void;
|
1237
1246
|
};
|
1238
|
-
lastResult: () => import("@flowerforce/flower-core").
|
1239
|
-
dependencies: [(
|
1240
|
-
|
1241
|
-
[x: string]: import("@flowerforce/flower-core").
|
1247
|
+
lastResult: () => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1248
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
1249
|
+
FlowerData: {
|
1250
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1242
1251
|
};
|
1243
|
-
}) =>
|
1252
|
+
}) => {
|
1253
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1254
|
+
}];
|
1255
|
+
recomputations: () => number;
|
1256
|
+
resetRecomputations: () => void;
|
1257
|
+
dependencyRecomputations: () => number;
|
1258
|
+
resetDependencyRecomputations: () => void;
|
1259
|
+
} & {
|
1260
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1261
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
1262
|
+
}];
|
1263
|
+
recomputations: () => number;
|
1264
|
+
resetRecomputations: () => void;
|
1265
|
+
dependencyRecomputations: () => number;
|
1266
|
+
resetDependencyRecomputations: () => void;
|
1267
|
+
} & {
|
1268
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1269
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
1270
|
+
};
|
1271
|
+
export declare const makeSelectNodeDataSubmitted: (name: string, currentNodeId: string) => ((state: {
|
1272
|
+
FlowerData: {
|
1273
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1274
|
+
};
|
1275
|
+
}) => boolean | undefined) & {
|
1276
|
+
clearCache: () => void;
|
1277
|
+
resultsCount: () => number;
|
1278
|
+
resetResultsCount: () => void;
|
1279
|
+
} & {
|
1280
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => boolean | undefined;
|
1281
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => boolean | undefined) & {
|
1282
|
+
clearCache: () => void;
|
1283
|
+
resultsCount: () => number;
|
1284
|
+
resetResultsCount: () => void;
|
1285
|
+
};
|
1286
|
+
lastResult: () => boolean | undefined;
|
1287
|
+
dependencies: [((state: {
|
1288
|
+
FlowerData: {
|
1289
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1290
|
+
};
|
1291
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1292
|
+
clearCache: () => void;
|
1293
|
+
resultsCount: () => number;
|
1294
|
+
resetResultsCount: () => void;
|
1295
|
+
} & {
|
1296
|
+
resultFunc: (resultFuncArgs_0: {
|
1297
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1298
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1299
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
1300
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1301
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1244
1302
|
clearCache: () => void;
|
1245
1303
|
resultsCount: () => number;
|
1246
1304
|
resetResultsCount: () => void;
|
1247
|
-
}
|
1248
|
-
|
1249
|
-
|
1250
|
-
|
1251
|
-
|
1252
|
-
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1253
|
-
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
1254
|
-
clearCache: () => void;
|
1255
|
-
resultsCount: () => number;
|
1256
|
-
resetResultsCount: () => void;
|
1305
|
+
};
|
1306
|
+
lastResult: () => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1307
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
1308
|
+
FlowerData: {
|
1309
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1257
1310
|
};
|
1258
|
-
|
1259
|
-
|
1260
|
-
flower: {
|
1261
|
-
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1262
|
-
};
|
1263
|
-
}) => {
|
1264
|
-
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1265
|
-
}];
|
1266
|
-
recomputations: () => number;
|
1267
|
-
resetRecomputations: () => void;
|
1268
|
-
dependencyRecomputations: () => number;
|
1269
|
-
resetDependencyRecomputations: () => void;
|
1270
|
-
} & {
|
1271
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1272
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
1311
|
+
}) => {
|
1312
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1273
1313
|
}];
|
1274
1314
|
recomputations: () => number;
|
1275
1315
|
resetRecomputations: () => void;
|
@@ -1287,40 +1327,109 @@ declare const makeSelectNodeFieldDirty: (name: string, currentNodeId: string, fi
|
|
1287
1327
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1288
1328
|
memoize: typeof import("reselect").weakMapMemoize;
|
1289
1329
|
};
|
1290
|
-
declare const
|
1291
|
-
|
1330
|
+
export declare const getAllData: ((state: {
|
1331
|
+
FlowerData: {
|
1332
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1333
|
+
};
|
1334
|
+
}) => Record<string, any> | undefined) & {
|
1335
|
+
clearCache: () => void;
|
1336
|
+
resultsCount: () => number;
|
1337
|
+
resetResultsCount: () => void;
|
1338
|
+
} & {
|
1339
|
+
resultFunc: (resultFuncArgs_0: {
|
1340
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1341
|
+
}) => Record<string, any> | undefined;
|
1342
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
1343
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1344
|
+
}) => Record<string, any> | undefined) & {
|
1345
|
+
clearCache: () => void;
|
1346
|
+
resultsCount: () => number;
|
1347
|
+
resetResultsCount: () => void;
|
1348
|
+
};
|
1349
|
+
lastResult: () => Record<string, any> | undefined;
|
1350
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
1351
|
+
FlowerData: {
|
1352
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1353
|
+
};
|
1354
|
+
}) => {
|
1355
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1356
|
+
}];
|
1357
|
+
recomputations: () => number;
|
1358
|
+
resetRecomputations: () => void;
|
1359
|
+
dependencyRecomputations: () => number;
|
1360
|
+
resetDependencyRecomputations: () => void;
|
1361
|
+
} & {
|
1362
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1363
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
1364
|
+
};
|
1365
|
+
export declare const selectFlowerDataCurrentNode: (name: string) => ((state: {
|
1366
|
+
FlowerFlow: {
|
1292
1367
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1293
1368
|
};
|
1294
|
-
}) =>
|
1369
|
+
}) => any) & {
|
1295
1370
|
clearCache: () => void;
|
1296
1371
|
resultsCount: () => number;
|
1297
1372
|
resetResultsCount: () => void;
|
1298
1373
|
} & {
|
1299
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").
|
1300
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").
|
1374
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>, resultFuncArgs_1: string) => any;
|
1375
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>, resultFuncArgs_1: string) => any) & {
|
1301
1376
|
clearCache: () => void;
|
1302
1377
|
resultsCount: () => number;
|
1303
1378
|
resetResultsCount: () => void;
|
1304
1379
|
};
|
1305
|
-
lastResult: () =>
|
1380
|
+
lastResult: () => any;
|
1306
1381
|
dependencies: [((state: {
|
1307
|
-
|
1382
|
+
FlowerFlow: {
|
1383
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1384
|
+
};
|
1385
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
1386
|
+
clearCache: () => void;
|
1387
|
+
resultsCount: () => number;
|
1388
|
+
resetResultsCount: () => void;
|
1389
|
+
} & {
|
1390
|
+
resultFunc: (resultFuncArgs_0: {
|
1391
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1392
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1393
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
1394
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1395
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
1396
|
+
clearCache: () => void;
|
1397
|
+
resultsCount: () => number;
|
1398
|
+
resetResultsCount: () => void;
|
1399
|
+
};
|
1400
|
+
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1401
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
1402
|
+
FlowerFlow: {
|
1403
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1404
|
+
};
|
1405
|
+
}) => {
|
1406
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1407
|
+
}];
|
1408
|
+
recomputations: () => number;
|
1409
|
+
resetRecomputations: () => void;
|
1410
|
+
dependencyRecomputations: () => number;
|
1411
|
+
resetDependencyRecomputations: () => void;
|
1412
|
+
} & {
|
1413
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1414
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
1415
|
+
}, ((state: {
|
1416
|
+
FlowerFlow: {
|
1308
1417
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1309
1418
|
};
|
1310
|
-
}) =>
|
1419
|
+
}) => string) & {
|
1311
1420
|
clearCache: () => void;
|
1312
1421
|
resultsCount: () => number;
|
1313
1422
|
resetResultsCount: () => void;
|
1314
1423
|
} & {
|
1315
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any
|
1316
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any
|
1424
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>, resultFuncArgs_1: string) => string;
|
1425
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>, resultFuncArgs_1: string) => string) & {
|
1317
1426
|
clearCache: () => void;
|
1318
1427
|
resultsCount: () => number;
|
1319
1428
|
resetResultsCount: () => void;
|
1320
1429
|
};
|
1321
|
-
lastResult: () =>
|
1430
|
+
lastResult: () => string;
|
1322
1431
|
dependencies: [((state: {
|
1323
|
-
|
1432
|
+
FlowerFlow: {
|
1324
1433
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1325
1434
|
};
|
1326
1435
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -1340,7 +1449,7 @@ declare const makeSelectNodeFormSubmitted: (name: string, currentNodeId: string)
|
|
1340
1449
|
};
|
1341
1450
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1342
1451
|
dependencies: [<T extends Record<string, any>>(state: {
|
1343
|
-
|
1452
|
+
FlowerFlow: {
|
1344
1453
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1345
1454
|
};
|
1346
1455
|
}) => {
|
@@ -1353,6 +1462,64 @@ declare const makeSelectNodeFormSubmitted: (name: string, currentNodeId: string)
|
|
1353
1462
|
} & {
|
1354
1463
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1355
1464
|
memoize: typeof import("reselect").weakMapMemoize;
|
1465
|
+
}, ((state: {
|
1466
|
+
FlowerFlow: {
|
1467
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1468
|
+
};
|
1469
|
+
}) => string) & {
|
1470
|
+
clearCache: () => void;
|
1471
|
+
resultsCount: () => number;
|
1472
|
+
resetResultsCount: () => void;
|
1473
|
+
} & {
|
1474
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>) => string;
|
1475
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>) => string) & {
|
1476
|
+
clearCache: () => void;
|
1477
|
+
resultsCount: () => number;
|
1478
|
+
resetResultsCount: () => void;
|
1479
|
+
};
|
1480
|
+
lastResult: () => string;
|
1481
|
+
dependencies: [((state: {
|
1482
|
+
FlowerFlow: {
|
1483
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1484
|
+
};
|
1485
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
1486
|
+
clearCache: () => void;
|
1487
|
+
resultsCount: () => number;
|
1488
|
+
resetResultsCount: () => void;
|
1489
|
+
} & {
|
1490
|
+
resultFunc: (resultFuncArgs_0: {
|
1491
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1492
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1493
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
1494
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1495
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
1496
|
+
clearCache: () => void;
|
1497
|
+
resultsCount: () => number;
|
1498
|
+
resetResultsCount: () => void;
|
1499
|
+
};
|
1500
|
+
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1501
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
1502
|
+
FlowerFlow: {
|
1503
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1504
|
+
};
|
1505
|
+
}) => {
|
1506
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1507
|
+
}];
|
1508
|
+
recomputations: () => number;
|
1509
|
+
resetRecomputations: () => void;
|
1510
|
+
dependencyRecomputations: () => number;
|
1511
|
+
resetDependencyRecomputations: () => void;
|
1512
|
+
} & {
|
1513
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1514
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
1515
|
+
}];
|
1516
|
+
recomputations: () => number;
|
1517
|
+
resetRecomputations: () => void;
|
1518
|
+
dependencyRecomputations: () => number;
|
1519
|
+
resetDependencyRecomputations: () => void;
|
1520
|
+
} & {
|
1521
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1522
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
1356
1523
|
}];
|
1357
1524
|
recomputations: () => number;
|
1358
1525
|
resetRecomputations: () => void;
|
@@ -1370,43 +1537,12 @@ declare const makeSelectNodeFormSubmitted: (name: string, currentNodeId: string)
|
|
1370
1537
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1371
1538
|
memoize: typeof import("reselect").weakMapMemoize;
|
1372
1539
|
};
|
1373
|
-
declare const
|
1374
|
-
|
1375
|
-
[x: string]: import("@flowerforce/flower-core").
|
1540
|
+
export declare const makeSelectFieldError: (name: string, id: string, validate: any) => ((state: {
|
1541
|
+
FlowerData: {
|
1542
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1376
1543
|
};
|
1377
|
-
}) => Record<string, any> | undefined) & {
|
1378
|
-
clearCache: () => void;
|
1379
|
-
resultsCount: () => number;
|
1380
|
-
resetResultsCount: () => void;
|
1381
|
-
} & {
|
1382
|
-
resultFunc: (resultFuncArgs_0: {
|
1383
|
-
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1384
|
-
}) => Record<string, any> | undefined;
|
1385
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
1386
|
-
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1387
|
-
}) => Record<string, any> | undefined) & {
|
1388
|
-
clearCache: () => void;
|
1389
|
-
resultsCount: () => number;
|
1390
|
-
resetResultsCount: () => void;
|
1391
|
-
};
|
1392
|
-
lastResult: () => Record<string, any> | undefined;
|
1393
|
-
dependencies: [<T extends Record<string, any>>(state: {
|
1394
|
-
flower: {
|
1395
|
-
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1396
|
-
};
|
1397
|
-
}) => {
|
1398
|
-
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1399
|
-
}];
|
1400
|
-
recomputations: () => number;
|
1401
|
-
resetRecomputations: () => void;
|
1402
|
-
dependencyRecomputations: () => number;
|
1403
|
-
resetDependencyRecomputations: () => void;
|
1404
1544
|
} & {
|
1405
|
-
|
1406
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
1407
|
-
};
|
1408
|
-
declare const makeSelectFieldError: (name: string, id: string, validate: any) => ((state: {
|
1409
|
-
flower: {
|
1545
|
+
FlowerFlow: {
|
1410
1546
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1411
1547
|
};
|
1412
1548
|
}) => string[]) & {
|
@@ -1414,16 +1550,16 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1414
1550
|
resultsCount: () => number;
|
1415
1551
|
resetResultsCount: () => void;
|
1416
1552
|
} & {
|
1417
|
-
resultFunc: (resultFuncArgs_0: Record<string, any> | undefined, resultFuncArgs_1:
|
1418
|
-
memoizedResultFunc: ((resultFuncArgs_0: Record<string, any> | undefined, resultFuncArgs_1:
|
1553
|
+
resultFunc: (resultFuncArgs_0: Record<string, any> | undefined, resultFuncArgs_1: any) => string[];
|
1554
|
+
memoizedResultFunc: ((resultFuncArgs_0: Record<string, any> | undefined, resultFuncArgs_1: any) => string[]) & {
|
1419
1555
|
clearCache: () => void;
|
1420
1556
|
resultsCount: () => number;
|
1421
1557
|
resetResultsCount: () => void;
|
1422
1558
|
};
|
1423
1559
|
lastResult: () => string[];
|
1424
1560
|
dependencies: [((state: {
|
1425
|
-
|
1426
|
-
[x: string]: import("@flowerforce/flower-core").
|
1561
|
+
FlowerData: {
|
1562
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1427
1563
|
};
|
1428
1564
|
}) => Record<string, any> | undefined) & {
|
1429
1565
|
clearCache: () => void;
|
@@ -1431,10 +1567,10 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1431
1567
|
resetResultsCount: () => void;
|
1432
1568
|
} & {
|
1433
1569
|
resultFunc: (resultFuncArgs_0: {
|
1434
|
-
[x: string]: import("@flowerforce/flower-core").
|
1570
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1435
1571
|
}) => Record<string, any> | undefined;
|
1436
1572
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
1437
|
-
[x: string]: import("@flowerforce/flower-core").
|
1573
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1438
1574
|
}) => Record<string, any> | undefined) & {
|
1439
1575
|
clearCache: () => void;
|
1440
1576
|
resultsCount: () => number;
|
@@ -1442,11 +1578,11 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1442
1578
|
};
|
1443
1579
|
lastResult: () => Record<string, any> | undefined;
|
1444
1580
|
dependencies: [<T extends Record<string, any>>(state: {
|
1445
|
-
|
1446
|
-
[x: string]: import("@flowerforce/flower-core").
|
1581
|
+
FlowerData: {
|
1582
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1447
1583
|
};
|
1448
1584
|
}) => {
|
1449
|
-
[x: string]: import("@flowerforce/flower-core").
|
1585
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1450
1586
|
}];
|
1451
1587
|
recomputations: () => number;
|
1452
1588
|
resetRecomputations: () => void;
|
@@ -1456,23 +1592,23 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1456
1592
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1457
1593
|
memoize: typeof import("reselect").weakMapMemoize;
|
1458
1594
|
}, ((state: {
|
1459
|
-
|
1595
|
+
FlowerFlow: {
|
1460
1596
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1461
1597
|
};
|
1462
|
-
}) =>
|
1598
|
+
}) => any) & {
|
1463
1599
|
clearCache: () => void;
|
1464
1600
|
resultsCount: () => number;
|
1465
1601
|
resetResultsCount: () => void;
|
1466
1602
|
} & {
|
1467
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>, resultFuncArgs_1: string) =>
|
1468
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>, resultFuncArgs_1: string) =>
|
1603
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>, resultFuncArgs_1: string) => any;
|
1604
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>, resultFuncArgs_1: string) => any) & {
|
1469
1605
|
clearCache: () => void;
|
1470
1606
|
resultsCount: () => number;
|
1471
1607
|
resetResultsCount: () => void;
|
1472
1608
|
};
|
1473
|
-
lastResult: () =>
|
1609
|
+
lastResult: () => any;
|
1474
1610
|
dependencies: [((state: {
|
1475
|
-
|
1611
|
+
FlowerFlow: {
|
1476
1612
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1477
1613
|
};
|
1478
1614
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -1491,12 +1627,12 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1491
1627
|
resetResultsCount: () => void;
|
1492
1628
|
};
|
1493
1629
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1494
|
-
dependencies: [<
|
1495
|
-
|
1496
|
-
[x: string]: import("@flowerforce/flower-core").Flower<
|
1630
|
+
dependencies: [<T_1 extends Record<string, any>>(state: {
|
1631
|
+
FlowerFlow: {
|
1632
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T_1>;
|
1497
1633
|
};
|
1498
1634
|
}) => {
|
1499
|
-
[x: string]: import("@flowerforce/flower-core").Flower<
|
1635
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T_1>;
|
1500
1636
|
}];
|
1501
1637
|
recomputations: () => number;
|
1502
1638
|
resetRecomputations: () => void;
|
@@ -1506,7 +1642,7 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1506
1642
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1507
1643
|
memoize: typeof import("reselect").weakMapMemoize;
|
1508
1644
|
}, ((state: {
|
1509
|
-
|
1645
|
+
FlowerFlow: {
|
1510
1646
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1511
1647
|
};
|
1512
1648
|
}) => string) & {
|
@@ -1522,7 +1658,7 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1522
1658
|
};
|
1523
1659
|
lastResult: () => string;
|
1524
1660
|
dependencies: [((state: {
|
1525
|
-
|
1661
|
+
FlowerFlow: {
|
1526
1662
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1527
1663
|
};
|
1528
1664
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -1541,12 +1677,12 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1541
1677
|
resetResultsCount: () => void;
|
1542
1678
|
};
|
1543
1679
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1544
|
-
dependencies: [<
|
1545
|
-
|
1546
|
-
[x: string]: import("@flowerforce/flower-core").Flower<
|
1680
|
+
dependencies: [<T_1 extends Record<string, any>>(state: {
|
1681
|
+
FlowerFlow: {
|
1682
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T_1>;
|
1547
1683
|
};
|
1548
1684
|
}) => {
|
1549
|
-
[x: string]: import("@flowerforce/flower-core").Flower<
|
1685
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T_1>;
|
1550
1686
|
}];
|
1551
1687
|
recomputations: () => number;
|
1552
1688
|
resetRecomputations: () => void;
|
@@ -1556,7 +1692,7 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1556
1692
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1557
1693
|
memoize: typeof import("reselect").weakMapMemoize;
|
1558
1694
|
}, ((state: {
|
1559
|
-
|
1695
|
+
FlowerFlow: {
|
1560
1696
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1561
1697
|
};
|
1562
1698
|
}) => string) & {
|
@@ -1572,7 +1708,7 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1572
1708
|
};
|
1573
1709
|
lastResult: () => string;
|
1574
1710
|
dependencies: [((state: {
|
1575
|
-
|
1711
|
+
FlowerFlow: {
|
1576
1712
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1577
1713
|
};
|
1578
1714
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -1591,12 +1727,12 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1591
1727
|
resetResultsCount: () => void;
|
1592
1728
|
};
|
1593
1729
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1594
|
-
dependencies: [<
|
1595
|
-
|
1596
|
-
[x: string]: import("@flowerforce/flower-core").Flower<
|
1730
|
+
dependencies: [<T_1 extends Record<string, any>>(state: {
|
1731
|
+
FlowerFlow: {
|
1732
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T_1>;
|
1597
1733
|
};
|
1598
1734
|
}) => {
|
1599
|
-
[x: string]: import("@flowerforce/flower-core").Flower<
|
1735
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T_1>;
|
1600
1736
|
}];
|
1601
1737
|
recomputations: () => number;
|
1602
1738
|
resetRecomputations: () => void;
|
@@ -1638,9 +1774,9 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1638
1774
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1639
1775
|
memoize: typeof import("reselect").weakMapMemoize;
|
1640
1776
|
};
|
1641
|
-
export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any> | FunctionRule, keys: string[], flowName: string, value: any
|
1642
|
-
|
1643
|
-
[x: string]: import("@flowerforce/flower-core").
|
1777
|
+
export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any> | FunctionRule, keys: string[], flowName: string, value: any) => ((state: {
|
1778
|
+
FlowerData: {
|
1779
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1644
1780
|
};
|
1645
1781
|
}) => boolean) & {
|
1646
1782
|
clearCache: () => void;
|
@@ -1671,8 +1807,8 @@ export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any>
|
|
1671
1807
|
};
|
1672
1808
|
lastResult: () => boolean;
|
1673
1809
|
dependencies: [((state: {
|
1674
|
-
|
1675
|
-
[x: string]: import("@flowerforce/flower-core").
|
1810
|
+
FlowerData: {
|
1811
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1676
1812
|
};
|
1677
1813
|
}) => Record<string, any> | undefined) & {
|
1678
1814
|
clearCache: () => void;
|
@@ -1680,10 +1816,10 @@ export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any>
|
|
1680
1816
|
resetResultsCount: () => void;
|
1681
1817
|
} & {
|
1682
1818
|
resultFunc: (resultFuncArgs_0: {
|
1683
|
-
[x: string]: import("@flowerforce/flower-core").
|
1819
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1684
1820
|
}) => Record<string, any> | undefined;
|
1685
1821
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
1686
|
-
[x: string]: import("@flowerforce/flower-core").
|
1822
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1687
1823
|
}) => Record<string, any> | undefined) & {
|
1688
1824
|
clearCache: () => void;
|
1689
1825
|
resultsCount: () => number;
|
@@ -1691,11 +1827,11 @@ export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any>
|
|
1691
1827
|
};
|
1692
1828
|
lastResult: () => Record<string, any> | undefined;
|
1693
1829
|
dependencies: [<T extends Record<string, any>>(state: {
|
1694
|
-
|
1695
|
-
[x: string]: import("@flowerforce/flower-core").
|
1830
|
+
FlowerData: {
|
1831
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1696
1832
|
};
|
1697
1833
|
}) => {
|
1698
|
-
[x: string]: import("@flowerforce/flower-core").
|
1834
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1699
1835
|
}];
|
1700
1836
|
recomputations: () => number;
|
1701
1837
|
resetRecomputations: () => void;
|
@@ -1705,8 +1841,8 @@ export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any>
|
|
1705
1841
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1706
1842
|
memoize: typeof import("reselect").weakMapMemoize;
|
1707
1843
|
}, ((state: {
|
1708
|
-
|
1709
|
-
[x: string]: import("@flowerforce/flower-core").
|
1844
|
+
FlowerData: {
|
1845
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1710
1846
|
};
|
1711
1847
|
}) => {
|
1712
1848
|
isSubmitted: boolean;
|
@@ -1721,7 +1857,7 @@ export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any>
|
|
1721
1857
|
resultsCount: () => number;
|
1722
1858
|
resetResultsCount: () => void;
|
1723
1859
|
} & {
|
1724
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").
|
1860
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => {
|
1725
1861
|
isSubmitted: boolean;
|
1726
1862
|
isDirty: boolean;
|
1727
1863
|
hasFocus: string | undefined;
|
@@ -1730,7 +1866,7 @@ export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any>
|
|
1730
1866
|
isValid: boolean;
|
1731
1867
|
isValidating?: boolean | undefined;
|
1732
1868
|
};
|
1733
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").
|
1869
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => {
|
1734
1870
|
isSubmitted: boolean;
|
1735
1871
|
isDirty: boolean;
|
1736
1872
|
hasFocus: string | undefined;
|
@@ -1753,55 +1889,31 @@ export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any>
|
|
1753
1889
|
isValidating?: boolean | undefined;
|
1754
1890
|
};
|
1755
1891
|
dependencies: [((state: {
|
1756
|
-
|
1757
|
-
[x: string]: import("@flowerforce/flower-core").
|
1892
|
+
FlowerData: {
|
1893
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1758
1894
|
};
|
1759
|
-
}) => import("@flowerforce/flower-core").
|
1895
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1760
1896
|
clearCache: () => void;
|
1761
1897
|
resultsCount: () => number;
|
1762
1898
|
resetResultsCount: () => void;
|
1763
1899
|
} & {
|
1764
|
-
resultFunc: (resultFuncArgs_0:
|
1765
|
-
|
1900
|
+
resultFunc: (resultFuncArgs_0: {
|
1901
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1902
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1903
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
1904
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1905
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1766
1906
|
clearCache: () => void;
|
1767
1907
|
resultsCount: () => number;
|
1768
1908
|
resetResultsCount: () => void;
|
1769
1909
|
};
|
1770
|
-
lastResult: () => import("@flowerforce/flower-core").
|
1771
|
-
dependencies: [(
|
1772
|
-
|
1773
|
-
[x: string]: import("@flowerforce/flower-core").
|
1774
|
-
};
|
1775
|
-
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
1776
|
-
clearCache: () => void;
|
1777
|
-
resultsCount: () => number;
|
1778
|
-
resetResultsCount: () => void;
|
1779
|
-
} & {
|
1780
|
-
resultFunc: (resultFuncArgs_0: {
|
1781
|
-
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1782
|
-
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1783
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
1784
|
-
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1785
|
-
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
1786
|
-
clearCache: () => void;
|
1787
|
-
resultsCount: () => number;
|
1788
|
-
resetResultsCount: () => void;
|
1910
|
+
lastResult: () => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1911
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
1912
|
+
FlowerData: {
|
1913
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1789
1914
|
};
|
1790
|
-
|
1791
|
-
|
1792
|
-
flower: {
|
1793
|
-
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1794
|
-
};
|
1795
|
-
}) => {
|
1796
|
-
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1797
|
-
}];
|
1798
|
-
recomputations: () => number;
|
1799
|
-
resetRecomputations: () => void;
|
1800
|
-
dependencyRecomputations: () => number;
|
1801
|
-
resetDependencyRecomputations: () => void;
|
1802
|
-
} & {
|
1803
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1804
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
1915
|
+
}) => {
|
1916
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1805
1917
|
}];
|
1806
1918
|
recomputations: () => number;
|
1807
1919
|
resetRecomputations: () => void;
|
@@ -1827,4 +1939,3 @@ export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any>
|
|
1827
1939
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1828
1940
|
memoize: typeof import("reselect").weakMapMemoize;
|
1829
1941
|
};
|
1830
|
-
export { selectFlowerHistory, makeSelectNodesIds, makeSelectCurrentNodeId, makeSelectStartNodeId, makeSelectCurrentNodeDisabled, getAllData, getDataByFlow, getDataFromState, makeSelectNodeErrors, makeSelectNodeFieldTouched, makeSelectNodeFieldFocused, makeSelectNodeFieldDirty, makeSelectFieldError, makeSelectNodeFormSubmitted, makeSelectPrevNodeRetain };
|