@almadar/std 7.4.2 → 7.4.3
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-wizard.orb +306 -293
- package/behaviors/registry/molecules/std-detail.orb +513 -292
- package/behaviors/registry/molecules/std-geospatial.orb +543 -406
- package/behaviors/registry/molecules/std-messaging.orb +511 -327
- package/behaviors/registry/molecules/std-wizard-form.orb +2 -101
- package/dist/behaviors/behaviors-registry.json +323 -49
- package/dist/behaviors/exports-reader.js +48 -3
- package/dist/behaviors/exports-reader.js.map +1 -1
- package/dist/behaviors/functions/index.d.ts +7 -1
- package/dist/behaviors/functions/index.js +46 -4
- package/dist/behaviors/functions/index.js.map +1 -1
- package/dist/behaviors/index.d.ts +1 -1
- package/dist/behaviors/index.js +49 -4
- package/dist/behaviors/index.js.map +1 -1
- package/dist/behaviors/query.js +48 -3
- package/dist/behaviors/query.js.map +1 -1
- package/dist/behaviors/registry/atoms/std-wizard.orb +306 -293
- package/dist/behaviors/registry/molecules/std-detail.orb +513 -292
- package/dist/behaviors/registry/molecules/std-geospatial.orb +543 -406
- package/dist/behaviors/registry/molecules/std-messaging.orb +511 -327
- package/dist/behaviors/registry/molecules/std-wizard-form.orb +2 -101
- package/dist/behaviors-registry.json +323 -49
- package/dist/index.d.ts +1 -1
- package/dist/index.js +49 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -10,10 +10,6 @@
|
|
|
10
10
|
"from": "std/behaviors/std-wizard",
|
|
11
11
|
"as": "Wizard"
|
|
12
12
|
},
|
|
13
|
-
{
|
|
14
|
-
"from": "std/behaviors/std-input",
|
|
15
|
-
"as": "Input"
|
|
16
|
-
},
|
|
17
13
|
{
|
|
18
14
|
"from": "std/behaviors/std-validate-on-save",
|
|
19
15
|
"as": "Validate"
|
|
@@ -44,110 +40,15 @@
|
|
|
44
40
|
]
|
|
45
41
|
},
|
|
46
42
|
"traits": [
|
|
47
|
-
{
|
|
48
|
-
"ref": "Input.traits.TextInputInput",
|
|
49
|
-
"name": "WizardFormInput",
|
|
50
|
-
"linkedEntity": "WizardFormEntry"
|
|
51
|
-
},
|
|
52
43
|
{
|
|
53
44
|
"ref": "Wizard.traits.WizardEntryWizard",
|
|
54
45
|
"name": "WizardFormWizard",
|
|
55
|
-
"linkedEntity": "WizardFormEntry"
|
|
56
|
-
"effects": {
|
|
57
|
-
"RENDER_STEP": [
|
|
58
|
-
[
|
|
59
|
-
"render-ui",
|
|
60
|
-
"main",
|
|
61
|
-
{
|
|
62
|
-
"gap": "md",
|
|
63
|
-
"direction": "vertical",
|
|
64
|
-
"className": "max-w-xl mx-auto w-full",
|
|
65
|
-
"type": "stack",
|
|
66
|
-
"children": [
|
|
67
|
-
{
|
|
68
|
-
"type": "typography",
|
|
69
|
-
"variant": "h2",
|
|
70
|
-
"content": "@entity.step"
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"type": "divider"
|
|
74
|
-
},
|
|
75
|
-
"@trait.WizardFormInput",
|
|
76
|
-
{
|
|
77
|
-
"justify": "end",
|
|
78
|
-
"children": [
|
|
79
|
-
{
|
|
80
|
-
"type": "button",
|
|
81
|
-
"label": "Back",
|
|
82
|
-
"variant": "ghost",
|
|
83
|
-
"event": "PREV"
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"type": "button",
|
|
87
|
-
"label": "Next",
|
|
88
|
-
"event": "NEXT",
|
|
89
|
-
"variant": "primary"
|
|
90
|
-
}
|
|
91
|
-
],
|
|
92
|
-
"type": "stack",
|
|
93
|
-
"gap": "sm",
|
|
94
|
-
"direction": "horizontal"
|
|
95
|
-
}
|
|
96
|
-
]
|
|
97
|
-
}
|
|
98
|
-
]
|
|
99
|
-
]
|
|
100
|
-
}
|
|
46
|
+
"linkedEntity": "WizardFormEntry"
|
|
101
47
|
},
|
|
102
48
|
{
|
|
103
49
|
"ref": "Validate.traits.OrbFileWatcher",
|
|
104
50
|
"name": "WizardFormValidate",
|
|
105
51
|
"linkedEntity": "WizardFormEntry"
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
"name": "WizardFormLayout",
|
|
109
|
-
"category": "interaction",
|
|
110
|
-
"linkedEntity": "WizardFormEntry",
|
|
111
|
-
"stateMachine": {
|
|
112
|
-
"states": [
|
|
113
|
-
{
|
|
114
|
-
"name": "composing",
|
|
115
|
-
"isInitial": true
|
|
116
|
-
}
|
|
117
|
-
],
|
|
118
|
-
"events": [
|
|
119
|
-
{
|
|
120
|
-
"key": "INIT",
|
|
121
|
-
"name": "Initialize"
|
|
122
|
-
}
|
|
123
|
-
],
|
|
124
|
-
"transitions": [
|
|
125
|
-
{
|
|
126
|
-
"from": "composing",
|
|
127
|
-
"to": "composing",
|
|
128
|
-
"event": "INIT",
|
|
129
|
-
"effects": [
|
|
130
|
-
[
|
|
131
|
-
"fetch",
|
|
132
|
-
"WizardFormEntry"
|
|
133
|
-
],
|
|
134
|
-
[
|
|
135
|
-
"render-ui",
|
|
136
|
-
"main",
|
|
137
|
-
{
|
|
138
|
-
"type": "stack",
|
|
139
|
-
"direction": "vertical",
|
|
140
|
-
"children": [
|
|
141
|
-
"@trait.WizardFormWizard"
|
|
142
|
-
],
|
|
143
|
-
"gap": "md"
|
|
144
|
-
}
|
|
145
|
-
]
|
|
146
|
-
]
|
|
147
|
-
}
|
|
148
|
-
]
|
|
149
|
-
},
|
|
150
|
-
"scope": "instance"
|
|
151
52
|
}
|
|
152
53
|
],
|
|
153
54
|
"pages": [
|
|
@@ -156,7 +57,7 @@
|
|
|
156
57
|
"path": "/wizard-form",
|
|
157
58
|
"traits": [
|
|
158
59
|
{
|
|
159
|
-
"ref": "
|
|
60
|
+
"ref": "WizardFormWizard"
|
|
160
61
|
}
|
|
161
62
|
]
|
|
162
63
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$generated": "2026-04-
|
|
2
|
+
"$generated": "2026-04-23T10:07:33.491Z",
|
|
3
3
|
"$source": "tools/behavior-registry-sync",
|
|
4
|
-
"totalBehaviors":
|
|
4
|
+
"totalBehaviors": 148,
|
|
5
5
|
"atoms": 80,
|
|
6
|
-
"molecules":
|
|
6
|
+
"molecules": 36,
|
|
7
7
|
"organisms": 32,
|
|
8
8
|
"layers": {
|
|
9
|
-
"UI Patterns":
|
|
9
|
+
"UI Patterns": 148
|
|
10
10
|
},
|
|
11
11
|
"behaviors": {
|
|
12
12
|
"std-agent-activity-log": {
|
|
@@ -9083,6 +9083,28 @@
|
|
|
9083
9083
|
"required": true
|
|
9084
9084
|
}
|
|
9085
9085
|
],
|
|
9086
|
+
"WizardEntryLoaded": [
|
|
9087
|
+
{
|
|
9088
|
+
"name": "id",
|
|
9089
|
+
"type": "string"
|
|
9090
|
+
},
|
|
9091
|
+
{
|
|
9092
|
+
"name": "name",
|
|
9093
|
+
"type": "string"
|
|
9094
|
+
},
|
|
9095
|
+
{
|
|
9096
|
+
"name": "description",
|
|
9097
|
+
"type": "string"
|
|
9098
|
+
},
|
|
9099
|
+
{
|
|
9100
|
+
"name": "status",
|
|
9101
|
+
"type": "string"
|
|
9102
|
+
},
|
|
9103
|
+
{
|
|
9104
|
+
"name": "createdAt",
|
|
9105
|
+
"type": "string"
|
|
9106
|
+
}
|
|
9107
|
+
],
|
|
9086
9108
|
"WizardEntryLoadFailed": [
|
|
9087
9109
|
{
|
|
9088
9110
|
"name": "message",
|
|
@@ -10898,6 +10920,77 @@
|
|
|
10898
10920
|
]
|
|
10899
10921
|
}
|
|
10900
10922
|
},
|
|
10923
|
+
"std-detail": {
|
|
10924
|
+
"name": "std-detail",
|
|
10925
|
+
"level": "molecule",
|
|
10926
|
+
"family": "unknown",
|
|
10927
|
+
"layer": "UI Patterns",
|
|
10928
|
+
"description": "std-detail as a Function",
|
|
10929
|
+
"statePattern": "browsing, error, loading",
|
|
10930
|
+
"complexity": {
|
|
10931
|
+
"states": 3,
|
|
10932
|
+
"events": 3,
|
|
10933
|
+
"transitions": 5
|
|
10934
|
+
},
|
|
10935
|
+
"defaultEntity": {
|
|
10936
|
+
"name": "DetailRecord",
|
|
10937
|
+
"persistence": "persistent",
|
|
10938
|
+
"fields": [
|
|
10939
|
+
{
|
|
10940
|
+
"name": "id",
|
|
10941
|
+
"type": "string",
|
|
10942
|
+
"required": true
|
|
10943
|
+
},
|
|
10944
|
+
{
|
|
10945
|
+
"name": "name",
|
|
10946
|
+
"type": "string",
|
|
10947
|
+
"required": true
|
|
10948
|
+
},
|
|
10949
|
+
{
|
|
10950
|
+
"name": "description",
|
|
10951
|
+
"type": "string"
|
|
10952
|
+
},
|
|
10953
|
+
{
|
|
10954
|
+
"name": "status",
|
|
10955
|
+
"type": "string",
|
|
10956
|
+
"default": "active"
|
|
10957
|
+
},
|
|
10958
|
+
{
|
|
10959
|
+
"name": "createdAt",
|
|
10960
|
+
"type": "string"
|
|
10961
|
+
}
|
|
10962
|
+
]
|
|
10963
|
+
},
|
|
10964
|
+
"defaultLabels": {
|
|
10965
|
+
"title": "DetailRecords",
|
|
10966
|
+
"entitySingular": "DetailRecord",
|
|
10967
|
+
"entityPlural": "DetailRecords"
|
|
10968
|
+
},
|
|
10969
|
+
"defaultIcons": [],
|
|
10970
|
+
"composableWith": [],
|
|
10971
|
+
"connectableEvents": [
|
|
10972
|
+
"DetailRecordLoaded",
|
|
10973
|
+
"DetailRecordLoadFailed"
|
|
10974
|
+
],
|
|
10975
|
+
"eventPayloads": {
|
|
10976
|
+
"DetailRecordLoaded": [
|
|
10977
|
+
{
|
|
10978
|
+
"name": "data",
|
|
10979
|
+
"type": "[DetailRecord]"
|
|
10980
|
+
}
|
|
10981
|
+
],
|
|
10982
|
+
"DetailRecordLoadFailed": [
|
|
10983
|
+
{
|
|
10984
|
+
"name": "error",
|
|
10985
|
+
"type": "string"
|
|
10986
|
+
},
|
|
10987
|
+
{
|
|
10988
|
+
"name": "code",
|
|
10989
|
+
"type": "string"
|
|
10990
|
+
}
|
|
10991
|
+
]
|
|
10992
|
+
}
|
|
10993
|
+
},
|
|
10901
10994
|
"std-drawer-master-list": {
|
|
10902
10995
|
"name": "std-drawer-master-list",
|
|
10903
10996
|
"level": "molecule",
|
|
@@ -11285,6 +11378,158 @@
|
|
|
11285
11378
|
"connectableEvents": [],
|
|
11286
11379
|
"eventPayloads": {}
|
|
11287
11380
|
},
|
|
11381
|
+
"std-geospatial": {
|
|
11382
|
+
"name": "std-geospatial",
|
|
11383
|
+
"level": "molecule",
|
|
11384
|
+
"family": "unknown",
|
|
11385
|
+
"layer": "UI Patterns",
|
|
11386
|
+
"description": "std-geospatial as a Function",
|
|
11387
|
+
"statePattern": "browsing, error, loading",
|
|
11388
|
+
"complexity": {
|
|
11389
|
+
"states": 3,
|
|
11390
|
+
"events": 3,
|
|
11391
|
+
"transitions": 5
|
|
11392
|
+
},
|
|
11393
|
+
"defaultEntity": {
|
|
11394
|
+
"name": "Location",
|
|
11395
|
+
"persistence": "persistent",
|
|
11396
|
+
"fields": [
|
|
11397
|
+
{
|
|
11398
|
+
"name": "id",
|
|
11399
|
+
"type": "string",
|
|
11400
|
+
"required": true
|
|
11401
|
+
},
|
|
11402
|
+
{
|
|
11403
|
+
"name": "name",
|
|
11404
|
+
"type": "string",
|
|
11405
|
+
"required": true
|
|
11406
|
+
},
|
|
11407
|
+
{
|
|
11408
|
+
"name": "description",
|
|
11409
|
+
"type": "string"
|
|
11410
|
+
},
|
|
11411
|
+
{
|
|
11412
|
+
"name": "status",
|
|
11413
|
+
"type": "string",
|
|
11414
|
+
"default": "active"
|
|
11415
|
+
},
|
|
11416
|
+
{
|
|
11417
|
+
"name": "createdAt",
|
|
11418
|
+
"type": "string"
|
|
11419
|
+
},
|
|
11420
|
+
{
|
|
11421
|
+
"name": "pendingId",
|
|
11422
|
+
"type": "string",
|
|
11423
|
+
"default": ""
|
|
11424
|
+
}
|
|
11425
|
+
]
|
|
11426
|
+
},
|
|
11427
|
+
"defaultLabels": {
|
|
11428
|
+
"title": "Locations",
|
|
11429
|
+
"entitySingular": "Location",
|
|
11430
|
+
"entityPlural": "Locations"
|
|
11431
|
+
},
|
|
11432
|
+
"defaultIcons": [],
|
|
11433
|
+
"composableWith": [],
|
|
11434
|
+
"connectableEvents": [
|
|
11435
|
+
"LocationLoaded",
|
|
11436
|
+
"LocationLoadFailed"
|
|
11437
|
+
],
|
|
11438
|
+
"eventPayloads": {
|
|
11439
|
+
"LocationLoaded": [
|
|
11440
|
+
{
|
|
11441
|
+
"name": "data",
|
|
11442
|
+
"type": "[Location]"
|
|
11443
|
+
}
|
|
11444
|
+
],
|
|
11445
|
+
"LocationLoadFailed": [
|
|
11446
|
+
{
|
|
11447
|
+
"name": "error",
|
|
11448
|
+
"type": "string"
|
|
11449
|
+
},
|
|
11450
|
+
{
|
|
11451
|
+
"name": "code",
|
|
11452
|
+
"type": "string"
|
|
11453
|
+
}
|
|
11454
|
+
]
|
|
11455
|
+
}
|
|
11456
|
+
},
|
|
11457
|
+
"std-inventory": {
|
|
11458
|
+
"name": "std-inventory",
|
|
11459
|
+
"level": "molecule",
|
|
11460
|
+
"family": "unknown",
|
|
11461
|
+
"layer": "UI Patterns",
|
|
11462
|
+
"description": "std-inventory as a Function",
|
|
11463
|
+
"statePattern": "browsing, error, loading",
|
|
11464
|
+
"complexity": {
|
|
11465
|
+
"states": 3,
|
|
11466
|
+
"events": 3,
|
|
11467
|
+
"transitions": 5
|
|
11468
|
+
},
|
|
11469
|
+
"defaultEntity": {
|
|
11470
|
+
"name": "InventoryItem",
|
|
11471
|
+
"persistence": "persistent",
|
|
11472
|
+
"fields": [
|
|
11473
|
+
{
|
|
11474
|
+
"name": "id",
|
|
11475
|
+
"type": "string",
|
|
11476
|
+
"required": true
|
|
11477
|
+
},
|
|
11478
|
+
{
|
|
11479
|
+
"name": "name",
|
|
11480
|
+
"type": "string",
|
|
11481
|
+
"required": true
|
|
11482
|
+
},
|
|
11483
|
+
{
|
|
11484
|
+
"name": "description",
|
|
11485
|
+
"type": "string"
|
|
11486
|
+
},
|
|
11487
|
+
{
|
|
11488
|
+
"name": "status",
|
|
11489
|
+
"type": "string",
|
|
11490
|
+
"default": "active"
|
|
11491
|
+
},
|
|
11492
|
+
{
|
|
11493
|
+
"name": "createdAt",
|
|
11494
|
+
"type": "string"
|
|
11495
|
+
},
|
|
11496
|
+
{
|
|
11497
|
+
"name": "pendingId",
|
|
11498
|
+
"type": "string",
|
|
11499
|
+
"default": ""
|
|
11500
|
+
}
|
|
11501
|
+
]
|
|
11502
|
+
},
|
|
11503
|
+
"defaultLabels": {
|
|
11504
|
+
"title": "InventoryItems",
|
|
11505
|
+
"entitySingular": "InventoryItem",
|
|
11506
|
+
"entityPlural": "InventoryItems"
|
|
11507
|
+
},
|
|
11508
|
+
"defaultIcons": [],
|
|
11509
|
+
"composableWith": [],
|
|
11510
|
+
"connectableEvents": [
|
|
11511
|
+
"InventoryItemLoaded",
|
|
11512
|
+
"InventoryItemLoadFailed"
|
|
11513
|
+
],
|
|
11514
|
+
"eventPayloads": {
|
|
11515
|
+
"InventoryItemLoaded": [
|
|
11516
|
+
{
|
|
11517
|
+
"name": "data",
|
|
11518
|
+
"type": "[InventoryItem]"
|
|
11519
|
+
}
|
|
11520
|
+
],
|
|
11521
|
+
"InventoryItemLoadFailed": [
|
|
11522
|
+
{
|
|
11523
|
+
"name": "error",
|
|
11524
|
+
"type": "string"
|
|
11525
|
+
},
|
|
11526
|
+
{
|
|
11527
|
+
"name": "code",
|
|
11528
|
+
"type": "string"
|
|
11529
|
+
}
|
|
11530
|
+
]
|
|
11531
|
+
}
|
|
11532
|
+
},
|
|
11288
11533
|
"std-list": {
|
|
11289
11534
|
"name": "std-list",
|
|
11290
11535
|
"level": "molecule",
|
|
@@ -11362,6 +11607,79 @@
|
|
|
11362
11607
|
]
|
|
11363
11608
|
}
|
|
11364
11609
|
},
|
|
11610
|
+
"std-messaging": {
|
|
11611
|
+
"name": "std-messaging",
|
|
11612
|
+
"level": "molecule",
|
|
11613
|
+
"family": "unknown",
|
|
11614
|
+
"layer": "UI Patterns",
|
|
11615
|
+
"description": "std-messaging as a Function",
|
|
11616
|
+
"statePattern": "browsing, error, loading",
|
|
11617
|
+
"complexity": {
|
|
11618
|
+
"states": 3,
|
|
11619
|
+
"events": 3,
|
|
11620
|
+
"transitions": 5
|
|
11621
|
+
},
|
|
11622
|
+
"defaultEntity": {
|
|
11623
|
+
"name": "ChatMessage",
|
|
11624
|
+
"persistence": "persistent",
|
|
11625
|
+
"fields": [
|
|
11626
|
+
{
|
|
11627
|
+
"name": "id",
|
|
11628
|
+
"type": "string",
|
|
11629
|
+
"required": true
|
|
11630
|
+
},
|
|
11631
|
+
{
|
|
11632
|
+
"name": "name",
|
|
11633
|
+
"type": "string",
|
|
11634
|
+
"required": true
|
|
11635
|
+
},
|
|
11636
|
+
{
|
|
11637
|
+
"name": "description",
|
|
11638
|
+
"type": "string"
|
|
11639
|
+
},
|
|
11640
|
+
{
|
|
11641
|
+
"name": "status",
|
|
11642
|
+
"type": "string",
|
|
11643
|
+
"default": "active"
|
|
11644
|
+
},
|
|
11645
|
+
{
|
|
11646
|
+
"name": "createdAt",
|
|
11647
|
+
"type": "string"
|
|
11648
|
+
}
|
|
11649
|
+
]
|
|
11650
|
+
},
|
|
11651
|
+
"defaultLabels": {
|
|
11652
|
+
"title": "ChatMessages",
|
|
11653
|
+
"entitySingular": "ChatMessage",
|
|
11654
|
+
"entityPlural": "ChatMessages"
|
|
11655
|
+
},
|
|
11656
|
+
"defaultIcons": [],
|
|
11657
|
+
"composableWith": [
|
|
11658
|
+
"std-realtime-chat"
|
|
11659
|
+
],
|
|
11660
|
+
"connectableEvents": [
|
|
11661
|
+
"ChatMessageLoaded",
|
|
11662
|
+
"ChatMessageLoadFailed"
|
|
11663
|
+
],
|
|
11664
|
+
"eventPayloads": {
|
|
11665
|
+
"ChatMessageLoaded": [
|
|
11666
|
+
{
|
|
11667
|
+
"name": "data",
|
|
11668
|
+
"type": "[ChatMessage]"
|
|
11669
|
+
}
|
|
11670
|
+
],
|
|
11671
|
+
"ChatMessageLoadFailed": [
|
|
11672
|
+
{
|
|
11673
|
+
"name": "error",
|
|
11674
|
+
"type": "string"
|
|
11675
|
+
},
|
|
11676
|
+
{
|
|
11677
|
+
"name": "code",
|
|
11678
|
+
"type": "string"
|
|
11679
|
+
}
|
|
11680
|
+
]
|
|
11681
|
+
}
|
|
11682
|
+
},
|
|
11365
11683
|
"std-negotiator-game": {
|
|
11366
11684
|
"name": "std-negotiator-game",
|
|
11367
11685
|
"level": "molecule",
|
|
@@ -13118,51 +13436,6 @@
|
|
|
13118
13436
|
]
|
|
13119
13437
|
}
|
|
13120
13438
|
},
|
|
13121
|
-
"std-wizard-form": {
|
|
13122
|
-
"name": "std-wizard-form",
|
|
13123
|
-
"level": "molecule",
|
|
13124
|
-
"family": "unknown",
|
|
13125
|
-
"layer": "UI Patterns",
|
|
13126
|
-
"description": "std-wizard-form as a Function",
|
|
13127
|
-
"statePattern": "composing",
|
|
13128
|
-
"complexity": {
|
|
13129
|
-
"states": 1,
|
|
13130
|
-
"events": 1,
|
|
13131
|
-
"transitions": 1
|
|
13132
|
-
},
|
|
13133
|
-
"defaultEntity": {
|
|
13134
|
-
"name": "WizardFormEntry",
|
|
13135
|
-
"persistence": "persistent",
|
|
13136
|
-
"fields": [
|
|
13137
|
-
{
|
|
13138
|
-
"name": "id",
|
|
13139
|
-
"type": "string",
|
|
13140
|
-
"required": true
|
|
13141
|
-
},
|
|
13142
|
-
{
|
|
13143
|
-
"name": "step",
|
|
13144
|
-
"type": "string"
|
|
13145
|
-
},
|
|
13146
|
-
{
|
|
13147
|
-
"name": "name",
|
|
13148
|
-
"type": "string"
|
|
13149
|
-
},
|
|
13150
|
-
{
|
|
13151
|
-
"name": "email",
|
|
13152
|
-
"type": "string"
|
|
13153
|
-
}
|
|
13154
|
-
]
|
|
13155
|
-
},
|
|
13156
|
-
"defaultLabels": {
|
|
13157
|
-
"title": "WizardFormEntrys",
|
|
13158
|
-
"entitySingular": "WizardFormEntry",
|
|
13159
|
-
"entityPlural": "WizardFormEntrys"
|
|
13160
|
-
},
|
|
13161
|
-
"defaultIcons": [],
|
|
13162
|
-
"composableWith": [],
|
|
13163
|
-
"connectableEvents": [],
|
|
13164
|
-
"eventPayloads": {}
|
|
13165
|
-
},
|
|
13166
13439
|
"std-agent-assistant": {
|
|
13167
13440
|
"name": "std-agent-assistant",
|
|
13168
13441
|
"level": "organism",
|
|
@@ -16491,6 +16764,7 @@
|
|
|
16491
16764
|
"std-helpdesk",
|
|
16492
16765
|
"std-hr-portal",
|
|
16493
16766
|
"std-lms",
|
|
16767
|
+
"std-messaging",
|
|
16494
16768
|
"std-project-manager",
|
|
16495
16769
|
"std-service-marketplace",
|
|
16496
16770
|
"std-social-feed"
|
|
@@ -223,6 +223,7 @@ __export(functions_exports, {
|
|
|
223
223
|
stdDetail: () => stdDetail,
|
|
224
224
|
stdDetailDetailRecordBrowseTrait: () => stdDetailDetailRecordBrowseTrait,
|
|
225
225
|
stdDetailDetailRecordCreateTrait: () => stdDetailDetailRecordCreateTrait,
|
|
226
|
+
stdDetailDetailRecordPersistorTrait: () => stdDetailDetailRecordPersistorTrait,
|
|
226
227
|
stdDetailDetailRecordViewTrait: () => stdDetailDetailRecordViewTrait,
|
|
227
228
|
stdDetailPage: () => stdDetailPage,
|
|
228
229
|
stdDevopsDashboard: () => stdDevopsDashboard,
|
|
@@ -291,6 +292,7 @@ __export(functions_exports, {
|
|
|
291
292
|
stdGeospatialLocationBrowseTrait: () => stdGeospatialLocationBrowseTrait,
|
|
292
293
|
stdGeospatialLocationConfirmSelectTrait: () => stdGeospatialLocationConfirmSelectTrait,
|
|
293
294
|
stdGeospatialLocationSelectTrait: () => stdGeospatialLocationSelectTrait,
|
|
295
|
+
stdGeospatialLocationSelectionFlowTrait: () => stdGeospatialLocationSelectionFlowTrait,
|
|
294
296
|
stdGeospatialPage: () => stdGeospatialPage,
|
|
295
297
|
stdHealthcare: () => stdHealthcare,
|
|
296
298
|
stdHealthcarePage: () => stdHealthcarePage,
|
|
@@ -355,6 +357,7 @@ __export(functions_exports, {
|
|
|
355
357
|
stdMessaging: () => stdMessaging,
|
|
356
358
|
stdMessagingChatMessageBrowseTrait: () => stdMessagingChatMessageBrowseTrait,
|
|
357
359
|
stdMessagingChatMessageComposeTrait: () => stdMessagingChatMessageComposeTrait,
|
|
360
|
+
stdMessagingChatMessagePersistorTrait: () => stdMessagingChatMessagePersistorTrait,
|
|
358
361
|
stdMessagingChatMessageViewTrait: () => stdMessagingChatMessageViewTrait,
|
|
359
362
|
stdMessagingPage: () => stdMessagingPage,
|
|
360
363
|
stdModal: () => stdModal,
|
|
@@ -4718,6 +4721,19 @@ function stdDetailDetailRecordViewTrait(params) {
|
|
|
4718
4721
|
...params.config !== void 0 ? { config: params.config } : {}
|
|
4719
4722
|
});
|
|
4720
4723
|
}
|
|
4724
|
+
function stdDetailDetailRecordPersistorTrait(params) {
|
|
4725
|
+
return makeTraitRef({
|
|
4726
|
+
from: BEHAVIOR_PATH88,
|
|
4727
|
+
ref: `${ALIAS88}.traits.DetailRecordPersistor`,
|
|
4728
|
+
linkedEntity: params.entityName,
|
|
4729
|
+
...params.traitName !== void 0 ? { name: params.traitName } : {},
|
|
4730
|
+
...params.events !== void 0 ? { events: params.events } : {},
|
|
4731
|
+
...params.effects !== void 0 ? { effects: params.effects } : {},
|
|
4732
|
+
...params.listens !== void 0 ? { listens: params.listens } : {},
|
|
4733
|
+
...params.emitsScope !== void 0 ? { emitsScope: params.emitsScope } : {},
|
|
4734
|
+
...params.config !== void 0 ? { config: params.config } : {}
|
|
4735
|
+
});
|
|
4736
|
+
}
|
|
4721
4737
|
function stdDetailPage(params) {
|
|
4722
4738
|
return makePageRef({
|
|
4723
4739
|
from: BEHAVIOR_PATH88,
|
|
@@ -4739,7 +4755,8 @@ function stdDetail(params) {
|
|
|
4739
4755
|
traits: [
|
|
4740
4756
|
stdDetailDetailRecordBrowseTrait(params),
|
|
4741
4757
|
stdDetailDetailRecordCreateTrait(params),
|
|
4742
|
-
stdDetailDetailRecordViewTrait(params)
|
|
4758
|
+
stdDetailDetailRecordViewTrait(params),
|
|
4759
|
+
stdDetailDetailRecordPersistorTrait(params)
|
|
4743
4760
|
],
|
|
4744
4761
|
pages: [
|
|
4745
4762
|
stdDetailPage(params)
|
|
@@ -4869,6 +4886,19 @@ function stdGeospatialLocationConfirmSelectTrait(params) {
|
|
|
4869
4886
|
...params.config !== void 0 ? { config: params.config } : {}
|
|
4870
4887
|
});
|
|
4871
4888
|
}
|
|
4889
|
+
function stdGeospatialLocationSelectionFlowTrait(params) {
|
|
4890
|
+
return makeTraitRef({
|
|
4891
|
+
from: BEHAVIOR_PATH91,
|
|
4892
|
+
ref: `${ALIAS91}.traits.LocationSelectionFlow`,
|
|
4893
|
+
linkedEntity: params.entityName,
|
|
4894
|
+
...params.traitName !== void 0 ? { name: params.traitName } : {},
|
|
4895
|
+
...params.events !== void 0 ? { events: params.events } : {},
|
|
4896
|
+
...params.effects !== void 0 ? { effects: params.effects } : {},
|
|
4897
|
+
...params.listens !== void 0 ? { listens: params.listens } : {},
|
|
4898
|
+
...params.emitsScope !== void 0 ? { emitsScope: params.emitsScope } : {},
|
|
4899
|
+
...params.config !== void 0 ? { config: params.config } : {}
|
|
4900
|
+
});
|
|
4901
|
+
}
|
|
4872
4902
|
function stdGeospatialPage(params) {
|
|
4873
4903
|
return makePageRef({
|
|
4874
4904
|
from: BEHAVIOR_PATH91,
|
|
@@ -4890,7 +4920,8 @@ function stdGeospatial(params) {
|
|
|
4890
4920
|
traits: [
|
|
4891
4921
|
stdGeospatialLocationBrowseTrait(params),
|
|
4892
4922
|
stdGeospatialLocationSelectTrait(params),
|
|
4893
|
-
stdGeospatialLocationConfirmSelectTrait(params)
|
|
4923
|
+
stdGeospatialLocationConfirmSelectTrait(params),
|
|
4924
|
+
stdGeospatialLocationSelectionFlowTrait(params)
|
|
4894
4925
|
],
|
|
4895
4926
|
pages: [
|
|
4896
4927
|
stdGeospatialPage(params)
|
|
@@ -5132,6 +5163,19 @@ function stdMessagingChatMessageViewTrait(params) {
|
|
|
5132
5163
|
...params.config !== void 0 ? { config: params.config } : {}
|
|
5133
5164
|
});
|
|
5134
5165
|
}
|
|
5166
|
+
function stdMessagingChatMessagePersistorTrait(params) {
|
|
5167
|
+
return makeTraitRef({
|
|
5168
|
+
from: BEHAVIOR_PATH94,
|
|
5169
|
+
ref: `${ALIAS94}.traits.ChatMessagePersistor`,
|
|
5170
|
+
linkedEntity: params.entityName,
|
|
5171
|
+
...params.traitName !== void 0 ? { name: params.traitName } : {},
|
|
5172
|
+
...params.events !== void 0 ? { events: params.events } : {},
|
|
5173
|
+
...params.effects !== void 0 ? { effects: params.effects } : {},
|
|
5174
|
+
...params.listens !== void 0 ? { listens: params.listens } : {},
|
|
5175
|
+
...params.emitsScope !== void 0 ? { emitsScope: params.emitsScope } : {},
|
|
5176
|
+
...params.config !== void 0 ? { config: params.config } : {}
|
|
5177
|
+
});
|
|
5178
|
+
}
|
|
5135
5179
|
function stdMessagingPage(params) {
|
|
5136
5180
|
return makePageRef({
|
|
5137
5181
|
from: BEHAVIOR_PATH94,
|
|
@@ -5153,7 +5197,8 @@ function stdMessaging(params) {
|
|
|
5153
5197
|
traits: [
|
|
5154
5198
|
stdMessagingChatMessageBrowseTrait(params),
|
|
5155
5199
|
stdMessagingChatMessageComposeTrait(params),
|
|
5156
|
-
stdMessagingChatMessageViewTrait(params)
|
|
5200
|
+
stdMessagingChatMessageViewTrait(params),
|
|
5201
|
+
stdMessagingChatMessagePersistorTrait(params)
|
|
5157
5202
|
],
|
|
5158
5203
|
pages: [
|
|
5159
5204
|
stdMessagingPage(params)
|