@almadar/core 10.91.0 → 10.92.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/builders.d.ts +3 -3
- package/dist/builders.js +2 -1
- package/dist/builders.js.map +1 -1
- package/dist/{effect-Bt8vKHwd.d.ts → effect-DGa2ixo7.d.ts} +5 -1
- package/dist/{entityAccess-BdDX85rM.d.ts → entityAccess-CXennIKj.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory/index.js +212 -31
- package/dist/factory/index.js.map +1 -1
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +6 -2
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/{index-rOBf1Oag.d.ts → index-BFortVj8.d.ts} +19 -10
- package/dist/index.d.ts +11 -72
- package/dist/index.js +401 -134
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +791 -78
- package/dist/patterns/index.js +351 -35
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +136 -1
- package/dist/patterns/patterns-registry.json +213 -32
- package/dist/patterns/registry.json +213 -32
- package/dist/patterns/services-registry.json +136 -1
- package/dist/{schema-ovDTDQz9.d.ts → schema-DIL07Bmv.d.ts} +25 -25
- package/dist/state-machine/index.js +19 -4
- package/dist/state-machine/index.js.map +1 -1
- package/dist/{trait-C3e3btfn.d.ts → trait-DHb48lyx.d.ts} +10 -1
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +30 -2
- package/dist/types/index.js.map +1 -1
- package/dist/{types-rh0naR6C.d.ts → types-F5EPwMor.d.ts} +2 -2
- package/package.json +1 -1
package/dist/patterns/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { A as AnyPatternConfig, i as RenderBinding, F as FieldValue, bl as PatternType } from '../effect-
|
|
2
|
-
export { be as PATTERN_TYPES, bi as PatternConfig, bj as PatternProps, bk as PatternPropsMap, dj as isValidPatternType } from '../effect-
|
|
1
|
+
import { A as AnyPatternConfig, i as RenderBinding, F as FieldValue, bl as PatternType } from '../effect-DGa2ixo7.js';
|
|
2
|
+
export { be as PATTERN_TYPES, bi as PatternConfig, bj as PatternProps, bk as PatternPropsMap, dj as isValidPatternType } from '../effect-DGa2ixo7.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-
|
|
8
|
+
var exportedAt$3 = "2026-09-12T18:14:02.248Z";
|
|
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",
|
|
@@ -9790,6 +9832,7 @@ var patterns = {
|
|
|
9790
9832
|
"repeatable-form-section": {
|
|
9791
9833
|
type: "repeatable-form-section",
|
|
9792
9834
|
category: "form",
|
|
9835
|
+
sourceFile: "components/core/molecules/RepeatableFormSection.tsx",
|
|
9793
9836
|
tier: "molecules",
|
|
9794
9837
|
family: "core",
|
|
9795
9838
|
description: "RepeatableFormSection — a form section that repeats a fixed group of fields, letting the user add or remove entries.",
|
|
@@ -9853,7 +9896,6 @@ var patterns = {
|
|
|
9853
9896
|
],
|
|
9854
9897
|
description: "Render function for each item. In .lolo: renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field.",
|
|
9855
9898
|
required: true,
|
|
9856
|
-
kind: "callback",
|
|
9857
9899
|
callbackArgs: [
|
|
9858
9900
|
{
|
|
9859
9901
|
name: "item",
|
|
@@ -17475,6 +17517,7 @@ var patterns = {
|
|
|
17475
17517
|
"state-machine-view": {
|
|
17476
17518
|
type: "state-machine-view",
|
|
17477
17519
|
category: "display",
|
|
17520
|
+
sourceFile: "components/core/organisms/StateMachineView.tsx",
|
|
17478
17521
|
tier: "organisms",
|
|
17479
17522
|
family: "core",
|
|
17480
17523
|
description: "StateMachineView component",
|
|
@@ -17542,7 +17585,6 @@ var patterns = {
|
|
|
17542
17585
|
"function"
|
|
17543
17586
|
],
|
|
17544
17587
|
description: "Custom state node renderer — when provided, replaces the default circle nodes",
|
|
17545
|
-
kind: "callback",
|
|
17546
17588
|
callbackArgs: [
|
|
17547
17589
|
{
|
|
17548
17590
|
name: "state",
|
|
@@ -17927,6 +17969,7 @@ var patterns = {
|
|
|
17927
17969
|
"calendar-grid": {
|
|
17928
17970
|
type: "calendar-grid",
|
|
17929
17971
|
category: "display",
|
|
17972
|
+
sourceFile: "components/core/molecules/CalendarGrid.tsx",
|
|
17930
17973
|
tier: "molecules",
|
|
17931
17974
|
family: "core",
|
|
17932
17975
|
description: "CalendarGrid component",
|
|
@@ -18065,7 +18108,8 @@ var patterns = {
|
|
|
18065
18108
|
"object"
|
|
18066
18109
|
],
|
|
18067
18110
|
description: "Additional payload for long-press events",
|
|
18068
|
-
payloadFor: "longPressEvent"
|
|
18111
|
+
payloadFor: "longPressEvent",
|
|
18112
|
+
eventPayloadBrand: true
|
|
18069
18113
|
},
|
|
18070
18114
|
swipeLeftEvent: {
|
|
18071
18115
|
types: [
|
|
@@ -18129,7 +18173,6 @@ var patterns = {
|
|
|
18129
18173
|
"function"
|
|
18130
18174
|
],
|
|
18131
18175
|
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
18176
|
callbackArgs: [
|
|
18134
18177
|
{
|
|
18135
18178
|
name: "item",
|
|
@@ -18147,7 +18190,6 @@ var patterns = {
|
|
|
18147
18190
|
"function"
|
|
18148
18191
|
],
|
|
18149
18192
|
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
18193
|
callbackArgs: [
|
|
18152
18194
|
{
|
|
18153
18195
|
name: "item",
|
|
@@ -18694,6 +18736,7 @@ var patterns = {
|
|
|
18694
18736
|
"progress-dots": {
|
|
18695
18737
|
type: "progress-dots",
|
|
18696
18738
|
category: "component",
|
|
18739
|
+
sourceFile: "components/core/molecules/ProgressDots.tsx",
|
|
18697
18740
|
tier: "molecules",
|
|
18698
18741
|
family: "core",
|
|
18699
18742
|
description: "ProgressDots component",
|
|
@@ -18723,7 +18766,6 @@ var patterns = {
|
|
|
18723
18766
|
"function"
|
|
18724
18767
|
],
|
|
18725
18768
|
description: "Custom state resolver per dot index",
|
|
18726
|
-
kind: "callback",
|
|
18727
18769
|
callbackArgs: [
|
|
18728
18770
|
{
|
|
18729
18771
|
name: "index",
|
|
@@ -18773,6 +18815,7 @@ var patterns = {
|
|
|
18773
18815
|
family: "core",
|
|
18774
18816
|
description: "DataGrid — structured records grid rendering rows over configurable columns, with sort, select, and drag-reorder.",
|
|
18775
18817
|
capabilities: "admin table, records grid, user list, CRUD list, manage-records view, spreadsheet-style data grid, sortable columns",
|
|
18818
|
+
fieldsContract: "display",
|
|
18776
18819
|
suggestedFor: [
|
|
18777
18820
|
"data",
|
|
18778
18821
|
"grid",
|
|
@@ -19179,7 +19222,6 @@ var patterns = {
|
|
|
19179
19222
|
"function"
|
|
19180
19223
|
],
|
|
19181
19224
|
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
19225
|
callbackArgs: [
|
|
19184
19226
|
{
|
|
19185
19227
|
name: "item",
|
|
@@ -19197,7 +19239,6 @@ var patterns = {
|
|
|
19197
19239
|
"function"
|
|
19198
19240
|
],
|
|
19199
19241
|
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
19242
|
callbackArgs: [
|
|
19202
19243
|
{
|
|
19203
19244
|
name: "item",
|
|
@@ -19230,6 +19271,48 @@ var patterns = {
|
|
|
19230
19271
|
"card-rows"
|
|
19231
19272
|
],
|
|
19232
19273
|
"default": "dense"
|
|
19274
|
+
},
|
|
19275
|
+
relationsData: {
|
|
19276
|
+
types: [
|
|
19277
|
+
"object"
|
|
19278
|
+
],
|
|
19279
|
+
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.",
|
|
19280
|
+
mapValue: {
|
|
19281
|
+
types: [
|
|
19282
|
+
"array"
|
|
19283
|
+
],
|
|
19284
|
+
items: {
|
|
19285
|
+
types: [
|
|
19286
|
+
"object"
|
|
19287
|
+
],
|
|
19288
|
+
properties: {
|
|
19289
|
+
value: {
|
|
19290
|
+
types: [
|
|
19291
|
+
"string"
|
|
19292
|
+
]
|
|
19293
|
+
},
|
|
19294
|
+
label: {
|
|
19295
|
+
types: [
|
|
19296
|
+
"string"
|
|
19297
|
+
]
|
|
19298
|
+
},
|
|
19299
|
+
description: {
|
|
19300
|
+
types: [
|
|
19301
|
+
"string"
|
|
19302
|
+
]
|
|
19303
|
+
},
|
|
19304
|
+
disabled: {
|
|
19305
|
+
types: [
|
|
19306
|
+
"boolean"
|
|
19307
|
+
]
|
|
19308
|
+
}
|
|
19309
|
+
},
|
|
19310
|
+
required: [
|
|
19311
|
+
"value",
|
|
19312
|
+
"label"
|
|
19313
|
+
]
|
|
19314
|
+
}
|
|
19315
|
+
}
|
|
19233
19316
|
}
|
|
19234
19317
|
}
|
|
19235
19318
|
},
|
|
@@ -19240,6 +19323,7 @@ var patterns = {
|
|
|
19240
19323
|
tier: "molecules",
|
|
19241
19324
|
family: "core",
|
|
19242
19325
|
description: "DataList component",
|
|
19326
|
+
fieldsContract: "display",
|
|
19243
19327
|
suggestedFor: [
|
|
19244
19328
|
"data",
|
|
19245
19329
|
"list",
|
|
@@ -19723,7 +19807,6 @@ var patterns = {
|
|
|
19723
19807
|
"function"
|
|
19724
19808
|
],
|
|
19725
19809
|
description: "Render prop for custom per-item content. When provided, `fields` and `itemActions` are ignored.",
|
|
19726
|
-
kind: "callback",
|
|
19727
19810
|
callbackArgs: [
|
|
19728
19811
|
{
|
|
19729
19812
|
name: "item",
|
|
@@ -19741,7 +19824,6 @@ var patterns = {
|
|
|
19741
19824
|
"function"
|
|
19742
19825
|
],
|
|
19743
19826
|
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
19827
|
callbackArgs: [
|
|
19746
19828
|
{
|
|
19747
19829
|
name: "item",
|
|
@@ -19790,6 +19872,48 @@ var patterns = {
|
|
|
19790
19872
|
"card-rows"
|
|
19791
19873
|
],
|
|
19792
19874
|
"default": "dense"
|
|
19875
|
+
},
|
|
19876
|
+
relationsData: {
|
|
19877
|
+
types: [
|
|
19878
|
+
"object"
|
|
19879
|
+
],
|
|
19880
|
+
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.",
|
|
19881
|
+
mapValue: {
|
|
19882
|
+
types: [
|
|
19883
|
+
"array"
|
|
19884
|
+
],
|
|
19885
|
+
items: {
|
|
19886
|
+
types: [
|
|
19887
|
+
"object"
|
|
19888
|
+
],
|
|
19889
|
+
properties: {
|
|
19890
|
+
value: {
|
|
19891
|
+
types: [
|
|
19892
|
+
"string"
|
|
19893
|
+
]
|
|
19894
|
+
},
|
|
19895
|
+
label: {
|
|
19896
|
+
types: [
|
|
19897
|
+
"string"
|
|
19898
|
+
]
|
|
19899
|
+
},
|
|
19900
|
+
description: {
|
|
19901
|
+
types: [
|
|
19902
|
+
"string"
|
|
19903
|
+
]
|
|
19904
|
+
},
|
|
19905
|
+
disabled: {
|
|
19906
|
+
types: [
|
|
19907
|
+
"boolean"
|
|
19908
|
+
]
|
|
19909
|
+
}
|
|
19910
|
+
},
|
|
19911
|
+
required: [
|
|
19912
|
+
"value",
|
|
19913
|
+
"label"
|
|
19914
|
+
]
|
|
19915
|
+
}
|
|
19916
|
+
}
|
|
19793
19917
|
}
|
|
19794
19918
|
}
|
|
19795
19919
|
},
|
|
@@ -20102,6 +20226,7 @@ var patterns = {
|
|
|
20102
20226
|
"range-slider": {
|
|
20103
20227
|
type: "range-slider",
|
|
20104
20228
|
category: "component",
|
|
20229
|
+
sourceFile: "components/core/atoms/RangeSlider.tsx",
|
|
20105
20230
|
tier: "atoms",
|
|
20106
20231
|
family: "core",
|
|
20107
20232
|
description: "RangeSlider component",
|
|
@@ -20204,7 +20329,8 @@ var patterns = {
|
|
|
20204
20329
|
"object"
|
|
20205
20330
|
],
|
|
20206
20331
|
description: "Payload to include with the action event",
|
|
20207
|
-
payloadFor: "action"
|
|
20332
|
+
payloadFor: "action",
|
|
20333
|
+
eventPayloadBrand: true
|
|
20208
20334
|
},
|
|
20209
20335
|
onChange: {
|
|
20210
20336
|
types: [
|
|
@@ -20224,7 +20350,6 @@ var patterns = {
|
|
|
20224
20350
|
"function"
|
|
20225
20351
|
],
|
|
20226
20352
|
description: "Format function for tooltip display",
|
|
20227
|
-
kind: "callback",
|
|
20228
20353
|
callbackArgs: [
|
|
20229
20354
|
{
|
|
20230
20355
|
name: "value",
|
|
@@ -21077,7 +21202,6 @@ var patterns = {
|
|
|
21077
21202
|
"function"
|
|
21078
21203
|
],
|
|
21079
21204
|
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
21205
|
callbackArgs: [
|
|
21082
21206
|
{
|
|
21083
21207
|
name: "item",
|
|
@@ -21117,7 +21241,6 @@ var patterns = {
|
|
|
21117
21241
|
"function"
|
|
21118
21242
|
],
|
|
21119
21243
|
description: "Children-as-function fallback for renderItem (compiler compatibility)",
|
|
21120
|
-
kind: "callback",
|
|
21121
21244
|
callbackArgs: [
|
|
21122
21245
|
{
|
|
21123
21246
|
name: "item",
|
|
@@ -21275,6 +21398,7 @@ var patterns = {
|
|
|
21275
21398
|
"sortable-list": {
|
|
21276
21399
|
type: "sortable-list",
|
|
21277
21400
|
category: "display",
|
|
21401
|
+
sourceFile: "components/core/molecules/SortableList.tsx",
|
|
21278
21402
|
tier: "molecules",
|
|
21279
21403
|
family: "core",
|
|
21280
21404
|
description: "SortableList — a drag-and-drop reorderable list of items.",
|
|
@@ -21302,7 +21426,6 @@ var patterns = {
|
|
|
21302
21426
|
],
|
|
21303
21427
|
description: "Render function for each item. In .lolo: renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field.",
|
|
21304
21428
|
required: true,
|
|
21305
|
-
kind: "callback",
|
|
21306
21429
|
callbackArgs: [
|
|
21307
21430
|
{
|
|
21308
21431
|
name: "item",
|
|
@@ -21346,7 +21469,8 @@ var patterns = {
|
|
|
21346
21469
|
"object"
|
|
21347
21470
|
],
|
|
21348
21471
|
description: "reorderPayload prop",
|
|
21349
|
-
payloadFor: "reorderEvent"
|
|
21472
|
+
payloadFor: "reorderEvent",
|
|
21473
|
+
eventPayloadBrand: true
|
|
21350
21474
|
},
|
|
21351
21475
|
dragHandlePosition: {
|
|
21352
21476
|
types: [
|
|
@@ -30839,6 +30963,7 @@ var patterns = {
|
|
|
30839
30963
|
"doc-search": {
|
|
30840
30964
|
type: "doc-search",
|
|
30841
30965
|
category: "filter",
|
|
30966
|
+
sourceFile: "components/core/molecules/DocSearch.tsx",
|
|
30842
30967
|
tier: "molecules",
|
|
30843
30968
|
family: "core",
|
|
30844
30969
|
description: "DocSearch component",
|
|
@@ -30860,7 +30985,6 @@ var patterns = {
|
|
|
30860
30985
|
"function"
|
|
30861
30986
|
],
|
|
30862
30987
|
description: "Callback invoked with the search query, returns results",
|
|
30863
|
-
kind: "callback",
|
|
30864
30988
|
callbackArgs: [
|
|
30865
30989
|
{
|
|
30866
30990
|
name: "query",
|
|
@@ -37052,6 +37176,7 @@ var patterns = {
|
|
|
37052
37176
|
family: "core",
|
|
37053
37177
|
description: "TableView — sortable, selectable data table rendering rows over configurable columns, with inline row actions and grouping.",
|
|
37054
37178
|
capabilities: "admin console table, records list, CRUD data table, user list, manage-users grid, sortable columns, row selection with bulk actions, grouped list view",
|
|
37179
|
+
fieldsContract: "display",
|
|
37055
37180
|
suggestedFor: [
|
|
37056
37181
|
"table",
|
|
37057
37182
|
"view",
|
|
@@ -37508,7 +37633,6 @@ var patterns = {
|
|
|
37508
37633
|
"function"
|
|
37509
37634
|
],
|
|
37510
37635
|
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
37636
|
callbackArgs: [
|
|
37513
37637
|
{
|
|
37514
37638
|
name: "item",
|
|
@@ -37526,7 +37650,6 @@ var patterns = {
|
|
|
37526
37650
|
"function"
|
|
37527
37651
|
],
|
|
37528
37652
|
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
37653
|
callbackArgs: [
|
|
37531
37654
|
{
|
|
37532
37655
|
name: "item",
|
|
@@ -37552,6 +37675,48 @@ var patterns = {
|
|
|
37552
37675
|
"bordered"
|
|
37553
37676
|
],
|
|
37554
37677
|
"default": "dense"
|
|
37678
|
+
},
|
|
37679
|
+
relationsData: {
|
|
37680
|
+
types: [
|
|
37681
|
+
"object"
|
|
37682
|
+
],
|
|
37683
|
+
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.",
|
|
37684
|
+
mapValue: {
|
|
37685
|
+
types: [
|
|
37686
|
+
"array"
|
|
37687
|
+
],
|
|
37688
|
+
items: {
|
|
37689
|
+
types: [
|
|
37690
|
+
"object"
|
|
37691
|
+
],
|
|
37692
|
+
properties: {
|
|
37693
|
+
value: {
|
|
37694
|
+
types: [
|
|
37695
|
+
"string"
|
|
37696
|
+
]
|
|
37697
|
+
},
|
|
37698
|
+
label: {
|
|
37699
|
+
types: [
|
|
37700
|
+
"string"
|
|
37701
|
+
]
|
|
37702
|
+
},
|
|
37703
|
+
description: {
|
|
37704
|
+
types: [
|
|
37705
|
+
"string"
|
|
37706
|
+
]
|
|
37707
|
+
},
|
|
37708
|
+
disabled: {
|
|
37709
|
+
types: [
|
|
37710
|
+
"boolean"
|
|
37711
|
+
]
|
|
37712
|
+
}
|
|
37713
|
+
},
|
|
37714
|
+
required: [
|
|
37715
|
+
"value",
|
|
37716
|
+
"label"
|
|
37717
|
+
]
|
|
37718
|
+
}
|
|
37719
|
+
}
|
|
37555
37720
|
}
|
|
37556
37721
|
}
|
|
37557
37722
|
},
|
|
@@ -38133,6 +38298,7 @@ var patterns = {
|
|
|
38133
38298
|
"code-runner-panel": {
|
|
38134
38299
|
type: "code-runner-panel",
|
|
38135
38300
|
category: "display",
|
|
38301
|
+
sourceFile: "components/core/organisms/CodeRunnerPanel.tsx",
|
|
38136
38302
|
tier: "organisms",
|
|
38137
38303
|
family: "core",
|
|
38138
38304
|
description: "CodeRunnerPanel component",
|
|
@@ -38170,7 +38336,6 @@ var patterns = {
|
|
|
38170
38336
|
"function"
|
|
38171
38337
|
],
|
|
38172
38338
|
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
38339
|
callbackArgs: [
|
|
38175
38340
|
{
|
|
38176
38341
|
name: "code",
|
|
@@ -38197,6 +38362,7 @@ var patterns = {
|
|
|
38197
38362
|
"segment-renderer": {
|
|
38198
38363
|
type: "segment-renderer",
|
|
38199
38364
|
category: "display",
|
|
38365
|
+
sourceFile: "components/core/organisms/SegmentRenderer.tsx",
|
|
38200
38366
|
tier: "organisms",
|
|
38201
38367
|
family: "core",
|
|
38202
38368
|
description: "SegmentRenderer component",
|
|
@@ -38288,7 +38454,6 @@ var patterns = {
|
|
|
38288
38454
|
"function"
|
|
38289
38455
|
],
|
|
38290
38456
|
description: "Simulate executing runnable code blocks. Omit to render runnable blocks as read-only. Real execution is a future track.",
|
|
38291
|
-
kind: "callback",
|
|
38292
38457
|
callbackArgs: [
|
|
38293
38458
|
{
|
|
38294
38459
|
name: "code",
|
|
@@ -38306,7 +38471,6 @@ var patterns = {
|
|
|
38306
38471
|
"function"
|
|
38307
38472
|
],
|
|
38308
38473
|
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
38474
|
callbackArgs: [
|
|
38311
38475
|
{
|
|
38312
38476
|
name: "type",
|
|
@@ -39107,10 +39271,12 @@ var patterns = {
|
|
|
39107
39271
|
"object"
|
|
39108
39272
|
],
|
|
39109
39273
|
description: "Maps a keydown `e.code` → the board's SEMANTIC event (device-agnostic input).",
|
|
39274
|
+
kind: "event-map",
|
|
39110
39275
|
mapValue: {
|
|
39111
39276
|
types: [
|
|
39112
39277
|
"string"
|
|
39113
|
-
]
|
|
39278
|
+
],
|
|
39279
|
+
kind: "event"
|
|
39114
39280
|
}
|
|
39115
39281
|
},
|
|
39116
39282
|
keyUpMap: {
|
|
@@ -39118,10 +39284,12 @@ var patterns = {
|
|
|
39118
39284
|
"object"
|
|
39119
39285
|
],
|
|
39120
39286
|
description: "Maps a keyup `e.code` → the board's SEMANTIC event.",
|
|
39287
|
+
kind: "event-map",
|
|
39121
39288
|
mapValue: {
|
|
39122
39289
|
types: [
|
|
39123
39290
|
"string"
|
|
39124
|
-
]
|
|
39291
|
+
],
|
|
39292
|
+
kind: "event"
|
|
39125
39293
|
}
|
|
39126
39294
|
},
|
|
39127
39295
|
editable: {
|
|
@@ -39582,10 +39750,12 @@ var patterns = {
|
|
|
39582
39750
|
"object"
|
|
39583
39751
|
],
|
|
39584
39752
|
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.",
|
|
39753
|
+
kind: "event-map",
|
|
39585
39754
|
mapValue: {
|
|
39586
39755
|
types: [
|
|
39587
39756
|
"string"
|
|
39588
|
-
]
|
|
39757
|
+
],
|
|
39758
|
+
kind: "event"
|
|
39589
39759
|
}
|
|
39590
39760
|
},
|
|
39591
39761
|
directionReleaseEvents: {
|
|
@@ -39593,10 +39763,12 @@ var patterns = {
|
|
|
39593
39763
|
"object"
|
|
39594
39764
|
],
|
|
39595
39765
|
description: "Per-direction RELEASE → semantic event, e.g. `{ left: \"STOP\", right: \"STOP\" }`. Omit a direction to ignore its release.",
|
|
39766
|
+
kind: "event-map",
|
|
39596
39767
|
mapValue: {
|
|
39597
39768
|
types: [
|
|
39598
39769
|
"string"
|
|
39599
|
-
]
|
|
39770
|
+
],
|
|
39771
|
+
kind: "event"
|
|
39600
39772
|
}
|
|
39601
39773
|
},
|
|
39602
39774
|
directionAssets: {
|
|
@@ -43557,6 +43729,7 @@ var patterns = {
|
|
|
43557
43729
|
"math-canvas": {
|
|
43558
43730
|
type: "math-canvas",
|
|
43559
43731
|
category: "learning",
|
|
43732
|
+
sourceFile: "components/learning/molecules/MathCanvas.tsx",
|
|
43560
43733
|
tier: "molecules",
|
|
43561
43734
|
family: "learning",
|
|
43562
43735
|
description: "MathCanvas component",
|
|
@@ -44597,10 +44770,12 @@ var patterns = {
|
|
|
44597
44770
|
"object"
|
|
44598
44771
|
],
|
|
44599
44772
|
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
|
+
kind: "event-map",
|
|
44600
44774
|
mapValue: {
|
|
44601
44775
|
types: [
|
|
44602
44776
|
"string"
|
|
44603
|
-
]
|
|
44777
|
+
],
|
|
44778
|
+
kind: "event"
|
|
44604
44779
|
}
|
|
44605
44780
|
},
|
|
44606
44781
|
keyUpMap: {
|
|
@@ -44608,10 +44783,12 @@ var patterns = {
|
|
|
44608
44783
|
"object"
|
|
44609
44784
|
],
|
|
44610
44785
|
description: "Maps a keyup `e.code` → the board's SEMANTIC event.",
|
|
44786
|
+
kind: "event-map",
|
|
44611
44787
|
mapValue: {
|
|
44612
44788
|
types: [
|
|
44613
44789
|
"string"
|
|
44614
|
-
]
|
|
44790
|
+
],
|
|
44791
|
+
kind: "event"
|
|
44615
44792
|
}
|
|
44616
44793
|
},
|
|
44617
44794
|
isLoading: {
|
|
@@ -50383,10 +50560,12 @@ var patterns = {
|
|
|
50383
50560
|
"object"
|
|
50384
50561
|
],
|
|
50385
50562
|
description: "keyMap prop",
|
|
50563
|
+
kind: "event-map",
|
|
50386
50564
|
mapValue: {
|
|
50387
50565
|
types: [
|
|
50388
50566
|
"string"
|
|
50389
|
-
]
|
|
50567
|
+
],
|
|
50568
|
+
kind: "event"
|
|
50390
50569
|
}
|
|
50391
50570
|
},
|
|
50392
50571
|
keyUpMap: {
|
|
@@ -50394,10 +50573,12 @@ var patterns = {
|
|
|
50394
50573
|
"object"
|
|
50395
50574
|
],
|
|
50396
50575
|
description: "keyUpMap prop",
|
|
50576
|
+
kind: "event-map",
|
|
50397
50577
|
mapValue: {
|
|
50398
50578
|
types: [
|
|
50399
50579
|
"string"
|
|
50400
|
-
]
|
|
50580
|
+
],
|
|
50581
|
+
kind: "event"
|
|
50401
50582
|
}
|
|
50402
50583
|
},
|
|
50403
50584
|
editable: {
|
|
@@ -54496,7 +54677,7 @@ var patternsRegistry = {
|
|
|
54496
54677
|
};
|
|
54497
54678
|
|
|
54498
54679
|
var version$2 = "1.0.0";
|
|
54499
|
-
var exportedAt$2 = "2026-09-
|
|
54680
|
+
var exportedAt$2 = "2026-09-12T17:27:32.966Z";
|
|
54500
54681
|
var integrators = {
|
|
54501
54682
|
github: {
|
|
54502
54683
|
name: "github",
|
|
@@ -58292,6 +58473,141 @@ var integrators = {
|
|
|
58292
58473
|
}
|
|
58293
58474
|
}
|
|
58294
58475
|
},
|
|
58476
|
+
{
|
|
58477
|
+
name: "buildLayers",
|
|
58478
|
+
description: "Build per-part cutout layer images (name, box, z-order, pivot) from a source image and rig.",
|
|
58479
|
+
params: [
|
|
58480
|
+
{
|
|
58481
|
+
name: "imagePath",
|
|
58482
|
+
type: "string",
|
|
58483
|
+
required: true,
|
|
58484
|
+
description: "Path to the source image."
|
|
58485
|
+
},
|
|
58486
|
+
{
|
|
58487
|
+
name: "rig",
|
|
58488
|
+
type: "object",
|
|
58489
|
+
required: true,
|
|
58490
|
+
description: "The rig definition (parts, boxes, pivots, …) as JSON."
|
|
58491
|
+
},
|
|
58492
|
+
{
|
|
58493
|
+
name: "outDir",
|
|
58494
|
+
type: "string",
|
|
58495
|
+
required: true,
|
|
58496
|
+
description: "Output directory for the layer images."
|
|
58497
|
+
}
|
|
58498
|
+
],
|
|
58499
|
+
responseShape: {
|
|
58500
|
+
layers: {
|
|
58501
|
+
type: "array",
|
|
58502
|
+
items: {
|
|
58503
|
+
type: "object",
|
|
58504
|
+
properties: {
|
|
58505
|
+
name: {
|
|
58506
|
+
type: "string",
|
|
58507
|
+
required: true
|
|
58508
|
+
},
|
|
58509
|
+
path: {
|
|
58510
|
+
type: "string",
|
|
58511
|
+
required: true
|
|
58512
|
+
},
|
|
58513
|
+
x: {
|
|
58514
|
+
type: "number",
|
|
58515
|
+
required: true
|
|
58516
|
+
},
|
|
58517
|
+
y: {
|
|
58518
|
+
type: "number",
|
|
58519
|
+
required: true
|
|
58520
|
+
},
|
|
58521
|
+
w: {
|
|
58522
|
+
type: "number",
|
|
58523
|
+
required: true
|
|
58524
|
+
},
|
|
58525
|
+
h: {
|
|
58526
|
+
type: "number",
|
|
58527
|
+
required: true
|
|
58528
|
+
},
|
|
58529
|
+
z: {
|
|
58530
|
+
type: "number",
|
|
58531
|
+
required: true
|
|
58532
|
+
},
|
|
58533
|
+
pivot: {
|
|
58534
|
+
type: "[number, number]",
|
|
58535
|
+
required: true
|
|
58536
|
+
},
|
|
58537
|
+
isRest: {
|
|
58538
|
+
type: "boolean",
|
|
58539
|
+
required: true
|
|
58540
|
+
}
|
|
58541
|
+
}
|
|
58542
|
+
}
|
|
58543
|
+
}
|
|
58544
|
+
}
|
|
58545
|
+
},
|
|
58546
|
+
{
|
|
58547
|
+
name: "pose",
|
|
58548
|
+
description: "Sample a pose/animation preset into per-frame, per-part transforms for a rig.",
|
|
58549
|
+
params: [
|
|
58550
|
+
{
|
|
58551
|
+
name: "imagePath",
|
|
58552
|
+
type: "string",
|
|
58553
|
+
required: true,
|
|
58554
|
+
description: "Path to the source image."
|
|
58555
|
+
},
|
|
58556
|
+
{
|
|
58557
|
+
name: "rig",
|
|
58558
|
+
type: "object",
|
|
58559
|
+
required: true,
|
|
58560
|
+
description: "The rig definition (parts, boxes, pivots, …) as JSON."
|
|
58561
|
+
},
|
|
58562
|
+
{
|
|
58563
|
+
name: "roles",
|
|
58564
|
+
type: "object",
|
|
58565
|
+
required: true,
|
|
58566
|
+
description: "Map of part name to preset bone role.",
|
|
58567
|
+
mapValue: {
|
|
58568
|
+
type: "string"
|
|
58569
|
+
}
|
|
58570
|
+
},
|
|
58571
|
+
{
|
|
58572
|
+
name: "preset",
|
|
58573
|
+
type: "string",
|
|
58574
|
+
required: false,
|
|
58575
|
+
description: "Animation preset name."
|
|
58576
|
+
},
|
|
58577
|
+
{
|
|
58578
|
+
name: "overrides",
|
|
58579
|
+
type: "object",
|
|
58580
|
+
required: false,
|
|
58581
|
+
description: "Per-part motion overrides applied over the preset."
|
|
58582
|
+
}
|
|
58583
|
+
],
|
|
58584
|
+
responseShape: {
|
|
58585
|
+
fps: "number",
|
|
58586
|
+
frames: {
|
|
58587
|
+
type: "array",
|
|
58588
|
+
items: {
|
|
58589
|
+
type: "object",
|
|
58590
|
+
mapValue: {
|
|
58591
|
+
type: "object",
|
|
58592
|
+
properties: {
|
|
58593
|
+
angle: {
|
|
58594
|
+
type: "number",
|
|
58595
|
+
required: true
|
|
58596
|
+
},
|
|
58597
|
+
bx: {
|
|
58598
|
+
type: "number",
|
|
58599
|
+
required: true
|
|
58600
|
+
},
|
|
58601
|
+
by: {
|
|
58602
|
+
type: "number",
|
|
58603
|
+
required: true
|
|
58604
|
+
}
|
|
58605
|
+
}
|
|
58606
|
+
}
|
|
58607
|
+
}
|
|
58608
|
+
}
|
|
58609
|
+
}
|
|
58610
|
+
},
|
|
58295
58611
|
{
|
|
58296
58612
|
name: "generate",
|
|
58297
58613
|
description: "Generate one image on the local image server (text-to-image, or a Kontext edit conditioned on `sourcePath`).",
|
|
@@ -58372,7 +58688,7 @@ var integratorsRegistry = {
|
|
|
58372
58688
|
};
|
|
58373
58689
|
|
|
58374
58690
|
var version$1 = "1.0.0";
|
|
58375
|
-
var exportedAt$1 = "2026-09-
|
|
58691
|
+
var exportedAt$1 = "2026-09-12T18:14:02.248Z";
|
|
58376
58692
|
var mappings = {
|
|
58377
58693
|
"page-header": {
|
|
58378
58694
|
component: "PageHeader",
|
|
@@ -59824,7 +60140,7 @@ var componentMapping = {
|
|
|
59824
60140
|
};
|
|
59825
60141
|
|
|
59826
60142
|
var version = "1.0.0";
|
|
59827
|
-
var exportedAt = "2026-09-
|
|
60143
|
+
var exportedAt = "2026-09-12T18:14:02.248Z";
|
|
59828
60144
|
var contracts = {
|
|
59829
60145
|
form: {
|
|
59830
60146
|
emits: [
|
|
@@ -61127,6 +61443,11 @@ declare const SELF_OVERLAY_PATTERN_TYPES: ReadonlySet<string>;
|
|
|
61127
61443
|
* Each item has a field (default `"event"`, override
|
|
61128
61444
|
* with {@link PatternPropDef.eventField}) holding a
|
|
61129
61445
|
* declared event key. Same rename applies per item.
|
|
61446
|
+
* - `"event-map"` — the prop is an object whose dynamic-key VALUES are
|
|
61447
|
+
* declared event keys (`Record<K, EventKey>` / a d-pad's
|
|
61448
|
+
* direction→event map, a canvas's keycode→event map).
|
|
61449
|
+
* Set from the Record/index-signature value type's own
|
|
61450
|
+
* `EventKey` identity — never from the prop's name.
|
|
61130
61451
|
* - `"entity"` — the prop is the pattern's data INLET: the bound entity
|
|
61131
61452
|
* record(s) it renders. The inlet half of the circuit,
|
|
61132
61453
|
* symmetric with the event OUTLET kinds above. Source type:
|
|
@@ -61139,7 +61460,7 @@ declare const SELF_OVERLAY_PATTERN_TYPES: ReadonlySet<string>;
|
|
|
61139
61460
|
* Reserved for future use: `"config-binding"`. Add here rather than
|
|
61140
61461
|
* inventing per-consumer markers.
|
|
61141
61462
|
*/
|
|
61142
|
-
type PropKind = 'event' | 'event-ref' | 'event-listen' | 'event-list' | 'callback' | 'entity';
|
|
61463
|
+
type PropKind = 'event' | 'event-ref' | 'event-listen' | 'event-list' | 'event-map' | 'callback' | 'entity';
|
|
61143
61464
|
/**
|
|
61144
61465
|
* Recursive structural schema for array elements / nested objects, mirrored
|
|
61145
61466
|
* into the registry by pattern-sync. Mirrors a tiny subset of JSON Schema
|
|
@@ -61684,6 +62005,7 @@ declare const registry: {
|
|
|
61684
62005
|
tier: string;
|
|
61685
62006
|
family: string;
|
|
61686
62007
|
description: string;
|
|
62008
|
+
fieldsContract: string;
|
|
61687
62009
|
suggestedFor: string[];
|
|
61688
62010
|
typicalSize: string;
|
|
61689
62011
|
propsSchema: {
|
|
@@ -61974,6 +62296,31 @@ declare const registry: {
|
|
|
61974
62296
|
enumValues: string[];
|
|
61975
62297
|
default: string;
|
|
61976
62298
|
};
|
|
62299
|
+
relationsData: {
|
|
62300
|
+
types: string[];
|
|
62301
|
+
description: string;
|
|
62302
|
+
mapValue: {
|
|
62303
|
+
types: string[];
|
|
62304
|
+
items: {
|
|
62305
|
+
types: string[];
|
|
62306
|
+
properties: {
|
|
62307
|
+
value: {
|
|
62308
|
+
types: string[];
|
|
62309
|
+
};
|
|
62310
|
+
label: {
|
|
62311
|
+
types: string[];
|
|
62312
|
+
};
|
|
62313
|
+
description: {
|
|
62314
|
+
types: string[];
|
|
62315
|
+
};
|
|
62316
|
+
disabled: {
|
|
62317
|
+
types: string[];
|
|
62318
|
+
};
|
|
62319
|
+
};
|
|
62320
|
+
required: string[];
|
|
62321
|
+
};
|
|
62322
|
+
};
|
|
62323
|
+
};
|
|
61977
62324
|
};
|
|
61978
62325
|
};
|
|
61979
62326
|
"entity-list": {
|
|
@@ -62117,7 +62464,6 @@ declare const registry: {
|
|
|
62117
62464
|
renderItem: {
|
|
62118
62465
|
types: string[];
|
|
62119
62466
|
description: string;
|
|
62120
|
-
kind: string;
|
|
62121
62467
|
callbackArgs: ({
|
|
62122
62468
|
name: string;
|
|
62123
62469
|
type: string;
|
|
@@ -67591,6 +67937,7 @@ declare const registry: {
|
|
|
67591
67937
|
"repeatable-form-section": {
|
|
67592
67938
|
type: string;
|
|
67593
67939
|
category: string;
|
|
67940
|
+
sourceFile: string;
|
|
67594
67941
|
tier: string;
|
|
67595
67942
|
family: string;
|
|
67596
67943
|
description: string;
|
|
@@ -67632,7 +67979,6 @@ declare const registry: {
|
|
|
67632
67979
|
types: string[];
|
|
67633
67980
|
description: string;
|
|
67634
67981
|
required: boolean;
|
|
67635
|
-
kind: string;
|
|
67636
67982
|
callbackArgs: ({
|
|
67637
67983
|
name: string;
|
|
67638
67984
|
type: string;
|
|
@@ -72229,6 +72575,7 @@ declare const registry: {
|
|
|
72229
72575
|
"state-machine-view": {
|
|
72230
72576
|
type: string;
|
|
72231
72577
|
category: string;
|
|
72578
|
+
sourceFile: string;
|
|
72232
72579
|
tier: string;
|
|
72233
72580
|
family: string;
|
|
72234
72581
|
description: string;
|
|
@@ -72271,7 +72618,6 @@ declare const registry: {
|
|
|
72271
72618
|
renderStateNode: {
|
|
72272
72619
|
types: string[];
|
|
72273
72620
|
description: string;
|
|
72274
|
-
kind: string;
|
|
72275
72621
|
callbackArgs: ({
|
|
72276
72622
|
name: string;
|
|
72277
72623
|
type: string;
|
|
@@ -72524,6 +72870,7 @@ declare const registry: {
|
|
|
72524
72870
|
"calendar-grid": {
|
|
72525
72871
|
type: string;
|
|
72526
72872
|
category: string;
|
|
72873
|
+
sourceFile: string;
|
|
72527
72874
|
tier: string;
|
|
72528
72875
|
family: string;
|
|
72529
72876
|
description: string;
|
|
@@ -72609,6 +72956,7 @@ declare const registry: {
|
|
|
72609
72956
|
types: string[];
|
|
72610
72957
|
description: string;
|
|
72611
72958
|
payloadFor: string;
|
|
72959
|
+
eventPayloadBrand: boolean;
|
|
72612
72960
|
};
|
|
72613
72961
|
swipeLeftEvent: {
|
|
72614
72962
|
types: string[];
|
|
@@ -72651,7 +72999,6 @@ declare const registry: {
|
|
|
72651
72999
|
children: {
|
|
72652
73000
|
types: string[];
|
|
72653
73001
|
description: string;
|
|
72654
|
-
kind: string;
|
|
72655
73002
|
callbackArgs: {
|
|
72656
73003
|
name: string;
|
|
72657
73004
|
type: string;
|
|
@@ -72661,7 +73008,6 @@ declare const registry: {
|
|
|
72661
73008
|
renderItem: {
|
|
72662
73009
|
types: string[];
|
|
72663
73010
|
description: string;
|
|
72664
|
-
kind: string;
|
|
72665
73011
|
callbackArgs: {
|
|
72666
73012
|
name: string;
|
|
72667
73013
|
type: string;
|
|
@@ -73018,6 +73364,7 @@ declare const registry: {
|
|
|
73018
73364
|
"progress-dots": {
|
|
73019
73365
|
type: string;
|
|
73020
73366
|
category: string;
|
|
73367
|
+
sourceFile: string;
|
|
73021
73368
|
tier: string;
|
|
73022
73369
|
family: string;
|
|
73023
73370
|
description: string;
|
|
@@ -73037,7 +73384,6 @@ declare const registry: {
|
|
|
73037
73384
|
getState: {
|
|
73038
73385
|
types: string[];
|
|
73039
73386
|
description: string;
|
|
73040
|
-
kind: string;
|
|
73041
73387
|
callbackArgs: {
|
|
73042
73388
|
name: string;
|
|
73043
73389
|
type: string;
|
|
@@ -73073,6 +73419,7 @@ declare const registry: {
|
|
|
73073
73419
|
family: string;
|
|
73074
73420
|
description: string;
|
|
73075
73421
|
capabilities: string;
|
|
73422
|
+
fieldsContract: string;
|
|
73076
73423
|
suggestedFor: string[];
|
|
73077
73424
|
typicalSize: string;
|
|
73078
73425
|
propsSchema: {
|
|
@@ -73305,7 +73652,6 @@ declare const registry: {
|
|
|
73305
73652
|
children: {
|
|
73306
73653
|
types: string[];
|
|
73307
73654
|
description: string;
|
|
73308
|
-
kind: string;
|
|
73309
73655
|
callbackArgs: {
|
|
73310
73656
|
name: string;
|
|
73311
73657
|
type: string;
|
|
@@ -73315,7 +73661,6 @@ declare const registry: {
|
|
|
73315
73661
|
renderItem: {
|
|
73316
73662
|
types: string[];
|
|
73317
73663
|
description: string;
|
|
73318
|
-
kind: string;
|
|
73319
73664
|
callbackArgs: {
|
|
73320
73665
|
name: string;
|
|
73321
73666
|
type: string;
|
|
@@ -73333,6 +73678,31 @@ declare const registry: {
|
|
|
73333
73678
|
enumValues: string[];
|
|
73334
73679
|
default: string;
|
|
73335
73680
|
};
|
|
73681
|
+
relationsData: {
|
|
73682
|
+
types: string[];
|
|
73683
|
+
description: string;
|
|
73684
|
+
mapValue: {
|
|
73685
|
+
types: string[];
|
|
73686
|
+
items: {
|
|
73687
|
+
types: string[];
|
|
73688
|
+
properties: {
|
|
73689
|
+
value: {
|
|
73690
|
+
types: string[];
|
|
73691
|
+
};
|
|
73692
|
+
label: {
|
|
73693
|
+
types: string[];
|
|
73694
|
+
};
|
|
73695
|
+
description: {
|
|
73696
|
+
types: string[];
|
|
73697
|
+
};
|
|
73698
|
+
disabled: {
|
|
73699
|
+
types: string[];
|
|
73700
|
+
};
|
|
73701
|
+
};
|
|
73702
|
+
required: string[];
|
|
73703
|
+
};
|
|
73704
|
+
};
|
|
73705
|
+
};
|
|
73336
73706
|
};
|
|
73337
73707
|
};
|
|
73338
73708
|
"data-list": {
|
|
@@ -73342,6 +73712,7 @@ declare const registry: {
|
|
|
73342
73712
|
tier: string;
|
|
73343
73713
|
family: string;
|
|
73344
73714
|
description: string;
|
|
73715
|
+
fieldsContract: string;
|
|
73345
73716
|
suggestedFor: string[];
|
|
73346
73717
|
typicalSize: string;
|
|
73347
73718
|
propsSchema: {
|
|
@@ -73616,7 +73987,6 @@ declare const registry: {
|
|
|
73616
73987
|
children: {
|
|
73617
73988
|
types: string[];
|
|
73618
73989
|
description: string;
|
|
73619
|
-
kind: string;
|
|
73620
73990
|
callbackArgs: {
|
|
73621
73991
|
name: string;
|
|
73622
73992
|
type: string;
|
|
@@ -73626,7 +73996,6 @@ declare const registry: {
|
|
|
73626
73996
|
renderItem: {
|
|
73627
73997
|
types: string[];
|
|
73628
73998
|
description: string;
|
|
73629
|
-
kind: string;
|
|
73630
73999
|
callbackArgs: {
|
|
73631
74000
|
name: string;
|
|
73632
74001
|
type: string;
|
|
@@ -73653,6 +74022,31 @@ declare const registry: {
|
|
|
73653
74022
|
enumValues: string[];
|
|
73654
74023
|
default: string;
|
|
73655
74024
|
};
|
|
74025
|
+
relationsData: {
|
|
74026
|
+
types: string[];
|
|
74027
|
+
description: string;
|
|
74028
|
+
mapValue: {
|
|
74029
|
+
types: string[];
|
|
74030
|
+
items: {
|
|
74031
|
+
types: string[];
|
|
74032
|
+
properties: {
|
|
74033
|
+
value: {
|
|
74034
|
+
types: string[];
|
|
74035
|
+
};
|
|
74036
|
+
label: {
|
|
74037
|
+
types: string[];
|
|
74038
|
+
};
|
|
74039
|
+
description: {
|
|
74040
|
+
types: string[];
|
|
74041
|
+
};
|
|
74042
|
+
disabled: {
|
|
74043
|
+
types: string[];
|
|
74044
|
+
};
|
|
74045
|
+
};
|
|
74046
|
+
required: string[];
|
|
74047
|
+
};
|
|
74048
|
+
};
|
|
74049
|
+
};
|
|
73656
74050
|
};
|
|
73657
74051
|
};
|
|
73658
74052
|
"map-view": {
|
|
@@ -73832,6 +74226,7 @@ declare const registry: {
|
|
|
73832
74226
|
"range-slider": {
|
|
73833
74227
|
type: string;
|
|
73834
74228
|
category: string;
|
|
74229
|
+
sourceFile: string;
|
|
73835
74230
|
tier: string;
|
|
73836
74231
|
family: string;
|
|
73837
74232
|
description: string;
|
|
@@ -73901,6 +74296,7 @@ declare const registry: {
|
|
|
73901
74296
|
types: string[];
|
|
73902
74297
|
description: string;
|
|
73903
74298
|
payloadFor: string;
|
|
74299
|
+
eventPayloadBrand: boolean;
|
|
73904
74300
|
};
|
|
73905
74301
|
onChange: {
|
|
73906
74302
|
types: string[];
|
|
@@ -73914,7 +74310,6 @@ declare const registry: {
|
|
|
73914
74310
|
formatValue: {
|
|
73915
74311
|
types: string[];
|
|
73916
74312
|
description: string;
|
|
73917
|
-
kind: string;
|
|
73918
74313
|
callbackArgs: {
|
|
73919
74314
|
name: string;
|
|
73920
74315
|
type: string;
|
|
@@ -74487,7 +74882,6 @@ declare const registry: {
|
|
|
74487
74882
|
renderItem: {
|
|
74488
74883
|
types: string[];
|
|
74489
74884
|
description: string;
|
|
74490
|
-
kind: string;
|
|
74491
74885
|
callbackArgs: ({
|
|
74492
74886
|
name: string;
|
|
74493
74887
|
type: string;
|
|
@@ -74515,7 +74909,6 @@ declare const registry: {
|
|
|
74515
74909
|
children: {
|
|
74516
74910
|
types: string[];
|
|
74517
74911
|
description: string;
|
|
74518
|
-
kind: string;
|
|
74519
74912
|
callbackArgs: ({
|
|
74520
74913
|
name: string;
|
|
74521
74914
|
type: string;
|
|
@@ -74629,6 +75022,7 @@ declare const registry: {
|
|
|
74629
75022
|
"sortable-list": {
|
|
74630
75023
|
type: string;
|
|
74631
75024
|
category: string;
|
|
75025
|
+
sourceFile: string;
|
|
74632
75026
|
tier: string;
|
|
74633
75027
|
family: string;
|
|
74634
75028
|
description: string;
|
|
@@ -74647,7 +75041,6 @@ declare const registry: {
|
|
|
74647
75041
|
types: string[];
|
|
74648
75042
|
description: string;
|
|
74649
75043
|
required: boolean;
|
|
74650
|
-
kind: string;
|
|
74651
75044
|
callbackArgs: {
|
|
74652
75045
|
name: string;
|
|
74653
75046
|
type: string;
|
|
@@ -74670,6 +75063,7 @@ declare const registry: {
|
|
|
74670
75063
|
types: string[];
|
|
74671
75064
|
description: string;
|
|
74672
75065
|
payloadFor: string;
|
|
75066
|
+
eventPayloadBrand: boolean;
|
|
74673
75067
|
};
|
|
74674
75068
|
dragHandlePosition: {
|
|
74675
75069
|
types: string[];
|
|
@@ -80539,6 +80933,7 @@ declare const registry: {
|
|
|
80539
80933
|
"doc-search": {
|
|
80540
80934
|
type: string;
|
|
80541
80935
|
category: string;
|
|
80936
|
+
sourceFile: string;
|
|
80542
80937
|
tier: string;
|
|
80543
80938
|
family: string;
|
|
80544
80939
|
description: string;
|
|
@@ -80552,7 +80947,6 @@ declare const registry: {
|
|
|
80552
80947
|
onSearch: {
|
|
80553
80948
|
types: string[];
|
|
80554
80949
|
description: string;
|
|
80555
|
-
kind: string;
|
|
80556
80950
|
callbackArgs: {
|
|
80557
80951
|
name: string;
|
|
80558
80952
|
type: string;
|
|
@@ -84142,6 +84536,7 @@ declare const registry: {
|
|
|
84142
84536
|
family: string;
|
|
84143
84537
|
description: string;
|
|
84144
84538
|
capabilities: string;
|
|
84539
|
+
fieldsContract: string;
|
|
84145
84540
|
suggestedFor: string[];
|
|
84146
84541
|
typicalSize: string;
|
|
84147
84542
|
propsSchema: {
|
|
@@ -84410,7 +84805,6 @@ declare const registry: {
|
|
|
84410
84805
|
children: {
|
|
84411
84806
|
types: string[];
|
|
84412
84807
|
description: string;
|
|
84413
|
-
kind: string;
|
|
84414
84808
|
callbackArgs: {
|
|
84415
84809
|
name: string;
|
|
84416
84810
|
type: string;
|
|
@@ -84420,7 +84814,6 @@ declare const registry: {
|
|
|
84420
84814
|
renderItem: {
|
|
84421
84815
|
types: string[];
|
|
84422
84816
|
description: string;
|
|
84423
|
-
kind: string;
|
|
84424
84817
|
callbackArgs: {
|
|
84425
84818
|
name: string;
|
|
84426
84819
|
type: string;
|
|
@@ -84433,6 +84826,31 @@ declare const registry: {
|
|
|
84433
84826
|
enumValues: string[];
|
|
84434
84827
|
default: string;
|
|
84435
84828
|
};
|
|
84829
|
+
relationsData: {
|
|
84830
|
+
types: string[];
|
|
84831
|
+
description: string;
|
|
84832
|
+
mapValue: {
|
|
84833
|
+
types: string[];
|
|
84834
|
+
items: {
|
|
84835
|
+
types: string[];
|
|
84836
|
+
properties: {
|
|
84837
|
+
value: {
|
|
84838
|
+
types: string[];
|
|
84839
|
+
};
|
|
84840
|
+
label: {
|
|
84841
|
+
types: string[];
|
|
84842
|
+
};
|
|
84843
|
+
description: {
|
|
84844
|
+
types: string[];
|
|
84845
|
+
};
|
|
84846
|
+
disabled: {
|
|
84847
|
+
types: string[];
|
|
84848
|
+
};
|
|
84849
|
+
};
|
|
84850
|
+
required: string[];
|
|
84851
|
+
};
|
|
84852
|
+
};
|
|
84853
|
+
};
|
|
84436
84854
|
};
|
|
84437
84855
|
};
|
|
84438
84856
|
"step-flow": {
|
|
@@ -84807,6 +85225,7 @@ declare const registry: {
|
|
|
84807
85225
|
"code-runner-panel": {
|
|
84808
85226
|
type: string;
|
|
84809
85227
|
category: string;
|
|
85228
|
+
sourceFile: string;
|
|
84810
85229
|
tier: string;
|
|
84811
85230
|
family: string;
|
|
84812
85231
|
description: string;
|
|
@@ -84831,7 +85250,6 @@ declare const registry: {
|
|
|
84831
85250
|
onRun: {
|
|
84832
85251
|
types: string[];
|
|
84833
85252
|
description: string;
|
|
84834
|
-
kind: string;
|
|
84835
85253
|
callbackArgs: {
|
|
84836
85254
|
name: string;
|
|
84837
85255
|
type: string;
|
|
@@ -84852,6 +85270,7 @@ declare const registry: {
|
|
|
84852
85270
|
"segment-renderer": {
|
|
84853
85271
|
type: string;
|
|
84854
85272
|
category: string;
|
|
85273
|
+
sourceFile: string;
|
|
84855
85274
|
tier: string;
|
|
84856
85275
|
family: string;
|
|
84857
85276
|
description: string;
|
|
@@ -84908,7 +85327,6 @@ declare const registry: {
|
|
|
84908
85327
|
onRunCodeSimulation: {
|
|
84909
85328
|
types: string[];
|
|
84910
85329
|
description: string;
|
|
84911
|
-
kind: string;
|
|
84912
85330
|
callbackArgs: {
|
|
84913
85331
|
name: string;
|
|
84914
85332
|
type: string;
|
|
@@ -84918,7 +85336,6 @@ declare const registry: {
|
|
|
84918
85336
|
onRenderVisualization: {
|
|
84919
85337
|
types: string[];
|
|
84920
85338
|
description: string;
|
|
84921
|
-
kind: string;
|
|
84922
85339
|
callbackArgs: {
|
|
84923
85340
|
name: string;
|
|
84924
85341
|
type: string;
|
|
@@ -85387,15 +85804,19 @@ declare const registry: {
|
|
|
85387
85804
|
keyMap: {
|
|
85388
85805
|
types: string[];
|
|
85389
85806
|
description: string;
|
|
85807
|
+
kind: string;
|
|
85390
85808
|
mapValue: {
|
|
85391
85809
|
types: string[];
|
|
85810
|
+
kind: string;
|
|
85392
85811
|
};
|
|
85393
85812
|
};
|
|
85394
85813
|
keyUpMap: {
|
|
85395
85814
|
types: string[];
|
|
85396
85815
|
description: string;
|
|
85816
|
+
kind: string;
|
|
85397
85817
|
mapValue: {
|
|
85398
85818
|
types: string[];
|
|
85819
|
+
kind: string;
|
|
85399
85820
|
};
|
|
85400
85821
|
};
|
|
85401
85822
|
editable: {
|
|
@@ -85661,15 +86082,19 @@ declare const registry: {
|
|
|
85661
86082
|
directionEvents: {
|
|
85662
86083
|
types: string[];
|
|
85663
86084
|
description: string;
|
|
86085
|
+
kind: string;
|
|
85664
86086
|
mapValue: {
|
|
85665
86087
|
types: string[];
|
|
86088
|
+
kind: string;
|
|
85666
86089
|
};
|
|
85667
86090
|
};
|
|
85668
86091
|
directionReleaseEvents: {
|
|
85669
86092
|
types: string[];
|
|
85670
86093
|
description: string;
|
|
86094
|
+
kind: string;
|
|
85671
86095
|
mapValue: {
|
|
85672
86096
|
types: string[];
|
|
86097
|
+
kind: string;
|
|
85673
86098
|
};
|
|
85674
86099
|
};
|
|
85675
86100
|
directionAssets: {
|
|
@@ -88005,6 +88430,7 @@ declare const registry: {
|
|
|
88005
88430
|
"math-canvas": {
|
|
88006
88431
|
type: string;
|
|
88007
88432
|
category: string;
|
|
88433
|
+
sourceFile: string;
|
|
88008
88434
|
tier: string;
|
|
88009
88435
|
family: string;
|
|
88010
88436
|
description: string;
|
|
@@ -88619,15 +89045,19 @@ declare const registry: {
|
|
|
88619
89045
|
keyMap: {
|
|
88620
89046
|
types: string[];
|
|
88621
89047
|
description: string;
|
|
89048
|
+
kind: string;
|
|
88622
89049
|
mapValue: {
|
|
88623
89050
|
types: string[];
|
|
89051
|
+
kind: string;
|
|
88624
89052
|
};
|
|
88625
89053
|
};
|
|
88626
89054
|
keyUpMap: {
|
|
88627
89055
|
types: string[];
|
|
88628
89056
|
description: string;
|
|
89057
|
+
kind: string;
|
|
88629
89058
|
mapValue: {
|
|
88630
89059
|
types: string[];
|
|
89060
|
+
kind: string;
|
|
88631
89061
|
};
|
|
88632
89062
|
};
|
|
88633
89063
|
isLoading: {
|
|
@@ -91979,15 +92409,19 @@ declare const registry: {
|
|
|
91979
92409
|
keyMap: {
|
|
91980
92410
|
types: string[];
|
|
91981
92411
|
description: string;
|
|
92412
|
+
kind: string;
|
|
91982
92413
|
mapValue: {
|
|
91983
92414
|
types: string[];
|
|
92415
|
+
kind: string;
|
|
91984
92416
|
};
|
|
91985
92417
|
};
|
|
91986
92418
|
keyUpMap: {
|
|
91987
92419
|
types: string[];
|
|
91988
92420
|
description: string;
|
|
92421
|
+
kind: string;
|
|
91989
92422
|
mapValue: {
|
|
91990
92423
|
types: string[];
|
|
92424
|
+
kind: string;
|
|
91991
92425
|
};
|
|
91992
92426
|
};
|
|
91993
92427
|
editable: {
|
|
@@ -94487,6 +94921,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
94487
94921
|
tier: string;
|
|
94488
94922
|
family: string;
|
|
94489
94923
|
description: string;
|
|
94924
|
+
fieldsContract: string;
|
|
94490
94925
|
suggestedFor: string[];
|
|
94491
94926
|
typicalSize: string;
|
|
94492
94927
|
propsSchema: {
|
|
@@ -94777,6 +95212,31 @@ declare const PATTERN_REGISTRY: {
|
|
|
94777
95212
|
enumValues: string[];
|
|
94778
95213
|
default: string;
|
|
94779
95214
|
};
|
|
95215
|
+
relationsData: {
|
|
95216
|
+
types: string[];
|
|
95217
|
+
description: string;
|
|
95218
|
+
mapValue: {
|
|
95219
|
+
types: string[];
|
|
95220
|
+
items: {
|
|
95221
|
+
types: string[];
|
|
95222
|
+
properties: {
|
|
95223
|
+
value: {
|
|
95224
|
+
types: string[];
|
|
95225
|
+
};
|
|
95226
|
+
label: {
|
|
95227
|
+
types: string[];
|
|
95228
|
+
};
|
|
95229
|
+
description: {
|
|
95230
|
+
types: string[];
|
|
95231
|
+
};
|
|
95232
|
+
disabled: {
|
|
95233
|
+
types: string[];
|
|
95234
|
+
};
|
|
95235
|
+
};
|
|
95236
|
+
required: string[];
|
|
95237
|
+
};
|
|
95238
|
+
};
|
|
95239
|
+
};
|
|
94780
95240
|
};
|
|
94781
95241
|
};
|
|
94782
95242
|
"entity-list": {
|
|
@@ -94920,7 +95380,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
94920
95380
|
renderItem: {
|
|
94921
95381
|
types: string[];
|
|
94922
95382
|
description: string;
|
|
94923
|
-
kind: string;
|
|
94924
95383
|
callbackArgs: ({
|
|
94925
95384
|
name: string;
|
|
94926
95385
|
type: string;
|
|
@@ -100394,6 +100853,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
100394
100853
|
"repeatable-form-section": {
|
|
100395
100854
|
type: string;
|
|
100396
100855
|
category: string;
|
|
100856
|
+
sourceFile: string;
|
|
100397
100857
|
tier: string;
|
|
100398
100858
|
family: string;
|
|
100399
100859
|
description: string;
|
|
@@ -100435,7 +100895,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
100435
100895
|
types: string[];
|
|
100436
100896
|
description: string;
|
|
100437
100897
|
required: boolean;
|
|
100438
|
-
kind: string;
|
|
100439
100898
|
callbackArgs: ({
|
|
100440
100899
|
name: string;
|
|
100441
100900
|
type: string;
|
|
@@ -105032,6 +105491,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
105032
105491
|
"state-machine-view": {
|
|
105033
105492
|
type: string;
|
|
105034
105493
|
category: string;
|
|
105494
|
+
sourceFile: string;
|
|
105035
105495
|
tier: string;
|
|
105036
105496
|
family: string;
|
|
105037
105497
|
description: string;
|
|
@@ -105074,7 +105534,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
105074
105534
|
renderStateNode: {
|
|
105075
105535
|
types: string[];
|
|
105076
105536
|
description: string;
|
|
105077
|
-
kind: string;
|
|
105078
105537
|
callbackArgs: ({
|
|
105079
105538
|
name: string;
|
|
105080
105539
|
type: string;
|
|
@@ -105327,6 +105786,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
105327
105786
|
"calendar-grid": {
|
|
105328
105787
|
type: string;
|
|
105329
105788
|
category: string;
|
|
105789
|
+
sourceFile: string;
|
|
105330
105790
|
tier: string;
|
|
105331
105791
|
family: string;
|
|
105332
105792
|
description: string;
|
|
@@ -105412,6 +105872,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
105412
105872
|
types: string[];
|
|
105413
105873
|
description: string;
|
|
105414
105874
|
payloadFor: string;
|
|
105875
|
+
eventPayloadBrand: boolean;
|
|
105415
105876
|
};
|
|
105416
105877
|
swipeLeftEvent: {
|
|
105417
105878
|
types: string[];
|
|
@@ -105454,7 +105915,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
105454
105915
|
children: {
|
|
105455
105916
|
types: string[];
|
|
105456
105917
|
description: string;
|
|
105457
|
-
kind: string;
|
|
105458
105918
|
callbackArgs: {
|
|
105459
105919
|
name: string;
|
|
105460
105920
|
type: string;
|
|
@@ -105464,7 +105924,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
105464
105924
|
renderItem: {
|
|
105465
105925
|
types: string[];
|
|
105466
105926
|
description: string;
|
|
105467
|
-
kind: string;
|
|
105468
105927
|
callbackArgs: {
|
|
105469
105928
|
name: string;
|
|
105470
105929
|
type: string;
|
|
@@ -105821,6 +106280,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
105821
106280
|
"progress-dots": {
|
|
105822
106281
|
type: string;
|
|
105823
106282
|
category: string;
|
|
106283
|
+
sourceFile: string;
|
|
105824
106284
|
tier: string;
|
|
105825
106285
|
family: string;
|
|
105826
106286
|
description: string;
|
|
@@ -105840,7 +106300,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
105840
106300
|
getState: {
|
|
105841
106301
|
types: string[];
|
|
105842
106302
|
description: string;
|
|
105843
|
-
kind: string;
|
|
105844
106303
|
callbackArgs: {
|
|
105845
106304
|
name: string;
|
|
105846
106305
|
type: string;
|
|
@@ -105876,6 +106335,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
105876
106335
|
family: string;
|
|
105877
106336
|
description: string;
|
|
105878
106337
|
capabilities: string;
|
|
106338
|
+
fieldsContract: string;
|
|
105879
106339
|
suggestedFor: string[];
|
|
105880
106340
|
typicalSize: string;
|
|
105881
106341
|
propsSchema: {
|
|
@@ -106108,7 +106568,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
106108
106568
|
children: {
|
|
106109
106569
|
types: string[];
|
|
106110
106570
|
description: string;
|
|
106111
|
-
kind: string;
|
|
106112
106571
|
callbackArgs: {
|
|
106113
106572
|
name: string;
|
|
106114
106573
|
type: string;
|
|
@@ -106118,7 +106577,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
106118
106577
|
renderItem: {
|
|
106119
106578
|
types: string[];
|
|
106120
106579
|
description: string;
|
|
106121
|
-
kind: string;
|
|
106122
106580
|
callbackArgs: {
|
|
106123
106581
|
name: string;
|
|
106124
106582
|
type: string;
|
|
@@ -106136,6 +106594,31 @@ declare const PATTERN_REGISTRY: {
|
|
|
106136
106594
|
enumValues: string[];
|
|
106137
106595
|
default: string;
|
|
106138
106596
|
};
|
|
106597
|
+
relationsData: {
|
|
106598
|
+
types: string[];
|
|
106599
|
+
description: string;
|
|
106600
|
+
mapValue: {
|
|
106601
|
+
types: string[];
|
|
106602
|
+
items: {
|
|
106603
|
+
types: string[];
|
|
106604
|
+
properties: {
|
|
106605
|
+
value: {
|
|
106606
|
+
types: string[];
|
|
106607
|
+
};
|
|
106608
|
+
label: {
|
|
106609
|
+
types: string[];
|
|
106610
|
+
};
|
|
106611
|
+
description: {
|
|
106612
|
+
types: string[];
|
|
106613
|
+
};
|
|
106614
|
+
disabled: {
|
|
106615
|
+
types: string[];
|
|
106616
|
+
};
|
|
106617
|
+
};
|
|
106618
|
+
required: string[];
|
|
106619
|
+
};
|
|
106620
|
+
};
|
|
106621
|
+
};
|
|
106139
106622
|
};
|
|
106140
106623
|
};
|
|
106141
106624
|
"data-list": {
|
|
@@ -106145,6 +106628,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
106145
106628
|
tier: string;
|
|
106146
106629
|
family: string;
|
|
106147
106630
|
description: string;
|
|
106631
|
+
fieldsContract: string;
|
|
106148
106632
|
suggestedFor: string[];
|
|
106149
106633
|
typicalSize: string;
|
|
106150
106634
|
propsSchema: {
|
|
@@ -106419,7 +106903,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
106419
106903
|
children: {
|
|
106420
106904
|
types: string[];
|
|
106421
106905
|
description: string;
|
|
106422
|
-
kind: string;
|
|
106423
106906
|
callbackArgs: {
|
|
106424
106907
|
name: string;
|
|
106425
106908
|
type: string;
|
|
@@ -106429,7 +106912,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
106429
106912
|
renderItem: {
|
|
106430
106913
|
types: string[];
|
|
106431
106914
|
description: string;
|
|
106432
|
-
kind: string;
|
|
106433
106915
|
callbackArgs: {
|
|
106434
106916
|
name: string;
|
|
106435
106917
|
type: string;
|
|
@@ -106456,6 +106938,31 @@ declare const PATTERN_REGISTRY: {
|
|
|
106456
106938
|
enumValues: string[];
|
|
106457
106939
|
default: string;
|
|
106458
106940
|
};
|
|
106941
|
+
relationsData: {
|
|
106942
|
+
types: string[];
|
|
106943
|
+
description: string;
|
|
106944
|
+
mapValue: {
|
|
106945
|
+
types: string[];
|
|
106946
|
+
items: {
|
|
106947
|
+
types: string[];
|
|
106948
|
+
properties: {
|
|
106949
|
+
value: {
|
|
106950
|
+
types: string[];
|
|
106951
|
+
};
|
|
106952
|
+
label: {
|
|
106953
|
+
types: string[];
|
|
106954
|
+
};
|
|
106955
|
+
description: {
|
|
106956
|
+
types: string[];
|
|
106957
|
+
};
|
|
106958
|
+
disabled: {
|
|
106959
|
+
types: string[];
|
|
106960
|
+
};
|
|
106961
|
+
};
|
|
106962
|
+
required: string[];
|
|
106963
|
+
};
|
|
106964
|
+
};
|
|
106965
|
+
};
|
|
106459
106966
|
};
|
|
106460
106967
|
};
|
|
106461
106968
|
"map-view": {
|
|
@@ -106635,6 +107142,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
106635
107142
|
"range-slider": {
|
|
106636
107143
|
type: string;
|
|
106637
107144
|
category: string;
|
|
107145
|
+
sourceFile: string;
|
|
106638
107146
|
tier: string;
|
|
106639
107147
|
family: string;
|
|
106640
107148
|
description: string;
|
|
@@ -106704,6 +107212,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
106704
107212
|
types: string[];
|
|
106705
107213
|
description: string;
|
|
106706
107214
|
payloadFor: string;
|
|
107215
|
+
eventPayloadBrand: boolean;
|
|
106707
107216
|
};
|
|
106708
107217
|
onChange: {
|
|
106709
107218
|
types: string[];
|
|
@@ -106717,7 +107226,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
106717
107226
|
formatValue: {
|
|
106718
107227
|
types: string[];
|
|
106719
107228
|
description: string;
|
|
106720
|
-
kind: string;
|
|
106721
107229
|
callbackArgs: {
|
|
106722
107230
|
name: string;
|
|
106723
107231
|
type: string;
|
|
@@ -107290,7 +107798,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
107290
107798
|
renderItem: {
|
|
107291
107799
|
types: string[];
|
|
107292
107800
|
description: string;
|
|
107293
|
-
kind: string;
|
|
107294
107801
|
callbackArgs: ({
|
|
107295
107802
|
name: string;
|
|
107296
107803
|
type: string;
|
|
@@ -107318,7 +107825,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
107318
107825
|
children: {
|
|
107319
107826
|
types: string[];
|
|
107320
107827
|
description: string;
|
|
107321
|
-
kind: string;
|
|
107322
107828
|
callbackArgs: ({
|
|
107323
107829
|
name: string;
|
|
107324
107830
|
type: string;
|
|
@@ -107432,6 +107938,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
107432
107938
|
"sortable-list": {
|
|
107433
107939
|
type: string;
|
|
107434
107940
|
category: string;
|
|
107941
|
+
sourceFile: string;
|
|
107435
107942
|
tier: string;
|
|
107436
107943
|
family: string;
|
|
107437
107944
|
description: string;
|
|
@@ -107450,7 +107957,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
107450
107957
|
types: string[];
|
|
107451
107958
|
description: string;
|
|
107452
107959
|
required: boolean;
|
|
107453
|
-
kind: string;
|
|
107454
107960
|
callbackArgs: {
|
|
107455
107961
|
name: string;
|
|
107456
107962
|
type: string;
|
|
@@ -107473,6 +107979,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
107473
107979
|
types: string[];
|
|
107474
107980
|
description: string;
|
|
107475
107981
|
payloadFor: string;
|
|
107982
|
+
eventPayloadBrand: boolean;
|
|
107476
107983
|
};
|
|
107477
107984
|
dragHandlePosition: {
|
|
107478
107985
|
types: string[];
|
|
@@ -113342,6 +113849,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
113342
113849
|
"doc-search": {
|
|
113343
113850
|
type: string;
|
|
113344
113851
|
category: string;
|
|
113852
|
+
sourceFile: string;
|
|
113345
113853
|
tier: string;
|
|
113346
113854
|
family: string;
|
|
113347
113855
|
description: string;
|
|
@@ -113355,7 +113863,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
113355
113863
|
onSearch: {
|
|
113356
113864
|
types: string[];
|
|
113357
113865
|
description: string;
|
|
113358
|
-
kind: string;
|
|
113359
113866
|
callbackArgs: {
|
|
113360
113867
|
name: string;
|
|
113361
113868
|
type: string;
|
|
@@ -116945,6 +117452,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
116945
117452
|
family: string;
|
|
116946
117453
|
description: string;
|
|
116947
117454
|
capabilities: string;
|
|
117455
|
+
fieldsContract: string;
|
|
116948
117456
|
suggestedFor: string[];
|
|
116949
117457
|
typicalSize: string;
|
|
116950
117458
|
propsSchema: {
|
|
@@ -117213,7 +117721,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
117213
117721
|
children: {
|
|
117214
117722
|
types: string[];
|
|
117215
117723
|
description: string;
|
|
117216
|
-
kind: string;
|
|
117217
117724
|
callbackArgs: {
|
|
117218
117725
|
name: string;
|
|
117219
117726
|
type: string;
|
|
@@ -117223,7 +117730,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
117223
117730
|
renderItem: {
|
|
117224
117731
|
types: string[];
|
|
117225
117732
|
description: string;
|
|
117226
|
-
kind: string;
|
|
117227
117733
|
callbackArgs: {
|
|
117228
117734
|
name: string;
|
|
117229
117735
|
type: string;
|
|
@@ -117236,6 +117742,31 @@ declare const PATTERN_REGISTRY: {
|
|
|
117236
117742
|
enumValues: string[];
|
|
117237
117743
|
default: string;
|
|
117238
117744
|
};
|
|
117745
|
+
relationsData: {
|
|
117746
|
+
types: string[];
|
|
117747
|
+
description: string;
|
|
117748
|
+
mapValue: {
|
|
117749
|
+
types: string[];
|
|
117750
|
+
items: {
|
|
117751
|
+
types: string[];
|
|
117752
|
+
properties: {
|
|
117753
|
+
value: {
|
|
117754
|
+
types: string[];
|
|
117755
|
+
};
|
|
117756
|
+
label: {
|
|
117757
|
+
types: string[];
|
|
117758
|
+
};
|
|
117759
|
+
description: {
|
|
117760
|
+
types: string[];
|
|
117761
|
+
};
|
|
117762
|
+
disabled: {
|
|
117763
|
+
types: string[];
|
|
117764
|
+
};
|
|
117765
|
+
};
|
|
117766
|
+
required: string[];
|
|
117767
|
+
};
|
|
117768
|
+
};
|
|
117769
|
+
};
|
|
117239
117770
|
};
|
|
117240
117771
|
};
|
|
117241
117772
|
"step-flow": {
|
|
@@ -117610,6 +118141,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
117610
118141
|
"code-runner-panel": {
|
|
117611
118142
|
type: string;
|
|
117612
118143
|
category: string;
|
|
118144
|
+
sourceFile: string;
|
|
117613
118145
|
tier: string;
|
|
117614
118146
|
family: string;
|
|
117615
118147
|
description: string;
|
|
@@ -117634,7 +118166,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
117634
118166
|
onRun: {
|
|
117635
118167
|
types: string[];
|
|
117636
118168
|
description: string;
|
|
117637
|
-
kind: string;
|
|
117638
118169
|
callbackArgs: {
|
|
117639
118170
|
name: string;
|
|
117640
118171
|
type: string;
|
|
@@ -117655,6 +118186,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
117655
118186
|
"segment-renderer": {
|
|
117656
118187
|
type: string;
|
|
117657
118188
|
category: string;
|
|
118189
|
+
sourceFile: string;
|
|
117658
118190
|
tier: string;
|
|
117659
118191
|
family: string;
|
|
117660
118192
|
description: string;
|
|
@@ -117711,7 +118243,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
117711
118243
|
onRunCodeSimulation: {
|
|
117712
118244
|
types: string[];
|
|
117713
118245
|
description: string;
|
|
117714
|
-
kind: string;
|
|
117715
118246
|
callbackArgs: {
|
|
117716
118247
|
name: string;
|
|
117717
118248
|
type: string;
|
|
@@ -117721,7 +118252,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
117721
118252
|
onRenderVisualization: {
|
|
117722
118253
|
types: string[];
|
|
117723
118254
|
description: string;
|
|
117724
|
-
kind: string;
|
|
117725
118255
|
callbackArgs: {
|
|
117726
118256
|
name: string;
|
|
117727
118257
|
type: string;
|
|
@@ -118190,15 +118720,19 @@ declare const PATTERN_REGISTRY: {
|
|
|
118190
118720
|
keyMap: {
|
|
118191
118721
|
types: string[];
|
|
118192
118722
|
description: string;
|
|
118723
|
+
kind: string;
|
|
118193
118724
|
mapValue: {
|
|
118194
118725
|
types: string[];
|
|
118726
|
+
kind: string;
|
|
118195
118727
|
};
|
|
118196
118728
|
};
|
|
118197
118729
|
keyUpMap: {
|
|
118198
118730
|
types: string[];
|
|
118199
118731
|
description: string;
|
|
118732
|
+
kind: string;
|
|
118200
118733
|
mapValue: {
|
|
118201
118734
|
types: string[];
|
|
118735
|
+
kind: string;
|
|
118202
118736
|
};
|
|
118203
118737
|
};
|
|
118204
118738
|
editable: {
|
|
@@ -118464,15 +118998,19 @@ declare const PATTERN_REGISTRY: {
|
|
|
118464
118998
|
directionEvents: {
|
|
118465
118999
|
types: string[];
|
|
118466
119000
|
description: string;
|
|
119001
|
+
kind: string;
|
|
118467
119002
|
mapValue: {
|
|
118468
119003
|
types: string[];
|
|
119004
|
+
kind: string;
|
|
118469
119005
|
};
|
|
118470
119006
|
};
|
|
118471
119007
|
directionReleaseEvents: {
|
|
118472
119008
|
types: string[];
|
|
118473
119009
|
description: string;
|
|
119010
|
+
kind: string;
|
|
118474
119011
|
mapValue: {
|
|
118475
119012
|
types: string[];
|
|
119013
|
+
kind: string;
|
|
118476
119014
|
};
|
|
118477
119015
|
};
|
|
118478
119016
|
directionAssets: {
|
|
@@ -120808,6 +121346,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
120808
121346
|
"math-canvas": {
|
|
120809
121347
|
type: string;
|
|
120810
121348
|
category: string;
|
|
121349
|
+
sourceFile: string;
|
|
120811
121350
|
tier: string;
|
|
120812
121351
|
family: string;
|
|
120813
121352
|
description: string;
|
|
@@ -121422,15 +121961,19 @@ declare const PATTERN_REGISTRY: {
|
|
|
121422
121961
|
keyMap: {
|
|
121423
121962
|
types: string[];
|
|
121424
121963
|
description: string;
|
|
121964
|
+
kind: string;
|
|
121425
121965
|
mapValue: {
|
|
121426
121966
|
types: string[];
|
|
121967
|
+
kind: string;
|
|
121427
121968
|
};
|
|
121428
121969
|
};
|
|
121429
121970
|
keyUpMap: {
|
|
121430
121971
|
types: string[];
|
|
121431
121972
|
description: string;
|
|
121973
|
+
kind: string;
|
|
121432
121974
|
mapValue: {
|
|
121433
121975
|
types: string[];
|
|
121976
|
+
kind: string;
|
|
121434
121977
|
};
|
|
121435
121978
|
};
|
|
121436
121979
|
isLoading: {
|
|
@@ -124782,15 +125325,19 @@ declare const PATTERN_REGISTRY: {
|
|
|
124782
125325
|
keyMap: {
|
|
124783
125326
|
types: string[];
|
|
124784
125327
|
description: string;
|
|
125328
|
+
kind: string;
|
|
124785
125329
|
mapValue: {
|
|
124786
125330
|
types: string[];
|
|
125331
|
+
kind: string;
|
|
124787
125332
|
};
|
|
124788
125333
|
};
|
|
124789
125334
|
keyUpMap: {
|
|
124790
125335
|
types: string[];
|
|
124791
125336
|
description: string;
|
|
125337
|
+
kind: string;
|
|
124792
125338
|
mapValue: {
|
|
124793
125339
|
types: string[];
|
|
125340
|
+
kind: string;
|
|
124794
125341
|
};
|
|
124795
125342
|
};
|
|
124796
125343
|
editable: {
|
|
@@ -130350,6 +130897,8 @@ declare const INTEGRATORS_REGISTRY: {
|
|
|
130350
130897
|
parts?: undefined;
|
|
130351
130898
|
outPath?: undefined;
|
|
130352
130899
|
legend?: undefined;
|
|
130900
|
+
layers?: undefined;
|
|
130901
|
+
fps?: undefined;
|
|
130353
130902
|
model?: undefined;
|
|
130354
130903
|
prompt?: undefined;
|
|
130355
130904
|
seed?: undefined;
|
|
@@ -130386,6 +130935,8 @@ declare const INTEGRATORS_REGISTRY: {
|
|
|
130386
130935
|
parts?: undefined;
|
|
130387
130936
|
outPath?: undefined;
|
|
130388
130937
|
legend?: undefined;
|
|
130938
|
+
layers?: undefined;
|
|
130939
|
+
fps?: undefined;
|
|
130389
130940
|
model?: undefined;
|
|
130390
130941
|
prompt?: undefined;
|
|
130391
130942
|
seed?: undefined;
|
|
@@ -130422,6 +130973,8 @@ declare const INTEGRATORS_REGISTRY: {
|
|
|
130422
130973
|
parts?: undefined;
|
|
130423
130974
|
outPath?: undefined;
|
|
130424
130975
|
legend?: undefined;
|
|
130976
|
+
layers?: undefined;
|
|
130977
|
+
fps?: undefined;
|
|
130425
130978
|
model?: undefined;
|
|
130426
130979
|
prompt?: undefined;
|
|
130427
130980
|
seed?: undefined;
|
|
@@ -130480,6 +131033,8 @@ declare const INTEGRATORS_REGISTRY: {
|
|
|
130480
131033
|
parts?: undefined;
|
|
130481
131034
|
outPath?: undefined;
|
|
130482
131035
|
legend?: undefined;
|
|
131036
|
+
layers?: undefined;
|
|
131037
|
+
fps?: undefined;
|
|
130483
131038
|
model?: undefined;
|
|
130484
131039
|
prompt?: undefined;
|
|
130485
131040
|
seed?: undefined;
|
|
@@ -130516,6 +131071,8 @@ declare const INTEGRATORS_REGISTRY: {
|
|
|
130516
131071
|
parts?: undefined;
|
|
130517
131072
|
outPath?: undefined;
|
|
130518
131073
|
legend?: undefined;
|
|
131074
|
+
layers?: undefined;
|
|
131075
|
+
fps?: undefined;
|
|
130519
131076
|
model?: undefined;
|
|
130520
131077
|
prompt?: undefined;
|
|
130521
131078
|
seed?: undefined;
|
|
@@ -130552,6 +131109,8 @@ declare const INTEGRATORS_REGISTRY: {
|
|
|
130552
131109
|
resolved?: undefined;
|
|
130553
131110
|
outPath?: undefined;
|
|
130554
131111
|
legend?: undefined;
|
|
131112
|
+
layers?: undefined;
|
|
131113
|
+
fps?: undefined;
|
|
130555
131114
|
model?: undefined;
|
|
130556
131115
|
prompt?: undefined;
|
|
130557
131116
|
seed?: undefined;
|
|
@@ -130603,6 +131162,158 @@ declare const INTEGRATORS_REGISTRY: {
|
|
|
130603
131162
|
resolved?: undefined;
|
|
130604
131163
|
rigPath?: undefined;
|
|
130605
131164
|
parts?: undefined;
|
|
131165
|
+
layers?: undefined;
|
|
131166
|
+
fps?: undefined;
|
|
131167
|
+
model?: undefined;
|
|
131168
|
+
prompt?: undefined;
|
|
131169
|
+
seed?: undefined;
|
|
131170
|
+
size?: undefined;
|
|
131171
|
+
sourcePath?: undefined;
|
|
131172
|
+
elapsedMs?: undefined;
|
|
131173
|
+
};
|
|
131174
|
+
} | {
|
|
131175
|
+
name: string;
|
|
131176
|
+
description: string;
|
|
131177
|
+
params: {
|
|
131178
|
+
name: string;
|
|
131179
|
+
type: string;
|
|
131180
|
+
required: boolean;
|
|
131181
|
+
description: string;
|
|
131182
|
+
}[];
|
|
131183
|
+
responseShape: {
|
|
131184
|
+
layers: {
|
|
131185
|
+
type: string;
|
|
131186
|
+
items: {
|
|
131187
|
+
type: string;
|
|
131188
|
+
properties: {
|
|
131189
|
+
name: {
|
|
131190
|
+
type: string;
|
|
131191
|
+
required: boolean;
|
|
131192
|
+
};
|
|
131193
|
+
path: {
|
|
131194
|
+
type: string;
|
|
131195
|
+
required: boolean;
|
|
131196
|
+
};
|
|
131197
|
+
x: {
|
|
131198
|
+
type: string;
|
|
131199
|
+
required: boolean;
|
|
131200
|
+
};
|
|
131201
|
+
y: {
|
|
131202
|
+
type: string;
|
|
131203
|
+
required: boolean;
|
|
131204
|
+
};
|
|
131205
|
+
w: {
|
|
131206
|
+
type: string;
|
|
131207
|
+
required: boolean;
|
|
131208
|
+
};
|
|
131209
|
+
h: {
|
|
131210
|
+
type: string;
|
|
131211
|
+
required: boolean;
|
|
131212
|
+
};
|
|
131213
|
+
z: {
|
|
131214
|
+
type: string;
|
|
131215
|
+
required: boolean;
|
|
131216
|
+
};
|
|
131217
|
+
pivot: {
|
|
131218
|
+
type: string;
|
|
131219
|
+
required: boolean;
|
|
131220
|
+
};
|
|
131221
|
+
isRest: {
|
|
131222
|
+
type: string;
|
|
131223
|
+
required: boolean;
|
|
131224
|
+
};
|
|
131225
|
+
};
|
|
131226
|
+
};
|
|
131227
|
+
};
|
|
131228
|
+
ok?: undefined;
|
|
131229
|
+
bundlePath?: undefined;
|
|
131230
|
+
boneCount?: undefined;
|
|
131231
|
+
vertexCount?: undefined;
|
|
131232
|
+
triangleCount?: undefined;
|
|
131233
|
+
clips?: undefined;
|
|
131234
|
+
outdir?: undefined;
|
|
131235
|
+
frames?: undefined;
|
|
131236
|
+
framePaths?: undefined;
|
|
131237
|
+
sheet?: undefined;
|
|
131238
|
+
gif?: undefined;
|
|
131239
|
+
atlas?: undefined;
|
|
131240
|
+
presets?: undefined;
|
|
131241
|
+
rig?: undefined;
|
|
131242
|
+
resolved?: undefined;
|
|
131243
|
+
rigPath?: undefined;
|
|
131244
|
+
parts?: undefined;
|
|
131245
|
+
outPath?: undefined;
|
|
131246
|
+
legend?: undefined;
|
|
131247
|
+
fps?: undefined;
|
|
131248
|
+
model?: undefined;
|
|
131249
|
+
prompt?: undefined;
|
|
131250
|
+
seed?: undefined;
|
|
131251
|
+
size?: undefined;
|
|
131252
|
+
sourcePath?: undefined;
|
|
131253
|
+
elapsedMs?: undefined;
|
|
131254
|
+
};
|
|
131255
|
+
} | {
|
|
131256
|
+
name: string;
|
|
131257
|
+
description: string;
|
|
131258
|
+
params: ({
|
|
131259
|
+
name: string;
|
|
131260
|
+
type: string;
|
|
131261
|
+
required: boolean;
|
|
131262
|
+
description: string;
|
|
131263
|
+
mapValue?: undefined;
|
|
131264
|
+
} | {
|
|
131265
|
+
name: string;
|
|
131266
|
+
type: string;
|
|
131267
|
+
required: boolean;
|
|
131268
|
+
description: string;
|
|
131269
|
+
mapValue: {
|
|
131270
|
+
type: string;
|
|
131271
|
+
};
|
|
131272
|
+
})[];
|
|
131273
|
+
responseShape: {
|
|
131274
|
+
fps: string;
|
|
131275
|
+
frames: {
|
|
131276
|
+
type: string;
|
|
131277
|
+
items: {
|
|
131278
|
+
type: string;
|
|
131279
|
+
mapValue: {
|
|
131280
|
+
type: string;
|
|
131281
|
+
properties: {
|
|
131282
|
+
angle: {
|
|
131283
|
+
type: string;
|
|
131284
|
+
required: boolean;
|
|
131285
|
+
};
|
|
131286
|
+
bx: {
|
|
131287
|
+
type: string;
|
|
131288
|
+
required: boolean;
|
|
131289
|
+
};
|
|
131290
|
+
by: {
|
|
131291
|
+
type: string;
|
|
131292
|
+
required: boolean;
|
|
131293
|
+
};
|
|
131294
|
+
};
|
|
131295
|
+
};
|
|
131296
|
+
};
|
|
131297
|
+
};
|
|
131298
|
+
ok?: undefined;
|
|
131299
|
+
bundlePath?: undefined;
|
|
131300
|
+
boneCount?: undefined;
|
|
131301
|
+
vertexCount?: undefined;
|
|
131302
|
+
triangleCount?: undefined;
|
|
131303
|
+
clips?: undefined;
|
|
131304
|
+
outdir?: undefined;
|
|
131305
|
+
framePaths?: undefined;
|
|
131306
|
+
sheet?: undefined;
|
|
131307
|
+
gif?: undefined;
|
|
131308
|
+
atlas?: undefined;
|
|
131309
|
+
presets?: undefined;
|
|
131310
|
+
rig?: undefined;
|
|
131311
|
+
resolved?: undefined;
|
|
131312
|
+
rigPath?: undefined;
|
|
131313
|
+
parts?: undefined;
|
|
131314
|
+
outPath?: undefined;
|
|
131315
|
+
legend?: undefined;
|
|
131316
|
+
layers?: undefined;
|
|
130606
131317
|
model?: undefined;
|
|
130607
131318
|
prompt?: undefined;
|
|
130608
131319
|
seed?: undefined;
|
|
@@ -130645,6 +131356,8 @@ declare const INTEGRATORS_REGISTRY: {
|
|
|
130645
131356
|
rigPath?: undefined;
|
|
130646
131357
|
parts?: undefined;
|
|
130647
131358
|
legend?: undefined;
|
|
131359
|
+
layers?: undefined;
|
|
131360
|
+
fps?: undefined;
|
|
130648
131361
|
};
|
|
130649
131362
|
})[];
|
|
130650
131363
|
};
|