@almadar/std 16.176.0 → 16.177.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.
Files changed (68) hide show
  1. package/behaviors/lolo/ui/avl/atoms/ui-behavior-view.lolo +1 -1
  2. package/behaviors/lolo/ui/avl/atoms/ui-module-card.lolo +1 -1
  3. package/behaviors/lolo/ui/core/atoms/std-modal.lolo +13 -0
  4. package/behaviors/lolo/ui/core/organisms/ui-detail-panel.lolo +29 -1
  5. package/behaviors/lolo/ui/core/organisms/ui-form-section.lolo +19 -5
  6. package/behaviors/lolo/ui/core/organisms/ui-form.lolo +19 -5
  7. package/behaviors/lolo/ui/core/organisms/ui-segment-renderer.lolo +1 -1
  8. package/behaviors/lolo/ui/game/atoms/std-motion-body.lolo +139 -0
  9. package/behaviors/lolo/ui/game/atoms/ui-action-palette.lolo +1 -1
  10. package/behaviors/lolo/ui/game/atoms/ui-action-tile.lolo +1 -1
  11. package/behaviors/lolo/ui/game/atoms/ui-canvas-2d.lolo +1 -1
  12. package/behaviors/lolo/ui/game/atoms/ui-canvas.lolo +3 -3
  13. package/behaviors/lolo/ui/game/atoms/ui-draw-group.lolo +1 -1
  14. package/behaviors/lolo/ui/game/atoms/ui-draw-shape-layer.lolo +3 -3
  15. package/behaviors/lolo/ui/game/atoms/ui-draw-shape.lolo +3 -3
  16. package/behaviors/lolo/ui/game/atoms/ui-draw-sprite-layer.lolo +1 -1
  17. package/behaviors/lolo/ui/game/atoms/ui-draw-sprite.lolo +1 -1
  18. package/behaviors/lolo/ui/game/atoms/ui-draw-text-layer.lolo +1 -1
  19. package/behaviors/lolo/ui/game/atoms/ui-draw-text.lolo +1 -1
  20. package/behaviors/lolo/ui/game/atoms/ui-sequence-bar.lolo +2 -2
  21. package/behaviors/lolo/ui/game/atoms/ui-trait-slot.lolo +3 -3
  22. package/behaviors/lolo/ui/learning/atoms/ui-biology-canvas.lolo +2 -2
  23. package/behaviors/lolo/ui/learning/atoms/ui-chemistry-canvas.lolo +2 -2
  24. package/behaviors/lolo/ui/learning/atoms/ui-math-canvas.lolo +12 -0
  25. package/behaviors/lolo/ui/learning/atoms/ui-physics-canvas.lolo +2 -2
  26. package/behaviors/registry/ui/avl/atoms/ui-behavior-view.orb +1 -1
  27. package/behaviors/registry/ui/avl/atoms/ui-module-card.orb +1 -1
  28. package/behaviors/registry/ui/core/atoms/std-modal.orb +34 -0
  29. package/behaviors/registry/ui/core/organisms/ui-detail-panel.orb +110 -2
  30. package/behaviors/registry/ui/core/organisms/ui-form-section.orb +52 -6
  31. package/behaviors/registry/ui/core/organisms/ui-form.orb +52 -6
  32. package/behaviors/registry/ui/core/organisms/ui-segment-renderer.orb +1 -1
  33. package/behaviors/registry/ui/game/atoms/std-motion-body.orb +1015 -0
  34. package/behaviors/registry/ui/game/atoms/ui-action-palette.orb +1 -1
  35. package/behaviors/registry/ui/game/atoms/ui-action-tile.orb +1 -1
  36. package/behaviors/registry/ui/game/atoms/ui-canvas-2d.orb +1 -1
  37. package/behaviors/registry/ui/game/atoms/ui-canvas.orb +3 -3
  38. package/behaviors/registry/ui/game/atoms/ui-draw-group.orb +1 -1
  39. package/behaviors/registry/ui/game/atoms/ui-draw-shape-layer.orb +1 -1
  40. package/behaviors/registry/ui/game/atoms/ui-draw-shape.orb +1 -1
  41. package/behaviors/registry/ui/game/atoms/ui-draw-sprite-layer.orb +1 -1
  42. package/behaviors/registry/ui/game/atoms/ui-draw-sprite.orb +1 -1
  43. package/behaviors/registry/ui/game/atoms/ui-draw-text-layer.orb +1 -1
  44. package/behaviors/registry/ui/game/atoms/ui-draw-text.orb +1 -1
  45. package/behaviors/registry/ui/game/atoms/ui-sequence-bar.orb +3 -3
  46. package/behaviors/registry/ui/game/atoms/ui-trait-slot.orb +5 -5
  47. package/behaviors/registry/ui/learning/atoms/ui-algo-graph-canvas.orb +18 -1
  48. package/behaviors/registry/ui/learning/atoms/ui-algorithm-canvas.orb +26 -1
  49. package/behaviors/registry/ui/learning/atoms/ui-biology-canvas.orb +28 -3
  50. package/behaviors/registry/ui/learning/atoms/ui-chemistry-canvas.orb +28 -3
  51. package/behaviors/registry/ui/learning/atoms/ui-learning-canvas.orb +26 -1
  52. package/behaviors/registry/ui/learning/atoms/ui-math-canvas.orb +84 -31
  53. package/behaviors/registry/ui/learning/atoms/ui-physics-canvas.orb +28 -3
  54. package/dist/behaviors/exports-reader.js +2152 -1874
  55. package/dist/behaviors/functions/index.d.ts +129 -21
  56. package/dist/behaviors/functions/index.js +2150 -1875
  57. package/dist/behaviors/index.d.ts +1 -1
  58. package/dist/behaviors/index.js +2153 -1875
  59. package/dist/behaviors/query.js +2152 -1874
  60. package/dist/behaviors-embeddings.hash.json +3 -3
  61. package/dist/behaviors-embeddings.json +369 -365
  62. package/dist/behaviors-registry.json +251 -4
  63. package/dist/index.d.ts +1 -1
  64. package/dist/index.js +2153 -1875
  65. package/dist/knob-embeddings.hash.json +3 -3
  66. package/dist/knob-embeddings.json +1 -1
  67. package/dist/registry/factory-signatures.json +1 -1
  68. package/package.json +2 -2
