@almadar/core 10.91.0 → 10.93.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-BnSE0gKt.d.ts} +26 -3
- package/dist/{entityAccess-BdDX85rM.d.ts → entityAccess-DtWseAgf.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory/index.js +402 -38
- 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-CWArRU6P.d.ts} +19 -10
- package/dist/index.d.ts +11 -72
- package/dist/index.js +597 -141
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/patterns/component-mapping.json +6 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +1243 -85
- package/dist/patterns/index.js +547 -42
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +136 -1
- package/dist/patterns/patterns-registry.json +403 -39
- package/dist/patterns/registry.json +403 -39
- package/dist/patterns/services-registry.json +136 -1
- package/dist/{schema-ovDTDQz9.d.ts → schema-DFmFFcLs.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-DSMzclmJ.d.ts} +10 -1
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +31 -2
- package/dist/types/index.js.map +1 -1
- package/dist/{types-rh0naR6C.d.ts → types-DzkFdgNJ.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-16T03:44:41.117Z",
|
|
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",
|
|
@@ -8536,6 +8578,7 @@
|
|
|
8536
8578
|
"textarea": {
|
|
8537
8579
|
"type": "textarea",
|
|
8538
8580
|
"category": "component",
|
|
8581
|
+
"sourceFile": "components/core/atoms/Textarea.tsx",
|
|
8539
8582
|
"tier": "atoms",
|
|
8540
8583
|
"family": "core",
|
|
8541
8584
|
"description": "Multi-line text input",
|
|
@@ -8568,7 +8611,7 @@
|
|
|
8568
8611
|
"types": [
|
|
8569
8612
|
"string"
|
|
8570
8613
|
],
|
|
8571
|
-
"description": "Declarative event
|
|
8614
|
+
"description": "Declarative event: fires on ⌘/Ctrl+Enter with `{ value }`.",
|
|
8572
8615
|
"kind": "event"
|
|
8573
8616
|
},
|
|
8574
8617
|
"error": {
|
|
@@ -9753,6 +9796,7 @@
|
|
|
9753
9796
|
"repeatable-form-section": {
|
|
9754
9797
|
"type": "repeatable-form-section",
|
|
9755
9798
|
"category": "form",
|
|
9799
|
+
"sourceFile": "components/core/molecules/RepeatableFormSection.tsx",
|
|
9756
9800
|
"tier": "molecules",
|
|
9757
9801
|
"family": "core",
|
|
9758
9802
|
"description": "RepeatableFormSection — a form section that repeats a fixed group of fields, letting the user add or remove entries.",
|
|
@@ -9816,7 +9860,6 @@
|
|
|
9816
9860
|
],
|
|
9817
9861
|
"description": "Render function for each item. In .lolo: renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field.",
|
|
9818
9862
|
"required": true,
|
|
9819
|
-
"kind": "callback",
|
|
9820
9863
|
"callbackArgs": [
|
|
9821
9864
|
{
|
|
9822
9865
|
"name": "item",
|
|
@@ -17412,6 +17455,7 @@
|
|
|
17412
17455
|
"state-machine-view": {
|
|
17413
17456
|
"type": "state-machine-view",
|
|
17414
17457
|
"category": "display",
|
|
17458
|
+
"sourceFile": "components/core/organisms/StateMachineView.tsx",
|
|
17415
17459
|
"tier": "organisms",
|
|
17416
17460
|
"family": "core",
|
|
17417
17461
|
"description": "StateMachineView component",
|
|
@@ -17479,7 +17523,6 @@
|
|
|
17479
17523
|
"function"
|
|
17480
17524
|
],
|
|
17481
17525
|
"description": "Custom state node renderer — when provided, replaces the default circle nodes",
|
|
17482
|
-
"kind": "callback",
|
|
17483
17526
|
"callbackArgs": [
|
|
17484
17527
|
{
|
|
17485
17528
|
"name": "state",
|
|
@@ -17863,6 +17906,7 @@
|
|
|
17863
17906
|
"calendar-grid": {
|
|
17864
17907
|
"type": "calendar-grid",
|
|
17865
17908
|
"category": "display",
|
|
17909
|
+
"sourceFile": "components/core/molecules/CalendarGrid.tsx",
|
|
17866
17910
|
"tier": "molecules",
|
|
17867
17911
|
"family": "core",
|
|
17868
17912
|
"description": "CalendarGrid component",
|
|
@@ -18000,7 +18044,8 @@
|
|
|
18000
18044
|
"object"
|
|
18001
18045
|
],
|
|
18002
18046
|
"description": "Additional payload for long-press events",
|
|
18003
|
-
"payloadFor": "longPressEvent"
|
|
18047
|
+
"payloadFor": "longPressEvent",
|
|
18048
|
+
"eventPayloadBrand": true
|
|
18004
18049
|
},
|
|
18005
18050
|
"swipeLeftEvent": {
|
|
18006
18051
|
"types": [
|
|
@@ -18062,7 +18107,6 @@
|
|
|
18062
18107
|
"function"
|
|
18063
18108
|
],
|
|
18064
18109
|
"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
18110
|
"callbackArgs": [
|
|
18067
18111
|
{
|
|
18068
18112
|
"name": "item",
|
|
@@ -18080,7 +18124,6 @@
|
|
|
18080
18124
|
"function"
|
|
18081
18125
|
],
|
|
18082
18126
|
"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
18127
|
"callbackArgs": [
|
|
18085
18128
|
{
|
|
18086
18129
|
"name": "item",
|
|
@@ -18626,6 +18669,7 @@
|
|
|
18626
18669
|
"progress-dots": {
|
|
18627
18670
|
"type": "progress-dots",
|
|
18628
18671
|
"category": "component",
|
|
18672
|
+
"sourceFile": "components/core/molecules/ProgressDots.tsx",
|
|
18629
18673
|
"tier": "molecules",
|
|
18630
18674
|
"family": "core",
|
|
18631
18675
|
"description": "ProgressDots component",
|
|
@@ -18655,7 +18699,6 @@
|
|
|
18655
18699
|
"function"
|
|
18656
18700
|
],
|
|
18657
18701
|
"description": "Custom state resolver per dot index",
|
|
18658
|
-
"kind": "callback",
|
|
18659
18702
|
"callbackArgs": [
|
|
18660
18703
|
{
|
|
18661
18704
|
"name": "index",
|
|
@@ -18705,6 +18748,7 @@
|
|
|
18705
18748
|
"family": "core",
|
|
18706
18749
|
"description": "DataGrid — structured records grid rendering rows over configurable columns, with sort, select, and drag-reorder.",
|
|
18707
18750
|
"capabilities": "admin table, records grid, user list, CRUD list, manage-records view, spreadsheet-style data grid, sortable columns",
|
|
18751
|
+
"fieldsContract": "display",
|
|
18708
18752
|
"suggestedFor": [
|
|
18709
18753
|
"data",
|
|
18710
18754
|
"grid",
|
|
@@ -19111,7 +19155,6 @@
|
|
|
19111
19155
|
"function"
|
|
19112
19156
|
],
|
|
19113
19157
|
"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
19158
|
"callbackArgs": [
|
|
19116
19159
|
{
|
|
19117
19160
|
"name": "item",
|
|
@@ -19129,7 +19172,6 @@
|
|
|
19129
19172
|
"function"
|
|
19130
19173
|
],
|
|
19131
19174
|
"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
19175
|
"callbackArgs": [
|
|
19134
19176
|
{
|
|
19135
19177
|
"name": "item",
|
|
@@ -19162,6 +19204,48 @@
|
|
|
19162
19204
|
"card-rows"
|
|
19163
19205
|
],
|
|
19164
19206
|
"default": "dense"
|
|
19207
|
+
},
|
|
19208
|
+
"relationsData": {
|
|
19209
|
+
"types": [
|
|
19210
|
+
"object"
|
|
19211
|
+
],
|
|
19212
|
+
"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.",
|
|
19213
|
+
"mapValue": {
|
|
19214
|
+
"types": [
|
|
19215
|
+
"array"
|
|
19216
|
+
],
|
|
19217
|
+
"items": {
|
|
19218
|
+
"types": [
|
|
19219
|
+
"object"
|
|
19220
|
+
],
|
|
19221
|
+
"properties": {
|
|
19222
|
+
"value": {
|
|
19223
|
+
"types": [
|
|
19224
|
+
"string"
|
|
19225
|
+
]
|
|
19226
|
+
},
|
|
19227
|
+
"label": {
|
|
19228
|
+
"types": [
|
|
19229
|
+
"string"
|
|
19230
|
+
]
|
|
19231
|
+
},
|
|
19232
|
+
"description": {
|
|
19233
|
+
"types": [
|
|
19234
|
+
"string"
|
|
19235
|
+
]
|
|
19236
|
+
},
|
|
19237
|
+
"disabled": {
|
|
19238
|
+
"types": [
|
|
19239
|
+
"boolean"
|
|
19240
|
+
]
|
|
19241
|
+
}
|
|
19242
|
+
},
|
|
19243
|
+
"required": [
|
|
19244
|
+
"value",
|
|
19245
|
+
"label"
|
|
19246
|
+
]
|
|
19247
|
+
}
|
|
19248
|
+
}
|
|
19165
19249
|
}
|
|
19166
19250
|
}
|
|
19167
19251
|
},
|
|
@@ -19172,6 +19256,7 @@
|
|
|
19172
19256
|
"tier": "molecules",
|
|
19173
19257
|
"family": "core",
|
|
19174
19258
|
"description": "DataList component",
|
|
19259
|
+
"fieldsContract": "display",
|
|
19175
19260
|
"suggestedFor": [
|
|
19176
19261
|
"data",
|
|
19177
19262
|
"list",
|
|
@@ -19655,7 +19740,6 @@
|
|
|
19655
19740
|
"function"
|
|
19656
19741
|
],
|
|
19657
19742
|
"description": "Render prop for custom per-item content. When provided, `fields` and `itemActions` are ignored.",
|
|
19658
|
-
"kind": "callback",
|
|
19659
19743
|
"callbackArgs": [
|
|
19660
19744
|
{
|
|
19661
19745
|
"name": "item",
|
|
@@ -19673,7 +19757,6 @@
|
|
|
19673
19757
|
"function"
|
|
19674
19758
|
],
|
|
19675
19759
|
"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
19760
|
"callbackArgs": [
|
|
19678
19761
|
{
|
|
19679
19762
|
"name": "item",
|
|
@@ -19722,6 +19805,48 @@
|
|
|
19722
19805
|
"card-rows"
|
|
19723
19806
|
],
|
|
19724
19807
|
"default": "dense"
|
|
19808
|
+
},
|
|
19809
|
+
"relationsData": {
|
|
19810
|
+
"types": [
|
|
19811
|
+
"object"
|
|
19812
|
+
],
|
|
19813
|
+
"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.",
|
|
19814
|
+
"mapValue": {
|
|
19815
|
+
"types": [
|
|
19816
|
+
"array"
|
|
19817
|
+
],
|
|
19818
|
+
"items": {
|
|
19819
|
+
"types": [
|
|
19820
|
+
"object"
|
|
19821
|
+
],
|
|
19822
|
+
"properties": {
|
|
19823
|
+
"value": {
|
|
19824
|
+
"types": [
|
|
19825
|
+
"string"
|
|
19826
|
+
]
|
|
19827
|
+
},
|
|
19828
|
+
"label": {
|
|
19829
|
+
"types": [
|
|
19830
|
+
"string"
|
|
19831
|
+
]
|
|
19832
|
+
},
|
|
19833
|
+
"description": {
|
|
19834
|
+
"types": [
|
|
19835
|
+
"string"
|
|
19836
|
+
]
|
|
19837
|
+
},
|
|
19838
|
+
"disabled": {
|
|
19839
|
+
"types": [
|
|
19840
|
+
"boolean"
|
|
19841
|
+
]
|
|
19842
|
+
}
|
|
19843
|
+
},
|
|
19844
|
+
"required": [
|
|
19845
|
+
"value",
|
|
19846
|
+
"label"
|
|
19847
|
+
]
|
|
19848
|
+
}
|
|
19849
|
+
}
|
|
19725
19850
|
}
|
|
19726
19851
|
}
|
|
19727
19852
|
},
|
|
@@ -20032,6 +20157,7 @@
|
|
|
20032
20157
|
"range-slider": {
|
|
20033
20158
|
"type": "range-slider",
|
|
20034
20159
|
"category": "component",
|
|
20160
|
+
"sourceFile": "components/core/atoms/RangeSlider.tsx",
|
|
20035
20161
|
"tier": "atoms",
|
|
20036
20162
|
"family": "core",
|
|
20037
20163
|
"description": "RangeSlider component",
|
|
@@ -20134,7 +20260,8 @@
|
|
|
20134
20260
|
"object"
|
|
20135
20261
|
],
|
|
20136
20262
|
"description": "Payload to include with the action event",
|
|
20137
|
-
"payloadFor": "action"
|
|
20263
|
+
"payloadFor": "action",
|
|
20264
|
+
"eventPayloadBrand": true
|
|
20138
20265
|
},
|
|
20139
20266
|
"onChange": {
|
|
20140
20267
|
"types": [
|
|
@@ -20154,7 +20281,6 @@
|
|
|
20154
20281
|
"function"
|
|
20155
20282
|
],
|
|
20156
20283
|
"description": "Format function for tooltip display",
|
|
20157
|
-
"kind": "callback",
|
|
20158
20284
|
"callbackArgs": [
|
|
20159
20285
|
{
|
|
20160
20286
|
"name": "value",
|
|
@@ -21004,7 +21130,6 @@
|
|
|
21004
21130
|
"function"
|
|
21005
21131
|
],
|
|
21006
21132
|
"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
21133
|
"callbackArgs": [
|
|
21009
21134
|
{
|
|
21010
21135
|
"name": "item",
|
|
@@ -21044,7 +21169,6 @@
|
|
|
21044
21169
|
"function"
|
|
21045
21170
|
],
|
|
21046
21171
|
"description": "Children-as-function fallback for renderItem (compiler compatibility)",
|
|
21047
|
-
"kind": "callback",
|
|
21048
21172
|
"callbackArgs": [
|
|
21049
21173
|
{
|
|
21050
21174
|
"name": "item",
|
|
@@ -21202,6 +21326,7 @@
|
|
|
21202
21326
|
"sortable-list": {
|
|
21203
21327
|
"type": "sortable-list",
|
|
21204
21328
|
"category": "display",
|
|
21329
|
+
"sourceFile": "components/core/molecules/SortableList.tsx",
|
|
21205
21330
|
"tier": "molecules",
|
|
21206
21331
|
"family": "core",
|
|
21207
21332
|
"description": "SortableList — a drag-and-drop reorderable list of items.",
|
|
@@ -21229,7 +21354,6 @@
|
|
|
21229
21354
|
],
|
|
21230
21355
|
"description": "Render function for each item. In .lolo: renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field.",
|
|
21231
21356
|
"required": true,
|
|
21232
|
-
"kind": "callback",
|
|
21233
21357
|
"callbackArgs": [
|
|
21234
21358
|
{
|
|
21235
21359
|
"name": "item",
|
|
@@ -21273,7 +21397,8 @@
|
|
|
21273
21397
|
"object"
|
|
21274
21398
|
],
|
|
21275
21399
|
"description": "reorderPayload prop",
|
|
21276
|
-
"payloadFor": "reorderEvent"
|
|
21400
|
+
"payloadFor": "reorderEvent",
|
|
21401
|
+
"eventPayloadBrand": true
|
|
21277
21402
|
},
|
|
21278
21403
|
"dragHandlePosition": {
|
|
21279
21404
|
"types": [
|
|
@@ -30757,6 +30882,7 @@
|
|
|
30757
30882
|
"doc-search": {
|
|
30758
30883
|
"type": "doc-search",
|
|
30759
30884
|
"category": "filter",
|
|
30885
|
+
"sourceFile": "components/core/molecules/DocSearch.tsx",
|
|
30760
30886
|
"tier": "molecules",
|
|
30761
30887
|
"family": "core",
|
|
30762
30888
|
"description": "DocSearch component",
|
|
@@ -30778,7 +30904,6 @@
|
|
|
30778
30904
|
"function"
|
|
30779
30905
|
],
|
|
30780
30906
|
"description": "Callback invoked with the search query, returns results",
|
|
30781
|
-
"kind": "callback",
|
|
30782
30907
|
"callbackArgs": [
|
|
30783
30908
|
{
|
|
30784
30909
|
"name": "query",
|
|
@@ -36967,6 +37092,7 @@
|
|
|
36967
37092
|
"family": "core",
|
|
36968
37093
|
"description": "TableView — sortable, selectable data table rendering rows over configurable columns, with inline row actions and grouping.",
|
|
36969
37094
|
"capabilities": "admin console table, records list, CRUD data table, user list, manage-users grid, sortable columns, row selection with bulk actions, grouped list view",
|
|
37095
|
+
"fieldsContract": "display",
|
|
36970
37096
|
"suggestedFor": [
|
|
36971
37097
|
"table",
|
|
36972
37098
|
"view",
|
|
@@ -37423,7 +37549,6 @@
|
|
|
37423
37549
|
"function"
|
|
37424
37550
|
],
|
|
37425
37551
|
"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
37552
|
"callbackArgs": [
|
|
37428
37553
|
{
|
|
37429
37554
|
"name": "item",
|
|
@@ -37441,7 +37566,6 @@
|
|
|
37441
37566
|
"function"
|
|
37442
37567
|
],
|
|
37443
37568
|
"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
37569
|
"callbackArgs": [
|
|
37446
37570
|
{
|
|
37447
37571
|
"name": "item",
|
|
@@ -37467,6 +37591,48 @@
|
|
|
37467
37591
|
"bordered"
|
|
37468
37592
|
],
|
|
37469
37593
|
"default": "dense"
|
|
37594
|
+
},
|
|
37595
|
+
"relationsData": {
|
|
37596
|
+
"types": [
|
|
37597
|
+
"object"
|
|
37598
|
+
],
|
|
37599
|
+
"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.",
|
|
37600
|
+
"mapValue": {
|
|
37601
|
+
"types": [
|
|
37602
|
+
"array"
|
|
37603
|
+
],
|
|
37604
|
+
"items": {
|
|
37605
|
+
"types": [
|
|
37606
|
+
"object"
|
|
37607
|
+
],
|
|
37608
|
+
"properties": {
|
|
37609
|
+
"value": {
|
|
37610
|
+
"types": [
|
|
37611
|
+
"string"
|
|
37612
|
+
]
|
|
37613
|
+
},
|
|
37614
|
+
"label": {
|
|
37615
|
+
"types": [
|
|
37616
|
+
"string"
|
|
37617
|
+
]
|
|
37618
|
+
},
|
|
37619
|
+
"description": {
|
|
37620
|
+
"types": [
|
|
37621
|
+
"string"
|
|
37622
|
+
]
|
|
37623
|
+
},
|
|
37624
|
+
"disabled": {
|
|
37625
|
+
"types": [
|
|
37626
|
+
"boolean"
|
|
37627
|
+
]
|
|
37628
|
+
}
|
|
37629
|
+
},
|
|
37630
|
+
"required": [
|
|
37631
|
+
"value",
|
|
37632
|
+
"label"
|
|
37633
|
+
]
|
|
37634
|
+
}
|
|
37635
|
+
}
|
|
37470
37636
|
}
|
|
37471
37637
|
}
|
|
37472
37638
|
},
|
|
@@ -38048,6 +38214,7 @@
|
|
|
38048
38214
|
"code-runner-panel": {
|
|
38049
38215
|
"type": "code-runner-panel",
|
|
38050
38216
|
"category": "display",
|
|
38217
|
+
"sourceFile": "components/core/organisms/CodeRunnerPanel.tsx",
|
|
38051
38218
|
"tier": "organisms",
|
|
38052
38219
|
"family": "core",
|
|
38053
38220
|
"description": "CodeRunnerPanel component",
|
|
@@ -38085,7 +38252,6 @@
|
|
|
38085
38252
|
"function"
|
|
38086
38253
|
],
|
|
38087
38254
|
"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
38255
|
"callbackArgs": [
|
|
38090
38256
|
{
|
|
38091
38257
|
"name": "code",
|
|
@@ -38112,6 +38278,7 @@
|
|
|
38112
38278
|
"segment-renderer": {
|
|
38113
38279
|
"type": "segment-renderer",
|
|
38114
38280
|
"category": "display",
|
|
38281
|
+
"sourceFile": "components/core/organisms/SegmentRenderer.tsx",
|
|
38115
38282
|
"tier": "organisms",
|
|
38116
38283
|
"family": "core",
|
|
38117
38284
|
"description": "SegmentRenderer component",
|
|
@@ -38203,7 +38370,6 @@
|
|
|
38203
38370
|
"function"
|
|
38204
38371
|
],
|
|
38205
38372
|
"description": "Simulate executing runnable code blocks. Omit to render runnable blocks as read-only. Real execution is a future track.",
|
|
38206
|
-
"kind": "callback",
|
|
38207
38373
|
"callbackArgs": [
|
|
38208
38374
|
{
|
|
38209
38375
|
"name": "code",
|
|
@@ -38221,7 +38387,6 @@
|
|
|
38221
38387
|
"function"
|
|
38222
38388
|
],
|
|
38223
38389
|
"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
38390
|
"callbackArgs": [
|
|
38226
38391
|
{
|
|
38227
38392
|
"name": "type",
|
|
@@ -39019,22 +39184,26 @@
|
|
|
39019
39184
|
"types": [
|
|
39020
39185
|
"object"
|
|
39021
39186
|
],
|
|
39022
|
-
"description": "Maps a keydown `e.code`
|
|
39187
|
+
"description": "Maps a keydown `e.code` — optionally prefixed `Mod+` (⌘/Ctrl), `Shift+`, `Alt+` in that order — to the board's SEMANTIC event (device-agnostic input), emitted as `UI:{event}`; keystrokes inside inputs/textareas never route.",
|
|
39188
|
+
"kind": "event-map",
|
|
39023
39189
|
"mapValue": {
|
|
39024
39190
|
"types": [
|
|
39025
39191
|
"string"
|
|
39026
|
-
]
|
|
39192
|
+
],
|
|
39193
|
+
"kind": "event"
|
|
39027
39194
|
}
|
|
39028
39195
|
},
|
|
39029
39196
|
"keyUpMap": {
|
|
39030
39197
|
"types": [
|
|
39031
39198
|
"object"
|
|
39032
39199
|
],
|
|
39033
|
-
"description": "Maps a keyup `e.code`
|
|
39200
|
+
"description": "Maps a keyup `e.code` — optionally prefixed `Mod+` (⌘/Ctrl), `Shift+`, `Alt+` in that order — to the board's SEMANTIC event, emitted as `UI:{event}`; keystrokes inside inputs/textareas never route.",
|
|
39201
|
+
"kind": "event-map",
|
|
39034
39202
|
"mapValue": {
|
|
39035
39203
|
"types": [
|
|
39036
39204
|
"string"
|
|
39037
|
-
]
|
|
39205
|
+
],
|
|
39206
|
+
"kind": "event"
|
|
39038
39207
|
}
|
|
39039
39208
|
},
|
|
39040
39209
|
"editable": {
|
|
@@ -39495,10 +39664,12 @@
|
|
|
39495
39664
|
"object"
|
|
39496
39665
|
],
|
|
39497
39666
|
"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.",
|
|
39667
|
+
"kind": "event-map",
|
|
39498
39668
|
"mapValue": {
|
|
39499
39669
|
"types": [
|
|
39500
39670
|
"string"
|
|
39501
|
-
]
|
|
39671
|
+
],
|
|
39672
|
+
"kind": "event"
|
|
39502
39673
|
}
|
|
39503
39674
|
},
|
|
39504
39675
|
"directionReleaseEvents": {
|
|
@@ -39506,10 +39677,12 @@
|
|
|
39506
39677
|
"object"
|
|
39507
39678
|
],
|
|
39508
39679
|
"description": "Per-direction RELEASE → semantic event, e.g. `{ left: \"STOP\", right: \"STOP\" }`. Omit a direction to ignore its release.",
|
|
39680
|
+
"kind": "event-map",
|
|
39509
39681
|
"mapValue": {
|
|
39510
39682
|
"types": [
|
|
39511
39683
|
"string"
|
|
39512
|
-
]
|
|
39684
|
+
],
|
|
39685
|
+
"kind": "event"
|
|
39513
39686
|
}
|
|
39514
39687
|
},
|
|
39515
39688
|
"directionAssets": {
|
|
@@ -43458,6 +43631,7 @@
|
|
|
43458
43631
|
"math-canvas": {
|
|
43459
43632
|
"type": "math-canvas",
|
|
43460
43633
|
"category": "learning",
|
|
43634
|
+
"sourceFile": "components/learning/molecules/MathCanvas.tsx",
|
|
43461
43635
|
"tier": "molecules",
|
|
43462
43636
|
"family": "learning",
|
|
43463
43637
|
"description": "MathCanvas component",
|
|
@@ -44488,22 +44662,26 @@
|
|
|
44488
44662
|
"types": [
|
|
44489
44663
|
"object"
|
|
44490
44664
|
],
|
|
44491
|
-
"description": "Maps a keydown `e.code`
|
|
44665
|
+
"description": "Maps a keydown `e.code` — optionally prefixed `Mod+` (⌘/Ctrl), `Shift+`, `Alt+` in that order — to the board's SEMANTIC event (device-agnostic input), emitted as `UI:{event}` — same contract as the game canvas keyMap; keystrokes inside inputs/textareas never route.",
|
|
44666
|
+
"kind": "event-map",
|
|
44492
44667
|
"mapValue": {
|
|
44493
44668
|
"types": [
|
|
44494
44669
|
"string"
|
|
44495
|
-
]
|
|
44670
|
+
],
|
|
44671
|
+
"kind": "event"
|
|
44496
44672
|
}
|
|
44497
44673
|
},
|
|
44498
44674
|
"keyUpMap": {
|
|
44499
44675
|
"types": [
|
|
44500
44676
|
"object"
|
|
44501
44677
|
],
|
|
44502
|
-
"description": "Maps a keyup `e.code`
|
|
44678
|
+
"description": "Maps a keyup `e.code` — optionally prefixed `Mod+` (⌘/Ctrl), `Shift+`, `Alt+` in that order — to the board's SEMANTIC event, emitted as `UI:{event}`; keystrokes inside inputs/textareas never route.",
|
|
44679
|
+
"kind": "event-map",
|
|
44503
44680
|
"mapValue": {
|
|
44504
44681
|
"types": [
|
|
44505
44682
|
"string"
|
|
44506
|
-
]
|
|
44683
|
+
],
|
|
44684
|
+
"kind": "event"
|
|
44507
44685
|
}
|
|
44508
44686
|
},
|
|
44509
44687
|
"isLoading": {
|
|
@@ -50252,22 +50430,26 @@
|
|
|
50252
50430
|
"types": [
|
|
50253
50431
|
"object"
|
|
50254
50432
|
],
|
|
50255
|
-
"description": "
|
|
50433
|
+
"description": "Maps a keydown `e.code` — optionally prefixed `Mod+` (⌘/Ctrl), `Shift+`, `Alt+` in that order — to the board's SEMANTIC event (device-agnostic input), emitted as `UI:{event}`; keystrokes inside inputs/textareas never route.",
|
|
50434
|
+
"kind": "event-map",
|
|
50256
50435
|
"mapValue": {
|
|
50257
50436
|
"types": [
|
|
50258
50437
|
"string"
|
|
50259
|
-
]
|
|
50438
|
+
],
|
|
50439
|
+
"kind": "event"
|
|
50260
50440
|
}
|
|
50261
50441
|
},
|
|
50262
50442
|
"keyUpMap": {
|
|
50263
50443
|
"types": [
|
|
50264
50444
|
"object"
|
|
50265
50445
|
],
|
|
50266
|
-
"description": "
|
|
50446
|
+
"description": "Maps a keyup `e.code` — optionally prefixed `Mod+` (⌘/Ctrl), `Shift+`, `Alt+` in that order — to the board's SEMANTIC event, emitted as `UI:{event}`; keystrokes inside inputs/textareas never route.",
|
|
50447
|
+
"kind": "event-map",
|
|
50267
50448
|
"mapValue": {
|
|
50268
50449
|
"types": [
|
|
50269
50450
|
"string"
|
|
50270
|
-
]
|
|
50451
|
+
],
|
|
50452
|
+
"kind": "event"
|
|
50271
50453
|
}
|
|
50272
50454
|
},
|
|
50273
50455
|
"editable": {
|
|
@@ -54332,6 +54514,188 @@
|
|
|
54332
54514
|
}
|
|
54333
54515
|
},
|
|
54334
54516
|
"drawable": true
|
|
54517
|
+
},
|
|
54518
|
+
"gantt": {
|
|
54519
|
+
"type": "gantt",
|
|
54520
|
+
"category": "component",
|
|
54521
|
+
"sourceFile": "components/core/molecules/Gantt.tsx",
|
|
54522
|
+
"tier": "molecules",
|
|
54523
|
+
"family": "core",
|
|
54524
|
+
"description": "Gantt — view-only task schedule rendering rows as bars on a day axis.",
|
|
54525
|
+
"capabilities": "gantt chart, project timeline, schedule view, task bars, dependency arrows, roadmap, milestone plan",
|
|
54526
|
+
"fieldsContract": "display",
|
|
54527
|
+
"suggestedFor": [
|
|
54528
|
+
"gantt"
|
|
54529
|
+
],
|
|
54530
|
+
"typicalSize": "medium",
|
|
54531
|
+
"propsSchema": {
|
|
54532
|
+
"tasks": {
|
|
54533
|
+
"types": [
|
|
54534
|
+
"object",
|
|
54535
|
+
"array"
|
|
54536
|
+
],
|
|
54537
|
+
"description": "Schema entity data — the task rows to place on the axis. pattern-sync tags it `kind:\"entity\", cardinality:\"collection\"` so consumers bind the domain entity without name-matching the prop.",
|
|
54538
|
+
"kind": "entity",
|
|
54539
|
+
"cardinality": "collection",
|
|
54540
|
+
"default": []
|
|
54541
|
+
},
|
|
54542
|
+
"links": {
|
|
54543
|
+
"types": [
|
|
54544
|
+
"array"
|
|
54545
|
+
],
|
|
54546
|
+
"description": "Dependency arrows between task ids",
|
|
54547
|
+
"items": {
|
|
54548
|
+
"types": [
|
|
54549
|
+
"object"
|
|
54550
|
+
],
|
|
54551
|
+
"properties": {
|
|
54552
|
+
"from": {
|
|
54553
|
+
"types": [
|
|
54554
|
+
"string"
|
|
54555
|
+
]
|
|
54556
|
+
},
|
|
54557
|
+
"to": {
|
|
54558
|
+
"types": [
|
|
54559
|
+
"string"
|
|
54560
|
+
]
|
|
54561
|
+
}
|
|
54562
|
+
},
|
|
54563
|
+
"required": [
|
|
54564
|
+
"from",
|
|
54565
|
+
"to"
|
|
54566
|
+
]
|
|
54567
|
+
},
|
|
54568
|
+
"default": []
|
|
54569
|
+
},
|
|
54570
|
+
"titleField": {
|
|
54571
|
+
"types": [
|
|
54572
|
+
"string"
|
|
54573
|
+
],
|
|
54574
|
+
"description": "Row field holding the bar label. Defaults to `title`.",
|
|
54575
|
+
"default": "title"
|
|
54576
|
+
},
|
|
54577
|
+
"startField": {
|
|
54578
|
+
"types": [
|
|
54579
|
+
"string"
|
|
54580
|
+
],
|
|
54581
|
+
"description": "Row field holding the start timestamp (ISO or epoch). Defaults to `start`.",
|
|
54582
|
+
"default": "start"
|
|
54583
|
+
},
|
|
54584
|
+
"endField": {
|
|
54585
|
+
"types": [
|
|
54586
|
+
"string"
|
|
54587
|
+
],
|
|
54588
|
+
"description": "Row field holding the end timestamp (ISO or epoch). Defaults to `end`. When absent, `durationField` (days) is used instead.",
|
|
54589
|
+
"default": "end"
|
|
54590
|
+
},
|
|
54591
|
+
"durationField": {
|
|
54592
|
+
"types": [
|
|
54593
|
+
"string"
|
|
54594
|
+
],
|
|
54595
|
+
"description": "Row field holding the task length in days, used when the row has no end."
|
|
54596
|
+
},
|
|
54597
|
+
"statusField": {
|
|
54598
|
+
"types": [
|
|
54599
|
+
"string"
|
|
54600
|
+
],
|
|
54601
|
+
"description": "Row field holding the bar status (drives bar colour). Defaults to `status`.",
|
|
54602
|
+
"default": "status"
|
|
54603
|
+
},
|
|
54604
|
+
"groupField": {
|
|
54605
|
+
"types": [
|
|
54606
|
+
"string"
|
|
54607
|
+
],
|
|
54608
|
+
"description": "Row field rows are grouped under header rows by. Empty (default) = flat list.",
|
|
54609
|
+
"default": ""
|
|
54610
|
+
},
|
|
54611
|
+
"rangeStart": {
|
|
54612
|
+
"types": [
|
|
54613
|
+
"string",
|
|
54614
|
+
"date"
|
|
54615
|
+
],
|
|
54616
|
+
"description": "First visible day (ISO or Date). Defaults to 2 days before the earliest task."
|
|
54617
|
+
},
|
|
54618
|
+
"rangeEnd": {
|
|
54619
|
+
"types": [
|
|
54620
|
+
"string",
|
|
54621
|
+
"date"
|
|
54622
|
+
],
|
|
54623
|
+
"description": "Last visible day (ISO or Date). Defaults to 2 days after the latest task end."
|
|
54624
|
+
},
|
|
54625
|
+
"showToday": {
|
|
54626
|
+
"types": [
|
|
54627
|
+
"boolean"
|
|
54628
|
+
],
|
|
54629
|
+
"description": "Paint the today marker line when today falls inside the range (default true).",
|
|
54630
|
+
"default": true
|
|
54631
|
+
},
|
|
54632
|
+
"dayWidth": {
|
|
54633
|
+
"types": [
|
|
54634
|
+
"number"
|
|
54635
|
+
],
|
|
54636
|
+
"description": "Pixels per day on the axis (default 28)",
|
|
54637
|
+
"default": 28
|
|
54638
|
+
},
|
|
54639
|
+
"barClickEvent": {
|
|
54640
|
+
"types": [
|
|
54641
|
+
"string"
|
|
54642
|
+
],
|
|
54643
|
+
"description": "Event emitted when a bar is clicked: UI:{barClickEvent} with { id }",
|
|
54644
|
+
"kind": "event-ref",
|
|
54645
|
+
"emitPayloadSchema": [
|
|
54646
|
+
{
|
|
54647
|
+
"name": "id",
|
|
54648
|
+
"type": "string",
|
|
54649
|
+
"required": true
|
|
54650
|
+
}
|
|
54651
|
+
]
|
|
54652
|
+
},
|
|
54653
|
+
"className": {
|
|
54654
|
+
"types": [
|
|
54655
|
+
"string"
|
|
54656
|
+
],
|
|
54657
|
+
"description": "Additional CSS classes"
|
|
54658
|
+
},
|
|
54659
|
+
"isLoading": {
|
|
54660
|
+
"types": [
|
|
54661
|
+
"boolean"
|
|
54662
|
+
],
|
|
54663
|
+
"description": "Loading state",
|
|
54664
|
+
"default": false
|
|
54665
|
+
},
|
|
54666
|
+
"error": {
|
|
54667
|
+
"types": [
|
|
54668
|
+
"object"
|
|
54669
|
+
],
|
|
54670
|
+
"description": "Error state",
|
|
54671
|
+
"properties": {
|
|
54672
|
+
"message": {
|
|
54673
|
+
"types": [
|
|
54674
|
+
"string"
|
|
54675
|
+
]
|
|
54676
|
+
},
|
|
54677
|
+
"name": {
|
|
54678
|
+
"types": [
|
|
54679
|
+
"string"
|
|
54680
|
+
]
|
|
54681
|
+
},
|
|
54682
|
+
"code": {
|
|
54683
|
+
"types": [
|
|
54684
|
+
"string"
|
|
54685
|
+
]
|
|
54686
|
+
},
|
|
54687
|
+
"stack": {
|
|
54688
|
+
"types": [
|
|
54689
|
+
"string"
|
|
54690
|
+
]
|
|
54691
|
+
}
|
|
54692
|
+
},
|
|
54693
|
+
"propertyRequired": [
|
|
54694
|
+
"message"
|
|
54695
|
+
],
|
|
54696
|
+
"default": null
|
|
54697
|
+
}
|
|
54698
|
+
}
|
|
54335
54699
|
}
|
|
54336
54700
|
},
|
|
54337
54701
|
"categories": [
|