@flowerforce/flower-react 3.7.2 → 4.0.1-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 +290 -199
- package/dist/index.cjs.js +427 -670
- package/dist/index.esm.js +409 -654
- package/dist/src/components/Flower.d.ts +3 -15
- 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/hooks/eventsHandlers.d.ts +5 -0
- package/dist/src/components/hooks/index.d.ts +5 -0
- package/dist/src/components/hooks/types/index.d.ts +29 -0
- package/dist/src/components/hooks/useBrowserNavigationSync.d.ts +12 -0
- package/dist/src/components/hooks/useDestroyFlow.d.ts +2 -0
- package/dist/src/components/hooks/useInitDevtools.d.ts +2 -0
- package/dist/src/components/hooks/useInitNodes.d.ts +2 -0
- package/dist/src/components/hooks/useSelectorsClient.d.ts +6 -0
- package/dist/src/components/index.d.ts +10 -0
- package/dist/src/components/{useFlower.d.ts → useFlower/index.d.ts} +2 -3
- package/dist/src/components/useFlower/utils.d.ts +22 -0
- package/dist/src/features/index.d.ts +2 -0
- package/dist/src/features/reducer/flowerReducer.d.ts +7 -0
- package/dist/src/{selectors.d.ts → features/selectors/selectors.d.ts} +669 -383
- package/dist/src/index.d.ts +6 -33
- package/dist/src/provider/createSliceWithFlower.d.ts +2 -0
- package/dist/src/provider/createStoreWithFlower.d.ts +8 -0
- package/dist/src/provider/index.d.ts +3 -0
- package/dist/src/provider/provider.d.ts +7 -0
- package/dist/src/types/FlowContext.d.ts +6 -0
- package/dist/src/types/Flower.d.ts +15 -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/dist/src/types/middlewares.d.ts +16 -0
- package/dist/src/types/utilsTypes.d.ts +4 -0
- package/dist/src/utils.d.ts +2 -10
- package/package.json +15 -7
- 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,124 @@ declare const makeSelectCurrentNodeId: (name: string) => ((state: {
|
|
251
328
|
};
|
252
329
|
lastResult: () => string;
|
253
330
|
dependencies: [((state: {
|
254
|
-
|
331
|
+
FlowerFlow: {
|
332
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
333
|
+
};
|
334
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
335
|
+
clearCache: () => void;
|
336
|
+
resultsCount: () => number;
|
337
|
+
resetResultsCount: () => void;
|
338
|
+
} & {
|
339
|
+
resultFunc: (resultFuncArgs_0: {
|
340
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
341
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
342
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
343
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
344
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
345
|
+
clearCache: () => void;
|
346
|
+
resultsCount: () => number;
|
347
|
+
resetResultsCount: () => void;
|
348
|
+
};
|
349
|
+
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
350
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
351
|
+
FlowerFlow: {
|
352
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
353
|
+
};
|
354
|
+
}) => {
|
355
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
356
|
+
}];
|
357
|
+
recomputations: () => number;
|
358
|
+
resetRecomputations: () => void;
|
359
|
+
dependencyRecomputations: () => number;
|
360
|
+
resetDependencyRecomputations: () => void;
|
361
|
+
} & {
|
362
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
363
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
364
|
+
}];
|
365
|
+
recomputations: () => number;
|
366
|
+
resetRecomputations: () => void;
|
367
|
+
dependencyRecomputations: () => number;
|
368
|
+
resetDependencyRecomputations: () => void;
|
369
|
+
} & {
|
370
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
371
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
372
|
+
}];
|
373
|
+
recomputations: () => number;
|
374
|
+
resetRecomputations: () => void;
|
375
|
+
dependencyRecomputations: () => number;
|
376
|
+
resetDependencyRecomputations: () => void;
|
377
|
+
} & {
|
378
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
379
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
380
|
+
};
|
381
|
+
export declare const makeSelectIsCurrentNode: (name: string) => ((state: {
|
382
|
+
FlowerFlow: {
|
383
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
384
|
+
};
|
385
|
+
}) => import("@flowerforce/flower-core").INode) & {
|
386
|
+
clearCache: () => void;
|
387
|
+
resultsCount: () => number;
|
388
|
+
resetResultsCount: () => void;
|
389
|
+
} & {
|
390
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>, resultFuncArgs_1: string) => import("@flowerforce/flower-core").INode;
|
391
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>, resultFuncArgs_1: string) => import("@flowerforce/flower-core").INode) & {
|
392
|
+
clearCache: () => void;
|
393
|
+
resultsCount: () => number;
|
394
|
+
resetResultsCount: () => void;
|
395
|
+
};
|
396
|
+
lastResult: () => import("@flowerforce/flower-core").INode;
|
397
|
+
dependencies: [((state: {
|
398
|
+
FlowerFlow: {
|
399
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
400
|
+
};
|
401
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
402
|
+
clearCache: () => void;
|
403
|
+
resultsCount: () => number;
|
404
|
+
resetResultsCount: () => void;
|
405
|
+
} & {
|
406
|
+
resultFunc: (resultFuncArgs_0: {
|
407
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
408
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
409
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
410
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
411
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
412
|
+
clearCache: () => void;
|
413
|
+
resultsCount: () => number;
|
414
|
+
resetResultsCount: () => void;
|
415
|
+
};
|
416
|
+
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
417
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
418
|
+
FlowerFlow: {
|
419
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
420
|
+
};
|
421
|
+
}) => {
|
422
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
423
|
+
}];
|
424
|
+
recomputations: () => number;
|
425
|
+
resetRecomputations: () => void;
|
426
|
+
dependencyRecomputations: () => number;
|
427
|
+
resetDependencyRecomputations: () => void;
|
428
|
+
} & {
|
429
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
430
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
431
|
+
}, ((state: {
|
432
|
+
FlowerFlow: {
|
433
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
434
|
+
};
|
435
|
+
}) => string) & {
|
436
|
+
clearCache: () => void;
|
437
|
+
resultsCount: () => number;
|
438
|
+
resetResultsCount: () => void;
|
439
|
+
} & {
|
440
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>, resultFuncArgs_1: string) => string;
|
441
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>, resultFuncArgs_1: string) => string) & {
|
442
|
+
clearCache: () => void;
|
443
|
+
resultsCount: () => number;
|
444
|
+
resetResultsCount: () => void;
|
445
|
+
};
|
446
|
+
lastResult: () => string;
|
447
|
+
dependencies: [((state: {
|
448
|
+
FlowerFlow: {
|
255
449
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
256
450
|
};
|
257
451
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -271,7 +465,7 @@ declare const makeSelectCurrentNodeId: (name: string) => ((state: {
|
|
271
465
|
};
|
272
466
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
273
467
|
dependencies: [<T extends Record<string, any>>(state: {
|
274
|
-
|
468
|
+
FlowerFlow: {
|
275
469
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
276
470
|
};
|
277
471
|
}) => {
|
@@ -284,6 +478,64 @@ declare const makeSelectCurrentNodeId: (name: string) => ((state: {
|
|
284
478
|
} & {
|
285
479
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
286
480
|
memoize: typeof import("reselect").weakMapMemoize;
|
481
|
+
}, ((state: {
|
482
|
+
FlowerFlow: {
|
483
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
484
|
+
};
|
485
|
+
}) => string) & {
|
486
|
+
clearCache: () => void;
|
487
|
+
resultsCount: () => number;
|
488
|
+
resetResultsCount: () => void;
|
489
|
+
} & {
|
490
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>) => string;
|
491
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>) => string) & {
|
492
|
+
clearCache: () => void;
|
493
|
+
resultsCount: () => number;
|
494
|
+
resetResultsCount: () => void;
|
495
|
+
};
|
496
|
+
lastResult: () => string;
|
497
|
+
dependencies: [((state: {
|
498
|
+
FlowerFlow: {
|
499
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
500
|
+
};
|
501
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
502
|
+
clearCache: () => void;
|
503
|
+
resultsCount: () => number;
|
504
|
+
resetResultsCount: () => void;
|
505
|
+
} & {
|
506
|
+
resultFunc: (resultFuncArgs_0: {
|
507
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
508
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
509
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
510
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
511
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
512
|
+
clearCache: () => void;
|
513
|
+
resultsCount: () => number;
|
514
|
+
resetResultsCount: () => void;
|
515
|
+
};
|
516
|
+
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
517
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
518
|
+
FlowerFlow: {
|
519
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
520
|
+
};
|
521
|
+
}) => {
|
522
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
523
|
+
}];
|
524
|
+
recomputations: () => number;
|
525
|
+
resetRecomputations: () => void;
|
526
|
+
dependencyRecomputations: () => number;
|
527
|
+
resetDependencyRecomputations: () => void;
|
528
|
+
} & {
|
529
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
530
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
531
|
+
}];
|
532
|
+
recomputations: () => number;
|
533
|
+
resetRecomputations: () => void;
|
534
|
+
dependencyRecomputations: () => number;
|
535
|
+
resetDependencyRecomputations: () => void;
|
536
|
+
} & {
|
537
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
538
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
287
539
|
}];
|
288
540
|
recomputations: () => number;
|
289
541
|
resetRecomputations: () => void;
|
@@ -301,8 +553,8 @@ declare const makeSelectCurrentNodeId: (name: string) => ((state: {
|
|
301
553
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
302
554
|
memoize: typeof import("reselect").weakMapMemoize;
|
303
555
|
};
|
304
|
-
declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
305
|
-
|
556
|
+
export declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
557
|
+
FlowerFlow: {
|
306
558
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
307
559
|
};
|
308
560
|
}) => string | undefined) & {
|
@@ -322,7 +574,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
322
574
|
};
|
323
575
|
lastResult: () => string | undefined;
|
324
576
|
dependencies: [((state: {
|
325
|
-
|
577
|
+
FlowerFlow: {
|
326
578
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
327
579
|
};
|
328
580
|
}) => {
|
@@ -346,7 +598,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
346
598
|
[x: string]: import("@flowerforce/flower-core").INode;
|
347
599
|
};
|
348
600
|
dependencies: [((state: {
|
349
|
-
|
601
|
+
FlowerFlow: {
|
350
602
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
351
603
|
};
|
352
604
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -366,7 +618,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
366
618
|
};
|
367
619
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
368
620
|
dependencies: [<T extends Record<string, any>>(state: {
|
369
|
-
|
621
|
+
FlowerFlow: {
|
370
622
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
371
623
|
};
|
372
624
|
}) => {
|
@@ -388,7 +640,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
388
640
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
389
641
|
memoize: typeof import("reselect").weakMapMemoize;
|
390
642
|
}, ((state: {
|
391
|
-
|
643
|
+
FlowerFlow: {
|
392
644
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
393
645
|
};
|
394
646
|
}) => string[]) & {
|
@@ -404,7 +656,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
404
656
|
};
|
405
657
|
lastResult: () => string[];
|
406
658
|
dependencies: [((state: {
|
407
|
-
|
659
|
+
FlowerFlow: {
|
408
660
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
409
661
|
};
|
410
662
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -424,7 +676,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
424
676
|
};
|
425
677
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
426
678
|
dependencies: [<T extends Record<string, any>>(state: {
|
427
|
-
|
679
|
+
FlowerFlow: {
|
428
680
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
429
681
|
};
|
430
682
|
}) => {
|
@@ -446,7 +698,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
446
698
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
447
699
|
memoize: typeof import("reselect").weakMapMemoize;
|
448
700
|
}, ((state: {
|
449
|
-
|
701
|
+
FlowerFlow: {
|
450
702
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
451
703
|
};
|
452
704
|
}) => string) & {
|
@@ -462,7 +714,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
462
714
|
};
|
463
715
|
lastResult: () => string;
|
464
716
|
dependencies: [((state: {
|
465
|
-
|
717
|
+
FlowerFlow: {
|
466
718
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
467
719
|
};
|
468
720
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -482,7 +734,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
482
734
|
};
|
483
735
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
484
736
|
dependencies: [<T extends Record<string, any>>(state: {
|
485
|
-
|
737
|
+
FlowerFlow: {
|
486
738
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
487
739
|
};
|
488
740
|
}) => {
|
@@ -496,7 +748,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
496
748
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
497
749
|
memoize: typeof import("reselect").weakMapMemoize;
|
498
750
|
}, ((state: {
|
499
|
-
|
751
|
+
FlowerFlow: {
|
500
752
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
501
753
|
};
|
502
754
|
}) => string) & {
|
@@ -512,7 +764,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
512
764
|
};
|
513
765
|
lastResult: () => string;
|
514
766
|
dependencies: [((state: {
|
515
|
-
|
767
|
+
FlowerFlow: {
|
516
768
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
517
769
|
};
|
518
770
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -532,7 +784,7 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
532
784
|
};
|
533
785
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
534
786
|
dependencies: [<T extends Record<string, any>>(state: {
|
535
|
-
|
787
|
+
FlowerFlow: {
|
536
788
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
537
789
|
};
|
538
790
|
}) => {
|
@@ -570,8 +822,8 @@ declare const makeSelectPrevNodeRetain: (name: string) => ((state: {
|
|
570
822
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
571
823
|
memoize: typeof import("reselect").weakMapMemoize;
|
572
824
|
};
|
573
|
-
declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
574
|
-
|
825
|
+
export declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
826
|
+
FlowerFlow: {
|
575
827
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
576
828
|
};
|
577
829
|
}) => boolean) & {
|
@@ -591,7 +843,7 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
591
843
|
};
|
592
844
|
lastResult: () => boolean;
|
593
845
|
dependencies: [((state: {
|
594
|
-
|
846
|
+
FlowerFlow: {
|
595
847
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
596
848
|
};
|
597
849
|
}) => {
|
@@ -615,7 +867,7 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
615
867
|
[x: string]: import("@flowerforce/flower-core").INode;
|
616
868
|
};
|
617
869
|
dependencies: [((state: {
|
618
|
-
|
870
|
+
FlowerFlow: {
|
619
871
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
620
872
|
};
|
621
873
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -635,7 +887,7 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
635
887
|
};
|
636
888
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
637
889
|
dependencies: [<T extends Record<string, any>>(state: {
|
638
|
-
|
890
|
+
FlowerFlow: {
|
639
891
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
640
892
|
};
|
641
893
|
}) => {
|
@@ -657,7 +909,7 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
657
909
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
658
910
|
memoize: typeof import("reselect").weakMapMemoize;
|
659
911
|
}, ((state: {
|
660
|
-
|
912
|
+
FlowerFlow: {
|
661
913
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
662
914
|
};
|
663
915
|
}) => string) & {
|
@@ -673,7 +925,7 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
673
925
|
};
|
674
926
|
lastResult: () => string;
|
675
927
|
dependencies: [((state: {
|
676
|
-
|
928
|
+
FlowerFlow: {
|
677
929
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
678
930
|
};
|
679
931
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -693,7 +945,7 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
693
945
|
};
|
694
946
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
695
947
|
dependencies: [<T extends Record<string, any>>(state: {
|
696
|
-
|
948
|
+
FlowerFlow: {
|
697
949
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
698
950
|
};
|
699
951
|
}) => {
|
@@ -707,7 +959,7 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
707
959
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
708
960
|
memoize: typeof import("reselect").weakMapMemoize;
|
709
961
|
}, ((state: {
|
710
|
-
|
962
|
+
FlowerFlow: {
|
711
963
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
712
964
|
};
|
713
965
|
}) => string) & {
|
@@ -723,7 +975,7 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
723
975
|
};
|
724
976
|
lastResult: () => string;
|
725
977
|
dependencies: [((state: {
|
726
|
-
|
978
|
+
FlowerFlow: {
|
727
979
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
728
980
|
};
|
729
981
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -743,7 +995,7 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
743
995
|
};
|
744
996
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
745
997
|
dependencies: [<T extends Record<string, any>>(state: {
|
746
|
-
|
998
|
+
FlowerFlow: {
|
747
999
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
748
1000
|
};
|
749
1001
|
}) => {
|
@@ -781,48 +1033,48 @@ declare const makeSelectCurrentNodeDisabled: (name: string) => ((state: {
|
|
781
1033
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
782
1034
|
memoize: typeof import("reselect").weakMapMemoize;
|
783
1035
|
};
|
784
|
-
declare const
|
785
|
-
|
786
|
-
[x: string]: import("@flowerforce/flower-core").
|
1036
|
+
export declare const makeSelectData: (name: string) => ((state: {
|
1037
|
+
FlowerData: {
|
1038
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
787
1039
|
};
|
788
1040
|
}) => Record<string, any>) & {
|
789
1041
|
clearCache: () => void;
|
790
1042
|
resultsCount: () => number;
|
791
1043
|
resetResultsCount: () => void;
|
792
1044
|
} & {
|
793
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").
|
794
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").
|
1045
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => Record<string, any>;
|
1046
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => Record<string, any>) & {
|
795
1047
|
clearCache: () => void;
|
796
1048
|
resultsCount: () => number;
|
797
1049
|
resetResultsCount: () => void;
|
798
1050
|
};
|
799
1051
|
lastResult: () => Record<string, any>;
|
800
1052
|
dependencies: [((state: {
|
801
|
-
|
802
|
-
[x: string]: import("@flowerforce/flower-core").
|
1053
|
+
FlowerData: {
|
1054
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
803
1055
|
};
|
804
|
-
}) => import("@flowerforce/flower-core").
|
1056
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
805
1057
|
clearCache: () => void;
|
806
1058
|
resultsCount: () => number;
|
807
1059
|
resetResultsCount: () => void;
|
808
1060
|
} & {
|
809
1061
|
resultFunc: (resultFuncArgs_0: {
|
810
|
-
[x: string]: import("@flowerforce/flower-core").
|
811
|
-
}) => import("@flowerforce/flower-core").
|
1062
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1063
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
812
1064
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
813
|
-
[x: string]: import("@flowerforce/flower-core").
|
814
|
-
}) => import("@flowerforce/flower-core").
|
1065
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1066
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
815
1067
|
clearCache: () => void;
|
816
1068
|
resultsCount: () => number;
|
817
1069
|
resetResultsCount: () => void;
|
818
1070
|
};
|
819
|
-
lastResult: () => import("@flowerforce/flower-core").
|
1071
|
+
lastResult: () => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
820
1072
|
dependencies: [<T extends Record<string, any>>(state: {
|
821
|
-
|
822
|
-
[x: string]: import("@flowerforce/flower-core").
|
1073
|
+
FlowerData: {
|
1074
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
823
1075
|
};
|
824
1076
|
}) => {
|
825
|
-
[x: string]: import("@flowerforce/flower-core").
|
1077
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
826
1078
|
}];
|
827
1079
|
recomputations: () => number;
|
828
1080
|
resetRecomputations: () => void;
|
@@ -840,9 +1092,9 @@ declare const getDataByFlow: (name: string) => ((state: {
|
|
840
1092
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
841
1093
|
memoize: typeof import("reselect").weakMapMemoize;
|
842
1094
|
};
|
843
|
-
declare const getDataFromState: (name: string, id: string | string[]) => ((state: {
|
844
|
-
|
845
|
-
[x: string]: import("@flowerforce/flower-core").
|
1095
|
+
export declare const getDataFromState: (name: string, id: string | string[]) => ((state: {
|
1096
|
+
FlowerData: {
|
1097
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
846
1098
|
};
|
847
1099
|
}) => Partial<Record<string, any>>) & {
|
848
1100
|
clearCache: () => void;
|
@@ -857,47 +1109,47 @@ declare const getDataFromState: (name: string, id: string | string[]) => ((state
|
|
857
1109
|
};
|
858
1110
|
lastResult: () => Partial<Record<string, any>>;
|
859
1111
|
dependencies: [((state: {
|
860
|
-
|
861
|
-
[x: string]: import("@flowerforce/flower-core").
|
1112
|
+
FlowerData: {
|
1113
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
862
1114
|
};
|
863
1115
|
}) => Record<string, any>) & {
|
864
1116
|
clearCache: () => void;
|
865
1117
|
resultsCount: () => number;
|
866
1118
|
resetResultsCount: () => void;
|
867
1119
|
} & {
|
868
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").
|
869
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").
|
1120
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => Record<string, any>;
|
1121
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => Record<string, any>) & {
|
870
1122
|
clearCache: () => void;
|
871
1123
|
resultsCount: () => number;
|
872
1124
|
resetResultsCount: () => void;
|
873
1125
|
};
|
874
1126
|
lastResult: () => Record<string, any>;
|
875
1127
|
dependencies: [((state: {
|
876
|
-
|
877
|
-
[x: string]: import("@flowerforce/flower-core").
|
1128
|
+
FlowerData: {
|
1129
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
878
1130
|
};
|
879
|
-
}) => import("@flowerforce/flower-core").
|
1131
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
880
1132
|
clearCache: () => void;
|
881
1133
|
resultsCount: () => number;
|
882
1134
|
resetResultsCount: () => void;
|
883
1135
|
} & {
|
884
1136
|
resultFunc: (resultFuncArgs_0: {
|
885
|
-
[x: string]: import("@flowerforce/flower-core").
|
886
|
-
}) => import("@flowerforce/flower-core").
|
1137
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1138
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
887
1139
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
888
|
-
[x: string]: import("@flowerforce/flower-core").
|
889
|
-
}) => import("@flowerforce/flower-core").
|
1140
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1141
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
890
1142
|
clearCache: () => void;
|
891
1143
|
resultsCount: () => number;
|
892
1144
|
resetResultsCount: () => void;
|
893
1145
|
};
|
894
|
-
lastResult: () => import("@flowerforce/flower-core").
|
1146
|
+
lastResult: () => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
895
1147
|
dependencies: [<T extends Record<string, any>>(state: {
|
896
|
-
|
897
|
-
[x: string]: import("@flowerforce/flower-core").
|
1148
|
+
FlowerData: {
|
1149
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
898
1150
|
};
|
899
1151
|
}) => {
|
900
|
-
[x: string]: import("@flowerforce/flower-core").
|
1152
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
901
1153
|
}];
|
902
1154
|
recomputations: () => number;
|
903
1155
|
resetRecomputations: () => void;
|
@@ -923,9 +1175,9 @@ declare const getDataFromState: (name: string, id: string | string[]) => ((state
|
|
923
1175
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
924
1176
|
memoize: typeof import("reselect").weakMapMemoize;
|
925
1177
|
};
|
926
|
-
declare const makeSelectNodeErrors: (name: string
|
927
|
-
|
928
|
-
[x: string]: import("@flowerforce/flower-core").
|
1178
|
+
export declare const makeSelectNodeErrors: (name: string) => ((state: {
|
1179
|
+
FlowerData: {
|
1180
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
929
1181
|
};
|
930
1182
|
}) => {
|
931
1183
|
isSubmitted: boolean;
|
@@ -940,7 +1192,7 @@ declare const makeSelectNodeErrors: (name: string, currentNodeId: string) => ((s
|
|
940
1192
|
resultsCount: () => number;
|
941
1193
|
resetResultsCount: () => void;
|
942
1194
|
} & {
|
943
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").
|
1195
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => {
|
944
1196
|
isSubmitted: boolean;
|
945
1197
|
isDirty: boolean;
|
946
1198
|
hasFocus: string | undefined;
|
@@ -949,7 +1201,7 @@ declare const makeSelectNodeErrors: (name: string, currentNodeId: string) => ((s
|
|
949
1201
|
isValid: boolean;
|
950
1202
|
isValidating?: boolean | undefined;
|
951
1203
|
};
|
952
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").
|
1204
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => {
|
953
1205
|
isSubmitted: boolean;
|
954
1206
|
isDirty: boolean;
|
955
1207
|
hasFocus: string | undefined;
|
@@ -972,55 +1224,31 @@ declare const makeSelectNodeErrors: (name: string, currentNodeId: string) => ((s
|
|
972
1224
|
isValidating?: boolean | undefined;
|
973
1225
|
};
|
974
1226
|
dependencies: [((state: {
|
975
|
-
|
976
|
-
[x: string]: import("@flowerforce/flower-core").
|
1227
|
+
FlowerData: {
|
1228
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
977
1229
|
};
|
978
|
-
}) => import("@flowerforce/flower-core").
|
1230
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
979
1231
|
clearCache: () => void;
|
980
1232
|
resultsCount: () => number;
|
981
1233
|
resetResultsCount: () => void;
|
982
1234
|
} & {
|
983
|
-
resultFunc: (resultFuncArgs_0:
|
984
|
-
|
1235
|
+
resultFunc: (resultFuncArgs_0: {
|
1236
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1237
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1238
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
1239
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1240
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
985
1241
|
clearCache: () => void;
|
986
1242
|
resultsCount: () => number;
|
987
1243
|
resetResultsCount: () => void;
|
988
1244
|
};
|
989
|
-
lastResult: () => import("@flowerforce/flower-core").
|
990
|
-
dependencies: [(
|
991
|
-
|
992
|
-
[x: string]: import("@flowerforce/flower-core").
|
1245
|
+
lastResult: () => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1246
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
1247
|
+
FlowerData: {
|
1248
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
993
1249
|
};
|
994
|
-
}) =>
|
995
|
-
|
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;
|
1008
|
-
};
|
1009
|
-
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1010
|
-
dependencies: [<T extends Record<string, any>>(state: {
|
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;
|
1250
|
+
}) => {
|
1251
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1024
1252
|
}];
|
1025
1253
|
recomputations: () => number;
|
1026
1254
|
resetRecomputations: () => void;
|
@@ -1038,72 +1266,48 @@ declare const makeSelectNodeErrors: (name: string, currentNodeId: string) => ((s
|
|
1038
1266
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1039
1267
|
memoize: typeof import("reselect").weakMapMemoize;
|
1040
1268
|
};
|
1041
|
-
declare const makeSelectNodeFieldTouched: (name: string,
|
1042
|
-
|
1043
|
-
[x: string]: import("@flowerforce/flower-core").
|
1269
|
+
export declare const makeSelectNodeFieldTouched: (name: string, fieldId: string) => ((state: {
|
1270
|
+
FlowerData: {
|
1271
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1044
1272
|
};
|
1045
1273
|
}) => boolean | undefined) & {
|
1046
1274
|
clearCache: () => void;
|
1047
1275
|
resultsCount: () => number;
|
1048
1276
|
resetResultsCount: () => void;
|
1049
1277
|
} & {
|
1050
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").
|
1051
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").
|
1278
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => boolean | undefined;
|
1279
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => boolean | undefined) & {
|
1052
1280
|
clearCache: () => void;
|
1053
1281
|
resultsCount: () => number;
|
1054
1282
|
resetResultsCount: () => void;
|
1055
1283
|
};
|
1056
1284
|
lastResult: () => boolean | undefined;
|
1057
1285
|
dependencies: [((state: {
|
1058
|
-
|
1059
|
-
[x: string]: import("@flowerforce/flower-core").
|
1286
|
+
FlowerData: {
|
1287
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1060
1288
|
};
|
1061
|
-
}) => import("@flowerforce/flower-core").
|
1289
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1062
1290
|
clearCache: () => void;
|
1063
1291
|
resultsCount: () => number;
|
1064
1292
|
resetResultsCount: () => void;
|
1065
1293
|
} & {
|
1066
|
-
resultFunc: (resultFuncArgs_0:
|
1067
|
-
|
1294
|
+
resultFunc: (resultFuncArgs_0: {
|
1295
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1296
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1297
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
1298
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1299
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1068
1300
|
clearCache: () => void;
|
1069
1301
|
resultsCount: () => number;
|
1070
1302
|
resetResultsCount: () => void;
|
1071
1303
|
};
|
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;
|
1304
|
+
lastResult: () => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1305
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
1306
|
+
FlowerData: {
|
1307
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1091
1308
|
};
|
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;
|
1309
|
+
}) => {
|
1310
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1107
1311
|
}];
|
1108
1312
|
recomputations: () => number;
|
1109
1313
|
resetRecomputations: () => void;
|
@@ -1121,72 +1325,48 @@ declare const makeSelectNodeFieldTouched: (name: string, currentNodeId: string,
|
|
1121
1325
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1122
1326
|
memoize: typeof import("reselect").weakMapMemoize;
|
1123
1327
|
};
|
1124
|
-
declare const makeSelectNodeFieldFocused: (name: string,
|
1125
|
-
|
1126
|
-
[x: string]: import("@flowerforce/flower-core").
|
1328
|
+
export declare const makeSelectNodeFieldFocused: (name: string, fieldId: string) => ((state: {
|
1329
|
+
FlowerData: {
|
1330
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1127
1331
|
};
|
1128
1332
|
}) => string | undefined) & {
|
1129
1333
|
clearCache: () => void;
|
1130
1334
|
resultsCount: () => number;
|
1131
1335
|
resetResultsCount: () => void;
|
1132
1336
|
} & {
|
1133
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").
|
1134
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").
|
1337
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => string | undefined;
|
1338
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => string | undefined) & {
|
1135
1339
|
clearCache: () => void;
|
1136
1340
|
resultsCount: () => number;
|
1137
1341
|
resetResultsCount: () => void;
|
1138
1342
|
};
|
1139
1343
|
lastResult: () => string | undefined;
|
1140
1344
|
dependencies: [((state: {
|
1141
|
-
|
1142
|
-
[x: string]: import("@flowerforce/flower-core").
|
1345
|
+
FlowerData: {
|
1346
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1143
1347
|
};
|
1144
|
-
}) => import("@flowerforce/flower-core").
|
1348
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1145
1349
|
clearCache: () => void;
|
1146
1350
|
resultsCount: () => number;
|
1147
1351
|
resetResultsCount: () => void;
|
1148
1352
|
} & {
|
1149
|
-
resultFunc: (resultFuncArgs_0:
|
1150
|
-
|
1353
|
+
resultFunc: (resultFuncArgs_0: {
|
1354
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1355
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1356
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
1357
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1358
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1151
1359
|
clearCache: () => void;
|
1152
1360
|
resultsCount: () => number;
|
1153
1361
|
resetResultsCount: () => void;
|
1154
1362
|
};
|
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;
|
1363
|
+
lastResult: () => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1364
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
1365
|
+
FlowerData: {
|
1366
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1174
1367
|
};
|
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;
|
1368
|
+
}) => {
|
1369
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1190
1370
|
}];
|
1191
1371
|
recomputations: () => number;
|
1192
1372
|
resetRecomputations: () => void;
|
@@ -1204,72 +1384,107 @@ declare const makeSelectNodeFieldFocused: (name: string, currentNodeId: string,
|
|
1204
1384
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1205
1385
|
memoize: typeof import("reselect").weakMapMemoize;
|
1206
1386
|
};
|
1207
|
-
declare const makeSelectNodeFieldDirty: (name: string,
|
1208
|
-
|
1209
|
-
[x: string]: import("@flowerforce/flower-core").
|
1387
|
+
export declare const makeSelectNodeFieldDirty: (name: string, fieldId: string) => ((state: {
|
1388
|
+
FlowerData: {
|
1389
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1210
1390
|
};
|
1211
1391
|
}) => boolean | undefined) & {
|
1212
1392
|
clearCache: () => void;
|
1213
1393
|
resultsCount: () => number;
|
1214
1394
|
resetResultsCount: () => void;
|
1215
1395
|
} & {
|
1216
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").
|
1217
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").
|
1396
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => boolean | undefined;
|
1397
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => boolean | undefined) & {
|
1218
1398
|
clearCache: () => void;
|
1219
1399
|
resultsCount: () => number;
|
1220
1400
|
resetResultsCount: () => void;
|
1221
1401
|
};
|
1222
1402
|
lastResult: () => boolean | undefined;
|
1223
1403
|
dependencies: [((state: {
|
1224
|
-
|
1225
|
-
[x: string]: import("@flowerforce/flower-core").
|
1404
|
+
FlowerData: {
|
1405
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1226
1406
|
};
|
1227
|
-
}) => import("@flowerforce/flower-core").
|
1407
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1228
1408
|
clearCache: () => void;
|
1229
1409
|
resultsCount: () => number;
|
1230
1410
|
resetResultsCount: () => void;
|
1231
1411
|
} & {
|
1232
|
-
resultFunc: (resultFuncArgs_0:
|
1233
|
-
|
1412
|
+
resultFunc: (resultFuncArgs_0: {
|
1413
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1414
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1415
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
1416
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1417
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1234
1418
|
clearCache: () => void;
|
1235
1419
|
resultsCount: () => number;
|
1236
1420
|
resetResultsCount: () => void;
|
1237
1421
|
};
|
1238
|
-
lastResult: () => import("@flowerforce/flower-core").
|
1239
|
-
dependencies: [(
|
1240
|
-
|
1241
|
-
[x: string]: import("@flowerforce/flower-core").
|
1422
|
+
lastResult: () => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1423
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
1424
|
+
FlowerData: {
|
1425
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1242
1426
|
};
|
1243
|
-
}) =>
|
1427
|
+
}) => {
|
1428
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1429
|
+
}];
|
1430
|
+
recomputations: () => number;
|
1431
|
+
resetRecomputations: () => void;
|
1432
|
+
dependencyRecomputations: () => number;
|
1433
|
+
resetDependencyRecomputations: () => void;
|
1434
|
+
} & {
|
1435
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1436
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
1437
|
+
}];
|
1438
|
+
recomputations: () => number;
|
1439
|
+
resetRecomputations: () => void;
|
1440
|
+
dependencyRecomputations: () => number;
|
1441
|
+
resetDependencyRecomputations: () => void;
|
1442
|
+
} & {
|
1443
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1444
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
1445
|
+
};
|
1446
|
+
export declare const makeSelectNodeDataSubmitted: (name: string, currentNodeId: string) => ((state: {
|
1447
|
+
FlowerData: {
|
1448
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1449
|
+
};
|
1450
|
+
}) => boolean | undefined) & {
|
1451
|
+
clearCache: () => void;
|
1452
|
+
resultsCount: () => number;
|
1453
|
+
resetResultsCount: () => void;
|
1454
|
+
} & {
|
1455
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => boolean | undefined;
|
1456
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => boolean | undefined) & {
|
1457
|
+
clearCache: () => void;
|
1458
|
+
resultsCount: () => number;
|
1459
|
+
resetResultsCount: () => void;
|
1460
|
+
};
|
1461
|
+
lastResult: () => boolean | undefined;
|
1462
|
+
dependencies: [((state: {
|
1463
|
+
FlowerData: {
|
1464
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1465
|
+
};
|
1466
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1467
|
+
clearCache: () => void;
|
1468
|
+
resultsCount: () => number;
|
1469
|
+
resetResultsCount: () => void;
|
1470
|
+
} & {
|
1471
|
+
resultFunc: (resultFuncArgs_0: {
|
1472
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1473
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1474
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
1475
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1476
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1244
1477
|
clearCache: () => void;
|
1245
1478
|
resultsCount: () => number;
|
1246
1479
|
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;
|
1480
|
+
};
|
1481
|
+
lastResult: () => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1482
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
1483
|
+
FlowerData: {
|
1484
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1257
1485
|
};
|
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;
|
1486
|
+
}) => {
|
1487
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1273
1488
|
}];
|
1274
1489
|
recomputations: () => number;
|
1275
1490
|
resetRecomputations: () => void;
|
@@ -1287,40 +1502,109 @@ declare const makeSelectNodeFieldDirty: (name: string, currentNodeId: string, fi
|
|
1287
1502
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1288
1503
|
memoize: typeof import("reselect").weakMapMemoize;
|
1289
1504
|
};
|
1290
|
-
declare const
|
1291
|
-
|
1505
|
+
export declare const getAllData: ((state: {
|
1506
|
+
FlowerData: {
|
1507
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1508
|
+
};
|
1509
|
+
}) => Record<string, any> | undefined) & {
|
1510
|
+
clearCache: () => void;
|
1511
|
+
resultsCount: () => number;
|
1512
|
+
resetResultsCount: () => void;
|
1513
|
+
} & {
|
1514
|
+
resultFunc: (resultFuncArgs_0: {
|
1515
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1516
|
+
}) => Record<string, any> | undefined;
|
1517
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
1518
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1519
|
+
}) => Record<string, any> | undefined) & {
|
1520
|
+
clearCache: () => void;
|
1521
|
+
resultsCount: () => number;
|
1522
|
+
resetResultsCount: () => void;
|
1523
|
+
};
|
1524
|
+
lastResult: () => Record<string, any> | undefined;
|
1525
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
1526
|
+
FlowerData: {
|
1527
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1528
|
+
};
|
1529
|
+
}) => {
|
1530
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1531
|
+
}];
|
1532
|
+
recomputations: () => number;
|
1533
|
+
resetRecomputations: () => void;
|
1534
|
+
dependencyRecomputations: () => number;
|
1535
|
+
resetDependencyRecomputations: () => void;
|
1536
|
+
} & {
|
1537
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1538
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
1539
|
+
};
|
1540
|
+
export declare const selectFlowerDataCurrentNode: (name: string) => ((state: {
|
1541
|
+
FlowerFlow: {
|
1292
1542
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1293
1543
|
};
|
1294
|
-
}) =>
|
1544
|
+
}) => any) & {
|
1295
1545
|
clearCache: () => void;
|
1296
1546
|
resultsCount: () => number;
|
1297
1547
|
resetResultsCount: () => void;
|
1298
1548
|
} & {
|
1299
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").
|
1300
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").
|
1549
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>, resultFuncArgs_1: string) => any;
|
1550
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>, resultFuncArgs_1: string) => any) & {
|
1301
1551
|
clearCache: () => void;
|
1302
1552
|
resultsCount: () => number;
|
1303
1553
|
resetResultsCount: () => void;
|
1304
1554
|
};
|
1305
|
-
lastResult: () =>
|
1555
|
+
lastResult: () => any;
|
1306
1556
|
dependencies: [((state: {
|
1307
|
-
|
1557
|
+
FlowerFlow: {
|
1558
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1559
|
+
};
|
1560
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
1561
|
+
clearCache: () => void;
|
1562
|
+
resultsCount: () => number;
|
1563
|
+
resetResultsCount: () => void;
|
1564
|
+
} & {
|
1565
|
+
resultFunc: (resultFuncArgs_0: {
|
1566
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1567
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1568
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
1569
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1570
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
1571
|
+
clearCache: () => void;
|
1572
|
+
resultsCount: () => number;
|
1573
|
+
resetResultsCount: () => void;
|
1574
|
+
};
|
1575
|
+
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1576
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
1577
|
+
FlowerFlow: {
|
1578
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1579
|
+
};
|
1580
|
+
}) => {
|
1581
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1582
|
+
}];
|
1583
|
+
recomputations: () => number;
|
1584
|
+
resetRecomputations: () => void;
|
1585
|
+
dependencyRecomputations: () => number;
|
1586
|
+
resetDependencyRecomputations: () => void;
|
1587
|
+
} & {
|
1588
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1589
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
1590
|
+
}, ((state: {
|
1591
|
+
FlowerFlow: {
|
1308
1592
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1309
1593
|
};
|
1310
|
-
}) =>
|
1594
|
+
}) => string) & {
|
1311
1595
|
clearCache: () => void;
|
1312
1596
|
resultsCount: () => number;
|
1313
1597
|
resetResultsCount: () => void;
|
1314
1598
|
} & {
|
1315
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any
|
1316
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any
|
1599
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>, resultFuncArgs_1: string) => string;
|
1600
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>, resultFuncArgs_1: string) => string) & {
|
1317
1601
|
clearCache: () => void;
|
1318
1602
|
resultsCount: () => number;
|
1319
1603
|
resetResultsCount: () => void;
|
1320
1604
|
};
|
1321
|
-
lastResult: () =>
|
1605
|
+
lastResult: () => string;
|
1322
1606
|
dependencies: [((state: {
|
1323
|
-
|
1607
|
+
FlowerFlow: {
|
1324
1608
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1325
1609
|
};
|
1326
1610
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -1340,7 +1624,7 @@ declare const makeSelectNodeFormSubmitted: (name: string, currentNodeId: string)
|
|
1340
1624
|
};
|
1341
1625
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1342
1626
|
dependencies: [<T extends Record<string, any>>(state: {
|
1343
|
-
|
1627
|
+
FlowerFlow: {
|
1344
1628
|
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1345
1629
|
};
|
1346
1630
|
}) => {
|
@@ -1353,6 +1637,64 @@ declare const makeSelectNodeFormSubmitted: (name: string, currentNodeId: string)
|
|
1353
1637
|
} & {
|
1354
1638
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1355
1639
|
memoize: typeof import("reselect").weakMapMemoize;
|
1640
|
+
}, ((state: {
|
1641
|
+
FlowerFlow: {
|
1642
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1643
|
+
};
|
1644
|
+
}) => string) & {
|
1645
|
+
clearCache: () => void;
|
1646
|
+
resultsCount: () => number;
|
1647
|
+
resetResultsCount: () => void;
|
1648
|
+
} & {
|
1649
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>) => string;
|
1650
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>) => string) & {
|
1651
|
+
clearCache: () => void;
|
1652
|
+
resultsCount: () => number;
|
1653
|
+
resetResultsCount: () => void;
|
1654
|
+
};
|
1655
|
+
lastResult: () => string;
|
1656
|
+
dependencies: [((state: {
|
1657
|
+
FlowerFlow: {
|
1658
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1659
|
+
};
|
1660
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
1661
|
+
clearCache: () => void;
|
1662
|
+
resultsCount: () => number;
|
1663
|
+
resetResultsCount: () => void;
|
1664
|
+
} & {
|
1665
|
+
resultFunc: (resultFuncArgs_0: {
|
1666
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1667
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1668
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
1669
|
+
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1670
|
+
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
1671
|
+
clearCache: () => void;
|
1672
|
+
resultsCount: () => number;
|
1673
|
+
resetResultsCount: () => void;
|
1674
|
+
};
|
1675
|
+
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1676
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
1677
|
+
FlowerFlow: {
|
1678
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1679
|
+
};
|
1680
|
+
}) => {
|
1681
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T>;
|
1682
|
+
}];
|
1683
|
+
recomputations: () => number;
|
1684
|
+
resetRecomputations: () => void;
|
1685
|
+
dependencyRecomputations: () => number;
|
1686
|
+
resetDependencyRecomputations: () => void;
|
1687
|
+
} & {
|
1688
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1689
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
1690
|
+
}];
|
1691
|
+
recomputations: () => number;
|
1692
|
+
resetRecomputations: () => void;
|
1693
|
+
dependencyRecomputations: () => number;
|
1694
|
+
resetDependencyRecomputations: () => void;
|
1695
|
+
} & {
|
1696
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1697
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
1356
1698
|
}];
|
1357
1699
|
recomputations: () => number;
|
1358
1700
|
resetRecomputations: () => void;
|
@@ -1370,43 +1712,12 @@ declare const makeSelectNodeFormSubmitted: (name: string, currentNodeId: string)
|
|
1370
1712
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1371
1713
|
memoize: typeof import("reselect").weakMapMemoize;
|
1372
1714
|
};
|
1373
|
-
declare const
|
1374
|
-
|
1375
|
-
[x: string]: import("@flowerforce/flower-core").
|
1376
|
-
};
|
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;
|
1715
|
+
export declare const makeSelectFieldError: (name: string, id: string, validate: any) => ((state: {
|
1716
|
+
FlowerData: {
|
1717
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1391
1718
|
};
|
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
1719
|
} & {
|
1405
|
-
|
1406
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
1407
|
-
};
|
1408
|
-
declare const makeSelectFieldError: (name: string, id: string, validate: any) => ((state: {
|
1409
|
-
flower: {
|
1720
|
+
FlowerFlow: {
|
1410
1721
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1411
1722
|
};
|
1412
1723
|
}) => string[]) & {
|
@@ -1414,16 +1725,16 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1414
1725
|
resultsCount: () => number;
|
1415
1726
|
resetResultsCount: () => void;
|
1416
1727
|
} & {
|
1417
|
-
resultFunc: (resultFuncArgs_0: Record<string, any> | undefined, resultFuncArgs_1:
|
1418
|
-
memoizedResultFunc: ((resultFuncArgs_0: Record<string, any> | undefined, resultFuncArgs_1:
|
1728
|
+
resultFunc: (resultFuncArgs_0: Record<string, any> | undefined, resultFuncArgs_1: any) => string[];
|
1729
|
+
memoizedResultFunc: ((resultFuncArgs_0: Record<string, any> | undefined, resultFuncArgs_1: any) => string[]) & {
|
1419
1730
|
clearCache: () => void;
|
1420
1731
|
resultsCount: () => number;
|
1421
1732
|
resetResultsCount: () => void;
|
1422
1733
|
};
|
1423
1734
|
lastResult: () => string[];
|
1424
1735
|
dependencies: [((state: {
|
1425
|
-
|
1426
|
-
[x: string]: import("@flowerforce/flower-core").
|
1736
|
+
FlowerData: {
|
1737
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1427
1738
|
};
|
1428
1739
|
}) => Record<string, any> | undefined) & {
|
1429
1740
|
clearCache: () => void;
|
@@ -1431,10 +1742,10 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1431
1742
|
resetResultsCount: () => void;
|
1432
1743
|
} & {
|
1433
1744
|
resultFunc: (resultFuncArgs_0: {
|
1434
|
-
[x: string]: import("@flowerforce/flower-core").
|
1745
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1435
1746
|
}) => Record<string, any> | undefined;
|
1436
1747
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
1437
|
-
[x: string]: import("@flowerforce/flower-core").
|
1748
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1438
1749
|
}) => Record<string, any> | undefined) & {
|
1439
1750
|
clearCache: () => void;
|
1440
1751
|
resultsCount: () => number;
|
@@ -1442,11 +1753,11 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1442
1753
|
};
|
1443
1754
|
lastResult: () => Record<string, any> | undefined;
|
1444
1755
|
dependencies: [<T extends Record<string, any>>(state: {
|
1445
|
-
|
1446
|
-
[x: string]: import("@flowerforce/flower-core").
|
1756
|
+
FlowerData: {
|
1757
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1447
1758
|
};
|
1448
1759
|
}) => {
|
1449
|
-
[x: string]: import("@flowerforce/flower-core").
|
1760
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1450
1761
|
}];
|
1451
1762
|
recomputations: () => number;
|
1452
1763
|
resetRecomputations: () => void;
|
@@ -1456,23 +1767,23 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1456
1767
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1457
1768
|
memoize: typeof import("reselect").weakMapMemoize;
|
1458
1769
|
}, ((state: {
|
1459
|
-
|
1770
|
+
FlowerFlow: {
|
1460
1771
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1461
1772
|
};
|
1462
|
-
}) =>
|
1773
|
+
}) => any) & {
|
1463
1774
|
clearCache: () => void;
|
1464
1775
|
resultsCount: () => number;
|
1465
1776
|
resetResultsCount: () => void;
|
1466
1777
|
} & {
|
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) =>
|
1778
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>, resultFuncArgs_1: string) => any;
|
1779
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Flower<Record<string, any>>, resultFuncArgs_1: string) => any) & {
|
1469
1780
|
clearCache: () => void;
|
1470
1781
|
resultsCount: () => number;
|
1471
1782
|
resetResultsCount: () => void;
|
1472
1783
|
};
|
1473
|
-
lastResult: () =>
|
1784
|
+
lastResult: () => any;
|
1474
1785
|
dependencies: [((state: {
|
1475
|
-
|
1786
|
+
FlowerFlow: {
|
1476
1787
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1477
1788
|
};
|
1478
1789
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -1491,12 +1802,12 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1491
1802
|
resetResultsCount: () => void;
|
1492
1803
|
};
|
1493
1804
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1494
|
-
dependencies: [<
|
1495
|
-
|
1496
|
-
[x: string]: import("@flowerforce/flower-core").Flower<
|
1805
|
+
dependencies: [<T_1 extends Record<string, any>>(state: {
|
1806
|
+
FlowerFlow: {
|
1807
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T_1>;
|
1497
1808
|
};
|
1498
1809
|
}) => {
|
1499
|
-
[x: string]: import("@flowerforce/flower-core").Flower<
|
1810
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T_1>;
|
1500
1811
|
}];
|
1501
1812
|
recomputations: () => number;
|
1502
1813
|
resetRecomputations: () => void;
|
@@ -1506,7 +1817,7 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1506
1817
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1507
1818
|
memoize: typeof import("reselect").weakMapMemoize;
|
1508
1819
|
}, ((state: {
|
1509
|
-
|
1820
|
+
FlowerFlow: {
|
1510
1821
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1511
1822
|
};
|
1512
1823
|
}) => string) & {
|
@@ -1522,7 +1833,7 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1522
1833
|
};
|
1523
1834
|
lastResult: () => string;
|
1524
1835
|
dependencies: [((state: {
|
1525
|
-
|
1836
|
+
FlowerFlow: {
|
1526
1837
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1527
1838
|
};
|
1528
1839
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -1541,12 +1852,12 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1541
1852
|
resetResultsCount: () => void;
|
1542
1853
|
};
|
1543
1854
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1544
|
-
dependencies: [<
|
1545
|
-
|
1546
|
-
[x: string]: import("@flowerforce/flower-core").Flower<
|
1855
|
+
dependencies: [<T_1 extends Record<string, any>>(state: {
|
1856
|
+
FlowerFlow: {
|
1857
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T_1>;
|
1547
1858
|
};
|
1548
1859
|
}) => {
|
1549
|
-
[x: string]: import("@flowerforce/flower-core").Flower<
|
1860
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T_1>;
|
1550
1861
|
}];
|
1551
1862
|
recomputations: () => number;
|
1552
1863
|
resetRecomputations: () => void;
|
@@ -1556,7 +1867,7 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1556
1867
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1557
1868
|
memoize: typeof import("reselect").weakMapMemoize;
|
1558
1869
|
}, ((state: {
|
1559
|
-
|
1870
|
+
FlowerFlow: {
|
1560
1871
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1561
1872
|
};
|
1562
1873
|
}) => string) & {
|
@@ -1572,7 +1883,7 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1572
1883
|
};
|
1573
1884
|
lastResult: () => string;
|
1574
1885
|
dependencies: [((state: {
|
1575
|
-
|
1886
|
+
FlowerFlow: {
|
1576
1887
|
[x: string]: import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1577
1888
|
};
|
1578
1889
|
}) => import("@flowerforce/flower-core").Flower<Record<string, any>>) & {
|
@@ -1591,12 +1902,12 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1591
1902
|
resetResultsCount: () => void;
|
1592
1903
|
};
|
1593
1904
|
lastResult: () => import("@flowerforce/flower-core").Flower<Record<string, any>>;
|
1594
|
-
dependencies: [<
|
1595
|
-
|
1596
|
-
[x: string]: import("@flowerforce/flower-core").Flower<
|
1905
|
+
dependencies: [<T_1 extends Record<string, any>>(state: {
|
1906
|
+
FlowerFlow: {
|
1907
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T_1>;
|
1597
1908
|
};
|
1598
1909
|
}) => {
|
1599
|
-
[x: string]: import("@flowerforce/flower-core").Flower<
|
1910
|
+
[x: string]: import("@flowerforce/flower-core").Flower<T_1>;
|
1600
1911
|
}];
|
1601
1912
|
recomputations: () => number;
|
1602
1913
|
resetRecomputations: () => void;
|
@@ -1638,9 +1949,9 @@ declare const makeSelectFieldError: (name: string, id: string, validate: any) =>
|
|
1638
1949
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1639
1950
|
memoize: typeof import("reselect").weakMapMemoize;
|
1640
1951
|
};
|
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").
|
1952
|
+
export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any> | FunctionRule, keys: string[], flowName: string, value: any) => ((state: {
|
1953
|
+
FlowerData: {
|
1954
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1644
1955
|
};
|
1645
1956
|
}) => boolean) & {
|
1646
1957
|
clearCache: () => void;
|
@@ -1671,8 +1982,8 @@ export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any>
|
|
1671
1982
|
};
|
1672
1983
|
lastResult: () => boolean;
|
1673
1984
|
dependencies: [((state: {
|
1674
|
-
|
1675
|
-
[x: string]: import("@flowerforce/flower-core").
|
1985
|
+
FlowerData: {
|
1986
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1676
1987
|
};
|
1677
1988
|
}) => Record<string, any> | undefined) & {
|
1678
1989
|
clearCache: () => void;
|
@@ -1680,10 +1991,10 @@ export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any>
|
|
1680
1991
|
resetResultsCount: () => void;
|
1681
1992
|
} & {
|
1682
1993
|
resultFunc: (resultFuncArgs_0: {
|
1683
|
-
[x: string]: import("@flowerforce/flower-core").
|
1994
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1684
1995
|
}) => Record<string, any> | undefined;
|
1685
1996
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
1686
|
-
[x: string]: import("@flowerforce/flower-core").
|
1997
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1687
1998
|
}) => Record<string, any> | undefined) & {
|
1688
1999
|
clearCache: () => void;
|
1689
2000
|
resultsCount: () => number;
|
@@ -1691,11 +2002,11 @@ export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any>
|
|
1691
2002
|
};
|
1692
2003
|
lastResult: () => Record<string, any> | undefined;
|
1693
2004
|
dependencies: [<T extends Record<string, any>>(state: {
|
1694
|
-
|
1695
|
-
[x: string]: import("@flowerforce/flower-core").
|
2005
|
+
FlowerData: {
|
2006
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1696
2007
|
};
|
1697
2008
|
}) => {
|
1698
|
-
[x: string]: import("@flowerforce/flower-core").
|
2009
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1699
2010
|
}];
|
1700
2011
|
recomputations: () => number;
|
1701
2012
|
resetRecomputations: () => void;
|
@@ -1705,8 +2016,8 @@ export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any>
|
|
1705
2016
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1706
2017
|
memoize: typeof import("reselect").weakMapMemoize;
|
1707
2018
|
}, ((state: {
|
1708
|
-
|
1709
|
-
[x: string]: import("@flowerforce/flower-core").
|
2019
|
+
FlowerData: {
|
2020
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1710
2021
|
};
|
1711
2022
|
}) => {
|
1712
2023
|
isSubmitted: boolean;
|
@@ -1721,7 +2032,7 @@ export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any>
|
|
1721
2032
|
resultsCount: () => number;
|
1722
2033
|
resetResultsCount: () => void;
|
1723
2034
|
} & {
|
1724
|
-
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").
|
2035
|
+
resultFunc: (resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => {
|
1725
2036
|
isSubmitted: boolean;
|
1726
2037
|
isDirty: boolean;
|
1727
2038
|
hasFocus: string | undefined;
|
@@ -1730,7 +2041,7 @@ export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any>
|
|
1730
2041
|
isValid: boolean;
|
1731
2042
|
isValidating?: boolean | undefined;
|
1732
2043
|
};
|
1733
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").
|
2044
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("@flowerforce/flower-core").Data<Record<string, any>>) => {
|
1734
2045
|
isSubmitted: boolean;
|
1735
2046
|
isDirty: boolean;
|
1736
2047
|
hasFocus: string | undefined;
|
@@ -1753,55 +2064,31 @@ export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any>
|
|
1753
2064
|
isValidating?: boolean | undefined;
|
1754
2065
|
};
|
1755
2066
|
dependencies: [((state: {
|
1756
|
-
|
1757
|
-
[x: string]: import("@flowerforce/flower-core").
|
2067
|
+
FlowerData: {
|
2068
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
1758
2069
|
};
|
1759
|
-
}) => import("@flowerforce/flower-core").
|
2070
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1760
2071
|
clearCache: () => void;
|
1761
2072
|
resultsCount: () => number;
|
1762
2073
|
resetResultsCount: () => void;
|
1763
2074
|
} & {
|
1764
|
-
resultFunc: (resultFuncArgs_0:
|
1765
|
-
|
2075
|
+
resultFunc: (resultFuncArgs_0: {
|
2076
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
2077
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
2078
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
2079
|
+
[x: string]: import("@flowerforce/flower-core").Data<Record<string, any>>;
|
2080
|
+
}) => import("@flowerforce/flower-core").Data<Record<string, any>>) & {
|
1766
2081
|
clearCache: () => void;
|
1767
2082
|
resultsCount: () => number;
|
1768
2083
|
resetResultsCount: () => void;
|
1769
2084
|
};
|
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;
|
2085
|
+
lastResult: () => import("@flowerforce/flower-core").Data<Record<string, any>>;
|
2086
|
+
dependencies: [<T extends Record<string, any>>(state: {
|
2087
|
+
FlowerData: {
|
2088
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1789
2089
|
};
|
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;
|
2090
|
+
}) => {
|
2091
|
+
[x: string]: import("@flowerforce/flower-core").Data<T>;
|
1805
2092
|
}];
|
1806
2093
|
recomputations: () => number;
|
1807
2094
|
resetRecomputations: () => void;
|
@@ -1827,4 +2114,3 @@ export declare const selectorRulesDisabled: (id: string, rules: RulesObject<any>
|
|
1827
2114
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
1828
2115
|
memoize: typeof import("reselect").weakMapMemoize;
|
1829
2116
|
};
|
1830
|
-
export { selectFlowerHistory, makeSelectNodesIds, makeSelectCurrentNodeId, makeSelectStartNodeId, makeSelectCurrentNodeDisabled, getAllData, getDataByFlow, getDataFromState, makeSelectNodeErrors, makeSelectNodeFieldTouched, makeSelectNodeFieldFocused, makeSelectNodeFieldDirty, makeSelectFieldError, makeSelectNodeFormSubmitted, makeSelectPrevNodeRetain };
|