@@ -8,7 +8,7 @@ orbital TraitSlotOrbital {
8
8
  description : string
9
9
  iconEmoji : string
10
10
  iconUrl : TraitSlotEquippedItemIconUrl
11
- stateMachine : json
11
+ stateMachine : object
12
12
  }
13
13
  type TraitSlotEquippedItemIconUrl = {
14
14
  url : asset!
@@ -55,7 +55,7 @@ orbital TraitSlotOrbital {
55
55
  description : string
56
56
  iconEmoji : string
57
57
  iconUrl : TraitSlotITEMDROPItemIconUrl
58
- stateMachine : json
58
+ stateMachine : object
59
59
  }
60
60
  type TraitSlotITEMDROPItemIconUrl = {
61
61
  url : asset!
@@ -78,7 +78,7 @@ orbital TraitSlotOrbital {
78
78
  description : string
79
79
  iconEmoji : string
80
80
  iconUrl : TraitSlotDRAGSTARTItemIconUrl
81
- stateMachine : json
81
+ stateMachine : object
82
82
  }
83
83
  type TraitSlotDRAGSTARTItemIconUrl = {
84
84
  url : asset!
@@ -279,11 +279,11 @@ orbital BiologyCanvasOrbital {
279
279
  @label "Camera"
280
280
  @description "3D only: neutral camera pose ({ mode, zoom, fov, azimuth, target })."
281
281
  @tier "presentation"
282
- lighting : json = {}
282
+ lighting : object = {}
283
283
  @label "Lighting"
284
284
  @description "3D only: scene light rig as data."
285
285
  @tier "presentation"
286
- post : json = {}
286
+ post : object = {}
287
287
  @label "Post"
288
288
  @description "3D only: post-processing stack (bloom/vignette)."
289
289
  @tier "presentation"
@@ -275,11 +275,11 @@ orbital ChemistryCanvasOrbital {
275
275
  @label "Camera"
276
276
  @description "3D only: neutral camera pose ({ mode, zoom, fov, azimuth, target })."
277
277
  @tier "presentation"
278
- lighting : json = {}
278
+ lighting : object = {}
279
279
  @label "Lighting"
280
280
  @description "3D only: scene light rig as data."
281
281
  @tier "presentation"
282
- post : json = {}
282
+ post : object = {}
283
283
  @label "Post"
284
284
  @description "3D only: post-processing stack (bloom/vignette)."
285
285
  @tier "presentation"
@@ -184,6 +184,8 @@ orbital MathCanvasOrbital {
184
184
  interactive: @config.interactive
185
185
  animate: @config.animate
186
186
  onShapeClick: @config.onShapeClick
187
+ keyMap: @config.keyMap
188
+ keyUpMap: @config.keyUpMap
187
189
  isLoading: @config.isLoading
188
190
  error: @config.error
189
191
  type: math-canvas
@@ -217,6 +219,8 @@ orbital MathCanvasOrbital {
217
219
  interactive: @config.interactive
218
220
  animate: @config.animate
219
221
  onShapeClick: @config.onShapeClick
222
+ keyMap: @config.keyMap
223
+ keyUpMap: @config.keyUpMap
220
224
  isLoading: @config.isLoading
221
225
  error: @config.error
222
226
  type: math-canvas
@@ -359,6 +363,14 @@ orbital MathCanvasOrbital {
359
363
  @label "On Shape Click"
360
364
  @description "onShapeClick prop"
361
365
  @tier "presentation"
366
+ keyMap : Map string string = { item: "Item" }
367
+ @label "Key Map"
368
+ @description "Maps a keydown `e.code` → the board's SEMANTIC event (device-agnostic input), emitted as `UI:{event}` — same contract as the game canvas keyMap."
369
+ @tier "presentation"
370
+ keyUpMap : Map string string = { item: "Item" }
371
+ @label "Key Up Map"
372
+ @description "Maps a keyup `e.code` → the board's SEMANTIC event."
373
+ @tier "presentation"
362
374
  isLoading : boolean
363
375
  @label "Is Loading"
364
376
  @description "isLoading prop"
@@ -330,11 +330,11 @@ orbital PhysicsCanvasOrbital {
330
330
  @label "Camera"
331
331
  @description "3D only: neutral camera pose ({ mode, zoom, fov, azimuth, target })."
332
332
  @tier "presentation"
333
- lighting : json = {}
333
+ lighting : object = {}
334
334
  @label "Lighting"
335
335
  @description "3D only: scene light rig as data."
336
336
  @tier "presentation"
337
- post : json = {}
337
+ post : object = {}
338
338
  @label "Post"
339
339
  @description "3D only: post-processing stack (bloom/vignette)."
340
340
  @tier "presentation"
@@ -85,7 +85,7 @@
85
85
  "description": "data prop",
86
86
  "label": "Data",
87
87
  "tier": "presentation",
88
- "type": "json"
88
+ "type": "object"
89
89
  }
90
90
  },
91
91
  "entityContract": {
@@ -85,7 +85,7 @@
85
85
  "description": "data prop",
86
86
  "label": "Data",
87
87
  "tier": "presentation",
88
- "type": "json"
88
+ "type": "object"
89
89
  }
90
90
  },
91
91
  "entityContract": {
@@ -166,6 +166,39 @@
166
166
  "tier": "internal",
167
167
  "type": "slot"
168
168
  },
169
+ "fieldOverrides": {
170
+ "default": [],
171
+ "description": "Per-field label/placeholder/hint overrides, keyed by field name. Types, options and required-ness stay entity-schema-driven (declare once on the entity); override only display copy the entity's @description doesn't fit.",
172
+ "items": {
173
+ "properties": {
174
+ "hint": {
175
+ "name": "hint",
176
+ "required": false,
177
+ "type": "string"
178
+ },
179
+ "label": {
180
+ "name": "label",
181
+ "required": false,
182
+ "type": "string"
183
+ },
184
+ "name": {
185
+ "name": "name",
186
+ "required": true,
187
+ "type": "string"
188
+ },
189
+ "placeholder": {
190
+ "name": "placeholder",
191
+ "required": false,
192
+ "type": "string"
193
+ }
194
+ },
195
+ "type": "object"
196
+ },
197
+ "label": "Any per-field display copy overrides?",
198
+ "synonyms": "field labels, custom labels, help text overrides, placeholder text",
199
+ "tier": "presentation",
200
+ "type": "[ModalFieldOverride]"
201
+ },
169
202
  "fields": {
170
203
  "default": [],
171
204
  "description": "Entity fields rendered as inputs inside the modal form.",
@@ -413,6 +446,7 @@
413
446
  {
414
447
  "cancelEvent": "CLOSE",
415
448
  "entity": "@payload.row",
449
+ "fieldOverrides": "@config.fieldOverrides",
416
450
  "fields": "@config.fields",
417
451
  "mode": "@config.mode",
418
452
  "submitEvent": "SAVE",
@@ -148,6 +148,45 @@
148
148
  "tier": "presentation",
149
149
  "type": "node"
150
150
  },
151
+ "backAction": {
152
+ "description": "Navigation-back affordance. Renders top-LEFT before the title (OS/back convention — Almadar_UX §8.4), spatially separated from the right-aligned action buttons + close X. Never inferred from actions[] labels.",
153
+ "label": "Back Action",
154
+ "properties": {
155
+ "event": {
156
+ "name": "event",
157
+ "required": false,
158
+ "type": "string"
159
+ },
160
+ "icon": {
161
+ "name": "icon",
162
+ "required": false,
163
+ "type": "string"
164
+ },
165
+ "label": {
166
+ "name": "label",
167
+ "required": true,
168
+ "type": "string"
169
+ },
170
+ "navigatesTo": {
171
+ "name": "navigatesTo",
172
+ "required": false,
173
+ "type": "string"
174
+ },
175
+ "variant": {
176
+ "name": "variant",
177
+ "required": false,
178
+ "type": "string",
179
+ "values": [
180
+ "primary",
181
+ "secondary",
182
+ "ghost",
183
+ "danger"
184
+ ]
185
+ }
186
+ },
187
+ "tier": "presentation",
188
+ "type": "DetailPanelBackAction"
189
+ },
151
190
  "className": {
152
191
  "description": "Additional CSS classes",
153
192
  "label": "Class Name",
@@ -206,11 +245,23 @@
206
245
  "default": [
207
246
  {
208
247
  "header": "Header",
209
- "key": "Key"
248
+ "key": "Key",
249
+ "relation": "Relation",
250
+ "type": "Type",
251
+ "values": [
252
+ "Item",
253
+ "Item 2"
254
+ ]
210
255
  },
211
256
  {
212
257
  "header": "Header 2",
213
- "key": "Key 2"
258
+ "key": "Key 2",
259
+ "relation": "Relation 2",
260
+ "type": "Type 2",
261
+ "values": [
262
+ "Item",
263
+ "Item 2"
264
+ ]
214
265
  }
215
266
  ],
216
267
  "description": "Fields to display - accepts string[], {key, header}[], or DetailField[]",
@@ -225,6 +276,24 @@
225
276
  "name": "key",
226
277
  "required": true,
227
278
  "type": "string"
279
+ },
280
+ "relation": {
281
+ "name": "relation",
282
+ "required": false,
283
+ "type": "string"
284
+ },
285
+ "type": {
286
+ "name": "type",
287
+ "required": false,
288
+ "type": "string"
289
+ },
290
+ "values": {
291
+ "items": {
292
+ "type": "string"
293
+ },
294
+ "name": "values",
295
+ "required": false,
296
+ "type": "array"
228
297
  }
229
298
  },
230
299
  "type": "object"
@@ -276,6 +345,41 @@
276
345
  "right"
277
346
  ]
278
347
  },
348
+ "relationsData": {
349
+ "default": {},
350
+ "description": "Relation display data: { fieldName: [{value, label}] } — injected server-side by the runtime (relation-option injection) or bound by compiled codegen; resolves stored foreign ids to display names.",
351
+ "items": {
352
+ "items": {
353
+ "properties": {
354
+ "description": {
355
+ "name": "description",
356
+ "required": false,
357
+ "type": "string"
358
+ },
359
+ "disabled": {
360
+ "name": "disabled",
361
+ "required": false,
362
+ "type": "boolean"
363
+ },
364
+ "label": {
365
+ "name": "label",
366
+ "required": true,
367
+ "type": "string"
368
+ },
369
+ "value": {
370
+ "name": "value",
371
+ "required": true,
372
+ "type": "string"
373
+ }
374
+ },
375
+ "type": "object"
376
+ },
377
+ "type": "array"
378
+ },
379
+ "label": "Relations Data",
380
+ "tier": "presentation",
381
+ "type": "Map<string,[DetailPanelRelationsDataValueItem]>"
382
+ },
279
383
  "searchValue": {
280
384
  "description": "Current search query value",
281
385
  "label": "Search Value",
@@ -495,6 +599,7 @@
495
599
  "actions": "@config.actions",
496
600
  "activeFilters": "@config.activeFilters",
497
601
  "avatar": "@config.avatar",
602
+ "backAction": "@config.backAction",
498
603
  "className": "@config.className",
499
604
  "displayFields": "@config.displayFields",
500
605
  "entity": "@entity",
@@ -508,6 +613,7 @@
508
613
  "page": "@config.pageProp",
509
614
  "pageSize": "@config.pageSize",
510
615
  "position": "@config.position",
616
+ "relationsData": "@config.relationsData",
511
617
  "searchValue": "@config.searchValue",
512
618
  "sections": "@config.sections",
513
619
  "selectedIds": "@config.selectedIds",
@@ -538,6 +644,7 @@
538
644
  "actions": "@config.actions",
539
645
  "activeFilters": "@config.activeFilters",
540
646
  "avatar": "@config.avatar",
647
+ "backAction": "@config.backAction",
541
648
  "className": "@config.className",
542
649
  "displayFields": "@config.displayFields",
543
650
  "entity": "@payload.data",
@@ -551,6 +658,7 @@
551
658
  "page": "@config.pageProp",
552
659
  "pageSize": "@config.pageSize",
553
660
  "position": "@config.position",
661
+ "relationsData": "@config.relationsData",
554
662
  "searchValue": "@config.searchValue",
555
663
  "sections": "@config.sections",
556
664
  "selectedIds": "@config.selectedIds",
@@ -192,12 +192,12 @@
192
192
  "entity": {
193
193
  "name": "entity",
194
194
  "required": false,
195
- "type": "string"
195
+ "type": "object"
196
196
  },
197
197
  "formValues": {
198
198
  "name": "formValues",
199
199
  "required": true,
200
- "type": "string"
200
+ "type": "object"
201
201
  },
202
202
  "globalVariables": {
203
203
  "items": {
@@ -219,11 +219,44 @@
219
219
  "tier": "presentation",
220
220
  "type": "FormSectionEvaluationContext"
221
221
  },
222
+ "fieldOverrides": {
223
+ "default": [],
224
+ "description": "Per-field display-copy overrides (label/placeholder/hint), merged by field name over the schema-enriched fields.",
225
+ "items": {
226
+ "properties": {
227
+ "hint": {
228
+ "name": "hint",
229
+ "required": false,
230
+ "type": "string"
231
+ },
232
+ "label": {
233
+ "name": "label",
234
+ "required": false,
235
+ "type": "string"
236
+ },
237
+ "name": {
238
+ "name": "name",
239
+ "required": true,
240
+ "type": "string"
241
+ },
242
+ "placeholder": {
243
+ "name": "placeholder",
244
+ "required": false,
245
+ "type": "string"
246
+ }
247
+ },
248
+ "type": "object"
249
+ },
250
+ "label": "Field Overrides",
251
+ "tier": "presentation",
252
+ "type": "[FormSectionFieldOverridesItem]"
253
+ },
222
254
  "fields": {
223
255
  "default": [
224
256
  {
225
257
  "disabled": false,
226
258
  "field": "Field",
259
+ "hint": "Hint",
227
260
  "inputType": "Input Type",
228
261
  "label": "Label",
229
262
  "max": 1.0,
@@ -263,6 +296,7 @@
263
296
  {
264
297
  "disabled": true,
265
298
  "field": "Field 2",
299
+ "hint": "Hint 2",
266
300
  "inputType": "Input Type 2",
267
301
  "label": "Label 2",
268
302
  "max": 2.0,
@@ -318,6 +352,11 @@
318
352
  "required": false,
319
353
  "type": "string"
320
354
  },
355
+ "hint": {
356
+ "name": "hint",
357
+ "required": false,
358
+ "type": "string"
359
+ },
321
360
  "inputType": {
322
361
  "name": "inputType",
323
362
  "required": false,
@@ -619,6 +658,11 @@
619
658
  "required": false,
620
659
  "type": "string"
621
660
  },
661
+ "hint": {
662
+ "name": "hint",
663
+ "required": false,
664
+ "type": "string"
665
+ },
622
666
  "inputType": {
623
667
  "name": "inputType",
624
668
  "required": false,
@@ -892,12 +936,12 @@
892
936
  {
893
937
  "name": "value",
894
938
  "required": true,
895
- "type": "json"
939
+ "type": "object"
896
940
  },
897
941
  {
898
942
  "name": "formValues",
899
943
  "required": true,
900
- "type": "Map<string,json>"
944
+ "type": "Map<string,object>"
901
945
  }
902
946
  ],
903
947
  "type": "object"
@@ -998,12 +1042,12 @@
998
1042
  {
999
1043
  "name": "value",
1000
1044
  "required": true,
1001
- "type": "json"
1045
+ "type": "object"
1002
1046
  },
1003
1047
  {
1004
1048
  "name": "formValues",
1005
1049
  "required": true,
1006
- "type": "Map<string,json>"
1050
+ "type": "Map<string,object>"
1007
1051
  }
1008
1052
  ],
1009
1053
  "type": "object"
@@ -1043,6 +1087,7 @@
1043
1087
  "entity": "@entity",
1044
1088
  "error": "@config.error",
1045
1089
  "evaluationContext": "@config.evaluationContext",
1090
+ "fieldOverrides": "@config.fieldOverrides",
1046
1091
  "fields": "@config.fields",
1047
1092
  "gap": "@config.gap",
1048
1093
  "hiddenCalculations": "@config.hiddenCalculations",
@@ -1087,6 +1132,7 @@
1087
1132
  "entity": "@payload.data",
1088
1133
  "error": "@config.error",
1089
1134
  "evaluationContext": "@config.evaluationContext",
1135
+ "fieldOverrides": "@config.fieldOverrides",
1090
1136
  "fields": "@config.fields",
1091
1137
  "gap": "@config.gap",
1092
1138
  "hiddenCalculations": "@config.hiddenCalculations",
@@ -192,12 +192,12 @@
192
192
  "entity": {
193
193
  "name": "entity",
194
194
  "required": false,
195
- "type": "string"
195
+ "type": "object"
196
196
  },
197
197
  "formValues": {
198
198
  "name": "formValues",
199
199
  "required": true,
200
- "type": "string"
200
+ "type": "object"
201
201
  },
202
202
  "globalVariables": {
203
203
  "items": {
@@ -219,11 +219,44 @@
219
219
  "tier": "presentation",
220
220
  "type": "FormEvaluationContext"
221
221
  },
222
+ "fieldOverrides": {
223
+ "default": [],
224
+ "description": "Per-field display-copy overrides (label/placeholder/hint), merged by field name over the schema-enriched fields.",
225
+ "items": {
226
+ "properties": {
227
+ "hint": {
228
+ "name": "hint",
229
+ "required": false,
230
+ "type": "string"
231
+ },
232
+ "label": {
233
+ "name": "label",
234
+ "required": false,
235
+ "type": "string"
236
+ },
237
+ "name": {
238
+ "name": "name",
239
+ "required": true,
240
+ "type": "string"
241
+ },
242
+ "placeholder": {
243
+ "name": "placeholder",
244
+ "required": false,
245
+ "type": "string"
246
+ }
247
+ },
248
+ "type": "object"
249
+ },
250
+ "label": "Field Overrides",
251
+ "tier": "presentation",
252
+ "type": "[FormFieldOverridesItem]"
253
+ },
222
254
  "fields": {
223
255
  "default": [
224
256
  {
225
257
  "disabled": false,
226
258
  "field": "Field",
259
+ "hint": "Hint",
227
260
  "inputType": "Input Type",
228
261
  "label": "Label",
229
262
  "max": 1.0,
@@ -263,6 +296,7 @@
263
296
  {
264
297
  "disabled": true,
265
298
  "field": "Field 2",
299
+ "hint": "Hint 2",
266
300
  "inputType": "Input Type 2",
267
301
  "label": "Label 2",
268
302
  "max": 2.0,
@@ -318,6 +352,11 @@
318
352
  "required": false,
319
353
  "type": "string"
320
354
  },
355
+ "hint": {
356
+ "name": "hint",
357
+ "required": false,
358
+ "type": "string"
359
+ },
321
360
  "inputType": {
322
361
  "name": "inputType",
323
362
  "required": false,
@@ -619,6 +658,11 @@
619
658
  "required": false,
620
659
  "type": "string"
621
660
  },
661
+ "hint": {
662
+ "name": "hint",
663
+ "required": false,
664
+ "type": "string"
665
+ },
622
666
  "inputType": {
623
667
  "name": "inputType",
624
668
  "required": false,
@@ -892,12 +936,12 @@
892
936
  {
893
937
  "name": "value",
894
938
  "required": true,
895
- "type": "json"
939
+ "type": "object"
896
940
  },
897
941
  {
898
942
  "name": "formValues",
899
943
  "required": true,
900
- "type": "Map<string,json>"
944
+ "type": "Map<string,object>"
901
945
  }
902
946
  ],
903
947
  "type": "object"
@@ -998,12 +1042,12 @@
998
1042
  {
999
1043
  "name": "value",
1000
1044
  "required": true,
1001
- "type": "json"
1045
+ "type": "object"
1002
1046
  },
1003
1047
  {
1004
1048
  "name": "formValues",
1005
1049
  "required": true,
1006
- "type": "Map<string,json>"
1050
+ "type": "Map<string,object>"
1007
1051
  }
1008
1052
  ],
1009
1053
  "type": "object"
@@ -1043,6 +1087,7 @@
1043
1087
  "entity": "@entity",
1044
1088
  "error": "@config.error",
1045
1089
  "evaluationContext": "@config.evaluationContext",
1090
+ "fieldOverrides": "@config.fieldOverrides",
1046
1091
  "fields": "@config.fields",
1047
1092
  "gap": "@config.gap",
1048
1093
  "hiddenCalculations": "@config.hiddenCalculations",
@@ -1087,6 +1132,7 @@
1087
1132
  "entity": "@payload.data",
1088
1133
  "error": "@config.error",
1089
1134
  "evaluationContext": "@config.evaluationContext",
1135
+ "fieldOverrides": "@config.fieldOverrides",
1090
1136
  "fields": "@config.fields",
1091
1137
  "gap": "@config.gap",
1092
1138
  "hiddenCalculations": "@config.hiddenCalculations",
@@ -100,7 +100,7 @@
100
100
  },
101
101
  "label": "Segments",
102
102
  "tier": "presentation",
103
- "type": "[json]"
103
+ "type": "[object]"
104
104
  },
105
105
  "userProgress": {
106
106
  "description": "User progress for restoring activation/reflection state",