@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.
Files changed (34) hide show
  1. package/dist/builders.d.ts +3 -3
  2. package/dist/builders.js +2 -1
  3. package/dist/builders.js.map +1 -1
  4. package/dist/{effect-Bt8vKHwd.d.ts → effect-BnSE0gKt.d.ts} +26 -3
  5. package/dist/{entityAccess-BdDX85rM.d.ts → entityAccess-DtWseAgf.d.ts} +1 -1
  6. package/dist/factory/index.d.ts +4 -4
  7. package/dist/factory/index.js +402 -38
  8. package/dist/factory/index.js.map +1 -1
  9. package/dist/factory-runtime/index.d.ts +3 -3
  10. package/dist/factory-runtime/index.js +6 -2
  11. package/dist/factory-runtime/index.js.map +1 -1
  12. package/dist/{index-rOBf1Oag.d.ts → index-CWArRU6P.d.ts} +19 -10
  13. package/dist/index.d.ts +11 -72
  14. package/dist/index.js +597 -141
  15. package/dist/index.js.map +1 -1
  16. package/dist/mock/index.d.ts +4 -4
  17. package/dist/patterns/component-mapping.json +6 -1
  18. package/dist/patterns/event-contracts.json +1 -1
  19. package/dist/patterns/index.d.ts +1243 -85
  20. package/dist/patterns/index.js +547 -42
  21. package/dist/patterns/index.js.map +1 -1
  22. package/dist/patterns/integrators-registry.json +136 -1
  23. package/dist/patterns/patterns-registry.json +403 -39
  24. package/dist/patterns/registry.json +403 -39
  25. package/dist/patterns/services-registry.json +136 -1
  26. package/dist/{schema-ovDTDQz9.d.ts → schema-DFmFFcLs.d.ts} +25 -25
  27. package/dist/state-machine/index.js +19 -4
  28. package/dist/state-machine/index.js.map +1 -1
  29. package/dist/{trait-C3e3btfn.d.ts → trait-DSMzclmJ.d.ts} +10 -1
  30. package/dist/types/index.d.ts +5 -5
  31. package/dist/types/index.js +31 -2
  32. package/dist/types/index.js.map +1 -1
  33. package/dist/{types-rh0naR6C.d.ts → types-DzkFdgNJ.d.ts} +2 -2
  34. package/package.json +1 -1
@@ -1,11 +1,11 @@
1
- import { A as AnyPatternConfig, i as RenderBinding, F as FieldValue, bl as PatternType } from '../effect-Bt8vKHwd.js';
2
- export { be as PATTERN_TYPES, bi as PatternConfig, bj as PatternProps, bk as PatternPropsMap, dj as isValidPatternType } from '../effect-Bt8vKHwd.js';
1
+ import { A as AnyPatternConfig, i as RenderBinding, F as FieldValue, bl as PatternType } from '../effect-BnSE0gKt.js';
2
+ export { be as PATTERN_TYPES, bi as PatternConfig, bj as PatternProps, bk as PatternPropsMap, dj as isValidPatternType } from '../effect-BnSE0gKt.js';
3
3
  import { b as EventPayloadValue, a as EventPayload } from '../expression-WfTp2arD.js';
4
4
  import { J as JsonValue } from '../json-D8gmyK3l.js';
5
5
  import 'zod';
6
6
 
7
7
  var version$3 = "1.0.0";
