@almadar/core 10.91.0 → 10.92.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/dist/builders.d.ts +3 -3
- package/dist/builders.js +2 -1
- package/dist/builders.js.map +1 -1
- package/dist/{effect-Bt8vKHwd.d.ts → effect-DGa2ixo7.d.ts} +5 -1
- package/dist/{entityAccess-BdDX85rM.d.ts → entityAccess-CXennIKj.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory/index.js +212 -31
- package/dist/factory/index.js.map +1 -1
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +6 -2
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/{index-rOBf1Oag.d.ts → index-BFortVj8.d.ts} +19 -10
- package/dist/index.d.ts +11 -72
- package/dist/index.js +401 -134
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +791 -78
- package/dist/patterns/index.js +351 -35
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +136 -1
- package/dist/patterns/patterns-registry.json +213 -32
- package/dist/patterns/registry.json +213 -32
- package/dist/patterns/services-registry.json +136 -1
- package/dist/{schema-ovDTDQz9.d.ts → schema-DIL07Bmv.d.ts} +25 -25
- package/dist/state-machine/index.js +19 -4
- package/dist/state-machine/index.js.map +1 -1
- package/dist/{trait-C3e3btfn.d.ts → trait-DHb48lyx.d.ts} +10 -1
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +30 -2
- package/dist/types/index.js.map +1 -1
- package/dist/{types-rh0naR6C.d.ts → types-F5EPwMor.d.ts} +2 -2
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-09-
|
|
3
|
+
"exportedAt": "2026-09-12T18:14:02.248Z",
|
|
4
4
|
"patterns": {
|
|
5
5
|
"entity-table": {
|
|
6
6
|
"type": "entity-table",
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"tier": "organisms",
|
|
10
10
|
"family": "core",
|
|
11
11
|
"description": "Data table with columns and sorting",
|
|
12
|
+
"fieldsContract": "display",
|
|
12
13
|
"suggestedFor": [
|
|
13
14
|
"data-dense views",
|
|
14
15
|
"comparisons",
|
|
@@ -477,6 +478,48 @@
|
|
|
477
478
|
"card-rows"
|
|
478
479
|
],
|
|
479
480
|
"default": "dense"
|
|
481
|
+
},
|
|
482
|
+
"relationsData": {
|
|
483
|
+
"types": [
|
|
484
|
+
"object"
|
|
485
|
+
],
|
|
486
|
+
"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 for a column whose field is relation-typed. Same contract DetailPanel takes.",
|
|
487
|
+
"mapValue": {
|
|
488
|
+
"types": [
|
|
489
|
+
"array"
|
|
490
|
+
],
|
|
491
|
+
"items": {
|
|
492
|
+
"types": [
|
|
493
|
+
"object"
|
|
494
|
+
],
|
|
495
|
+
"properties": {
|
|
496
|
+
"value": {
|
|
497
|
+
"types": [
|
|
498
|
+
"string"
|
|
499
|
+
]
|
|
500
|
+
},
|
|
501
|
+
"label": {
|
|
502
|
+
"types": [
|
|
503
|
+
"string"
|
|
504
|
+
]
|
|
505
|
+
},
|
|
506
|
+
"description": {
|
|
507
|
+
"types": [
|
|
508
|
+
"string"
|
|
509
|
+
]
|
|
510
|
+
},
|
|
511
|
+
"disabled": {
|
|
512
|
+
"types": [
|
|
513
|
+
"boolean"
|
|
514
|
+
]
|
|
515
|
+
}
|
|
516
|
+
},
|
|
517
|
+
"required": [
|
|
518
|
+
"value",
|
|
519
|
+
"label"
|
|
520
|
+
]
|
|
521
|
+
}
|
|
522
|
+
}
|
|
480
523
|
}
|
|
481
524
|
}
|
|
482
525
|
},
|
|
@@ -707,7 +750,6 @@
|
|
|
707
750
|
"function"
|
|
708
751
|
],
|
|
709
752
|
"description": "Render function for each item. In .lolo: renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field.",
|
|
710
|
-
"kind": "callback",
|
|
711
753
|
"callbackArgs": [
|
|
712
754
|
{
|
|
713
755
|
"name": "item",
|
|
@@ -9753,6 +9795,7 @@
|
|
|
9753
9795
|
"repeatable-form-section": {
|
|
9754
9796
|
"type": "repeatable-form-section",
|
|
9755
9797
|
"category": "form",
|
|
9798
|
+
"sourceFile": "components/core/molecules/RepeatableFormSection.tsx",
|
|
9756
9799
|
"tier": "molecules",
|
|
9757
9800
|
"family": "core",
|
|
9758
9801
|
"description": "RepeatableFormSection — a form section that repeats a fixed group of fields, letting the user add or remove entries.",
|
|
@@ -9816,7 +9859,6 @@
|
|
|
9816
9859
|
],
|
|
9817
9860
|
"description": "Render function for each item. In .lolo: renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field.",
|
|
9818
9861
|
"required": true,
|
|
9819
|
-
"kind": "callback",
|
|
9820
9862
|
"callbackArgs": [
|
|
9821
9863
|
{
|
|
9822
9864
|
"name": "item",
|
|
@@ -17412,6 +17454,7 @@
|
|
|
17412
17454
|
"state-machine-view": {
|
|
17413
17455
|
"type": "state-machine-view",
|
|
17414
17456
|
"category": "display",
|
|
17457
|
+
"sourceFile": "components/core/organisms/StateMachineView.tsx",
|
|
17415
17458
|
"tier": "organisms",
|
|
17416
17459
|
"family": "core",
|
|
17417
17460
|
"description": "StateMachineView component",
|
|
@@ -17479,7 +17522,6 @@
|
|
|
17479
17522
|
"function"
|
|
17480
17523
|
],
|
|
17481
17524
|
"description": "Custom state node renderer — when provided, replaces the default circle nodes",
|
|
17482
|
-
"kind": "callback",
|
|
17483
17525
|
"callbackArgs": [
|
|
17484
17526
|
{
|
|
17485
17527
|
"name": "state",
|
|
@@ -17863,6 +17905,7 @@
|
|
|
17863
17905
|
"calendar-grid": {
|
|
17864
17906
|
"type": "calendar-grid",
|
|
17865
17907
|
"category": "display",
|
|
17908
|
+
"sourceFile": "components/core/molecules/CalendarGrid.tsx",
|
|
17866
17909
|
"tier": "molecules",
|
|
17867
17910
|
"family": "core",
|
|
17868
17911
|
"description": "CalendarGrid component",
|
|
@@ -18000,7 +18043,8 @@
|
|
|
18000
18043
|
"object"
|
|
18001
18044
|
],
|
|
18002
18045
|
"description": "Additional payload for long-press events",
|
|
18003
|
-
"payloadFor": "longPressEvent"
|
|
18046
|
+
"payloadFor": "longPressEvent",
|
|
18047
|
+
"eventPayloadBrand": true
|
|
18004
18048
|
},
|
|
18005
18049
|
"swipeLeftEvent": {
|
|
18006
18050
|
"types": [
|
|
@@ -18062,7 +18106,6 @@
|
|
|
18062
18106
|
"function"
|
|
18063
18107
|
],
|
|
18064
18108
|
"description": "Render function for one event chip's content. Receives the row and its index in the materialised events array. The grid keeps ownership of placement, colour and the click target; this replaces only what is drawn INSIDE the chip, so a host can show a time + instructor + badge stack instead of the default single label.",
|
|
18065
|
-
"kind": "callback",
|
|
18066
18109
|
"callbackArgs": [
|
|
18067
18110
|
{
|
|
18068
18111
|
"name": "item",
|
|
@@ -18080,7 +18123,6 @@
|
|
|
18080
18123
|
"function"
|
|
18081
18124
|
],
|
|
18082
18125
|
"description": "Per-event render function (schema-level alias for the children render prop). In `.orb`: `[\"fn\", \"item\", { pattern tree with @item.field bindings }]`. In `.lolo`: `renderItem: (fn item <Component …={@item.field}/>)` — the same contract `data-list` / `data-grid` / `carousel` already use.",
|
|
18083
|
-
"kind": "callback",
|
|
18084
18126
|
"callbackArgs": [
|
|
18085
18127
|
{
|
|
18086
18128
|
"name": "item",
|
|
@@ -18626,6 +18668,7 @@
|
|
|
18626
18668
|
"progress-dots": {
|
|
18627
18669
|
"type": "progress-dots",
|
|
18628
18670
|
"category": "component",
|
|
18671
|
+
"sourceFile": "components/core/molecules/ProgressDots.tsx",
|
|
18629
18672
|
"tier": "molecules",
|
|
18630
18673
|
"family": "core",
|
|
18631
18674
|
"description": "ProgressDots component",
|
|
@@ -18655,7 +18698,6 @@
|
|
|
18655
18698
|
"function"
|
|
18656
18699
|
],
|
|
18657
18700
|
"description": "Custom state resolver per dot index",
|
|
18658
|
-
"kind": "callback",
|
|
18659
18701
|
"callbackArgs": [
|
|
18660
18702
|
{
|
|
18661
18703
|
"name": "index",
|
|
@@ -18705,6 +18747,7 @@
|
|
|
18705
18747
|
"family": "core",
|
|
18706
18748
|
"description": "DataGrid — structured records grid rendering rows over configurable columns, with sort, select, and drag-reorder.",
|
|
18707
18749
|
"capabilities": "admin table, records grid, user list, CRUD list, manage-records view, spreadsheet-style data grid, sortable columns",
|
|
18750
|
+
"fieldsContract": "display",
|
|
18708
18751
|
"suggestedFor": [
|
|
18709
18752
|
"data",
|
|
18710
18753
|
"grid",
|
|
@@ -19111,7 +19154,6 @@
|
|
|
19111
19154
|
"function"
|
|
19112
19155
|
],
|
|
19113
19156
|
"description": "Render prop for custom per-card content. When provided, `fields` are ignored; `itemActions` render as a footer beneath the custom content.",
|
|
19114
|
-
"kind": "callback",
|
|
19115
19157
|
"callbackArgs": [
|
|
19116
19158
|
{
|
|
19117
19159
|
"name": "item",
|
|
@@ -19129,7 +19171,6 @@
|
|
|
19129
19171
|
"function"
|
|
19130
19172
|
],
|
|
19131
19173
|
"description": "Per-item render function (schema-level alias for children render prop). In .orb schemas: [\"fn\", \"item\", { pattern tree with @item.field bindings }] The compiler converts this to the children render prop. In .lolo, author the per-item renderer as renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field.",
|
|
19132
|
-
"kind": "callback",
|
|
19133
19174
|
"callbackArgs": [
|
|
19134
19175
|
{
|
|
19135
19176
|
"name": "item",
|
|
@@ -19162,6 +19203,48 @@
|
|
|
19162
19203
|
"card-rows"
|
|
19163
19204
|
],
|
|
19164
19205
|
"default": "dense"
|
|
19206
|
+
},
|
|
19207
|
+
"relationsData": {
|
|
19208
|
+
"types": [
|
|
19209
|
+
"object"
|
|
19210
|
+
],
|
|
19211
|
+
"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 for a field whose type is relation. Same contract DetailPanel takes.",
|
|
19212
|
+
"mapValue": {
|
|
19213
|
+
"types": [
|
|
19214
|
+
"array"
|
|
19215
|
+
],
|
|
19216
|
+
"items": {
|
|
19217
|
+
"types": [
|
|
19218
|
+
"object"
|
|
19219
|
+
],
|
|
19220
|
+
"properties": {
|
|
19221
|
+
"value": {
|
|
19222
|
+
"types": [
|
|
19223
|
+
"string"
|
|
19224
|
+
]
|
|
19225
|
+
},
|
|
19226
|
+
"label": {
|
|
19227
|
+
"types": [
|
|
19228
|
+
"string"
|
|
19229
|
+
]
|
|
19230
|
+
},
|
|
19231
|
+
"description": {
|
|
19232
|
+
"types": [
|
|
19233
|
+
"string"
|
|
19234
|
+
]
|
|
19235
|
+
},
|
|
19236
|
+
"disabled": {
|
|
19237
|
+
"types": [
|
|
19238
|
+
"boolean"
|
|
19239
|
+
]
|
|
19240
|
+
}
|
|
19241
|
+
},
|
|
19242
|
+
"required": [
|
|
19243
|
+
"value",
|
|
19244
|
+
"label"
|
|
19245
|
+
]
|
|
19246
|
+
}
|
|
19247
|
+
}
|
|
19165
19248
|
}
|
|
19166
19249
|
}
|
|
19167
19250
|
},
|
|
@@ -19172,6 +19255,7 @@
|
|
|
19172
19255
|
"tier": "molecules",
|
|
19173
19256
|
"family": "core",
|
|
19174
19257
|
"description": "DataList component",
|
|
19258
|
+
"fieldsContract": "display",
|
|
19175
19259
|
"suggestedFor": [
|
|
19176
19260
|
"data",
|
|
19177
19261
|
"list",
|
|
@@ -19655,7 +19739,6 @@
|
|
|
19655
19739
|
"function"
|
|
19656
19740
|
],
|
|
19657
19741
|
"description": "Render prop for custom per-item content. When provided, `fields` and `itemActions` are ignored.",
|
|
19658
|
-
"kind": "callback",
|
|
19659
19742
|
"callbackArgs": [
|
|
19660
19743
|
{
|
|
19661
19744
|
"name": "item",
|
|
@@ -19673,7 +19756,6 @@
|
|
|
19673
19756
|
"function"
|
|
19674
19757
|
],
|
|
19675
19758
|
"description": "Per-item render function (schema-level alias for children render prop). In .orb schemas: [\"fn\", \"item\", { pattern tree with @item.field bindings }] The compiler converts this to the children render prop. In .lolo, author the per-item renderer as renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field.",
|
|
19676
|
-
"kind": "callback",
|
|
19677
19759
|
"callbackArgs": [
|
|
19678
19760
|
{
|
|
19679
19761
|
"name": "item",
|
|
@@ -19722,6 +19804,48 @@
|
|
|
19722
19804
|
"card-rows"
|
|
19723
19805
|
],
|
|
19724
19806
|
"default": "dense"
|
|
19807
|
+
},
|
|
19808
|
+
"relationsData": {
|
|
19809
|
+
"types": [
|
|
19810
|
+
"object"
|
|
19811
|
+
],
|
|
19812
|
+
"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 for a field whose type is relation. Same contract DetailPanel takes.",
|
|
19813
|
+
"mapValue": {
|
|
19814
|
+
"types": [
|
|
19815
|
+
"array"
|
|
19816
|
+
],
|
|
19817
|
+
"items": {
|
|
19818
|
+
"types": [
|
|
19819
|
+
"object"
|
|
19820
|
+
],
|
|
19821
|
+
"properties": {
|
|
19822
|
+
"value": {
|
|
19823
|
+
"types": [
|
|
19824
|
+
"string"
|
|
19825
|
+
]
|
|
19826
|
+
},
|
|
19827
|
+
"label": {
|
|
19828
|
+
"types": [
|
|
19829
|
+
"string"
|
|
19830
|
+
]
|
|
19831
|
+
},
|
|
19832
|
+
"description": {
|
|
19833
|
+
"types": [
|
|
19834
|
+
"string"
|
|
19835
|
+
]
|
|
19836
|
+
},
|
|
19837
|
+
"disabled": {
|
|
19838
|
+
"types": [
|
|
19839
|
+
"boolean"
|
|
19840
|
+
]
|
|
19841
|
+
}
|
|
19842
|
+
},
|
|
19843
|
+
"required": [
|
|
19844
|
+
"value",
|
|
19845
|
+
"label"
|
|
19846
|
+
]
|
|
19847
|
+
}
|
|
19848
|
+
}
|
|
19725
19849
|
}
|
|
19726
19850
|
}
|
|
19727
19851
|
},
|
|
@@ -20032,6 +20156,7 @@
|
|
|
20032
20156
|
"range-slider": {
|
|
20033
20157
|
"type": "range-slider",
|
|
20034
20158
|
"category": "component",
|
|
20159
|
+
"sourceFile": "components/core/atoms/RangeSlider.tsx",
|
|
20035
20160
|
"tier": "atoms",
|
|
20036
20161
|
"family": "core",
|
|
20037
20162
|
"description": "RangeSlider component",
|
|
@@ -20134,7 +20259,8 @@
|
|
|
20134
20259
|
"object"
|
|
20135
20260
|
],
|
|
20136
20261
|
"description": "Payload to include with the action event",
|
|
20137
|
-
"payloadFor": "action"
|
|
20262
|
+
"payloadFor": "action",
|
|
20263
|
+
"eventPayloadBrand": true
|
|
20138
20264
|
},
|
|
20139
20265
|
"onChange": {
|
|
20140
20266
|
"types": [
|
|
@@ -20154,7 +20280,6 @@
|
|
|
20154
20280
|
"function"
|
|
20155
20281
|
],
|
|
20156
20282
|
"description": "Format function for tooltip display",
|
|
20157
|
-
"kind": "callback",
|
|
20158
20283
|
"callbackArgs": [
|
|
20159
20284
|
{
|
|
20160
20285
|
"name": "value",
|
|
@@ -21004,7 +21129,6 @@
|
|
|
21004
21129
|
"function"
|
|
21005
21130
|
],
|
|
21006
21131
|
"description": "Render function for each slide. In .lolo: renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field.",
|
|
21007
|
-
"kind": "callback",
|
|
21008
21132
|
"callbackArgs": [
|
|
21009
21133
|
{
|
|
21010
21134
|
"name": "item",
|
|
@@ -21044,7 +21168,6 @@
|
|
|
21044
21168
|
"function"
|
|
21045
21169
|
],
|
|
21046
21170
|
"description": "Children-as-function fallback for renderItem (compiler compatibility)",
|
|
21047
|
-
"kind": "callback",
|
|
21048
21171
|
"callbackArgs": [
|
|
21049
21172
|
{
|
|
21050
21173
|
"name": "item",
|
|
@@ -21202,6 +21325,7 @@
|
|
|
21202
21325
|
"sortable-list": {
|
|
21203
21326
|
"type": "sortable-list",
|
|
21204
21327
|
"category": "display",
|
|
21328
|
+
"sourceFile": "components/core/molecules/SortableList.tsx",
|
|
21205
21329
|
"tier": "molecules",
|
|
21206
21330
|
"family": "core",
|
|
21207
21331
|
"description": "SortableList — a drag-and-drop reorderable list of items.",
|
|
@@ -21229,7 +21353,6 @@
|
|
|
21229
21353
|
],
|
|
21230
21354
|
"description": "Render function for each item. In .lolo: renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field.",
|
|
21231
21355
|
"required": true,
|
|
21232
|
-
"kind": "callback",
|
|
21233
21356
|
"callbackArgs": [
|
|
21234
21357
|
{
|
|
21235
21358
|
"name": "item",
|
|
@@ -21273,7 +21396,8 @@
|
|
|
21273
21396
|
"object"
|
|
21274
21397
|
],
|
|
21275
21398
|
"description": "reorderPayload prop",
|
|
21276
|
-
"payloadFor": "reorderEvent"
|
|
21399
|
+
"payloadFor": "reorderEvent",
|
|
21400
|
+
"eventPayloadBrand": true
|
|
21277
21401
|
},
|
|
21278
21402
|
"dragHandlePosition": {
|
|
21279
21403
|
"types": [
|
|
@@ -30757,6 +30881,7 @@
|
|
|
30757
30881
|
"doc-search": {
|
|
30758
30882
|
"type": "doc-search",
|
|
30759
30883
|
"category": "filter",
|
|
30884
|
+
"sourceFile": "components/core/molecules/DocSearch.tsx",
|
|
30760
30885
|
"tier": "molecules",
|
|
30761
30886
|
"family": "core",
|
|
30762
30887
|
"description": "DocSearch component",
|
|
@@ -30778,7 +30903,6 @@
|
|
|
30778
30903
|
"function"
|
|
30779
30904
|
],
|
|
30780
30905
|
"description": "Callback invoked with the search query, returns results",
|
|
30781
|
-
"kind": "callback",
|
|
30782
30906
|
"callbackArgs": [
|
|
30783
30907
|
{
|
|
30784
30908
|
"name": "query",
|
|
@@ -36967,6 +37091,7 @@
|
|
|
36967
37091
|
"family": "core",
|
|
36968
37092
|
"description": "TableView — sortable, selectable data table rendering rows over configurable columns, with inline row actions and grouping.",
|
|
36969
37093
|
"capabilities": "admin console table, records list, CRUD data table, user list, manage-users grid, sortable columns, row selection with bulk actions, grouped list view",
|
|
37094
|
+
"fieldsContract": "display",
|
|
36970
37095
|
"suggestedFor": [
|
|
36971
37096
|
"table",
|
|
36972
37097
|
"view",
|
|
@@ -37423,7 +37548,6 @@
|
|
|
37423
37548
|
"function"
|
|
37424
37549
|
],
|
|
37425
37550
|
"description": "Custom per-row render. When provided, the whole row content is delegated to this function (columns are ignored for the body; the header still renders). Mirrors DataList's children render prop.",
|
|
37426
|
-
"kind": "callback",
|
|
37427
37551
|
"callbackArgs": [
|
|
37428
37552
|
{
|
|
37429
37553
|
"name": "item",
|
|
@@ -37441,7 +37565,6 @@
|
|
|
37441
37565
|
"function"
|
|
37442
37566
|
],
|
|
37443
37567
|
"description": "Per-row render function (schema alias). In .orb: [\"fn\",\"item\",{...}]. The compiler converts this to the children render prop. In .lolo, author the per-row renderer as renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field.",
|
|
37444
|
-
"kind": "callback",
|
|
37445
37568
|
"callbackArgs": [
|
|
37446
37569
|
{
|
|
37447
37570
|
"name": "item",
|
|
@@ -37467,6 +37590,48 @@
|
|
|
37467
37590
|
"bordered"
|
|
37468
37591
|
],
|
|
37469
37592
|
"default": "dense"
|
|
37593
|
+
},
|
|
37594
|
+
"relationsData": {
|
|
37595
|
+
"types": [
|
|
37596
|
+
"object"
|
|
37597
|
+
],
|
|
37598
|
+
"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 for a column whose field is relation-typed. Same contract DetailPanel takes.",
|
|
37599
|
+
"mapValue": {
|
|
37600
|
+
"types": [
|
|
37601
|
+
"array"
|
|
37602
|
+
],
|
|
37603
|
+
"items": {
|
|
37604
|
+
"types": [
|
|
37605
|
+
"object"
|
|
37606
|
+
],
|
|
37607
|
+
"properties": {
|
|
37608
|
+
"value": {
|
|
37609
|
+
"types": [
|
|
37610
|
+
"string"
|
|
37611
|
+
]
|
|
37612
|
+
},
|
|
37613
|
+
"label": {
|
|
37614
|
+
"types": [
|
|
37615
|
+
"string"
|
|
37616
|
+
]
|
|
37617
|
+
},
|
|
37618
|
+
"description": {
|
|
37619
|
+
"types": [
|
|
37620
|
+
"string"
|
|
37621
|
+
]
|
|
37622
|
+
},
|
|
37623
|
+
"disabled": {
|
|
37624
|
+
"types": [
|
|
37625
|
+
"boolean"
|
|
37626
|
+
]
|
|
37627
|
+
}
|
|
37628
|
+
},
|
|
37629
|
+
"required": [
|
|
37630
|
+
"value",
|
|
37631
|
+
"label"
|
|
37632
|
+
]
|
|
37633
|
+
}
|
|
37634
|
+
}
|
|
37470
37635
|
}
|
|
37471
37636
|
}
|
|
37472
37637
|
},
|
|
@@ -38048,6 +38213,7 @@
|
|
|
38048
38213
|
"code-runner-panel": {
|
|
38049
38214
|
"type": "code-runner-panel",
|
|
38050
38215
|
"category": "display",
|
|
38216
|
+
"sourceFile": "components/core/organisms/CodeRunnerPanel.tsx",
|
|
38051
38217
|
"tier": "organisms",
|
|
38052
38218
|
"family": "core",
|
|
38053
38219
|
"description": "CodeRunnerPanel component",
|
|
@@ -38085,7 +38251,6 @@
|
|
|
38085
38251
|
"function"
|
|
38086
38252
|
],
|
|
38087
38253
|
"description": "Simulate executing the code. Omit to render a read-only block. Real execution is a separate future track — this callback supplies deterministic simulated output for UI feedback.",
|
|
38088
|
-
"kind": "callback",
|
|
38089
38254
|
"callbackArgs": [
|
|
38090
38255
|
{
|
|
38091
38256
|
"name": "code",
|
|
@@ -38112,6 +38277,7 @@
|
|
|
38112
38277
|
"segment-renderer": {
|
|
38113
38278
|
"type": "segment-renderer",
|
|
38114
38279
|
"category": "display",
|
|
38280
|
+
"sourceFile": "components/core/organisms/SegmentRenderer.tsx",
|
|
38115
38281
|
"tier": "organisms",
|
|
38116
38282
|
"family": "core",
|
|
38117
38283
|
"description": "SegmentRenderer component",
|
|
@@ -38203,7 +38369,6 @@
|
|
|
38203
38369
|
"function"
|
|
38204
38370
|
],
|
|
38205
38371
|
"description": "Simulate executing runnable code blocks. Omit to render runnable blocks as read-only. Real execution is a future track.",
|
|
38206
|
-
"kind": "callback",
|
|
38207
38372
|
"callbackArgs": [
|
|
38208
38373
|
{
|
|
38209
38374
|
"name": "code",
|
|
@@ -38221,7 +38386,6 @@
|
|
|
38221
38386
|
"function"
|
|
38222
38387
|
],
|
|
38223
38388
|
"description": "Optional render slot for `visualization` segment types. When not provided, visualization segments are silently skipped. Callers can wire this to any custom component or orbital generator.",
|
|
38224
|
-
"kind": "callback",
|
|
38225
38389
|
"callbackArgs": [
|
|
38226
38390
|
{
|
|
38227
38391
|
"name": "type",
|
|
@@ -39020,10 +39184,12 @@
|
|
|
39020
39184
|
"object"
|
|
39021
39185
|
],
|
|
39022
39186
|
"description": "Maps a keydown `e.code` → the board's SEMANTIC event (device-agnostic input).",
|
|
39187
|
+
"kind": "event-map",
|
|
39023
39188
|
"mapValue": {
|
|
39024
39189
|
"types": [
|
|
39025
39190
|
"string"
|
|
39026
|
-
]
|
|
39191
|
+
],
|
|
39192
|
+
"kind": "event"
|
|
39027
39193
|
}
|
|
39028
39194
|
},
|
|
39029
39195
|
"keyUpMap": {
|
|
@@ -39031,10 +39197,12 @@
|
|
|
39031
39197
|
"object"
|
|
39032
39198
|
],
|
|
39033
39199
|
"description": "Maps a keyup `e.code` → the board's SEMANTIC event.",
|
|
39200
|
+
"kind": "event-map",
|
|
39034
39201
|
"mapValue": {
|
|
39035
39202
|
"types": [
|
|
39036
39203
|
"string"
|
|
39037
|
-
]
|
|
39204
|
+
],
|
|
39205
|
+
"kind": "event"
|
|
39038
39206
|
}
|
|
39039
39207
|
},
|
|
39040
39208
|
"editable": {
|
|
@@ -39495,10 +39663,12 @@
|
|
|
39495
39663
|
"object"
|
|
39496
39664
|
],
|
|
39497
39665
|
"description": "Per-direction PRESS → the board's SEMANTIC event (kind=\"dpad\"), e.g. `{ left: \"LEFT\", right: \"RIGHT\", up: \"JUMP\" }`. Lets the d-pad emit the SAME intent events as the keyboard so the FSM stays device-agnostic.",
|
|
39666
|
+
"kind": "event-map",
|
|
39498
39667
|
"mapValue": {
|
|
39499
39668
|
"types": [
|
|
39500
39669
|
"string"
|
|
39501
|
-
]
|
|
39670
|
+
],
|
|
39671
|
+
"kind": "event"
|
|
39502
39672
|
}
|
|
39503
39673
|
},
|
|
39504
39674
|
"directionReleaseEvents": {
|
|
@@ -39506,10 +39676,12 @@
|
|
|
39506
39676
|
"object"
|
|
39507
39677
|
],
|
|
39508
39678
|
"description": "Per-direction RELEASE → semantic event, e.g. `{ left: \"STOP\", right: \"STOP\" }`. Omit a direction to ignore its release.",
|
|
39679
|
+
"kind": "event-map",
|
|
39509
39680
|
"mapValue": {
|
|
39510
39681
|
"types": [
|
|
39511
39682
|
"string"
|
|
39512
|
-
]
|
|
39683
|
+
],
|
|
39684
|
+
"kind": "event"
|
|
39513
39685
|
}
|
|
39514
39686
|
},
|
|
39515
39687
|
"directionAssets": {
|
|
@@ -43458,6 +43630,7 @@
|
|
|
43458
43630
|
"math-canvas": {
|
|
43459
43631
|
"type": "math-canvas",
|
|
43460
43632
|
"category": "learning",
|
|
43633
|
+
"sourceFile": "components/learning/molecules/MathCanvas.tsx",
|
|
43461
43634
|
"tier": "molecules",
|
|
43462
43635
|
"family": "learning",
|
|
43463
43636
|
"description": "MathCanvas component",
|
|
@@ -44489,10 +44662,12 @@
|
|
|
44489
44662
|
"object"
|
|
44490
44663
|
],
|
|
44491
44664
|
"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.",
|
|
44665
|
+
"kind": "event-map",
|
|
44492
44666
|
"mapValue": {
|
|
44493
44667
|
"types": [
|
|
44494
44668
|
"string"
|
|
44495
|
-
]
|
|
44669
|
+
],
|
|
44670
|
+
"kind": "event"
|
|
44496
44671
|
}
|
|
44497
44672
|
},
|
|
44498
44673
|
"keyUpMap": {
|
|
@@ -44500,10 +44675,12 @@
|
|
|
44500
44675
|
"object"
|
|
44501
44676
|
],
|
|
44502
44677
|
"description": "Maps a keyup `e.code` → the board's SEMANTIC event.",
|
|
44678
|
+
"kind": "event-map",
|
|
44503
44679
|
"mapValue": {
|
|
44504
44680
|
"types": [
|
|
44505
44681
|
"string"
|
|
44506
|
-
]
|
|
44682
|
+
],
|
|
44683
|
+
"kind": "event"
|
|
44507
44684
|
}
|
|
44508
44685
|
},
|
|
44509
44686
|
"isLoading": {
|
|
@@ -50253,10 +50430,12 @@
|
|
|
50253
50430
|
"object"
|
|
50254
50431
|
],
|
|
50255
50432
|
"description": "keyMap prop",
|
|
50433
|
+
"kind": "event-map",
|
|
50256
50434
|
"mapValue": {
|
|
50257
50435
|
"types": [
|
|
50258
50436
|
"string"
|
|
50259
|
-
]
|
|
50437
|
+
],
|
|
50438
|
+
"kind": "event"
|
|
50260
50439
|
}
|
|
50261
50440
|
},
|
|
50262
50441
|
"keyUpMap": {
|
|
@@ -50264,10 +50443,12 @@
|
|
|
50264
50443
|
"object"
|
|
50265
50444
|
],
|
|
50266
50445
|
"description": "keyUpMap prop",
|
|
50446
|
+
"kind": "event-map",
|
|
50267
50447
|
"mapValue": {
|
|
50268
50448
|
"types": [
|
|
50269
50449
|
"string"
|
|
50270
|
-
]
|
|
50450
|
+
],
|
|
50451
|
+
"kind": "event"
|
|
50271
50452
|
}
|
|
50272
50453
|
},
|
|
50273
50454
|
"editable": {
|