@almadar/std 6.5.2 → 7.0.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/behaviors/registry/atoms/std-agent-memory.orb +164 -7
- package/behaviors/registry/atoms/std-browse.orb +39 -2
- package/behaviors/registry/atoms/std-confirmation.orb +84 -9
- package/behaviors/registry/atoms/std-filter.orb +2 -1
- package/behaviors/registry/atoms/std-modal.orb +73 -8
- package/behaviors/registry/atoms/std-push.orb +5 -4
- package/behaviors/registry/atoms/std-related.orb +44 -3
- package/behaviors/registry/atoms/std-search.orb +2 -1
- package/behaviors/registry/molecules/std-cart.orb +91 -14
- package/behaviors/registry/molecules/std-detail.orb +3 -3
- package/behaviors/registry/molecules/std-drawer-master-list.orb +2 -1
- package/behaviors/registry/molecules/std-filtered-list.orb +2 -1
- package/behaviors/registry/molecules/std-wizard-form.orb +2 -1
- package/dist/behaviors/registry/atoms/std-agent-memory.orb +164 -7
- package/dist/behaviors/registry/atoms/std-browse.orb +39 -2
- package/dist/behaviors/registry/atoms/std-confirmation.orb +84 -9
- package/dist/behaviors/registry/atoms/std-filter.orb +2 -1
- package/dist/behaviors/registry/atoms/std-modal.orb +73 -8
- package/dist/behaviors/registry/atoms/std-push.orb +5 -4
- package/dist/behaviors/registry/atoms/std-related.orb +44 -3
- package/dist/behaviors/registry/atoms/std-search.orb +2 -1
- package/dist/behaviors/registry/molecules/std-cart.orb +91 -14
- package/dist/behaviors/registry/molecules/std-detail.orb +3 -3
- package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +2 -1
- package/dist/behaviors/registry/molecules/std-filtered-list.orb +2 -1
- package/dist/behaviors/registry/molecules/std-wizard-form.orb +2 -1
- package/package.json +2 -2
|
@@ -99,6 +99,14 @@
|
|
|
99
99
|
{
|
|
100
100
|
"key": "CONFIRM_ORDER",
|
|
101
101
|
"name": "Confirm Order"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"key": "CART_ITEM_LOADED",
|
|
105
|
+
"name": "CartItem loaded"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"key": "CART_ITEM_LOAD_FAILED",
|
|
109
|
+
"name": "CartItem load failed"
|
|
102
110
|
}
|
|
103
111
|
],
|
|
104
112
|
"transitions": [
|
|
@@ -108,8 +116,14 @@
|
|
|
108
116
|
"event": "INIT",
|
|
109
117
|
"effects": [
|
|
110
118
|
[
|
|
111
|
-
"
|
|
112
|
-
"CartItem"
|
|
119
|
+
"fetch",
|
|
120
|
+
"CartItem",
|
|
121
|
+
{
|
|
122
|
+
"emit": {
|
|
123
|
+
"success": "CART_ITEM_LOADED",
|
|
124
|
+
"failure": "CART_ITEM_LOAD_FAILED"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
113
127
|
],
|
|
114
128
|
[
|
|
115
129
|
"render-ui",
|
|
@@ -242,8 +256,14 @@
|
|
|
242
256
|
"event": "PROCEED_CHECKOUT",
|
|
243
257
|
"effects": [
|
|
244
258
|
[
|
|
245
|
-
"
|
|
246
|
-
"CartItem"
|
|
259
|
+
"fetch",
|
|
260
|
+
"CartItem",
|
|
261
|
+
{
|
|
262
|
+
"emit": {
|
|
263
|
+
"success": "CART_ITEM_LOADED",
|
|
264
|
+
"failure": "CART_ITEM_LOAD_FAILED"
|
|
265
|
+
}
|
|
266
|
+
}
|
|
247
267
|
],
|
|
248
268
|
[
|
|
249
269
|
"render-ui",
|
|
@@ -340,8 +360,14 @@
|
|
|
340
360
|
"event": "BACK_TO_CART",
|
|
341
361
|
"effects": [
|
|
342
362
|
[
|
|
343
|
-
"
|
|
344
|
-
"CartItem"
|
|
363
|
+
"fetch",
|
|
364
|
+
"CartItem",
|
|
365
|
+
{
|
|
366
|
+
"emit": {
|
|
367
|
+
"success": "CART_ITEM_LOADED",
|
|
368
|
+
"failure": "CART_ITEM_LOAD_FAILED"
|
|
369
|
+
}
|
|
370
|
+
}
|
|
345
371
|
]
|
|
346
372
|
]
|
|
347
373
|
},
|
|
@@ -351,8 +377,14 @@
|
|
|
351
377
|
"event": "CONFIRM_ORDER",
|
|
352
378
|
"effects": [
|
|
353
379
|
[
|
|
354
|
-
"
|
|
355
|
-
"CartItem"
|
|
380
|
+
"fetch",
|
|
381
|
+
"CartItem",
|
|
382
|
+
{
|
|
383
|
+
"emit": {
|
|
384
|
+
"success": "CART_ITEM_LOADED",
|
|
385
|
+
"failure": "CART_ITEM_LOAD_FAILED"
|
|
386
|
+
}
|
|
387
|
+
}
|
|
356
388
|
],
|
|
357
389
|
[
|
|
358
390
|
"render-ui",
|
|
@@ -390,7 +422,52 @@
|
|
|
390
422
|
]
|
|
391
423
|
}
|
|
392
424
|
]
|
|
393
|
-
}
|
|
425
|
+
},
|
|
426
|
+
"scope": "collection",
|
|
427
|
+
"emits": [
|
|
428
|
+
{
|
|
429
|
+
"event": "CART_ITEM_LOADED",
|
|
430
|
+
"scope": "internal",
|
|
431
|
+
"description": "Fired when CartItem finishes loading",
|
|
432
|
+
"payload": [
|
|
433
|
+
{
|
|
434
|
+
"name": "id",
|
|
435
|
+
"type": "string"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"name": "name",
|
|
439
|
+
"type": "string"
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"name": "description",
|
|
443
|
+
"type": "string"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"name": "status",
|
|
447
|
+
"type": "string"
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"name": "createdAt",
|
|
451
|
+
"type": "string"
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"name": "pendingId",
|
|
455
|
+
"type": "string"
|
|
456
|
+
}
|
|
457
|
+
]
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"event": "CART_ITEM_LOAD_FAILED",
|
|
461
|
+
"scope": "internal",
|
|
462
|
+
"description": "Fired when CartItem fails to load",
|
|
463
|
+
"payload": [
|
|
464
|
+
{
|
|
465
|
+
"name": "message",
|
|
466
|
+
"type": "string"
|
|
467
|
+
}
|
|
468
|
+
]
|
|
469
|
+
}
|
|
470
|
+
]
|
|
394
471
|
},
|
|
395
472
|
{
|
|
396
473
|
"ref": "Modal.traits.ModalRecordModal",
|
|
@@ -402,7 +479,7 @@
|
|
|
402
479
|
"effects": {
|
|
403
480
|
"INIT": [
|
|
404
481
|
[
|
|
405
|
-
"
|
|
482
|
+
"fetch",
|
|
406
483
|
"CartItem"
|
|
407
484
|
]
|
|
408
485
|
],
|
|
@@ -493,7 +570,7 @@
|
|
|
493
570
|
"effects": {
|
|
494
571
|
"INIT": [
|
|
495
572
|
[
|
|
496
|
-
"
|
|
573
|
+
"fetch",
|
|
497
574
|
"CartItem"
|
|
498
575
|
]
|
|
499
576
|
],
|
|
@@ -582,7 +659,7 @@
|
|
|
582
659
|
null
|
|
583
660
|
],
|
|
584
661
|
[
|
|
585
|
-
"
|
|
662
|
+
"fetch",
|
|
586
663
|
"CartItem"
|
|
587
664
|
]
|
|
588
665
|
],
|
|
@@ -593,7 +670,7 @@
|
|
|
593
670
|
null
|
|
594
671
|
],
|
|
595
672
|
[
|
|
596
|
-
"
|
|
673
|
+
"fetch",
|
|
597
674
|
"CartItem"
|
|
598
675
|
]
|
|
599
676
|
],
|
|
@@ -604,7 +681,7 @@
|
|
|
604
681
|
null
|
|
605
682
|
],
|
|
606
683
|
[
|
|
607
|
-
"
|
|
684
|
+
"fetch",
|
|
608
685
|
"CartItem"
|
|
609
686
|
]
|
|
610
687
|
]
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"effects": {
|
|
57
57
|
"INIT": [
|
|
58
58
|
[
|
|
59
|
-
"
|
|
59
|
+
"fetch",
|
|
60
60
|
"DetailRecord"
|
|
61
61
|
],
|
|
62
62
|
[
|
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
"effects": {
|
|
176
176
|
"INIT": [
|
|
177
177
|
[
|
|
178
|
-
"
|
|
178
|
+
"fetch",
|
|
179
179
|
"DetailRecord"
|
|
180
180
|
]
|
|
181
181
|
],
|
|
@@ -265,7 +265,7 @@
|
|
|
265
265
|
"effects": {
|
|
266
266
|
"INIT": [
|
|
267
267
|
[
|
|
268
|
-
"
|
|
268
|
+
"fetch",
|
|
269
269
|
"DetailRecord"
|
|
270
270
|
]
|
|
271
271
|
],
|
|
@@ -168,6 +168,14 @@
|
|
|
168
168
|
"type": "object"
|
|
169
169
|
}
|
|
170
170
|
]
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"key": "AgentMemoryLoaded",
|
|
174
|
+
"name": "AgentMemory loaded"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"key": "AgentMemoryLoadFailed",
|
|
178
|
+
"name": "AgentMemory load failed"
|
|
171
179
|
}
|
|
172
180
|
],
|
|
173
181
|
"transitions": [
|
|
@@ -177,8 +185,14 @@
|
|
|
177
185
|
"event": "INIT",
|
|
178
186
|
"effects": [
|
|
179
187
|
[
|
|
180
|
-
"
|
|
181
|
-
"AgentMemory"
|
|
188
|
+
"fetch",
|
|
189
|
+
"AgentMemory",
|
|
190
|
+
{
|
|
191
|
+
"emit": {
|
|
192
|
+
"success": "AgentMemoryLoaded",
|
|
193
|
+
"failure": "AgentMemoryLoadFailed"
|
|
194
|
+
}
|
|
195
|
+
}
|
|
182
196
|
],
|
|
183
197
|
[
|
|
184
198
|
"render-ui",
|
|
@@ -312,7 +326,72 @@
|
|
|
312
326
|
]
|
|
313
327
|
}
|
|
314
328
|
]
|
|
315
|
-
}
|
|
329
|
+
},
|
|
330
|
+
"scope": "collection",
|
|
331
|
+
"emits": [
|
|
332
|
+
{
|
|
333
|
+
"event": "AgentMemoryLoaded",
|
|
334
|
+
"scope": "internal",
|
|
335
|
+
"description": "Fired when AgentMemory finishes loading",
|
|
336
|
+
"payload": [
|
|
337
|
+
{
|
|
338
|
+
"name": "id",
|
|
339
|
+
"type": "string"
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"name": "name",
|
|
343
|
+
"type": "string"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"name": "description",
|
|
347
|
+
"type": "string"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"name": "status",
|
|
351
|
+
"type": "string"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"name": "createdAt",
|
|
355
|
+
"type": "string"
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"name": "content",
|
|
359
|
+
"type": "string"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"name": "category",
|
|
363
|
+
"type": "string"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"name": "strength",
|
|
367
|
+
"type": "number"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"name": "pinned",
|
|
371
|
+
"type": "boolean"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"name": "scope",
|
|
375
|
+
"type": "string"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"name": "lastAccessedAt",
|
|
379
|
+
"type": "string"
|
|
380
|
+
}
|
|
381
|
+
]
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"event": "AgentMemoryLoadFailed",
|
|
385
|
+
"scope": "internal",
|
|
386
|
+
"description": "Fired when AgentMemory fails to load",
|
|
387
|
+
"payload": [
|
|
388
|
+
{
|
|
389
|
+
"name": "message",
|
|
390
|
+
"type": "string"
|
|
391
|
+
}
|
|
392
|
+
]
|
|
393
|
+
}
|
|
394
|
+
]
|
|
316
395
|
},
|
|
317
396
|
{
|
|
318
397
|
"name": "AgentMemoryCreate",
|
|
@@ -326,6 +405,68 @@
|
|
|
326
405
|
{
|
|
327
406
|
"event": "MEMORIZED",
|
|
328
407
|
"scope": "external"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"event": "AgentMemoryLoaded",
|
|
411
|
+
"scope": "internal",
|
|
412
|
+
"description": "Fired when AgentMemory finishes loading",
|
|
413
|
+
"payload": [
|
|
414
|
+
{
|
|
415
|
+
"name": "id",
|
|
416
|
+
"type": "string"
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"name": "name",
|
|
420
|
+
"type": "string"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"name": "description",
|
|
424
|
+
"type": "string"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"name": "status",
|
|
428
|
+
"type": "string"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"name": "createdAt",
|
|
432
|
+
"type": "string"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"name": "content",
|
|
436
|
+
"type": "string"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"name": "category",
|
|
440
|
+
"type": "string"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"name": "strength",
|
|
444
|
+
"type": "number"
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"name": "pinned",
|
|
448
|
+
"type": "boolean"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"name": "scope",
|
|
452
|
+
"type": "string"
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"name": "lastAccessedAt",
|
|
456
|
+
"type": "string"
|
|
457
|
+
}
|
|
458
|
+
]
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"event": "AgentMemoryLoadFailed",
|
|
462
|
+
"scope": "internal",
|
|
463
|
+
"description": "Fired when AgentMemory fails to load",
|
|
464
|
+
"payload": [
|
|
465
|
+
{
|
|
466
|
+
"name": "message",
|
|
467
|
+
"type": "string"
|
|
468
|
+
}
|
|
469
|
+
]
|
|
329
470
|
}
|
|
330
471
|
],
|
|
331
472
|
"stateMachine": {
|
|
@@ -361,6 +502,14 @@
|
|
|
361
502
|
"required": true
|
|
362
503
|
}
|
|
363
504
|
]
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"key": "AgentMemoryLoaded",
|
|
508
|
+
"name": "AgentMemory loaded"
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"key": "AgentMemoryLoadFailed",
|
|
512
|
+
"name": "AgentMemory load failed"
|
|
364
513
|
}
|
|
365
514
|
],
|
|
366
515
|
"transitions": [
|
|
@@ -370,8 +519,14 @@
|
|
|
370
519
|
"event": "INIT",
|
|
371
520
|
"effects": [
|
|
372
521
|
[
|
|
373
|
-
"
|
|
374
|
-
"AgentMemory"
|
|
522
|
+
"fetch",
|
|
523
|
+
"AgentMemory",
|
|
524
|
+
{
|
|
525
|
+
"emit": {
|
|
526
|
+
"success": "AgentMemoryLoaded",
|
|
527
|
+
"failure": "AgentMemoryLoadFailed"
|
|
528
|
+
}
|
|
529
|
+
}
|
|
375
530
|
]
|
|
376
531
|
]
|
|
377
532
|
},
|
|
@@ -465,7 +620,8 @@
|
|
|
465
620
|
]
|
|
466
621
|
}
|
|
467
622
|
]
|
|
468
|
-
}
|
|
623
|
+
},
|
|
624
|
+
"scope": "instance"
|
|
469
625
|
},
|
|
470
626
|
{
|
|
471
627
|
"name": "AgentMemoryAgent",
|
|
@@ -747,7 +903,8 @@
|
|
|
747
903
|
]
|
|
748
904
|
}
|
|
749
905
|
]
|
|
750
|
-
}
|
|
906
|
+
},
|
|
907
|
+
"scope": "collection"
|
|
751
908
|
}
|
|
752
909
|
],
|
|
753
910
|
"pages": [
|
|
@@ -114,6 +114,29 @@
|
|
|
114
114
|
"name": "BrowseItemBrowse",
|
|
115
115
|
"linkedEntity": "BrowseItem",
|
|
116
116
|
"category": "interaction",
|
|
117
|
+
"scope": "collection",
|
|
118
|
+
"emits": [
|
|
119
|
+
{
|
|
120
|
+
"event": "BrowseItemLoaded",
|
|
121
|
+
"scope": "internal",
|
|
122
|
+
"description": "Fired when the BrowseItem collection finishes loading",
|
|
123
|
+
"payload": [
|
|
124
|
+
{ "name": "id", "type": "string" },
|
|
125
|
+
{ "name": "name", "type": "string" },
|
|
126
|
+
{ "name": "description", "type": "string" },
|
|
127
|
+
{ "name": "status", "type": "string" },
|
|
128
|
+
{ "name": "createdAt", "type": "string" }
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"event": "BrowseItemLoadFailed",
|
|
133
|
+
"scope": "internal",
|
|
134
|
+
"description": "Fired when the BrowseItem collection fails to load",
|
|
135
|
+
"payload": [
|
|
136
|
+
{ "name": "message", "type": "string" }
|
|
137
|
+
]
|
|
138
|
+
}
|
|
139
|
+
],
|
|
117
140
|
"stateMachine": {
|
|
118
141
|
"states": [
|
|
119
142
|
{
|
|
@@ -125,6 +148,14 @@
|
|
|
125
148
|
{
|
|
126
149
|
"key": "INIT",
|
|
127
150
|
"name": "Initialize"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"key": "BrowseItemLoaded",
|
|
154
|
+
"name": "Browse items loaded"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"key": "BrowseItemLoadFailed",
|
|
158
|
+
"name": "Browse items load failed"
|
|
128
159
|
}
|
|
129
160
|
],
|
|
130
161
|
"transitions": [
|
|
@@ -134,8 +165,14 @@
|
|
|
134
165
|
"event": "INIT",
|
|
135
166
|
"effects": [
|
|
136
167
|
[
|
|
137
|
-
"
|
|
138
|
-
"BrowseItem"
|
|
168
|
+
"fetch",
|
|
169
|
+
"BrowseItem",
|
|
170
|
+
{
|
|
171
|
+
"emit": {
|
|
172
|
+
"success": "BrowseItemLoaded",
|
|
173
|
+
"failure": "BrowseItemLoadFailed"
|
|
174
|
+
}
|
|
175
|
+
}
|
|
139
176
|
],
|
|
140
177
|
[
|
|
141
178
|
"render-ui",
|
|
@@ -51,6 +51,48 @@
|
|
|
51
51
|
{
|
|
52
52
|
"event": "CONFIRM",
|
|
53
53
|
"scope": "external"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"event": "ConfirmActionLoaded",
|
|
57
|
+
"scope": "internal",
|
|
58
|
+
"description": "Fired when ConfirmAction finishes loading",
|
|
59
|
+
"payload": [
|
|
60
|
+
{
|
|
61
|
+
"name": "id",
|
|
62
|
+
"type": "string"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "name",
|
|
66
|
+
"type": "string"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "description",
|
|
70
|
+
"type": "string"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "status",
|
|
74
|
+
"type": "string"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "createdAt",
|
|
78
|
+
"type": "string"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "pendingId",
|
|
82
|
+
"type": "string"
|
|
83
|
+
}
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"event": "ConfirmActionLoadFailed",
|
|
88
|
+
"scope": "internal",
|
|
89
|
+
"description": "Fired when ConfirmAction fails to load",
|
|
90
|
+
"payload": [
|
|
91
|
+
{
|
|
92
|
+
"name": "message",
|
|
93
|
+
"type": "string"
|
|
94
|
+
}
|
|
95
|
+
]
|
|
54
96
|
}
|
|
55
97
|
],
|
|
56
98
|
"stateMachine": {
|
|
@@ -90,6 +132,14 @@
|
|
|
90
132
|
{
|
|
91
133
|
"key": "CLOSE",
|
|
92
134
|
"name": "Close"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"key": "ConfirmActionLoaded",
|
|
138
|
+
"name": "ConfirmAction loaded"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"key": "ConfirmActionLoadFailed",
|
|
142
|
+
"name": "ConfirmAction load failed"
|
|
93
143
|
}
|
|
94
144
|
],
|
|
95
145
|
"transitions": [
|
|
@@ -99,8 +149,14 @@
|
|
|
99
149
|
"event": "INIT",
|
|
100
150
|
"effects": [
|
|
101
151
|
[
|
|
102
|
-
"
|
|
103
|
-
"ConfirmAction"
|
|
152
|
+
"fetch",
|
|
153
|
+
"ConfirmAction",
|
|
154
|
+
{
|
|
155
|
+
"emit": {
|
|
156
|
+
"success": "ConfirmActionLoaded",
|
|
157
|
+
"failure": "ConfirmActionLoadFailed"
|
|
158
|
+
}
|
|
159
|
+
}
|
|
104
160
|
],
|
|
105
161
|
[
|
|
106
162
|
"render-ui",
|
|
@@ -254,8 +310,14 @@
|
|
|
254
310
|
null
|
|
255
311
|
],
|
|
256
312
|
[
|
|
257
|
-
"
|
|
258
|
-
"ConfirmAction"
|
|
313
|
+
"fetch",
|
|
314
|
+
"ConfirmAction",
|
|
315
|
+
{
|
|
316
|
+
"emit": {
|
|
317
|
+
"success": "ConfirmActionLoaded",
|
|
318
|
+
"failure": "ConfirmActionLoadFailed"
|
|
319
|
+
}
|
|
320
|
+
}
|
|
259
321
|
],
|
|
260
322
|
[
|
|
261
323
|
"render-ui",
|
|
@@ -332,8 +394,14 @@
|
|
|
332
394
|
null
|
|
333
395
|
],
|
|
334
396
|
[
|
|
335
|
-
"
|
|
336
|
-
"ConfirmAction"
|
|
397
|
+
"fetch",
|
|
398
|
+
"ConfirmAction",
|
|
399
|
+
{
|
|
400
|
+
"emit": {
|
|
401
|
+
"success": "ConfirmActionLoaded",
|
|
402
|
+
"failure": "ConfirmActionLoadFailed"
|
|
403
|
+
}
|
|
404
|
+
}
|
|
337
405
|
],
|
|
338
406
|
[
|
|
339
407
|
"render-ui",
|
|
@@ -410,8 +478,14 @@
|
|
|
410
478
|
null
|
|
411
479
|
],
|
|
412
480
|
[
|
|
413
|
-
"
|
|
414
|
-
"ConfirmAction"
|
|
481
|
+
"fetch",
|
|
482
|
+
"ConfirmAction",
|
|
483
|
+
{
|
|
484
|
+
"emit": {
|
|
485
|
+
"success": "ConfirmActionLoaded",
|
|
486
|
+
"failure": "ConfirmActionLoadFailed"
|
|
487
|
+
}
|
|
488
|
+
}
|
|
415
489
|
],
|
|
416
490
|
[
|
|
417
491
|
"render-ui",
|
|
@@ -478,7 +552,8 @@
|
|
|
478
552
|
]
|
|
479
553
|
}
|
|
480
554
|
]
|
|
481
|
-
}
|
|
555
|
+
},
|
|
556
|
+
"scope": "instance"
|
|
482
557
|
}
|
|
483
558
|
],
|
|
484
559
|
"pages": [
|