8
- var exportedAt$3 = "2026-09-12T07:27:39.835Z";
8
+ var exportedAt$3 = "2026-09-16T03:44:41.117Z";
9
9
  var patterns = {
10
10
  "entity-table": {
11
11
  type: "entity-table",
@@ -14,6 +14,7 @@ var patterns = {
14
14
  tier: "organisms",
15
15
  family: "core",
16
16
  description: "Data table with columns and sorting",
17
+ fieldsContract: "display",
17
18
  suggestedFor: [
18
19
  "data-dense views",
19
20
  "comparisons",
@@ -483,6 +484,48 @@ var patterns = {
483
484
  "card-rows"
484
485
  ],
485
486
  "default": "dense"
487
+ },
488
+ relationsData: {
489
+ types: [
490
+ "object"
491
+ ],
492
+ 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.",
493
+ mapValue: {
494
+ types: [
495
+ "array"
496
+ ],
497
+ items: {
498
+ types: [
499
+ "object"
500
+ ],
501
+ properties: {
502
+ value: {
503
+ types: [
504
+ "string"
505
+ ]
506
+ },
507
+ label: {
508
+ types: [
509
+ "string"
510
+ ]
511
+ },
512
+ description: {
513
+ types: [
514
+ "string"
515
+ ]
516
+ },
517
+ disabled: {
518
+ types: [
519
+ "boolean"
520
+ ]
521
+ }
522
+ },
523
+ required: [
524
+ "value",
525
+ "label"
526
+ ]
527
+ }
528
+ }
486
529
  }
487
530
  }
488
531
  },
@@ -714,7 +757,6 @@ var patterns = {
714
757
  "function"
715
758
  ],
716
759
  description: "Render function for each item. In .lolo: renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field.",
717
- kind: "callback",
718
760
  callbackArgs: [
719
761
  {
720
762
  name: "item",
@@ -8571,6 +8613,7 @@ var patterns = {
8571
8613
  textarea: {
8572
8614
  type: "textarea",
8573
8615
  category: "component",
8616
+ sourceFile: "components/core/atoms/Textarea.tsx",
8574
8617
  tier: "atoms",
8575
8618
  family: "core",
8576
8619
  description: "Multi-line text input",
@@ -8603,7 +8646,7 @@ var patterns = {
8603
8646
  types: [
8604
8647
  "string"
8605
8648
  ],
8606
- description: "Declarative event name for trait dispatch",
8649
+ description: "Declarative event: fires on ⌘/Ctrl+Enter with `{ value }`.",
8607
8650
  kind: "event"
8608
8651
  },
8609
8652
  error: {
@@ -9790,6 +9833,7 @@ var patterns = {
9790
9833
  "repeatable-form-section": {
9791
9834
  type: "repeatable-form-section",
9792
9835
  category: "form",
9836
+ sourceFile: "components/core/molecules/RepeatableFormSection.tsx",
9793
9837
  tier: "molecules",
9794
9838
  family: "core",
9795
9839
  description: "RepeatableFormSection — a form section that repeats a fixed group of fields, letting the user add or remove entries.",
@@ -9853,7 +9897,6 @@ var patterns = {
9853
9897
  ],
9854
9898
  description: "Render function for each item. In .lolo: renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field.",
9855
9899
  required: true,
9856
- kind: "callback",
9857
9900
  callbackArgs: [
9858
9901
  {
9859
9902
  name: "item",
@@ -17475,6 +17518,7 @@ var patterns = {
17475
17518
  "state-machine-view": {
17476
17519
  type: "state-machine-view",
17477
17520
  category: "display",
17521
+ sourceFile: "components/core/organisms/StateMachineView.tsx",
17478
17522
  tier: "organisms",
17479
17523
  family: "core",
17480
17524
  description: "StateMachineView component",
@@ -17542,7 +17586,6 @@ var patterns = {
17542
17586
  "function"
17543
17587
  ],
17544
17588
  description: "Custom state node renderer — when provided, replaces the default circle nodes",
17545
- kind: "callback",
17546
17589
  callbackArgs: [
17547
17590
  {
17548
17591
  name: "state",
@@ -17927,6 +17970,7 @@ var patterns = {
17927
17970
  "calendar-grid": {
17928
17971
  type: "calendar-grid",
17929
17972
  category: "display",
17973
+ sourceFile: "components/core/molecules/CalendarGrid.tsx",
17930
17974
  tier: "molecules",
17931
17975
  family: "core",
17932
17976
  description: "CalendarGrid component",
@@ -18065,7 +18109,8 @@ var patterns = {
18065
18109
  "object"
18066
18110
  ],
18067
18111
  description: "Additional payload for long-press events",
18068
- payloadFor: "longPressEvent"
18112
+ payloadFor: "longPressEvent",
18113
+ eventPayloadBrand: true
18069
18114
  },
18070
18115
  swipeLeftEvent: {
18071
18116
  types: [
@@ -18129,7 +18174,6 @@ var patterns = {
18129
18174
  "function"
18130
18175
  ],
18131
18176
  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.",
18132
- kind: "callback",
18133
18177
  callbackArgs: [
18134
18178
  {
18135
18179
  name: "item",
@@ -18147,7 +18191,6 @@ var patterns = {
18147
18191
  "function"
18148
18192
  ],
18149
18193
  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.",
18150
- kind: "callback",
18151
18194
  callbackArgs: [
18152
18195
  {
18153
18196
  name: "item",
@@ -18694,6 +18737,7 @@ var patterns = {
18694
18737
  "progress-dots": {
18695
18738
  type: "progress-dots",
18696
18739
  category: "component",
18740
+ sourceFile: "components/core/molecules/ProgressDots.tsx",
18697
18741
  tier: "molecules",
18698
18742
  family: "core",
18699
18743
  description: "ProgressDots component",
@@ -18723,7 +18767,6 @@ var patterns = {
18723
18767
  "function"
18724
18768
  ],
18725
18769
  description: "Custom state resolver per dot index",
18726
- kind: "callback",
18727
18770
  callbackArgs: [
18728
18771
  {
18729
18772
  name: "index",
@@ -18773,6 +18816,7 @@ var patterns = {
18773
18816
  family: "core",
18774
18817
  description: "DataGrid — structured records grid rendering rows over configurable columns, with sort, select, and drag-reorder.",
18775
18818
  capabilities: "admin table, records grid, user list, CRUD list, manage-records view, spreadsheet-style data grid, sortable columns",
18819
+ fieldsContract: "display",
18776
18820
  suggestedFor: [
18777
18821
  "data",
18778
18822
  "grid",
@@ -19179,7 +19223,6 @@ var patterns = {
19179
19223
  "function"
19180
19224
  ],
19181
19225
  description: "Render prop for custom per-card content. When provided, `fields` are ignored; `itemActions` render as a footer beneath the custom content.",
19182
- kind: "callback",
19183
19226
  callbackArgs: [
19184
19227
  {
19185
19228
  name: "item",
@@ -19197,7 +19240,6 @@ var patterns = {
19197
19240
  "function"
19198
19241
  ],
19199
19242
  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.",
19200
- kind: "callback",
19201
19243
  callbackArgs: [
19202
19244
  {
19203
19245
  name: "item",
@@ -19230,6 +19272,48 @@ var patterns = {
19230
19272
  "card-rows"
19231
19273
  ],
19232
19274
  "default": "dense"
19275
+ },
19276
+ relationsData: {
19277
+ types: [
19278
+ "object"
19279
+ ],
19280
+ 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.",
19281
+ mapValue: {
19282
+ types: [
19283
+ "array"
19284
+ ],
19285
+ items: {
19286
+ types: [
19287
+ "object"
19288
+ ],
19289
+ properties: {
19290
+ value: {
19291
+ types: [
19292
+ "string"
19293
+ ]
19294
+ },
19295
+ label: {
19296
+ types: [
19297
+ "string"
19298
+ ]
19299
+ },
19300
+ description: {
19301
+ types: [
19302
+ "string"
19303
+ ]
19304
+ },
19305
+ disabled: {
19306
+ types: [
19307
+ "boolean"
19308
+ ]
19309
+ }
19310
+ },
19311
+ required: [
19312
+ "value",
19313
+ "label"
19314
+ ]
19315
+ }
19316
+ }
19233
19317
  }
19234
19318
  }
19235
19319
  },
@@ -19240,6 +19324,7 @@ var patterns = {
19240
19324
  tier: "molecules",
19241
19325
  family: "core",
19242
19326
  description: "DataList component",
19327
+ fieldsContract: "display",
19243
19328
  suggestedFor: [
19244
19329
  "data",
19245
19330
  "list",
@@ -19723,7 +19808,6 @@ var patterns = {
19723
19808
  "function"
19724
19809
  ],
19725
19810
  description: "Render prop for custom per-item content. When provided, `fields` and `itemActions` are ignored.",
19726
- kind: "callback",
19727
19811
  callbackArgs: [
19728
19812
  {
19729
19813
  name: "item",
@@ -19741,7 +19825,6 @@ var patterns = {
19741
19825
  "function"
19742
19826
  ],
19743
19827
  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.",
19744
- kind: "callback",
19745
19828
  callbackArgs: [
19746
19829
  {
19747
19830
  name: "item",
@@ -19790,6 +19873,48 @@ var patterns = {
19790
19873
  "card-rows"
19791
19874
  ],
19792
19875
  "default": "dense"
19876
+ },
19877
+ relationsData: {
19878
+ types: [
19879
+ "object"
19880
+ ],
19881
+ 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.",
19882
+ mapValue: {
19883
+ types: [
19884
+ "array"
19885
+ ],
19886
+ items: {
19887
+ types: [
19888
+ "object"
19889
+ ],
19890
+ properties: {
19891
+ value: {
19892
+ types: [
19893
+ "string"
19894
+ ]
19895
+ },
19896
+ label: {
19897
+ types: [
19898
+ "string"
19899
+ ]
19900
+ },
19901
+ description: {
19902
+ types: [
19903
+ "string"
19904
+ ]
19905
+ },
19906
+ disabled: {
19907
+ types: [
19908
+ "boolean"
19909
+ ]
19910
+ }
19911
+ },
19912
+ required: [
19913
+ "value",
19914
+ "label"
19915
+ ]
19916
+ }
19917
+ }
19793
19918
  }
19794
19919
  }
19795
19920
  },
@@ -20102,6 +20227,7 @@ var patterns = {
20102
20227
  "range-slider": {
20103
20228
  type: "range-slider",
20104
20229
  category: "component",
20230
+ sourceFile: "components/core/atoms/RangeSlider.tsx",
20105
20231
  tier: "atoms",
20106
20232
  family: "core",
20107
20233
  description: "RangeSlider component",
@@ -20204,7 +20330,8 @@ var patterns = {
20204
20330
  "object"
20205
20331
  ],
20206
20332
  description: "Payload to include with the action event",
20207
- payloadFor: "action"
20333
+ payloadFor: "action",
20334
+ eventPayloadBrand: true
20208
20335
  },
20209
20336
  onChange: {
20210
20337
  types: [
@@ -20224,7 +20351,6 @@ var patterns = {
20224
20351
  "function"
20225
20352
  ],
20226
20353
  description: "Format function for tooltip display",
20227
- kind: "callback",
20228
20354
  callbackArgs: [
20229
20355
  {
20230
20356
  name: "value",
@@ -21077,7 +21203,6 @@ var patterns = {
21077
21203
  "function"
21078
21204
  ],
21079
21205
  description: "Render function for each slide. In .lolo: renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field.",
21080
- kind: "callback",
21081
21206
  callbackArgs: [
21082
21207
  {
21083
21208
  name: "item",
@@ -21117,7 +21242,6 @@ var patterns = {
21117
21242
  "function"
21118
21243
  ],
21119
21244
  description: "Children-as-function fallback for renderItem (compiler compatibility)",
21120
- kind: "callback",
21121
21245
  callbackArgs: [
21122
21246
  {
21123
21247
  name: "item",
@@ -21275,6 +21399,7 @@ var patterns = {
21275
21399
  "sortable-list": {
21276
21400
  type: "sortable-list",
21277
21401
  category: "display",
21402
+ sourceFile: "components/core/molecules/SortableList.tsx",
21278
21403
  tier: "molecules",
21279
21404
  family: "core",
21280
21405
  description: "SortableList — a drag-and-drop reorderable list of items.",
@@ -21302,7 +21427,6 @@ var patterns = {
21302
21427
  ],
21303
21428
  description: "Render function for each item. In .lolo: renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field.",
21304
21429
  required: true,
21305
- kind: "callback",
21306
21430
  callbackArgs: [
21307
21431
  {
21308
21432
  name: "item",
@@ -21346,7 +21470,8 @@ var patterns = {
21346
21470
  "object"
21347
21471
  ],
21348
21472
  description: "reorderPayload prop",
21349
- payloadFor: "reorderEvent"
21473
+ payloadFor: "reorderEvent",
21474
+ eventPayloadBrand: true
21350
21475
  },
21351
21476
  dragHandlePosition: {
21352
21477
  types: [
@@ -30839,6 +30964,7 @@ var patterns = {
30839
30964
  "doc-search": {
30840
30965
  type: "doc-search",
30841
30966
  category: "filter",
30967
+ sourceFile: "components/core/molecules/DocSearch.tsx",
30842
30968
  tier: "molecules",
30843
30969
  family: "core",
30844
30970
  description: "DocSearch component",
@@ -30860,7 +30986,6 @@ var patterns = {
30860
30986
  "function"
30861
30987
  ],
30862
30988
  description: "Callback invoked with the search query, returns results",
30863
- kind: "callback",
30864
30989
  callbackArgs: [
30865
30990
  {
30866
30991
  name: "query",
@@ -37052,6 +37177,7 @@ var patterns = {
37052
37177
  family: "core",
37053
37178
  description: "TableView — sortable, selectable data table rendering rows over configurable columns, with inline row actions and grouping.",
37054
37179
  capabilities: "admin console table, records list, CRUD data table, user list, manage-users grid, sortable columns, row selection with bulk actions, grouped list view",
37180
+ fieldsContract: "display",
37055
37181
  suggestedFor: [
37056
37182
  "table",
37057
37183
  "view",
@@ -37508,7 +37634,6 @@ var patterns = {
37508
37634
  "function"
37509
37635
  ],
37510
37636
  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.",
37511
- kind: "callback",
37512
37637
  callbackArgs: [
37513
37638
  {
37514
37639
  name: "item",
@@ -37526,7 +37651,6 @@ var patterns = {
37526
37651
  "function"
37527
37652
  ],
37528
37653
  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.",
37529
- kind: "callback",
37530
37654
  callbackArgs: [
37531
37655
  {
37532
37656
  name: "item",
@@ -37552,6 +37676,48 @@ var patterns = {
37552
37676
  "bordered"
37553
37677
  ],
37554
37678
  "default": "dense"
37679
+ },
37680
+ relationsData: {
37681
+ types: [
37682
+ "object"
37683
+ ],
37684
+ 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.",
37685
+ mapValue: {
37686
+ types: [
37687
+ "array"
37688
+ ],
37689
+ items: {
37690
+ types: [
37691
+ "object"
37692
+ ],
37693
+ properties: {
37694
+ value: {
37695
+ types: [
37696
+ "string"
37697
+ ]
37698
+ },
37699
+ label: {
37700
+ types: [
37701
+ "string"
37702
+ ]
37703
+ },
37704
+ description: {
37705
+ types: [
37706
+ "string"
37707
+ ]
37708
+ },
37709
+ disabled: {
37710
+ types: [
37711
+ "boolean"
37712
+ ]
37713
+ }
37714
+ },
37715
+ required: [
37716
+ "value",
37717
+ "label"
37718
+ ]
37719
+ }
37720
+ }
37555
37721
  }
37556
37722
  }
37557
37723
  },
@@ -38133,6 +38299,7 @@ var patterns = {
38133
38299
  "code-runner-panel": {
38134
38300
  type: "code-runner-panel",
38135
38301
  category: "display",
38302
+ sourceFile: "components/core/organisms/CodeRunnerPanel.tsx",
38136
38303
  tier: "organisms",
38137
38304
  family: "core",
38138
38305
  description: "CodeRunnerPanel component",
@@ -38170,7 +38337,6 @@ var patterns = {
38170
38337
  "function"
38171
38338
  ],
38172
38339
  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.",
38173
- kind: "callback",
38174
38340
  callbackArgs: [
38175
38341
  {
38176
38342
  name: "code",
@@ -38197,6 +38363,7 @@ var patterns = {
38197
38363
  "segment-renderer": {
38198
38364
  type: "segment-renderer",
38199
38365
  category: "display",
38366
+ sourceFile: "components/core/organisms/SegmentRenderer.tsx",
38200
38367
  tier: "organisms",
38201
38368
  family: "core",
38202
38369
  description: "SegmentRenderer component",
@@ -38288,7 +38455,6 @@ var patterns = {
38288
38455
  "function"
38289
38456
  ],
38290
38457
  description: "Simulate executing runnable code blocks. Omit to render runnable blocks as read-only. Real execution is a future track.",
38291
- kind: "callback",
38292
38458
  callbackArgs: [
38293
38459
  {
38294
38460
  name: "code",
@@ -38306,7 +38472,6 @@ var patterns = {
38306
38472
  "function"
38307
38473
  ],
38308
38474
  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.",
38309
- kind: "callback",
38310
38475
  callbackArgs: [
38311
38476
  {
38312
38477
  name: "type",
@@ -39106,22 +39271,26 @@ var patterns = {
39106
39271
  types: [
39107
39272
  "object"
39108
39273
  ],
39109
- description: "Maps a keydown `e.code` the board's SEMANTIC event (device-agnostic input).",
39274
+ 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.",
39275
+ kind: "event-map",
39110
39276
  mapValue: {
39111
39277
  types: [
39112
39278
  "string"
39113
- ]
39279
+ ],
39280
+ kind: "event"
39114
39281
  }
39115
39282
  },
39116
39283
  keyUpMap: {
39117
39284
  types: [
39118
39285
  "object"
39119
39286
  ],
39120
- description: "Maps a keyup `e.code` the board's SEMANTIC event.",
39287
+ 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.",
39288
+ kind: "event-map",
39121
39289
  mapValue: {
39122
39290
  types: [
39123
39291
  "string"
39124
- ]
39292
+ ],
39293
+ kind: "event"
39125
39294
  }
39126
39295
  },
39127
39296
  editable: {
@@ -39582,10 +39751,12 @@ var patterns = {
39582
39751
  "object"
39583
39752
  ],
39584
39753
  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.",
39754
+ kind: "event-map",
39585
39755
  mapValue: {
39586
39756
  types: [
39587
39757
  "string"
39588
- ]
39758
+ ],
39759
+ kind: "event"
39589
39760
  }
39590
39761
  },
39591
39762
  directionReleaseEvents: {
@@ -39593,10 +39764,12 @@ var patterns = {
39593
39764
  "object"
39594
39765
  ],
39595
39766
  description: "Per-direction RELEASE → semantic event, e.g. `{ left: \"STOP\", right: \"STOP\" }`. Omit a direction to ignore its release.",
39767
+ kind: "event-map",
39596
39768
  mapValue: {
39597
39769
  types: [
39598
39770
  "string"
39599
- ]
39771
+ ],
39772
+ kind: "event"
39600
39773
  }
39601
39774
  },
39602
39775
  directionAssets: {
@@ -43557,6 +43730,7 @@ var patterns = {
43557
43730
  "math-canvas": {
43558
43731
  type: "math-canvas",
43559
43732
  category: "learning",
43733
+ sourceFile: "components/learning/molecules/MathCanvas.tsx",
43560
43734
  tier: "molecules",
43561
43735
  family: "learning",
43562
43736
  description: "MathCanvas component",
@@ -44596,22 +44770,26 @@ var patterns = {
44596
44770
  types: [
44597
44771
  "object"
44598
44772
  ],
44599
- 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.",
44773
+ 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.",
44774
+ kind: "event-map",
44600
44775
  mapValue: {
44601
44776
  types: [
44602
44777
  "string"
44603
- ]
44778
+ ],
44779
+ kind: "event"
44604
44780
  }
44605
44781
  },
44606
44782
  keyUpMap: {
44607
44783
  types: [
44608
44784
  "object"
44609
44785
  ],
44610
- description: "Maps a keyup `e.code` the board's SEMANTIC event.",
44786
+ 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.",
44787
+ kind: "event-map",
44611
44788
  mapValue: {
44612
44789
  types: [
44613
44790
  "string"
44614
- ]
44791
+ ],
44792
+ kind: "event"
44615
44793
  }
44616
44794
  },
44617
44795
  isLoading: {
@@ -50382,22 +50560,26 @@ var patterns = {
50382
50560
  types: [
50383
50561
  "object"
50384
50562
  ],
50385
- description: "keyMap prop",
50563
+ 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.",
50564
+ kind: "event-map",
50386
50565
  mapValue: {
50387
50566
  types: [
50388
50567
  "string"
50389
- ]
50568
+ ],
50569
+ kind: "event"
50390
50570
  }
50391
50571
  },
50392
50572
  keyUpMap: {
50393
50573
  types: [
50394
50574
  "object"
50395
50575
  ],
50396
- description: "keyUpMap prop",
50576
+ 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.",
50577
+ kind: "event-map",
50397
50578
  mapValue: {
50398
50579
  types: [
50399
50580
  "string"
50400
- ]
50581
+ ],
50582
+ kind: "event"
50401
50583
  }
50402
50584
  },
50403
50585
  editable: {
@@ -54468,6 +54650,190 @@ var patterns = {
54468
54650
  }
54469
54651
  },
54470
54652
  drawable: true
54653
+ },
54654
+ gantt: {
54655
+ type: "gantt",
54656
+ category: "component",
54657
+ sourceFile: "components/core/molecules/Gantt.tsx",
54658
+ tier: "molecules",
54659
+ family: "core",
54660
+ description: "Gantt — view-only task schedule rendering rows as bars on a day axis.",
54661
+ capabilities: "gantt chart, project timeline, schedule view, task bars, dependency arrows, roadmap, milestone plan",
54662
+ fieldsContract: "display",
54663
+ suggestedFor: [
54664
+ "gantt"
54665
+ ],
54666
+ typicalSize: "medium",
54667
+ propsSchema: {
54668
+ tasks: {
54669
+ types: [
54670
+ "object",
54671
+ "array"
54672
+ ],
54673
+ 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.",
54674
+ kind: "entity",
54675
+ cardinality: "collection",
54676
+ "default": [
54677
+ ]
54678
+ },
54679
+ links: {
54680
+ types: [
54681
+ "array"
54682
+ ],
54683
+ description: "Dependency arrows between task ids",
54684
+ items: {
54685
+ types: [
54686
+ "object"
54687
+ ],
54688
+ properties: {
54689
+ from: {
54690
+ types: [
54691
+ "string"
54692
+ ]
54693
+ },
54694
+ to: {
54695
+ types: [
54696
+ "string"
54697
+ ]
54698
+ }
54699
+ },
54700
+ required: [
54701
+ "from",
54702
+ "to"
54703
+ ]
54704
+ },
54705
+ "default": [
54706
+ ]
54707
+ },
54708
+ titleField: {
54709
+ types: [
54710
+ "string"
54711
+ ],
54712
+ description: "Row field holding the bar label. Defaults to `title`.",
54713
+ "default": "title"
54714
+ },
54715
+ startField: {
54716
+ types: [
54717
+ "string"
54718
+ ],
54719
+ description: "Row field holding the start timestamp (ISO or epoch). Defaults to `start`.",
54720
+ "default": "start"
54721
+ },
54722
+ endField: {
54723
+ types: [
54724
+ "string"
54725
+ ],
54726
+ description: "Row field holding the end timestamp (ISO or epoch). Defaults to `end`. When absent, `durationField` (days) is used instead.",
54727
+ "default": "end"
54728
+ },
54729
+ durationField: {
54730
+ types: [
54731
+ "string"
54732
+ ],
54733
+ description: "Row field holding the task length in days, used when the row has no end."
54734
+ },
54735
+ statusField: {
54736
+ types: [
54737
+ "string"
54738
+ ],
54739
+ description: "Row field holding the bar status (drives bar colour). Defaults to `status`.",
54740
+ "default": "status"
54741
+ },
54742
+ groupField: {
54743
+ types: [
54744
+ "string"
54745
+ ],
54746
+ description: "Row field rows are grouped under header rows by. Empty (default) = flat list.",
54747
+ "default": ""
54748
+ },
54749
+ rangeStart: {
54750
+ types: [
54751
+ "string",
54752
+ "date"
54753
+ ],
54754
+ description: "First visible day (ISO or Date). Defaults to 2 days before the earliest task."
54755
+ },
54756
+ rangeEnd: {
54757
+ types: [
54758
+ "string",
54759
+ "date"
54760
+ ],
54761
+ description: "Last visible day (ISO or Date). Defaults to 2 days after the latest task end."
54762
+ },
54763
+ showToday: {
54764
+ types: [
54765
+ "boolean"
54766
+ ],
54767
+ description: "Paint the today marker line when today falls inside the range (default true).",
54768
+ "default": true
54769
+ },
54770
+ dayWidth: {
54771
+ types: [
54772
+ "number"
54773
+ ],
54774
+ description: "Pixels per day on the axis (default 28)",
54775
+ "default": 28
54776
+ },
54777
+ barClickEvent: {
54778
+ types: [
54779
+ "string"
54780
+ ],
54781
+ description: "Event emitted when a bar is clicked: UI:{barClickEvent} with { id }",
54782
+ kind: "event-ref",
54783
+ emitPayloadSchema: [
54784
+ {
54785
+ name: "id",
54786
+ type: "string",
54787
+ required: true
54788
+ }
54789
+ ]
54790
+ },
54791
+ className: {
54792
+ types: [
54793
+ "string"
54794
+ ],
54795
+ description: "Additional CSS classes"
54796
+ },
54797
+ isLoading: {
54798
+ types: [
54799
+ "boolean"
54800
+ ],
54801
+ description: "Loading state",
54802
+ "default": false
54803
+ },
54804
+ error: {
54805
+ types: [
54806
+ "object"
54807
+ ],
54808
+ description: "Error state",
54809
+ properties: {
54810
+ message: {
54811
+ types: [
54812
+ "string"
54813
+ ]
54814
+ },
54815
+ name: {
54816
+ types: [
54817
+ "string"
54818
+ ]
54819
+ },
54820
+ code: {
54821
+ types: [
54822
+ "string"
54823
+ ]
54824
+ },
54825
+ stack: {
54826
+ types: [
54827
+ "string"
54828
+ ]
54829
+ }
54830
+ },
54831
+ propertyRequired: [
54832
+ "message"
54833
+ ],
54834
+ "default": null
54835
+ }
54836
+ }
54471
54837
  }
54472
54838
  };
54473
54839
  var categories$1 = [
@@ -54496,7 +54862,7 @@ var patternsRegistry = {
54496
54862
  };
54497
54863
 
54498
54864
  var version$2 = "1.0.0";
54499
- var exportedAt$2 = "2026-09-12T12:14:53.173Z";
54865
+ var exportedAt$2 = "2026-09-12T17:27:32.966Z";
54500
54866
  var integrators = {
54501
54867
  github: {
54502
54868
  name: "github",
@@ -58292,6 +58658,141 @@ var integrators = {
58292
58658
  }
58293
58659
  }
58294
58660
  },
58661
+ {
58662
+ name: "buildLayers",
58663
+ description: "Build per-part cutout layer images (name, box, z-order, pivot) from a source image and rig.",
58664
+ params: [
58665
+ {
58666
+ name: "imagePath",
58667
+ type: "string",
58668
+ required: true,
58669
+ description: "Path to the source image."
58670
+ },
58671
+ {
58672
+ name: "rig",
58673
+ type: "object",
58674
+ required: true,
58675
+ description: "The rig definition (parts, boxes, pivots, …) as JSON."
58676
+ },
58677
+ {
58678
+ name: "outDir",
58679
+ type: "string",
58680
+ required: true,
58681
+ description: "Output directory for the layer images."
58682
+ }
58683
+ ],
58684
+ responseShape: {
58685
+ layers: {
58686
+ type: "array",
58687
+ items: {
58688
+ type: "object",
58689
+ properties: {
58690
+ name: {
58691
+ type: "string",
58692
+ required: true
58693
+ },
58694
+ path: {
58695
+ type: "string",
58696
+ required: true
58697
+ },
58698
+ x: {
58699
+ type: "number",
58700
+ required: true
58701
+ },
58702
+ y: {
58703
+ type: "number",
58704
+ required: true
58705
+ },
58706
+ w: {
58707
+ type: "number",
58708
+ required: true
58709
+ },
58710
+ h: {
58711
+ type: "number",
58712
+ required: true
58713
+ },
58714
+ z: {
58715
+ type: "number",
58716
+ required: true
58717
+ },
58718
+ pivot: {
58719
+ type: "[number, number]",
58720
+ required: true
58721
+ },
58722
+ isRest: {
58723
+ type: "boolean",
58724
+ required: true
58725
+ }
58726
+ }
58727
+ }
58728
+ }
58729
+ }
58730
+ },
58731
+ {
58732
+ name: "pose",
58733
+ description: "Sample a pose/animation preset into per-frame, per-part transforms for a rig.",
58734
+ params: [
58735
+ {
58736
+ name: "imagePath",
58737
+ type: "string",
58738
+ required: true,
58739
+ description: "Path to the source image."
58740
+ },
58741
+ {
58742
+ name: "rig",
58743
+ type: "object",
58744
+ required: true,
58745
+ description: "The rig definition (parts, boxes, pivots, …) as JSON."
58746
+ },
58747
+ {
58748
+ name: "roles",
58749
+ type: "object",
58750
+ required: true,
58751
+ description: "Map of part name to preset bone role.",
58752
+ mapValue: {
58753
+ type: "string"
58754
+ }
58755
+ },
58756
+ {
58757
+ name: "preset",
58758
+ type: "string",
58759
+ required: false,
58760
+ description: "Animation preset name."
58761
+ },
58762
+ {
58763
+ name: "overrides",
58764
+ type: "object",
58765
+ required: false,
58766
+ description: "Per-part motion overrides applied over the preset."
58767
+ }
58768
+ ],
58769
+ responseShape: {
58770
+ fps: "number",
58771
+ frames: {
58772
+ type: "array",
58773
+ items: {
58774
+ type: "object",
58775
+ mapValue: {
58776
+ type: "object",
58777
+ properties: {
58778
+ angle: {
58779
+ type: "number",
58780
+ required: true
58781
+ },
58782
+ bx: {
58783
+ type: "number",
58784
+ required: true
58785
+ },
58786
+ by: {
58787
+ type: "number",
58788
+ required: true
58789
+ }
58790
+ }
58791
+ }
58792
+ }
58793
+ }
58794
+ }
58795
+ },
58295
58796
  {
58296
58797
  name: "generate",
58297
58798
  description: "Generate one image on the local image server (text-to-image, or a Kontext edit conditioned on `sourcePath`).",
@@ -58372,7 +58873,7 @@ var integratorsRegistry = {
58372
58873
  };
58373
58874
 
58374
58875
  var version$1 = "1.0.0";
58375
- var exportedAt$1 = "2026-09-12T07:27:39.835Z";
58876
+ var exportedAt$1 = "2026-09-16T03:44:41.117Z";
58376
58877
  var mappings = {
58377
58878
  "page-header": {
58378
58879
  component: "PageHeader",
@@ -59815,6 +60316,11 @@ var mappings = {
59815
60316
  component: "UISlotComponent",
59816
60317
  importPath: "@/components/core/organisms/UISlotRenderer",
59817
60318
  category: "layout"
60319
+ },
60320
+ gantt: {
60321
+ component: "Gantt",
60322
+ importPath: "@/components/core/molecules/Gantt",
60323
+ category: "component"
59818
60324
  }
59819
60325
  };
59820
60326
  var componentMapping = {
@@ -59824,7 +60330,7 @@ var componentMapping = {
59824
60330
  };
59825
60331
 
59826
60332
  var version = "1.0.0";
59827
- var exportedAt = "2026-09-12T07:27:39.835Z";
60333
+ var exportedAt = "2026-09-16T03:44:41.117Z";
59828
60334
  var contracts = {
59829
60335
  form: {
59830
60336
  emits: [
@@ -61127,6 +61633,11 @@ declare const SELF_OVERLAY_PATTERN_TYPES: ReadonlySet<string>;
61127
61633
  * Each item has a field (default `"event"`, override
61128
61634
  * with {@link PatternPropDef.eventField}) holding a
61129
61635
  * declared event key. Same rename applies per item.
61636
+ * - `"event-map"` — the prop is an object whose dynamic-key VALUES are
61637
+ * declared event keys (`Record<K, EventKey>` / a d-pad's
61638
+ * direction→event map, a canvas's keycode→event map).
61639
+ * Set from the Record/index-signature value type's own
61640
+ * `EventKey` identity — never from the prop's name.
61130
61641
  * - `"entity"` — the prop is the pattern's data INLET: the bound entity
61131
61642
  * record(s) it renders. The inlet half of the circuit,
61132
61643
  * symmetric with the event OUTLET kinds above. Source type:
@@ -61139,7 +61650,7 @@ declare const SELF_OVERLAY_PATTERN_TYPES: ReadonlySet<string>;
61139
61650
  * Reserved for future use: `"config-binding"`. Add here rather than
61140
61651
  * inventing per-consumer markers.
61141
61652
  */
61142
- type PropKind = 'event' | 'event-ref' | 'event-listen' | 'event-list' | 'callback' | 'entity';
61653
+ type PropKind = 'event' | 'event-ref' | 'event-listen' | 'event-list' | 'event-map' | 'callback' | 'entity';
61143
61654
  /**
61144
61655
  * Recursive structural schema for array elements / nested objects, mirrored
61145
61656
  * into the registry by pattern-sync. Mirrors a tiny subset of JSON Schema
@@ -61684,6 +62195,7 @@ declare const registry: {
61684
62195
  tier: string;
61685
62196
  family: string;
61686
62197
  description: string;
62198
+ fieldsContract: string;
61687
62199
  suggestedFor: string[];
61688
62200
  typicalSize: string;
61689
62201
  propsSchema: {
@@ -61974,6 +62486,31 @@ declare const registry: {
61974
62486
  enumValues: string[];
61975
62487
  default: string;
61976
62488
  };
62489
+ relationsData: {
62490
+ types: string[];
62491
+ description: string;
62492
+ mapValue: {
62493
+ types: string[];
62494
+ items: {
62495
+ types: string[];
62496
+ properties: {
62497
+ value: {
62498
+ types: string[];
62499
+ };
62500
+ label: {
62501
+ types: string[];
62502
+ };
62503
+ description: {
62504
+ types: string[];
62505
+ };
62506
+ disabled: {
62507
+ types: string[];
62508
+ };
62509
+ };
62510
+ required: string[];
62511
+ };
62512
+ };
62513
+ };
61977
62514
  };
61978
62515
  };
61979
62516
  "entity-list": {
@@ -62117,7 +62654,6 @@ declare const registry: {
62117
62654
  renderItem: {
62118
62655
  types: string[];
62119
62656
  description: string;
62120
- kind: string;
62121
62657
  callbackArgs: ({
62122
62658
  name: string;
62123
62659
  type: string;
@@ -66824,6 +67360,7 @@ declare const registry: {
66824
67360
  textarea: {
66825
67361
  type: string;
66826
67362
  category: string;
67363
+ sourceFile: string;
66827
67364
  tier: string;
66828
67365
  family: string;
66829
67366
  description: string;
@@ -67591,6 +68128,7 @@ declare const registry: {
67591
68128
  "repeatable-form-section": {
67592
68129
  type: string;
67593
68130
  category: string;
68131
+ sourceFile: string;
67594
68132
  tier: string;
67595
68133
  family: string;
67596
68134
  description: string;
@@ -67632,7 +68170,6 @@ declare const registry: {
67632
68170
  types: string[];
67633
68171
  description: string;
67634
68172
  required: boolean;
67635
- kind: string;
67636
68173
  callbackArgs: ({
67637
68174
  name: string;
67638
68175
  type: string;
@@ -72229,6 +72766,7 @@ declare const registry: {
72229
72766
  "state-machine-view": {
72230
72767
  type: string;
72231
72768
  category: string;
72769
+ sourceFile: string;
72232
72770
  tier: string;
72233
72771
  family: string;
72234
72772
  description: string;
@@ -72271,7 +72809,6 @@ declare const registry: {
72271
72809
  renderStateNode: {
72272
72810
  types: string[];
72273
72811
  description: string;
72274
- kind: string;
72275
72812
  callbackArgs: ({
72276
72813
  name: string;
72277
72814
  type: string;
@@ -72524,6 +73061,7 @@ declare const registry: {
72524
73061
  "calendar-grid": {
72525
73062
  type: string;
72526
73063
  category: string;
73064
+ sourceFile: string;
72527
73065
  tier: string;
72528
73066
  family: string;
72529
73067
  description: string;
@@ -72609,6 +73147,7 @@ declare const registry: {
72609
73147
  types: string[];
72610
73148
  description: string;
72611
73149
  payloadFor: string;
73150
+ eventPayloadBrand: boolean;
72612
73151
  };
72613
73152
  swipeLeftEvent: {
72614
73153
  types: string[];
@@ -72651,7 +73190,6 @@ declare const registry: {
72651
73190
  children: {
72652
73191
  types: string[];
72653
73192
  description: string;
72654
- kind: string;
72655
73193
  callbackArgs: {
72656
73194
  name: string;
72657
73195
  type: string;
@@ -72661,7 +73199,6 @@ declare const registry: {
72661
73199
  renderItem: {
72662
73200
  types: string[];
72663
73201
  description: string;
72664
- kind: string;
72665
73202
  callbackArgs: {
72666
73203
  name: string;
72667
73204
  type: string;
@@ -73018,6 +73555,7 @@ declare const registry: {
73018
73555
  "progress-dots": {
73019
73556
  type: string;
73020
73557
  category: string;
73558
+ sourceFile: string;
73021
73559
  tier: string;
73022
73560
  family: string;
73023
73561
  description: string;
@@ -73037,7 +73575,6 @@ declare const registry: {
73037
73575
  getState: {
73038
73576
  types: string[];
73039
73577
  description: string;
73040
- kind: string;
73041
73578
  callbackArgs: {
73042
73579
  name: string;
73043
73580
  type: string;
@@ -73073,6 +73610,7 @@ declare const registry: {
73073
73610
  family: string;
73074
73611
  description: string;
73075
73612
  capabilities: string;
73613
+ fieldsContract: string;
73076
73614
  suggestedFor: string[];
73077
73615
  typicalSize: string;
73078
73616
  propsSchema: {
@@ -73305,7 +73843,6 @@ declare const registry: {
73305
73843
  children: {
73306
73844
  types: string[];
73307
73845
  description: string;
73308
- kind: string;
73309
73846
  callbackArgs: {
73310
73847
  name: string;
73311
73848
  type: string;
@@ -73315,7 +73852,6 @@ declare const registry: {
73315
73852
  renderItem: {
73316
73853
  types: string[];
73317
73854
  description: string;
73318
- kind: string;
73319
73855
  callbackArgs: {
73320
73856
  name: string;
73321
73857
  type: string;
@@ -73333,6 +73869,31 @@ declare const registry: {
73333
73869
  enumValues: string[];
73334
73870
  default: string;
73335
73871
  };
73872
+ relationsData: {
73873
+ types: string[];
73874
+ description: string;
73875
+ mapValue: {
73876
+ types: string[];
73877
+ items: {
73878
+ types: string[];
73879
+ properties: {
73880
+ value: {
73881
+ types: string[];
73882
+ };
73883
+ label: {
73884
+ types: string[];
73885
+ };
73886
+ description: {
73887
+ types: string[];
73888
+ };
73889
+ disabled: {
73890
+ types: string[];
73891
+ };
73892
+ };
73893
+ required: string[];
73894
+ };
73895
+ };
73896
+ };
73336
73897
  };
73337
73898
  };
73338
73899
  "data-list": {
@@ -73342,6 +73903,7 @@ declare const registry: {
73342
73903
  tier: string;
73343
73904
  family: string;
73344
73905
  description: string;
73906
+ fieldsContract: string;
73345
73907
  suggestedFor: string[];
73346
73908
  typicalSize: string;
73347
73909
  propsSchema: {
@@ -73616,7 +74178,6 @@ declare const registry: {
73616
74178
  children: {
73617
74179
  types: string[];
73618
74180
  description: string;
73619
- kind: string;
73620
74181
  callbackArgs: {
73621
74182
  name: string;
73622
74183
  type: string;
@@ -73626,7 +74187,6 @@ declare const registry: {
73626
74187
  renderItem: {
73627
74188
  types: string[];
73628
74189
  description: string;
73629
- kind: string;
73630
74190
  callbackArgs: {
73631
74191
  name: string;
73632
74192
  type: string;
@@ -73653,6 +74213,31 @@ declare const registry: {
73653
74213
  enumValues: string[];
73654
74214
  default: string;
73655
74215
  };
74216
+ relationsData: {
74217
+ types: string[];
74218
+ description: string;
74219
+ mapValue: {
74220
+ types: string[];
74221
+ items: {
74222
+ types: string[];
74223
+ properties: {
74224
+ value: {
74225
+ types: string[];
74226
+ };
74227
+ label: {
74228
+ types: string[];
74229
+ };
74230
+ description: {
74231
+ types: string[];
74232
+ };
74233
+ disabled: {
74234
+ types: string[];
74235
+ };
74236
+ };
74237
+ required: string[];
74238
+ };
74239
+ };
74240
+ };
73656
74241
  };
73657
74242
  };
73658
74243
  "map-view": {
@@ -73832,6 +74417,7 @@ declare const registry: {
73832
74417
  "range-slider": {
73833
74418
  type: string;
73834
74419
  category: string;
74420
+ sourceFile: string;
73835
74421
  tier: string;
73836
74422
  family: string;
73837
74423
  description: string;
@@ -73901,6 +74487,7 @@ declare const registry: {
73901
74487
  types: string[];
73902
74488
  description: string;
73903
74489
  payloadFor: string;
74490
+ eventPayloadBrand: boolean;
73904
74491
  };
73905
74492
  onChange: {
73906
74493
  types: string[];
@@ -73914,7 +74501,6 @@ declare const registry: {
73914
74501
  formatValue: {
73915
74502
  types: string[];
73916
74503
  description: string;
73917
- kind: string;
73918
74504
  callbackArgs: {
73919
74505
  name: string;
73920
74506
  type: string;
@@ -74487,7 +75073,6 @@ declare const registry: {
74487
75073
  renderItem: {
74488
75074
  types: string[];
74489
75075
  description: string;
74490
- kind: string;
74491
75076
  callbackArgs: ({
74492
75077
  name: string;
74493
75078
  type: string;
@@ -74515,7 +75100,6 @@ declare const registry: {
74515
75100
  children: {
74516
75101
  types: string[];
74517
75102
  description: string;
74518
- kind: string;
74519
75103
  callbackArgs: ({
74520
75104
  name: string;
74521
75105
  type: string;
@@ -74629,6 +75213,7 @@ declare const registry: {
74629
75213
  "sortable-list": {
74630
75214
  type: string;
74631
75215
  category: string;
75216
+ sourceFile: string;
74632
75217
  tier: string;
74633
75218
  family: string;
74634
75219
  description: string;
@@ -74647,7 +75232,6 @@ declare const registry: {
74647
75232
  types: string[];
74648
75233
  description: string;
74649
75234
  required: boolean;
74650
- kind: string;
74651
75235
  callbackArgs: {
74652
75236
  name: string;
74653
75237
  type: string;
@@ -74670,6 +75254,7 @@ declare const registry: {
74670
75254
  types: string[];
74671
75255
  description: string;
74672
75256
  payloadFor: string;
75257
+ eventPayloadBrand: boolean;
74673
75258
  };
74674
75259
  dragHandlePosition: {
74675
75260
  types: string[];
@@ -80539,6 +81124,7 @@ declare const registry: {
80539
81124
  "doc-search": {
80540
81125
  type: string;
80541
81126
  category: string;
81127
+ sourceFile: string;
80542
81128
  tier: string;
80543
81129
  family: string;
80544
81130
  description: string;
@@ -80552,7 +81138,6 @@ declare const registry: {
80552
81138
  onSearch: {
80553
81139
  types: string[];
80554
81140
  description: string;
80555
- kind: string;
80556
81141
  callbackArgs: {
80557
81142
  name: string;
80558
81143
  type: string;
@@ -84142,6 +84727,7 @@ declare const registry: {
84142
84727
  family: string;
84143
84728
  description: string;
84144
84729
  capabilities: string;
84730
+ fieldsContract: string;
84145
84731
  suggestedFor: string[];
84146
84732
  typicalSize: string;
84147
84733
  propsSchema: {
@@ -84410,7 +84996,6 @@ declare const registry: {
84410
84996
  children: {
84411
84997
  types: string[];
84412
84998
  description: string;
84413
- kind: string;
84414
84999
  callbackArgs: {
84415
85000
  name: string;
84416
85001
  type: string;
@@ -84420,7 +85005,6 @@ declare const registry: {
84420
85005
  renderItem: {
84421
85006
  types: string[];
84422
85007
  description: string;
84423
- kind: string;
84424
85008
  callbackArgs: {
84425
85009
  name: string;
84426
85010
  type: string;
@@ -84433,6 +85017,31 @@ declare const registry: {
84433
85017
  enumValues: string[];
84434
85018
  default: string;
84435
85019
  };
85020
+ relationsData: {
85021
+ types: string[];
85022
+ description: string;
85023
+ mapValue: {
85024
+ types: string[];
85025
+ items: {
85026
+ types: string[];
85027
+ properties: {
85028
+ value: {
85029
+ types: string[];
85030
+ };
85031
+ label: {
85032
+ types: string[];
85033
+ };
85034
+ description: {
85035
+ types: string[];
85036
+ };
85037
+ disabled: {
85038
+ types: string[];
85039
+ };
85040
+ };
85041
+ required: string[];
85042
+ };
85043
+ };
85044
+ };
84436
85045
  };
84437
85046
  };
84438
85047
  "step-flow": {
@@ -84807,6 +85416,7 @@ declare const registry: {
84807
85416
  "code-runner-panel": {
84808
85417
  type: string;
84809
85418
  category: string;
85419
+ sourceFile: string;
84810
85420
  tier: string;
84811
85421
  family: string;
84812
85422
  description: string;
@@ -84831,7 +85441,6 @@ declare const registry: {
84831
85441
  onRun: {
84832
85442
  types: string[];
84833
85443
  description: string;
84834
- kind: string;
84835
85444
  callbackArgs: {
84836
85445
  name: string;
84837
85446
  type: string;
@@ -84852,6 +85461,7 @@ declare const registry: {
84852
85461
  "segment-renderer": {
84853
85462
  type: string;
84854
85463
  category: string;
85464
+ sourceFile: string;
84855
85465
  tier: string;
84856
85466
  family: string;
84857
85467
  description: string;
@@ -84908,7 +85518,6 @@ declare const registry: {
84908
85518
  onRunCodeSimulation: {
84909
85519
  types: string[];
84910
85520
  description: string;
84911
- kind: string;
84912
85521
  callbackArgs: {
84913
85522
  name: string;
84914
85523
  type: string;
@@ -84918,7 +85527,6 @@ declare const registry: {
84918
85527
  onRenderVisualization: {
84919
85528
  types: string[];
84920
85529
  description: string;
84921
- kind: string;
84922
85530
  callbackArgs: {
84923
85531
  name: string;
84924
85532
  type: string;
@@ -85387,15 +85995,19 @@ declare const registry: {
85387
85995
  keyMap: {
85388
85996
  types: string[];
85389
85997
  description: string;
85998
+ kind: string;
85390
85999
  mapValue: {
85391
86000
  types: string[];
86001
+ kind: string;
85392
86002
  };
85393
86003
  };
85394
86004
  keyUpMap: {
85395
86005
  types: string[];
85396
86006
  description: string;
86007
+ kind: string;
85397
86008
  mapValue: {
85398
86009
  types: string[];
86010
+ kind: string;
85399
86011
  };
85400
86012
  };
85401
86013
  editable: {
@@ -85661,15 +86273,19 @@ declare const registry: {
85661
86273
  directionEvents: {
85662
86274
  types: string[];
85663
86275
  description: string;
86276
+ kind: string;
85664
86277
  mapValue: {
85665
86278
  types: string[];
86279
+ kind: string;
85666
86280
  };
85667
86281
  };
85668
86282
  directionReleaseEvents: {
85669
86283
  types: string[];
85670
86284
  description: string;
86285
+ kind: string;
85671
86286
  mapValue: {
85672
86287
  types: string[];
86288
+ kind: string;
85673
86289
  };
85674
86290
  };
85675
86291
  directionAssets: {
@@ -88005,6 +88621,7 @@ declare const registry: {
88005
88621
  "math-canvas": {
88006
88622
  type: string;
88007
88623
  category: string;
88624
+ sourceFile: string;
88008
88625
  tier: string;
88009
88626
  family: string;
88010
88627
  description: string;
@@ -88619,15 +89236,19 @@ declare const registry: {
88619
89236
  keyMap: {
88620
89237
  types: string[];
88621
89238
  description: string;
89239
+ kind: string;
88622
89240
  mapValue: {
88623
89241
  types: string[];
89242
+ kind: string;
88624
89243
  };
88625
89244
  };
88626
89245
  keyUpMap: {
88627
89246
  types: string[];
88628
89247
  description: string;
89248
+ kind: string;
88629
89249
  mapValue: {
88630
89250
  types: string[];
89251
+ kind: string;
88631
89252
  };
88632
89253
  };
88633
89254
  isLoading: {
@@ -91979,15 +92600,19 @@ declare const registry: {
91979
92600
  keyMap: {
91980
92601
  types: string[];
91981
92602
  description: string;
92603
+ kind: string;
91982
92604
  mapValue: {
91983
92605
  types: string[];
92606
+ kind: string;
91984
92607
  };
91985
92608
  };
91986
92609
  keyUpMap: {
91987
92610
  types: string[];
91988
92611
  description: string;
92612
+ kind: string;
91989
92613
  mapValue: {
91990
92614
  types: string[];
92615
+ kind: string;
91991
92616
  };
91992
92617
  };
91993
92618
  editable: {
@@ -94473,6 +95098,130 @@ declare const registry: {
94473
95098
  };
94474
95099
  drawable: boolean;
94475
95100
  };
95101
+ gantt: {
95102
+ type: string;
95103
+ category: string;
95104
+ sourceFile: string;
95105
+ tier: string;
95106
+ family: string;
95107
+ description: string;
95108
+ capabilities: string;
95109
+ fieldsContract: string;
95110
+ suggestedFor: string[];
95111
+ typicalSize: string;
95112
+ propsSchema: {
95113
+ tasks: {
95114
+ types: string[];
95115
+ description: string;
95116
+ kind: string;
95117
+ cardinality: string;
95118
+ default: never[];
95119
+ };
95120
+ links: {
95121
+ types: string[];
95122
+ description: string;
95123
+ items: {
95124
+ types: string[];
95125
+ properties: {
95126
+ from: {
95127
+ types: string[];
95128
+ };
95129
+ to: {
95130
+ types: string[];
95131
+ };
95132
+ };
95133
+ required: string[];
95134
+ };
95135
+ default: never[];
95136
+ };
95137
+ titleField: {
95138
+ types: string[];
95139
+ description: string;
95140
+ default: string;
95141
+ };
95142
+ startField: {
95143
+ types: string[];
95144
+ description: string;
95145
+ default: string;
95146
+ };
95147
+ endField: {
95148
+ types: string[];
95149
+ description: string;
95150
+ default: string;
95151
+ };
95152
+ durationField: {
95153
+ types: string[];
95154
+ description: string;
95155
+ };
95156
+ statusField: {
95157
+ types: string[];
95158
+ description: string;
95159
+ default: string;
95160
+ };
95161
+ groupField: {
95162
+ types: string[];
95163
+ description: string;
95164
+ default: string;
95165
+ };
95166
+ rangeStart: {
95167
+ types: string[];
95168
+ description: string;
95169
+ };
95170
+ rangeEnd: {
95171
+ types: string[];
95172
+ description: string;
95173
+ };
95174
+ showToday: {
95175
+ types: string[];
95176
+ description: string;
95177
+ default: boolean;
95178
+ };
95179
+ dayWidth: {
95180
+ types: string[];
95181
+ description: string;
95182
+ default: number;
95183
+ };
95184
+ barClickEvent: {
95185
+ types: string[];
95186
+ description: string;
95187
+ kind: string;
95188
+ emitPayloadSchema: {
95189
+ name: string;
95190
+ type: string;
95191
+ required: boolean;
95192
+ }[];
95193
+ };
95194
+ className: {
95195
+ types: string[];
95196
+ description: string;
95197
+ };
95198
+ isLoading: {
95199
+ types: string[];
95200
+ description: string;
95201
+ default: boolean;
95202
+ };
95203
+ error: {
95204
+ types: string[];
95205
+ description: string;
95206
+ properties: {
95207
+ message: {
95208
+ types: string[];
95209
+ };
95210
+ name: {
95211
+ types: string[];
95212
+ };
95213
+ code: {
95214
+ types: string[];
95215
+ };
95216
+ stack: {
95217
+ types: string[];
95218
+ };
95219
+ };
95220
+ propertyRequired: string[];
95221
+ default: null;
95222
+ };
95223
+ };
95224
+ };
94476
95225
  };
94477
95226
  categories: string[];
94478
95227
  };
@@ -94487,6 +95236,7 @@ declare const PATTERN_REGISTRY: {
94487
95236
  tier: string;
94488
95237
  family: string;
94489
95238
  description: string;
95239
+ fieldsContract: string;
94490
95240
  suggestedFor: string[];
94491
95241
  typicalSize: string;
94492
95242
  propsSchema: {
@@ -94777,6 +95527,31 @@ declare const PATTERN_REGISTRY: {
94777
95527
  enumValues: string[];
94778
95528
  default: string;
94779
95529
  };
95530
+ relationsData: {
95531
+ types: string[];
95532
+ description: string;
95533
+ mapValue: {
95534
+ types: string[];
95535
+ items: {
95536
+ types: string[];
95537
+ properties: {
95538
+ value: {
95539
+ types: string[];
95540
+ };
95541
+ label: {
95542
+ types: string[];
95543
+ };
95544
+ description: {
95545
+ types: string[];
95546
+ };
95547
+ disabled: {
95548
+ types: string[];
95549
+ };
95550
+ };
95551
+ required: string[];
95552
+ };
95553
+ };
95554
+ };
94780
95555
  };
94781
95556
  };
94782
95557
  "entity-list": {
@@ -94920,7 +95695,6 @@ declare const PATTERN_REGISTRY: {
94920
95695
  renderItem: {
94921
95696
  types: string[];
94922
95697
  description: string;
94923
- kind: string;
94924
95698
  callbackArgs: ({
94925
95699
  name: string;
94926
95700
  type: string;
@@ -99627,6 +100401,7 @@ declare const PATTERN_REGISTRY: {
99627
100401
  textarea: {
99628
100402
  type: string;
99629
100403
  category: string;
100404
+ sourceFile: string;
99630
100405
  tier: string;
99631
100406
  family: string;
99632
100407
  description: string;
@@ -100394,6 +101169,7 @@ declare const PATTERN_REGISTRY: {
100394
101169
  "repeatable-form-section": {
100395
101170
  type: string;
100396
101171
  category: string;
101172
+ sourceFile: string;
100397
101173
  tier: string;
100398
101174
  family: string;
100399
101175
  description: string;
@@ -100435,7 +101211,6 @@ declare const PATTERN_REGISTRY: {
100435
101211
  types: string[];
100436
101212
  description: string;
100437
101213
  required: boolean;
100438
- kind: string;
100439
101214
  callbackArgs: ({
100440
101215
  name: string;
100441
101216
  type: string;
@@ -105032,6 +105807,7 @@ declare const PATTERN_REGISTRY: {
105032
105807
  "state-machine-view": {
105033
105808
  type: string;
105034
105809
  category: string;
105810
+ sourceFile: string;
105035
105811
  tier: string;
105036
105812
  family: string;
105037
105813
  description: string;
@@ -105074,7 +105850,6 @@ declare const PATTERN_REGISTRY: {
105074
105850
  renderStateNode: {
105075
105851
  types: string[];
105076
105852
  description: string;
105077
- kind: string;
105078
105853
  callbackArgs: ({
105079
105854
  name: string;
105080
105855
  type: string;
@@ -105327,6 +106102,7 @@ declare const PATTERN_REGISTRY: {
105327
106102
  "calendar-grid": {
105328
106103
  type: string;
105329
106104
  category: string;
106105
+ sourceFile: string;
105330
106106
  tier: string;
105331
106107
  family: string;
105332
106108
  description: string;
@@ -105412,6 +106188,7 @@ declare const PATTERN_REGISTRY: {
105412
106188
  types: string[];
105413
106189
  description: string;
105414
106190
  payloadFor: string;
106191
+ eventPayloadBrand: boolean;
105415
106192
  };
105416
106193
  swipeLeftEvent: {
105417
106194
  types: string[];
@@ -105454,7 +106231,6 @@ declare const PATTERN_REGISTRY: {
105454
106231
  children: {
105455
106232
  types: string[];
105456
106233
  description: string;
105457
- kind: string;
105458
106234
  callbackArgs: {
105459
106235
  name: string;
105460
106236
  type: string;
@@ -105464,7 +106240,6 @@ declare const PATTERN_REGISTRY: {
105464
106240
  renderItem: {
105465
106241
  types: string[];
105466
106242
  description: string;
105467
- kind: string;
105468
106243
  callbackArgs: {
105469
106244
  name: string;
105470
106245
  type: string;
@@ -105821,6 +106596,7 @@ declare const PATTERN_REGISTRY: {
105821
106596
  "progress-dots": {
105822
106597
  type: string;
105823
106598
  category: string;
106599
+ sourceFile: string;
105824
106600
  tier: string;
105825
106601
  family: string;
105826
106602
  description: string;
@@ -105840,7 +106616,6 @@ declare const PATTERN_REGISTRY: {
105840
106616
  getState: {
105841
106617
  types: string[];
105842
106618
  description: string;
105843
- kind: string;
105844
106619
  callbackArgs: {
105845
106620
  name: string;
105846
106621
  type: string;
@@ -105876,6 +106651,7 @@ declare const PATTERN_REGISTRY: {
105876
106651
  family: string;
105877
106652
  description: string;
105878
106653
  capabilities: string;
106654
+ fieldsContract: string;
105879
106655
  suggestedFor: string[];
105880
106656
  typicalSize: string;
105881
106657
  propsSchema: {
@@ -106108,7 +106884,6 @@ declare const PATTERN_REGISTRY: {
106108
106884
  children: {
106109
106885
  types: string[];
106110
106886
  description: string;
106111
- kind: string;
106112
106887
  callbackArgs: {
106113
106888
  name: string;
106114
106889
  type: string;
@@ -106118,7 +106893,6 @@ declare const PATTERN_REGISTRY: {
106118
106893
  renderItem: {
106119
106894
  types: string[];
106120
106895
  description: string;
106121
- kind: string;
106122
106896
  callbackArgs: {
106123
106897
  name: string;
106124
106898
  type: string;
@@ -106136,6 +106910,31 @@ declare const PATTERN_REGISTRY: {
106136
106910
  enumValues: string[];
106137
106911
  default: string;
106138
106912
  };
106913
+ relationsData: {
106914
+ types: string[];
106915
+ description: string;
106916
+ mapValue: {
106917
+ types: string[];
106918
+ items: {
106919
+ types: string[];
106920
+ properties: {
106921
+ value: {
106922
+ types: string[];
106923
+ };
106924
+ label: {
106925
+ types: string[];
106926
+ };
106927
+ description: {
106928
+ types: string[];
106929
+ };
106930
+ disabled: {
106931
+ types: string[];
106932
+ };
106933
+ };
106934
+ required: string[];
106935
+ };
106936
+ };
106937
+ };
106139
106938
  };
106140
106939
  };
106141
106940
  "data-list": {
@@ -106145,6 +106944,7 @@ declare const PATTERN_REGISTRY: {
106145
106944
  tier: string;
106146
106945
  family: string;
106147
106946
  description: string;
106947
+ fieldsContract: string;
106148
106948
  suggestedFor: string[];
106149
106949
  typicalSize: string;
106150
106950
  propsSchema: {
@@ -106419,7 +107219,6 @@ declare const PATTERN_REGISTRY: {
106419
107219
  children: {
106420
107220
  types: string[];
106421
107221
  description: string;
106422
- kind: string;
106423
107222
  callbackArgs: {
106424
107223
  name: string;
106425
107224
  type: string;
@@ -106429,7 +107228,6 @@ declare const PATTERN_REGISTRY: {
106429
107228
  renderItem: {
106430
107229
  types: string[];
106431
107230
  description: string;
106432
- kind: string;
106433
107231
  callbackArgs: {
106434
107232
  name: string;
106435
107233
  type: string;
@@ -106456,6 +107254,31 @@ declare const PATTERN_REGISTRY: {
106456
107254
  enumValues: string[];
106457
107255
  default: string;
106458
107256
  };
107257
+ relationsData: {
107258
+ types: string[];
107259
+ description: string;
107260
+ mapValue: {
107261
+ types: string[];
107262
+ items: {
107263
+ types: string[];
107264
+ properties: {
107265
+ value: {
107266
+ types: string[];
107267
+ };
107268
+ label: {
107269
+ types: string[];
107270
+ };
107271
+ description: {
107272
+ types: string[];
107273
+ };
107274
+ disabled: {
107275
+ types: string[];
107276
+ };
107277
+ };
107278
+ required: string[];
107279
+ };
107280
+ };
107281
+ };
106459
107282
  };
106460
107283
  };
106461
107284
  "map-view": {
@@ -106635,6 +107458,7 @@ declare const PATTERN_REGISTRY: {
106635
107458
  "range-slider": {
106636
107459
  type: string;
106637
107460
  category: string;
107461
+ sourceFile: string;
106638
107462
  tier: string;
106639
107463
  family: string;
106640
107464
  description: string;
@@ -106704,6 +107528,7 @@ declare const PATTERN_REGISTRY: {
106704
107528
  types: string[];
106705
107529
  description: string;
106706
107530
  payloadFor: string;
107531
+ eventPayloadBrand: boolean;
106707
107532
  };
106708
107533
  onChange: {
106709
107534
  types: string[];
@@ -106717,7 +107542,6 @@ declare const PATTERN_REGISTRY: {
106717
107542
  formatValue: {
106718
107543
  types: string[];
106719
107544
  description: string;
106720
- kind: string;
106721
107545
  callbackArgs: {
106722
107546
  name: string;
106723
107547
  type: string;
@@ -107290,7 +108114,6 @@ declare const PATTERN_REGISTRY: {
107290
108114
  renderItem: {
107291
108115
  types: string[];
107292
108116
  description: string;
107293
- kind: string;
107294
108117
  callbackArgs: ({
107295
108118
  name: string;
107296
108119
  type: string;
@@ -107318,7 +108141,6 @@ declare const PATTERN_REGISTRY: {
107318
108141
  children: {
107319
108142
  types: string[];
107320
108143
  description: string;
107321
- kind: string;
107322
108144
  callbackArgs: ({
107323
108145
  name: string;
107324
108146
  type: string;
@@ -107432,6 +108254,7 @@ declare const PATTERN_REGISTRY: {
107432
108254
  "sortable-list": {
107433
108255
  type: string;
107434
108256
  category: string;
108257
+ sourceFile: string;
107435
108258
  tier: string;
107436
108259
  family: string;
107437
108260
  description: string;
@@ -107450,7 +108273,6 @@ declare const PATTERN_REGISTRY: {
107450
108273
  types: string[];
107451
108274
  description: string;
107452
108275
  required: boolean;
107453
- kind: string;
107454
108276
  callbackArgs: {
107455
108277
  name: string;
107456
108278
  type: string;
@@ -107473,6 +108295,7 @@ declare const PATTERN_REGISTRY: {
107473
108295
  types: string[];
107474
108296
  description: string;
107475
108297
  payloadFor: string;
108298
+ eventPayloadBrand: boolean;
107476
108299
  };
107477
108300
  dragHandlePosition: {
107478
108301
  types: string[];
@@ -113342,6 +114165,7 @@ declare const PATTERN_REGISTRY: {
113342
114165
  "doc-search": {
113343
114166
  type: string;
113344
114167
  category: string;
114168
+ sourceFile: string;
113345
114169
  tier: string;
113346
114170
  family: string;
113347
114171
  description: string;
@@ -113355,7 +114179,6 @@ declare const PATTERN_REGISTRY: {
113355
114179
  onSearch: {
113356
114180
  types: string[];
113357
114181
  description: string;
113358
- kind: string;
113359
114182
  callbackArgs: {
113360
114183
  name: string;
113361
114184
  type: string;
@@ -116945,6 +117768,7 @@ declare const PATTERN_REGISTRY: {
116945
117768
  family: string;
116946
117769
  description: string;
116947
117770
  capabilities: string;
117771
+ fieldsContract: string;
116948
117772
  suggestedFor: string[];
116949
117773
  typicalSize: string;
116950
117774
  propsSchema: {
@@ -117213,7 +118037,6 @@ declare const PATTERN_REGISTRY: {
117213
118037
  children: {
117214
118038
  types: string[];
117215
118039
  description: string;
117216
- kind: string;
117217
118040
  callbackArgs: {
117218
118041
  name: string;
117219
118042
  type: string;
@@ -117223,7 +118046,6 @@ declare const PATTERN_REGISTRY: {
117223
118046
  renderItem: {
117224
118047
  types: string[];
117225
118048
  description: string;
117226
- kind: string;
117227
118049
  callbackArgs: {
117228
118050
  name: string;
117229
118051
  type: string;
@@ -117236,6 +118058,31 @@ declare const PATTERN_REGISTRY: {
117236
118058
  enumValues: string[];
117237
118059
  default: string;
117238
118060
  };
118061
+ relationsData: {
118062
+ types: string[];
118063
+ description: string;
118064
+ mapValue: {
118065
+ types: string[];
118066
+ items: {
118067
+ types: string[];
118068
+ properties: {
118069
+ value: {
118070
+ types: string[];
118071
+ };
118072
+ label: {
118073
+ types: string[];
118074
+ };
118075
+ description: {
118076
+ types: string[];
118077
+ };
118078
+ disabled: {
118079
+ types: string[];
118080
+ };
118081
+ };
118082
+ required: string[];
118083
+ };
118084
+ };
118085
+ };
117239
118086
  };
117240
118087
  };
117241
118088
  "step-flow": {
@@ -117610,6 +118457,7 @@ declare const PATTERN_REGISTRY: {
117610
118457
  "code-runner-panel": {
117611
118458
  type: string;
117612
118459
  category: string;
118460
+ sourceFile: string;
117613
118461
  tier: string;
117614
118462
  family: string;
117615
118463
  description: string;
@@ -117634,7 +118482,6 @@ declare const PATTERN_REGISTRY: {
117634
118482
  onRun: {
117635
118483
  types: string[];
117636
118484
  description: string;
117637
- kind: string;
117638
118485
  callbackArgs: {
117639
118486
  name: string;
117640
118487
  type: string;
@@ -117655,6 +118502,7 @@ declare const PATTERN_REGISTRY: {
117655
118502
  "segment-renderer": {
117656
118503
  type: string;
117657
118504
  category: string;
118505
+ sourceFile: string;
117658
118506
  tier: string;
117659
118507
  family: string;
117660
118508
  description: string;
@@ -117711,7 +118559,6 @@ declare const PATTERN_REGISTRY: {
117711
118559
  onRunCodeSimulation: {
117712
118560
  types: string[];
117713
118561
  description: string;
117714
- kind: string;
117715
118562
  callbackArgs: {
117716
118563
  name: string;
117717
118564
  type: string;
@@ -117721,7 +118568,6 @@ declare const PATTERN_REGISTRY: {
117721
118568
  onRenderVisualization: {
117722
118569
  types: string[];
117723
118570
  description: string;
117724
- kind: string;
117725
118571
  callbackArgs: {
117726
118572
  name: string;
117727
118573
  type: string;
@@ -118190,15 +119036,19 @@ declare const PATTERN_REGISTRY: {
118190
119036
  keyMap: {
118191
119037
  types: string[];
118192
119038
  description: string;
119039
+ kind: string;
118193
119040
  mapValue: {
118194
119041
  types: string[];
119042
+ kind: string;
118195
119043
  };
118196
119044
  };
118197
119045
  keyUpMap: {
118198
119046
  types: string[];
118199
119047
  description: string;
119048
+ kind: string;
118200
119049
  mapValue: {
118201
119050
  types: string[];
119051
+ kind: string;
118202
119052
  };
118203
119053
  };
118204
119054
  editable: {
@@ -118464,15 +119314,19 @@ declare const PATTERN_REGISTRY: {
118464
119314
  directionEvents: {
118465
119315
  types: string[];
118466
119316
  description: string;
119317
+ kind: string;
118467
119318
  mapValue: {
118468
119319
  types: string[];
119320
+ kind: string;
118469
119321
  };
118470
119322
  };
118471
119323
  directionReleaseEvents: {
118472
119324
  types: string[];
118473
119325
  description: string;
119326
+ kind: string;
118474
119327
  mapValue: {
118475
119328
  types: string[];
119329
+ kind: string;
118476
119330
  };
118477
119331
  };
118478
119332
  directionAssets: {
@@ -120808,6 +121662,7 @@ declare const PATTERN_REGISTRY: {
120808
121662
  "math-canvas": {
120809
121663
  type: string;
120810
121664
  category: string;
121665
+ sourceFile: string;
120811
121666
  tier: string;
120812
121667
  family: string;
120813
121668
  description: string;
@@ -121422,15 +122277,19 @@ declare const PATTERN_REGISTRY: {
121422
122277
  keyMap: {
121423
122278
  types: string[];
121424
122279
  description: string;
122280
+ kind: string;
121425
122281
  mapValue: {
121426
122282
  types: string[];
122283
+ kind: string;
121427
122284
  };
121428
122285
  };
121429
122286
  keyUpMap: {
121430
122287
  types: string[];
121431
122288
  description: string;
122289
+ kind: string;
121432
122290
  mapValue: {
121433
122291
  types: string[];
122292
+ kind: string;
121434
122293
  };
121435
122294
  };
121436
122295
  isLoading: {
@@ -124782,15 +125641,19 @@ declare const PATTERN_REGISTRY: {
124782
125641
  keyMap: {
124783
125642
  types: string[];
124784
125643
  description: string;
125644
+ kind: string;
124785
125645
  mapValue: {
124786
125646
  types: string[];
125647
+ kind: string;
124787
125648
  };
124788
125649
  };
124789
125650
  keyUpMap: {
124790
125651
  types: string[];
124791
125652
  description: string;
125653
+ kind: string;
124792
125654
  mapValue: {
124793
125655
  types: string[];
125656
+ kind: string;
124794
125657
  };
124795
125658
  };
124796
125659
  editable: {
@@ -127276,6 +128139,130 @@ declare const PATTERN_REGISTRY: {
127276
128139
  };
127277
128140
  drawable: boolean;
127278
128141
  };
128142
+ gantt: {
128143
+ type: string;
128144
+ category: string;
128145
+ sourceFile: string;
128146
+ tier: string;
128147
+ family: string;
128148
+ description: string;
128149
+ capabilities: string;
128150
+ fieldsContract: string;
128151
+ suggestedFor: string[];
128152
+ typicalSize: string;
128153
+ propsSchema: {
128154
+ tasks: {
128155
+ types: string[];
128156
+ description: string;
128157
+ kind: string;
128158
+ cardinality: string;
128159
+ default: never[];
128160
+ };
128161
+ links: {
128162
+ types: string[];
128163
+ description: string;
128164
+ items: {
128165
+ types: string[];
128166
+ properties: {
128167
+ from: {
128168
+ types: string[];
128169
+ };
128170
+ to: {
128171
+ types: string[];
128172
+ };
128173
+ };
128174
+ required: string[];
128175
+ };
128176
+ default: never[];
128177
+ };
128178
+ titleField: {
128179
+ types: string[];
128180
+ description: string;
128181
+ default: string;
128182
+ };
128183
+ startField: {
128184
+ types: string[];
128185
+ description: string;
128186
+ default: string;
128187
+ };
128188
+ endField: {
128189
+ types: string[];
128190
+ description: string;
128191
+ default: string;
128192
+ };
128193
+ durationField: {
128194
+ types: string[];
128195
+ description: string;
128196
+ };
128197
+ statusField: {
128198
+ types: string[];
128199
+ description: string;
128200
+ default: string;
128201
+ };
128202
+ groupField: {
128203
+ types: string[];
128204
+ description: string;
128205
+ default: string;
128206
+ };
128207
+ rangeStart: {
128208
+ types: string[];
128209
+ description: string;
128210
+ };
128211
+ rangeEnd: {
128212
+ types: string[];
128213
+ description: string;
128214
+ };
128215
+ showToday: {
128216
+ types: string[];
128217
+ description: string;
128218
+ default: boolean;
128219
+ };
128220
+ dayWidth: {
128221
+ types: string[];
128222
+ description: string;
128223
+ default: number;
128224
+ };
128225
+ barClickEvent: {
128226
+ types: string[];
128227
+ description: string;
128228
+ kind: string;
128229
+ emitPayloadSchema: {
128230
+ name: string;
128231
+ type: string;
128232
+ required: boolean;
128233
+ }[];
128234
+ };
128235
+ className: {
128236
+ types: string[];
128237
+ description: string;
128238
+ };
128239
+ isLoading: {
128240
+ types: string[];
128241
+ description: string;
128242
+ default: boolean;
128243
+ };
128244
+ error: {
128245
+ types: string[];
128246
+ description: string;
128247
+ properties: {
128248
+ message: {
128249
+ types: string[];
128250
+ };
128251
+ name: {
128252
+ types: string[];
128253
+ };
128254
+ code: {
128255
+ types: string[];
128256
+ };
128257
+ stack: {
128258
+ types: string[];
128259
+ };
128260
+ };
128261
+ propertyRequired: string[];
128262
+ default: null;
128263
+ };
128264
+ };
128265
+ };
127279
128266
  };
127280
128267
  categories: string[];
127281
128268
  };
@@ -130350,6 +131337,8 @@ declare const INTEGRATORS_REGISTRY: {
130350
131337
  parts?: undefined;
130351
131338
  outPath?: undefined;
130352
131339
  legend?: undefined;
131340
+ layers?: undefined;
131341
+ fps?: undefined;
130353
131342
  model?: undefined;
130354
131343
  prompt?: undefined;
130355
131344
  seed?: undefined;
@@ -130386,6 +131375,8 @@ declare const INTEGRATORS_REGISTRY: {
130386
131375
  parts?: undefined;
130387
131376
  outPath?: undefined;
130388
131377
  legend?: undefined;
131378
+ layers?: undefined;
131379
+ fps?: undefined;
130389
131380
  model?: undefined;
130390
131381
  prompt?: undefined;
130391
131382
  seed?: undefined;
@@ -130422,6 +131413,8 @@ declare const INTEGRATORS_REGISTRY: {
130422
131413
  parts?: undefined;
130423
131414
  outPath?: undefined;
130424
131415
  legend?: undefined;
131416
+ layers?: undefined;
131417
+ fps?: undefined;
130425
131418
  model?: undefined;
130426
131419
  prompt?: undefined;
130427
131420
  seed?: undefined;
@@ -130480,6 +131473,8 @@ declare const INTEGRATORS_REGISTRY: {
130480
131473
  parts?: undefined;
130481
131474
  outPath?: undefined;
130482
131475
  legend?: undefined;
131476
+ layers?: undefined;
131477
+ fps?: undefined;
130483
131478
  model?: undefined;
130484
131479
  prompt?: undefined;
130485
131480
  seed?: undefined;
@@ -130516,6 +131511,8 @@ declare const INTEGRATORS_REGISTRY: {
130516
131511
  parts?: undefined;
130517
131512
  outPath?: undefined;
130518
131513
  legend?: undefined;
131514
+ layers?: undefined;
131515
+ fps?: undefined;
130519
131516
  model?: undefined;
130520
131517
  prompt?: undefined;
130521
131518
  seed?: undefined;
@@ -130552,6 +131549,8 @@ declare const INTEGRATORS_REGISTRY: {
130552
131549
  resolved?: undefined;
130553
131550
  outPath?: undefined;
130554
131551
  legend?: undefined;
131552
+ layers?: undefined;
131553
+ fps?: undefined;
130555
131554
  model?: undefined;
130556
131555
  prompt?: undefined;
130557
131556
  seed?: undefined;
@@ -130603,6 +131602,158 @@ declare const INTEGRATORS_REGISTRY: {
130603
131602
  resolved?: undefined;
130604
131603
  rigPath?: undefined;
130605
131604
  parts?: undefined;
131605
+ layers?: undefined;
131606
+ fps?: undefined;
131607
+ model?: undefined;
131608
+ prompt?: undefined;
131609
+ seed?: undefined;
131610
+ size?: undefined;
131611
+ sourcePath?: undefined;
131612
+ elapsedMs?: undefined;
131613
+ };
131614
+ } | {
131615
+ name: string;
131616
+ description: string;
131617
+ params: {
131618
+ name: string;
131619
+ type: string;
131620
+ required: boolean;
131621
+ description: string;
131622
+ }[];
131623
+ responseShape: {
131624
+ layers: {
131625
+ type: string;
131626
+ items: {
131627
+ type: string;
131628
+ properties: {
131629
+ name: {
131630
+ type: string;
131631
+ required: boolean;
131632
+ };
131633
+ path: {
131634
+ type: string;
131635
+ required: boolean;
131636
+ };
131637
+ x: {
131638
+ type: string;
131639
+ required: boolean;
131640
+ };
131641
+ y: {
131642
+ type: string;
131643
+ required: boolean;
131644
+ };
131645
+ w: {
131646
+ type: string;
131647
+ required: boolean;
131648
+ };
131649
+ h: {
131650
+ type: string;
131651
+ required: boolean;
131652
+ };
131653
+ z: {
131654
+ type: string;
131655
+ required: boolean;
131656
+ };
131657
+ pivot: {
131658
+ type: string;
131659
+ required: boolean;
131660
+ };
131661
+ isRest: {
131662
+ type: string;
131663
+ required: boolean;
131664
+ };
131665
+ };
131666
+ };
131667
+ };
131668
+ ok?: undefined;
131669
+ bundlePath?: undefined;
131670
+ boneCount?: undefined;
131671
+ vertexCount?: undefined;
131672
+ triangleCount?: undefined;
131673
+ clips?: undefined;
131674
+ outdir?: undefined;
131675
+ frames?: undefined;
131676
+ framePaths?: undefined;
131677
+ sheet?: undefined;
131678
+ gif?: undefined;
131679
+ atlas?: undefined;
131680
+ presets?: undefined;
131681
+ rig?: undefined;
131682
+ resolved?: undefined;
131683
+ rigPath?: undefined;
131684
+ parts?: undefined;
131685
+ outPath?: undefined;
131686
+ legend?: undefined;
131687
+ fps?: undefined;
131688
+ model?: undefined;
131689
+ prompt?: undefined;
131690
+ seed?: undefined;
131691
+ size?: undefined;
131692
+ sourcePath?: undefined;
131693
+ elapsedMs?: undefined;
131694
+ };
131695
+ } | {
131696
+ name: string;
131697
+ description: string;
131698
+ params: ({
131699
+ name: string;
131700
+ type: string;
131701
+ required: boolean;
131702
+ description: string;
131703
+ mapValue?: undefined;
131704
+ } | {
131705
+ name: string;
131706
+ type: string;
131707
+ required: boolean;
131708
+ description: string;
131709
+ mapValue: {
131710
+ type: string;
131711
+ };
131712
+ })[];
131713
+ responseShape: {
131714
+ fps: string;
131715
+ frames: {
131716
+ type: string;
131717
+ items: {
131718
+ type: string;
131719
+ mapValue: {
131720
+ type: string;
131721
+ properties: {
131722
+ angle: {
131723
+ type: string;
131724
+ required: boolean;
131725
+ };
131726
+ bx: {
131727
+ type: string;
131728
+ required: boolean;
131729
+ };
131730
+ by: {
131731
+ type: string;
131732
+ required: boolean;
131733
+ };
131734
+ };
131735
+ };
131736
+ };
131737
+ };
131738
+ ok?: undefined;
131739
+ bundlePath?: undefined;
131740
+ boneCount?: undefined;
131741
+ vertexCount?: undefined;
131742
+ triangleCount?: undefined;
131743
+ clips?: undefined;
131744
+ outdir?: undefined;
131745
+ framePaths?: undefined;
131746
+ sheet?: undefined;
131747
+ gif?: undefined;
131748
+ atlas?: undefined;
131749
+ presets?: undefined;
131750
+ rig?: undefined;
131751
+ resolved?: undefined;
131752
+ rigPath?: undefined;
131753
+ parts?: undefined;
131754
+ outPath?: undefined;
131755
+ legend?: undefined;
131756
+ layers?: undefined;
130606
131757
  model?: undefined;
130607
131758
  prompt?: undefined;
130608
131759
  seed?: undefined;
@@ -130645,6 +131796,8 @@ declare const INTEGRATORS_REGISTRY: {
130645
131796
  rigPath?: undefined;
130646
131797
  parts?: undefined;
130647
131798
  legend?: undefined;
131799
+ layers?: undefined;
131800
+ fps?: undefined;
130648
131801
  };
130649
131802
  })[];
130650
131803
  };
@@ -132097,6 +133250,11 @@ declare const COMPONENT_MAPPING: {
132097
133250
  importPath: string;
132098
133251
  category: string;
132099
133252
  };
133253
+ gantt: {
133254
+ component: string;
133255
+ importPath: string;
133256
+ category: string;
133257
+ };
132100
133258
  };
132101
133259
  };
132102
133260
  declare const EVENT_CONTRACTS: {