@almadar/core 10.90.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 +4 -2
- package/dist/builders.js.map +1 -1
- package/dist/{effect-7jQQxiIt.d.ts → effect-DGa2ixo7.d.ts} +13 -1
- package/dist/{entityAccess-CpHfCQA3.d.ts → entityAccess-CXennIKj.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory/index.js +437 -101
- package/dist/factory/index.js.map +1 -1
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +8 -3
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/i18n/index.js +6 -0
- package/dist/i18n/index.js.map +1 -1
- package/dist/{index-BresfHJy.d.ts → index-BFortVj8.d.ts} +39 -10
- package/dist/index.d.ts +11 -72
- package/dist/index.js +829 -209
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +11 -5
- package/dist/mock/index.js +3 -2
- package/dist/mock/index.js.map +1 -1
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +1570 -181
- package/dist/patterns/index.js +771 -109
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +333 -6
- package/dist/patterns/patterns-registry.json +436 -101
- package/dist/patterns/registry.json +436 -101
- package/dist/patterns/services-registry.json +400 -68
- package/dist/{schema-C52juBr8.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-CFiL1YUN.d.ts → trait-DHb48lyx.d.ts} +10 -1
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +32 -3
- package/dist/types/index.js.map +1 -1
- package/dist/{types-BgC8ETnl.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",
|
|
@@ -4316,7 +4358,10 @@ var patterns = {
|
|
|
4316
4358
|
"1:1",
|
|
4317
4359
|
"16:9",
|
|
4318
4360
|
"5:7",
|
|
4319
|
-
"8:1"
|
|
4361
|
+
"8:1",
|
|
4362
|
+
"4:1",
|
|
4363
|
+
"5:3",
|
|
4364
|
+
"1:2"
|
|
4320
4365
|
]
|
|
4321
4366
|
},
|
|
4322
4367
|
atlas: {
|
|
@@ -4476,7 +4521,10 @@ var patterns = {
|
|
|
4476
4521
|
"1:1",
|
|
4477
4522
|
"16:9",
|
|
4478
4523
|
"5:7",
|
|
4479
|
-
"8:1"
|
|
4524
|
+
"8:1",
|
|
4525
|
+
"4:1",
|
|
4526
|
+
"5:3",
|
|
4527
|
+
"1:2"
|
|
4480
4528
|
]
|
|
4481
4529
|
},
|
|
4482
4530
|
atlas: {
|
|
@@ -7528,6 +7576,7 @@ var patterns = {
|
|
|
7528
7576
|
button: {
|
|
7529
7577
|
type: "button",
|
|
7530
7578
|
category: "component",
|
|
7579
|
+
sourceFile: "components/core/atoms/Button.tsx",
|
|
7531
7580
|
tier: "atoms",
|
|
7532
7581
|
family: "core",
|
|
7533
7582
|
description: "Clickable button that emits events",
|
|
@@ -7672,7 +7721,10 @@ var patterns = {
|
|
|
7672
7721
|
"1:1",
|
|
7673
7722
|
"16:9",
|
|
7674
7723
|
"5:7",
|
|
7675
|
-
"8:1"
|
|
7724
|
+
"8:1",
|
|
7725
|
+
"4:1",
|
|
7726
|
+
"5:3",
|
|
7727
|
+
"1:2"
|
|
7676
7728
|
]
|
|
7677
7729
|
},
|
|
7678
7730
|
atlas: {
|
|
@@ -7714,7 +7766,8 @@ var patterns = {
|
|
|
7714
7766
|
"object"
|
|
7715
7767
|
],
|
|
7716
7768
|
description: "Payload to include with the action event",
|
|
7717
|
-
payloadFor: "action"
|
|
7769
|
+
payloadFor: "action",
|
|
7770
|
+
eventPayloadBrand: true
|
|
7718
7771
|
},
|
|
7719
7772
|
label: {
|
|
7720
7773
|
types: [
|
|
@@ -7739,6 +7792,7 @@ var patterns = {
|
|
|
7739
7792
|
badge: {
|
|
7740
7793
|
type: "badge",
|
|
7741
7794
|
category: "component",
|
|
7795
|
+
sourceFile: "components/core/atoms/Badge.tsx",
|
|
7742
7796
|
tier: "atoms",
|
|
7743
7797
|
family: "core",
|
|
7744
7798
|
description: "Small label for status or count",
|
|
@@ -7870,7 +7924,10 @@ var patterns = {
|
|
|
7870
7924
|
"1:1",
|
|
7871
7925
|
"16:9",
|
|
7872
7926
|
"5:7",
|
|
7873
|
-
"8:1"
|
|
7927
|
+
"8:1",
|
|
7928
|
+
"4:1",
|
|
7929
|
+
"5:3",
|
|
7930
|
+
"1:2"
|
|
7874
7931
|
]
|
|
7875
7932
|
},
|
|
7876
7933
|
atlas: {
|
|
@@ -8372,6 +8429,7 @@ var patterns = {
|
|
|
8372
8429
|
input: {
|
|
8373
8430
|
type: "input",
|
|
8374
8431
|
category: "component",
|
|
8432
|
+
sourceFile: "components/core/atoms/Input.tsx",
|
|
8375
8433
|
tier: "atoms",
|
|
8376
8434
|
family: "core",
|
|
8377
8435
|
description: "Text input field",
|
|
@@ -8499,10 +8557,7 @@ var patterns = {
|
|
|
8499
8557
|
"function",
|
|
8500
8558
|
"string"
|
|
8501
8559
|
],
|
|
8502
|
-
description: "Callback or declarative event key when clear button is clicked"
|
|
8503
|
-
kind: "event-ref",
|
|
8504
|
-
emitPayloadSchema: [
|
|
8505
|
-
]
|
|
8560
|
+
description: "Callback or declarative event key when clear button is clicked"
|
|
8506
8561
|
},
|
|
8507
8562
|
options: {
|
|
8508
8563
|
types: [
|
|
@@ -8547,16 +8602,9 @@ var patterns = {
|
|
|
8547
8602
|
kind: "event-ref",
|
|
8548
8603
|
emitPayloadSchema: [
|
|
8549
8604
|
{
|
|
8550
|
-
name: "
|
|
8551
|
-
type: "
|
|
8552
|
-
required:
|
|
8553
|
-
typeWhen: [
|
|
8554
|
-
{
|
|
8555
|
-
knob: "inputType",
|
|
8556
|
-
equals: "number",
|
|
8557
|
-
type: "number"
|
|
8558
|
-
}
|
|
8559
|
-
]
|
|
8605
|
+
name: "_payload",
|
|
8606
|
+
type: "object",
|
|
8607
|
+
required: false
|
|
8560
8608
|
}
|
|
8561
8609
|
]
|
|
8562
8610
|
}
|
|
@@ -8626,6 +8674,7 @@ var patterns = {
|
|
|
8626
8674
|
select: {
|
|
8627
8675
|
type: "select",
|
|
8628
8676
|
category: "component",
|
|
8677
|
+
sourceFile: "components/core/atoms/Select.tsx",
|
|
8629
8678
|
tier: "atoms",
|
|
8630
8679
|
family: "core",
|
|
8631
8680
|
description: "Dropdown select input",
|
|
@@ -8815,7 +8864,26 @@ var patterns = {
|
|
|
8815
8864
|
"function",
|
|
8816
8865
|
"string"
|
|
8817
8866
|
],
|
|
8818
|
-
description: "Value-based change: a React callback (internal use) OR a declarative event key that emits `{ value }` on the bus (render-ui / lolo authoring). Mirrors the `onChange` handler|event convention so it's an event-emitting prop, not a bare callback."
|
|
8867
|
+
description: "Value-based change: a React callback (internal use) OR a declarative event key that emits `{ value }` on the bus (render-ui / lolo authoring). Mirrors the `onChange` handler|event convention so it's an event-emitting prop, not a bare callback.",
|
|
8868
|
+
kind: "event-ref",
|
|
8869
|
+
emitPayloadSchema: [
|
|
8870
|
+
{
|
|
8871
|
+
name: "value",
|
|
8872
|
+
type: "string",
|
|
8873
|
+
required: true,
|
|
8874
|
+
schema: {
|
|
8875
|
+
types: [
|
|
8876
|
+
"string",
|
|
8877
|
+
"array"
|
|
8878
|
+
],
|
|
8879
|
+
items: {
|
|
8880
|
+
types: [
|
|
8881
|
+
"string"
|
|
8882
|
+
]
|
|
8883
|
+
}
|
|
8884
|
+
}
|
|
8885
|
+
}
|
|
8886
|
+
]
|
|
8819
8887
|
}
|
|
8820
8888
|
}
|
|
8821
8889
|
},
|
|
@@ -9764,6 +9832,7 @@ var patterns = {
|
|
|
9764
9832
|
"repeatable-form-section": {
|
|
9765
9833
|
type: "repeatable-form-section",
|
|
9766
9834
|
category: "form",
|
|
9835
|
+
sourceFile: "components/core/molecules/RepeatableFormSection.tsx",
|
|
9767
9836
|
tier: "molecules",
|
|
9768
9837
|
family: "core",
|
|
9769
9838
|
description: "RepeatableFormSection — a form section that repeats a fixed group of fields, letting the user add or remove entries.",
|
|
@@ -9827,7 +9896,6 @@ var patterns = {
|
|
|
9827
9896
|
],
|
|
9828
9897
|
description: "Render function for each item. In .lolo: renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field.",
|
|
9829
9898
|
required: true,
|
|
9830
|
-
kind: "callback",
|
|
9831
9899
|
callbackArgs: [
|
|
9832
9900
|
{
|
|
9833
9901
|
name: "item",
|
|
@@ -11378,6 +11446,7 @@ var patterns = {
|
|
|
11378
11446
|
"input-group": {
|
|
11379
11447
|
type: "input-group",
|
|
11380
11448
|
category: "form",
|
|
11449
|
+
sourceFile: "components/core/molecules/InputGroup.tsx",
|
|
11381
11450
|
tier: "molecules",
|
|
11382
11451
|
family: "core",
|
|
11383
11452
|
description: "InputGroup Molecule Component A component for grouping input with addons (icons, buttons, text). Uses Input, Button, Icon, and Typography atoms.",
|
|
@@ -11498,10 +11567,7 @@ var patterns = {
|
|
|
11498
11567
|
"function",
|
|
11499
11568
|
"string"
|
|
11500
11569
|
],
|
|
11501
|
-
description: "Callback or declarative event key when clear button is clicked"
|
|
11502
|
-
kind: "event-ref",
|
|
11503
|
-
emitPayloadSchema: [
|
|
11504
|
-
]
|
|
11570
|
+
description: "Callback or declarative event key when clear button is clicked"
|
|
11505
11571
|
},
|
|
11506
11572
|
options: {
|
|
11507
11573
|
types: [
|
|
@@ -11545,16 +11611,9 @@ var patterns = {
|
|
|
11545
11611
|
kind: "event-ref",
|
|
11546
11612
|
emitPayloadSchema: [
|
|
11547
11613
|
{
|
|
11548
|
-
name: "
|
|
11549
|
-
type: "
|
|
11550
|
-
required:
|
|
11551
|
-
typeWhen: [
|
|
11552
|
-
{
|
|
11553
|
-
knob: "inputType",
|
|
11554
|
-
equals: "number",
|
|
11555
|
-
type: "number"
|
|
11556
|
-
}
|
|
11557
|
-
]
|
|
11614
|
+
name: "_payload",
|
|
11615
|
+
type: "object",
|
|
11616
|
+
required: false
|
|
11558
11617
|
}
|
|
11559
11618
|
]
|
|
11560
11619
|
},
|
|
@@ -13872,6 +13931,7 @@ var patterns = {
|
|
|
13872
13931
|
"game-shell": {
|
|
13873
13932
|
type: "game-shell",
|
|
13874
13933
|
category: "game",
|
|
13934
|
+
sourceFile: "components/game/templates/GameShell.tsx",
|
|
13875
13935
|
tier: "templates",
|
|
13876
13936
|
family: "game",
|
|
13877
13937
|
description: "GameShell A full-screen layout wrapper for game applications. Replaces DashboardLayout for game clients — no sidebar nav, just full-viewport rendering with an optional HUD overlay bar. Used as a React Router layout route element: <Route element={<GameShell appName=\"TraitWars\" />}> <Route index element={<WorldMapPage />} /> ... </Route>",
|
|
@@ -13997,7 +14057,10 @@ var patterns = {
|
|
|
13997
14057
|
"1:1",
|
|
13998
14058
|
"16:9",
|
|
13999
14059
|
"5:7",
|
|
14000
|
-
"8:1"
|
|
14060
|
+
"8:1",
|
|
14061
|
+
"4:1",
|
|
14062
|
+
"5:3",
|
|
14063
|
+
"1:2"
|
|
14001
14064
|
]
|
|
14002
14065
|
},
|
|
14003
14066
|
atlas: {
|
|
@@ -14092,7 +14155,10 @@ var patterns = {
|
|
|
14092
14155
|
"1:1",
|
|
14093
14156
|
"16:9",
|
|
14094
14157
|
"5:7",
|
|
14095
|
-
"8:1"
|
|
14158
|
+
"8:1",
|
|
14159
|
+
"4:1",
|
|
14160
|
+
"5:3",
|
|
14161
|
+
"1:2"
|
|
14096
14162
|
]
|
|
14097
14163
|
},
|
|
14098
14164
|
atlas: {
|
|
@@ -17451,6 +17517,7 @@ var patterns = {
|
|
|
17451
17517
|
"state-machine-view": {
|
|
17452
17518
|
type: "state-machine-view",
|
|
17453
17519
|
category: "display",
|
|
17520
|
+
sourceFile: "components/core/organisms/StateMachineView.tsx",
|
|
17454
17521
|
tier: "organisms",
|
|
17455
17522
|
family: "core",
|
|
17456
17523
|
description: "StateMachineView component",
|
|
@@ -17518,7 +17585,6 @@ var patterns = {
|
|
|
17518
17585
|
"function"
|
|
17519
17586
|
],
|
|
17520
17587
|
description: "Custom state node renderer — when provided, replaces the default circle nodes",
|
|
17521
|
-
kind: "callback",
|
|
17522
17588
|
callbackArgs: [
|
|
17523
17589
|
{
|
|
17524
17590
|
name: "state",
|
|
@@ -17903,6 +17969,7 @@ var patterns = {
|
|
|
17903
17969
|
"calendar-grid": {
|
|
17904
17970
|
type: "calendar-grid",
|
|
17905
17971
|
category: "display",
|
|
17972
|
+
sourceFile: "components/core/molecules/CalendarGrid.tsx",
|
|
17906
17973
|
tier: "molecules",
|
|
17907
17974
|
family: "core",
|
|
17908
17975
|
description: "CalendarGrid component",
|
|
@@ -18041,7 +18108,8 @@ var patterns = {
|
|
|
18041
18108
|
"object"
|
|
18042
18109
|
],
|
|
18043
18110
|
description: "Additional payload for long-press events",
|
|
18044
|
-
payloadFor: "longPressEvent"
|
|
18111
|
+
payloadFor: "longPressEvent",
|
|
18112
|
+
eventPayloadBrand: true
|
|
18045
18113
|
},
|
|
18046
18114
|
swipeLeftEvent: {
|
|
18047
18115
|
types: [
|
|
@@ -18105,7 +18173,6 @@ var patterns = {
|
|
|
18105
18173
|
"function"
|
|
18106
18174
|
],
|
|
18107
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.",
|
|
18108
|
-
kind: "callback",
|
|
18109
18176
|
callbackArgs: [
|
|
18110
18177
|
{
|
|
18111
18178
|
name: "item",
|
|
@@ -18123,7 +18190,6 @@ var patterns = {
|
|
|
18123
18190
|
"function"
|
|
18124
18191
|
],
|
|
18125
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.",
|
|
18126
|
-
kind: "callback",
|
|
18127
18193
|
callbackArgs: [
|
|
18128
18194
|
{
|
|
18129
18195
|
name: "item",
|
|
@@ -18670,6 +18736,7 @@ var patterns = {
|
|
|
18670
18736
|
"progress-dots": {
|
|
18671
18737
|
type: "progress-dots",
|
|
18672
18738
|
category: "component",
|
|
18739
|
+
sourceFile: "components/core/molecules/ProgressDots.tsx",
|
|
18673
18740
|
tier: "molecules",
|
|
18674
18741
|
family: "core",
|
|
18675
18742
|
description: "ProgressDots component",
|
|
@@ -18699,7 +18766,6 @@ var patterns = {
|
|
|
18699
18766
|
"function"
|
|
18700
18767
|
],
|
|
18701
18768
|
description: "Custom state resolver per dot index",
|
|
18702
|
-
kind: "callback",
|
|
18703
18769
|
callbackArgs: [
|
|
18704
18770
|
{
|
|
18705
18771
|
name: "index",
|
|
@@ -18749,6 +18815,7 @@ var patterns = {
|
|
|
18749
18815
|
family: "core",
|
|
18750
18816
|
description: "DataGrid — structured records grid rendering rows over configurable columns, with sort, select, and drag-reorder.",
|
|
18751
18817
|
capabilities: "admin table, records grid, user list, CRUD list, manage-records view, spreadsheet-style data grid, sortable columns",
|
|
18818
|
+
fieldsContract: "display",
|
|
18752
18819
|
suggestedFor: [
|
|
18753
18820
|
"data",
|
|
18754
18821
|
"grid",
|
|
@@ -19155,7 +19222,6 @@ var patterns = {
|
|
|
19155
19222
|
"function"
|
|
19156
19223
|
],
|
|
19157
19224
|
description: "Render prop for custom per-card content. When provided, `fields` are ignored; `itemActions` render as a footer beneath the custom content.",
|
|
19158
|
-
kind: "callback",
|
|
19159
19225
|
callbackArgs: [
|
|
19160
19226
|
{
|
|
19161
19227
|
name: "item",
|
|
@@ -19173,7 +19239,6 @@ var patterns = {
|
|
|
19173
19239
|
"function"
|
|
19174
19240
|
],
|
|
19175
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.",
|
|
19176
|
-
kind: "callback",
|
|
19177
19242
|
callbackArgs: [
|
|
19178
19243
|
{
|
|
19179
19244
|
name: "item",
|
|
@@ -19206,6 +19271,48 @@ var patterns = {
|
|
|
19206
19271
|
"card-rows"
|
|
19207
19272
|
],
|
|
19208
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
|
+
}
|
|
19209
19316
|
}
|
|
19210
19317
|
}
|
|
19211
19318
|
},
|
|
@@ -19216,6 +19323,7 @@ var patterns = {
|
|
|
19216
19323
|
tier: "molecules",
|
|
19217
19324
|
family: "core",
|
|
19218
19325
|
description: "DataList component",
|
|
19326
|
+
fieldsContract: "display",
|
|
19219
19327
|
suggestedFor: [
|
|
19220
19328
|
"data",
|
|
19221
19329
|
"list",
|
|
@@ -19699,7 +19807,6 @@ var patterns = {
|
|
|
19699
19807
|
"function"
|
|
19700
19808
|
],
|
|
19701
19809
|
description: "Render prop for custom per-item content. When provided, `fields` and `itemActions` are ignored.",
|
|
19702
|
-
kind: "callback",
|
|
19703
19810
|
callbackArgs: [
|
|
19704
19811
|
{
|
|
19705
19812
|
name: "item",
|
|
@@ -19717,7 +19824,6 @@ var patterns = {
|
|
|
19717
19824
|
"function"
|
|
19718
19825
|
],
|
|
19719
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.",
|
|
19720
|
-
kind: "callback",
|
|
19721
19827
|
callbackArgs: [
|
|
19722
19828
|
{
|
|
19723
19829
|
name: "item",
|
|
@@ -19766,6 +19872,48 @@ var patterns = {
|
|
|
19766
19872
|
"card-rows"
|
|
19767
19873
|
],
|
|
19768
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
|
+
}
|
|
19769
19917
|
}
|
|
19770
19918
|
}
|
|
19771
19919
|
},
|
|
@@ -20078,6 +20226,7 @@ var patterns = {
|
|
|
20078
20226
|
"range-slider": {
|
|
20079
20227
|
type: "range-slider",
|
|
20080
20228
|
category: "component",
|
|
20229
|
+
sourceFile: "components/core/atoms/RangeSlider.tsx",
|
|
20081
20230
|
tier: "atoms",
|
|
20082
20231
|
family: "core",
|
|
20083
20232
|
description: "RangeSlider component",
|
|
@@ -20180,7 +20329,8 @@ var patterns = {
|
|
|
20180
20329
|
"object"
|
|
20181
20330
|
],
|
|
20182
20331
|
description: "Payload to include with the action event",
|
|
20183
|
-
payloadFor: "action"
|
|
20332
|
+
payloadFor: "action",
|
|
20333
|
+
eventPayloadBrand: true
|
|
20184
20334
|
},
|
|
20185
20335
|
onChange: {
|
|
20186
20336
|
types: [
|
|
@@ -20200,7 +20350,6 @@ var patterns = {
|
|
|
20200
20350
|
"function"
|
|
20201
20351
|
],
|
|
20202
20352
|
description: "Format function for tooltip display",
|
|
20203
|
-
kind: "callback",
|
|
20204
20353
|
callbackArgs: [
|
|
20205
20354
|
{
|
|
20206
20355
|
name: "value",
|
|
@@ -21053,7 +21202,6 @@ var patterns = {
|
|
|
21053
21202
|
"function"
|
|
21054
21203
|
],
|
|
21055
21204
|
description: "Render function for each slide. In .lolo: renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field.",
|
|
21056
|
-
kind: "callback",
|
|
21057
21205
|
callbackArgs: [
|
|
21058
21206
|
{
|
|
21059
21207
|
name: "item",
|
|
@@ -21093,7 +21241,6 @@ var patterns = {
|
|
|
21093
21241
|
"function"
|
|
21094
21242
|
],
|
|
21095
21243
|
description: "Children-as-function fallback for renderItem (compiler compatibility)",
|
|
21096
|
-
kind: "callback",
|
|
21097
21244
|
callbackArgs: [
|
|
21098
21245
|
{
|
|
21099
21246
|
name: "item",
|
|
@@ -21251,6 +21398,7 @@ var patterns = {
|
|
|
21251
21398
|
"sortable-list": {
|
|
21252
21399
|
type: "sortable-list",
|
|
21253
21400
|
category: "display",
|
|
21401
|
+
sourceFile: "components/core/molecules/SortableList.tsx",
|
|
21254
21402
|
tier: "molecules",
|
|
21255
21403
|
family: "core",
|
|
21256
21404
|
description: "SortableList — a drag-and-drop reorderable list of items.",
|
|
@@ -21278,7 +21426,6 @@ var patterns = {
|
|
|
21278
21426
|
],
|
|
21279
21427
|
description: "Render function for each item. In .lolo: renderItem: (fn item <Component …={@item.field}/>), binding per-item fields via @item.field.",
|
|
21280
21428
|
required: true,
|
|
21281
|
-
kind: "callback",
|
|
21282
21429
|
callbackArgs: [
|
|
21283
21430
|
{
|
|
21284
21431
|
name: "item",
|
|
@@ -21322,7 +21469,8 @@ var patterns = {
|
|
|
21322
21469
|
"object"
|
|
21323
21470
|
],
|
|
21324
21471
|
description: "reorderPayload prop",
|
|
21325
|
-
payloadFor: "reorderEvent"
|
|
21472
|
+
payloadFor: "reorderEvent",
|
|
21473
|
+
eventPayloadBrand: true
|
|
21326
21474
|
},
|
|
21327
21475
|
dragHandlePosition: {
|
|
21328
21476
|
types: [
|
|
@@ -28377,6 +28525,7 @@ var patterns = {
|
|
|
28377
28525
|
"choice-button": {
|
|
28378
28526
|
type: "choice-button",
|
|
28379
28527
|
category: "game",
|
|
28528
|
+
sourceFile: "components/game/atoms/ChoiceButton.tsx",
|
|
28380
28529
|
tier: "atoms",
|
|
28381
28530
|
family: "game",
|
|
28382
28531
|
description: "ChoiceButton component",
|
|
@@ -28466,7 +28615,10 @@ var patterns = {
|
|
|
28466
28615
|
"1:1",
|
|
28467
28616
|
"16:9",
|
|
28468
28617
|
"5:7",
|
|
28469
|
-
"8:1"
|
|
28618
|
+
"8:1",
|
|
28619
|
+
"4:1",
|
|
28620
|
+
"5:3",
|
|
28621
|
+
"1:2"
|
|
28470
28622
|
]
|
|
28471
28623
|
},
|
|
28472
28624
|
atlas: {
|
|
@@ -28557,6 +28709,7 @@ var patterns = {
|
|
|
28557
28709
|
"control-button": {
|
|
28558
28710
|
type: "control-button",
|
|
28559
28711
|
category: "game",
|
|
28712
|
+
sourceFile: "components/game/atoms/ControlButton.tsx",
|
|
28560
28713
|
tier: "atoms",
|
|
28561
28714
|
family: "game",
|
|
28562
28715
|
description: "ControlButton component",
|
|
@@ -28632,7 +28785,10 @@ var patterns = {
|
|
|
28632
28785
|
"1:1",
|
|
28633
28786
|
"16:9",
|
|
28634
28787
|
"5:7",
|
|
28635
|
-
"8:1"
|
|
28788
|
+
"8:1",
|
|
28789
|
+
"4:1",
|
|
28790
|
+
"5:3",
|
|
28791
|
+
"1:2"
|
|
28636
28792
|
]
|
|
28637
28793
|
},
|
|
28638
28794
|
atlas: {
|
|
@@ -28751,6 +28907,7 @@ var patterns = {
|
|
|
28751
28907
|
"dialogue-bubble": {
|
|
28752
28908
|
type: "dialogue-bubble",
|
|
28753
28909
|
category: "game",
|
|
28910
|
+
sourceFile: "components/game/atoms/DialogueBubble.tsx",
|
|
28754
28911
|
tier: "atoms",
|
|
28755
28912
|
family: "game",
|
|
28756
28913
|
description: "DialogueBubble component",
|
|
@@ -28841,7 +28998,10 @@ var patterns = {
|
|
|
28841
28998
|
"1:1",
|
|
28842
28999
|
"16:9",
|
|
28843
29000
|
"5:7",
|
|
28844
|
-
"8:1"
|
|
29001
|
+
"8:1",
|
|
29002
|
+
"4:1",
|
|
29003
|
+
"5:3",
|
|
29004
|
+
"1:2"
|
|
28845
29005
|
]
|
|
28846
29006
|
},
|
|
28847
29007
|
atlas: {
|
|
@@ -28912,6 +29072,7 @@ var patterns = {
|
|
|
28912
29072
|
"health-bar": {
|
|
28913
29073
|
type: "health-bar",
|
|
28914
29074
|
category: "game",
|
|
29075
|
+
sourceFile: "components/game/atoms/HealthBar.tsx",
|
|
28915
29076
|
tier: "atoms",
|
|
28916
29077
|
family: "game",
|
|
28917
29078
|
description: "HealthBar component",
|
|
@@ -29060,7 +29221,10 @@ var patterns = {
|
|
|
29060
29221
|
"1:1",
|
|
29061
29222
|
"16:9",
|
|
29062
29223
|
"5:7",
|
|
29063
|
-
"8:1"
|
|
29224
|
+
"8:1",
|
|
29225
|
+
"4:1",
|
|
29226
|
+
"5:3",
|
|
29227
|
+
"1:2"
|
|
29064
29228
|
]
|
|
29065
29229
|
},
|
|
29066
29230
|
atlas: {
|
|
@@ -29155,7 +29319,10 @@ var patterns = {
|
|
|
29155
29319
|
"1:1",
|
|
29156
29320
|
"16:9",
|
|
29157
29321
|
"5:7",
|
|
29158
|
-
"8:1"
|
|
29322
|
+
"8:1",
|
|
29323
|
+
"4:1",
|
|
29324
|
+
"5:3",
|
|
29325
|
+
"1:2"
|
|
29159
29326
|
]
|
|
29160
29327
|
},
|
|
29161
29328
|
atlas: {
|
|
@@ -29190,6 +29357,7 @@ var patterns = {
|
|
|
29190
29357
|
"score-display": {
|
|
29191
29358
|
type: "score-display",
|
|
29192
29359
|
category: "game",
|
|
29360
|
+
sourceFile: "components/game/atoms/ScoreDisplay.tsx",
|
|
29193
29361
|
tier: "atoms",
|
|
29194
29362
|
family: "game",
|
|
29195
29363
|
description: "ScoreDisplay component",
|
|
@@ -29265,7 +29433,10 @@ var patterns = {
|
|
|
29265
29433
|
"1:1",
|
|
29266
29434
|
"16:9",
|
|
29267
29435
|
"5:7",
|
|
29268
|
-
"8:1"
|
|
29436
|
+
"8:1",
|
|
29437
|
+
"4:1",
|
|
29438
|
+
"5:3",
|
|
29439
|
+
"1:2"
|
|
29269
29440
|
]
|
|
29270
29441
|
},
|
|
29271
29442
|
atlas: {
|
|
@@ -29352,6 +29523,7 @@ var patterns = {
|
|
|
29352
29523
|
"timer-display": {
|
|
29353
29524
|
type: "timer-display",
|
|
29354
29525
|
category: "game",
|
|
29526
|
+
sourceFile: "components/game/atoms/TimerDisplay.tsx",
|
|
29355
29527
|
tier: "atoms",
|
|
29356
29528
|
family: "game",
|
|
29357
29529
|
description: "TimerDisplay component",
|
|
@@ -29478,7 +29650,10 @@ var patterns = {
|
|
|
29478
29650
|
"1:1",
|
|
29479
29651
|
"16:9",
|
|
29480
29652
|
"5:7",
|
|
29481
|
-
"8:1"
|
|
29653
|
+
"8:1",
|
|
29654
|
+
"4:1",
|
|
29655
|
+
"5:3",
|
|
29656
|
+
"1:2"
|
|
29482
29657
|
]
|
|
29483
29658
|
},
|
|
29484
29659
|
atlas: {
|
|
@@ -30788,6 +30963,7 @@ var patterns = {
|
|
|
30788
30963
|
"doc-search": {
|
|
30789
30964
|
type: "doc-search",
|
|
30790
30965
|
category: "filter",
|
|
30966
|
+
sourceFile: "components/core/molecules/DocSearch.tsx",
|
|
30791
30967
|
tier: "molecules",
|
|
30792
30968
|
family: "core",
|
|
30793
30969
|
description: "DocSearch component",
|
|
@@ -30809,7 +30985,6 @@ var patterns = {
|
|
|
30809
30985
|
"function"
|
|
30810
30986
|
],
|
|
30811
30987
|
description: "Callback invoked with the search query, returns results",
|
|
30812
|
-
kind: "callback",
|
|
30813
30988
|
callbackArgs: [
|
|
30814
30989
|
{
|
|
30815
30990
|
name: "query",
|
|
@@ -31749,6 +31924,7 @@ var patterns = {
|
|
|
31749
31924
|
"game-hud": {
|
|
31750
31925
|
type: "game-hud",
|
|
31751
31926
|
category: "game",
|
|
31927
|
+
sourceFile: "components/game/molecules/GameHud.tsx",
|
|
31752
31928
|
tier: "molecules",
|
|
31753
31929
|
family: "game",
|
|
31754
31930
|
description: "GameHud component",
|
|
@@ -31839,7 +32015,10 @@ var patterns = {
|
|
|
31839
32015
|
"1:1",
|
|
31840
32016
|
"16:9",
|
|
31841
32017
|
"5:7",
|
|
31842
|
-
"8:1"
|
|
32018
|
+
"8:1",
|
|
32019
|
+
"4:1",
|
|
32020
|
+
"5:3",
|
|
32021
|
+
"1:2"
|
|
31843
32022
|
]
|
|
31844
32023
|
},
|
|
31845
32024
|
atlas: {
|
|
@@ -31933,7 +32112,10 @@ var patterns = {
|
|
|
31933
32112
|
"1:1",
|
|
31934
32113
|
"16:9",
|
|
31935
32114
|
"5:7",
|
|
31936
|
-
"8:1"
|
|
32115
|
+
"8:1",
|
|
32116
|
+
"4:1",
|
|
32117
|
+
"5:3",
|
|
32118
|
+
"1:2"
|
|
31937
32119
|
]
|
|
31938
32120
|
},
|
|
31939
32121
|
atlas: {
|
|
@@ -32090,7 +32272,10 @@ var patterns = {
|
|
|
32090
32272
|
"1:1",
|
|
32091
32273
|
"16:9",
|
|
32092
32274
|
"5:7",
|
|
32093
|
-
"8:1"
|
|
32275
|
+
"8:1",
|
|
32276
|
+
"4:1",
|
|
32277
|
+
"5:3",
|
|
32278
|
+
"1:2"
|
|
32094
32279
|
]
|
|
32095
32280
|
},
|
|
32096
32281
|
atlas: {
|
|
@@ -32184,7 +32369,10 @@ var patterns = {
|
|
|
32184
32369
|
"1:1",
|
|
32185
32370
|
"16:9",
|
|
32186
32371
|
"5:7",
|
|
32187
|
-
"8:1"
|
|
32372
|
+
"8:1",
|
|
32373
|
+
"4:1",
|
|
32374
|
+
"5:3",
|
|
32375
|
+
"1:2"
|
|
32188
32376
|
]
|
|
32189
32377
|
},
|
|
32190
32378
|
atlas: {
|
|
@@ -32373,7 +32561,10 @@ var patterns = {
|
|
|
32373
32561
|
"1:1",
|
|
32374
32562
|
"16:9",
|
|
32375
32563
|
"5:7",
|
|
32376
|
-
"8:1"
|
|
32564
|
+
"8:1",
|
|
32565
|
+
"4:1",
|
|
32566
|
+
"5:3",
|
|
32567
|
+
"1:2"
|
|
32377
32568
|
]
|
|
32378
32569
|
},
|
|
32379
32570
|
atlas: {
|
|
@@ -32720,7 +32911,10 @@ var patterns = {
|
|
|
32720
32911
|
"1:1",
|
|
32721
32912
|
"16:9",
|
|
32722
32913
|
"5:7",
|
|
32723
|
-
"8:1"
|
|
32914
|
+
"8:1",
|
|
32915
|
+
"4:1",
|
|
32916
|
+
"5:3",
|
|
32917
|
+
"1:2"
|
|
32724
32918
|
]
|
|
32725
32919
|
},
|
|
32726
32920
|
atlas: {
|
|
@@ -32761,6 +32955,7 @@ var patterns = {
|
|
|
32761
32955
|
"stat-badge": {
|
|
32762
32956
|
type: "stat-badge",
|
|
32763
32957
|
category: "game",
|
|
32958
|
+
sourceFile: "components/game/molecules/StatBadge.tsx",
|
|
32764
32959
|
tier: "molecules",
|
|
32765
32960
|
family: "game",
|
|
32766
32961
|
description: "StatBadge component",
|
|
@@ -32836,7 +33031,10 @@ var patterns = {
|
|
|
32836
33031
|
"1:1",
|
|
32837
33032
|
"16:9",
|
|
32838
33033
|
"5:7",
|
|
32839
|
-
"8:1"
|
|
33034
|
+
"8:1",
|
|
33035
|
+
"4:1",
|
|
33036
|
+
"5:3",
|
|
33037
|
+
"1:2"
|
|
32840
33038
|
]
|
|
32841
33039
|
},
|
|
32842
33040
|
atlas: {
|
|
@@ -32931,7 +33129,10 @@ var patterns = {
|
|
|
32931
33129
|
"1:1",
|
|
32932
33130
|
"16:9",
|
|
32933
33131
|
"5:7",
|
|
32934
|
-
"8:1"
|
|
33132
|
+
"8:1",
|
|
33133
|
+
"4:1",
|
|
33134
|
+
"5:3",
|
|
33135
|
+
"1:2"
|
|
32935
33136
|
]
|
|
32936
33137
|
},
|
|
32937
33138
|
atlas: {
|
|
@@ -33457,6 +33658,7 @@ var patterns = {
|
|
|
33457
33658
|
"game-audio-toggle": {
|
|
33458
33659
|
type: "game-audio-toggle",
|
|
33459
33660
|
category: "game",
|
|
33661
|
+
sourceFile: "components/game/atoms/GameAudioToggle.tsx",
|
|
33460
33662
|
tier: "atoms",
|
|
33461
33663
|
family: "game",
|
|
33462
33664
|
description: "GameAudioToggle component",
|
|
@@ -33588,7 +33790,10 @@ var patterns = {
|
|
|
33588
33790
|
"1:1",
|
|
33589
33791
|
"16:9",
|
|
33590
33792
|
"5:7",
|
|
33591
|
-
"8:1"
|
|
33793
|
+
"8:1",
|
|
33794
|
+
"4:1",
|
|
33795
|
+
"5:3",
|
|
33796
|
+
"1:2"
|
|
33592
33797
|
]
|
|
33593
33798
|
},
|
|
33594
33799
|
atlas: {
|
|
@@ -33683,7 +33888,10 @@ var patterns = {
|
|
|
33683
33888
|
"1:1",
|
|
33684
33889
|
"16:9",
|
|
33685
33890
|
"5:7",
|
|
33686
|
-
"8:1"
|
|
33891
|
+
"8:1",
|
|
33892
|
+
"4:1",
|
|
33893
|
+
"5:3",
|
|
33894
|
+
"1:2"
|
|
33687
33895
|
]
|
|
33688
33896
|
},
|
|
33689
33897
|
atlas: {
|
|
@@ -33732,6 +33940,7 @@ var patterns = {
|
|
|
33732
33940
|
"trait-slot": {
|
|
33733
33941
|
type: "trait-slot",
|
|
33734
33942
|
category: "game",
|
|
33943
|
+
sourceFile: "components/game/molecules/TraitSlot.tsx",
|
|
33735
33944
|
tier: "molecules",
|
|
33736
33945
|
family: "game",
|
|
33737
33946
|
description: "Event Contract: Emits: UI:CLICK Emits: UI:REMOVE",
|
|
@@ -33844,7 +34053,10 @@ var patterns = {
|
|
|
33844
34053
|
"1:1",
|
|
33845
34054
|
"16:9",
|
|
33846
34055
|
"5:7",
|
|
33847
|
-
"8:1"
|
|
34056
|
+
"8:1",
|
|
34057
|
+
"4:1",
|
|
34058
|
+
"5:3",
|
|
34059
|
+
"1:2"
|
|
33848
34060
|
]
|
|
33849
34061
|
},
|
|
33850
34062
|
atlas: {
|
|
@@ -34087,7 +34299,10 @@ var patterns = {
|
|
|
34087
34299
|
"1:1",
|
|
34088
34300
|
"16:9",
|
|
34089
34301
|
"5:7",
|
|
34090
|
-
"8:1"
|
|
34302
|
+
"8:1",
|
|
34303
|
+
"4:1",
|
|
34304
|
+
"5:3",
|
|
34305
|
+
"1:2"
|
|
34091
34306
|
]
|
|
34092
34307
|
},
|
|
34093
34308
|
atlas: {
|
|
@@ -34264,7 +34479,10 @@ var patterns = {
|
|
|
34264
34479
|
"1:1",
|
|
34265
34480
|
"16:9",
|
|
34266
34481
|
"5:7",
|
|
34267
|
-
"8:1"
|
|
34482
|
+
"8:1",
|
|
34483
|
+
"4:1",
|
|
34484
|
+
"5:3",
|
|
34485
|
+
"1:2"
|
|
34268
34486
|
]
|
|
34269
34487
|
},
|
|
34270
34488
|
atlas: {
|
|
@@ -34490,7 +34708,10 @@ var patterns = {
|
|
|
34490
34708
|
"1:1",
|
|
34491
34709
|
"16:9",
|
|
34492
34710
|
"5:7",
|
|
34493
|
-
"8:1"
|
|
34711
|
+
"8:1",
|
|
34712
|
+
"4:1",
|
|
34713
|
+
"5:3",
|
|
34714
|
+
"1:2"
|
|
34494
34715
|
]
|
|
34495
34716
|
},
|
|
34496
34717
|
atlas: {
|
|
@@ -34687,6 +34908,7 @@ var patterns = {
|
|
|
34687
34908
|
"action-palette": {
|
|
34688
34909
|
type: "action-palette",
|
|
34689
34910
|
category: "game",
|
|
34911
|
+
sourceFile: "components/game/molecules/ActionPalette.tsx",
|
|
34690
34912
|
tier: "molecules",
|
|
34691
34913
|
family: "game",
|
|
34692
34914
|
description: "ActionPalette Component Grid of draggable ActionTile components for the Sequencer tier. Kids pick from these to build their sequence.",
|
|
@@ -34797,7 +35019,10 @@ var patterns = {
|
|
|
34797
35019
|
"1:1",
|
|
34798
35020
|
"16:9",
|
|
34799
35021
|
"5:7",
|
|
34800
|
-
"8:1"
|
|
35022
|
+
"8:1",
|
|
35023
|
+
"4:1",
|
|
35024
|
+
"5:3",
|
|
35025
|
+
"1:2"
|
|
34801
35026
|
]
|
|
34802
35027
|
},
|
|
34803
35028
|
atlas: {
|
|
@@ -34986,6 +35211,7 @@ var patterns = {
|
|
|
34986
35211
|
"action-tile": {
|
|
34987
35212
|
type: "action-tile",
|
|
34988
35213
|
category: "game",
|
|
35214
|
+
sourceFile: "components/game/molecules/ActionTile.tsx",
|
|
34989
35215
|
tier: "molecules",
|
|
34990
35216
|
family: "game",
|
|
34991
35217
|
description: "ActionTile Component A draggable action tile for the Sequencer tier (ages 5-8). Kids drag these from the ActionPalette into SequenceBar slots. Sets SlotItemData on dataTransfer for TraitSlot compatibility.",
|
|
@@ -35198,7 +35424,10 @@ var patterns = {
|
|
|
35198
35424
|
"1:1",
|
|
35199
35425
|
"16:9",
|
|
35200
35426
|
"5:7",
|
|
35201
|
-
"8:1"
|
|
35427
|
+
"8:1",
|
|
35428
|
+
"4:1",
|
|
35429
|
+
"5:3",
|
|
35430
|
+
"1:2"
|
|
35202
35431
|
]
|
|
35203
35432
|
},
|
|
35204
35433
|
atlas: {
|
|
@@ -35361,6 +35590,7 @@ var patterns = {
|
|
|
35361
35590
|
"sequence-bar": {
|
|
35362
35591
|
type: "sequence-bar",
|
|
35363
35592
|
category: "game",
|
|
35593
|
+
sourceFile: "components/game/molecules/SequenceBar.tsx",
|
|
35364
35594
|
tier: "molecules",
|
|
35365
35595
|
family: "game",
|
|
35366
35596
|
description: "SequenceBar Component A row of TraitSlot components forming the action sequence for the Sequencer tier (ages 5-8). Kids drag ActionTiles from the palette into these slots to build their sequence.",
|
|
@@ -35471,7 +35701,10 @@ var patterns = {
|
|
|
35471
35701
|
"1:1",
|
|
35472
35702
|
"16:9",
|
|
35473
35703
|
"5:7",
|
|
35474
|
-
"8:1"
|
|
35704
|
+
"8:1",
|
|
35705
|
+
"4:1",
|
|
35706
|
+
"5:3",
|
|
35707
|
+
"1:2"
|
|
35475
35708
|
]
|
|
35476
35709
|
},
|
|
35477
35710
|
atlas: {
|
|
@@ -35699,7 +35932,10 @@ var patterns = {
|
|
|
35699
35932
|
"1:1",
|
|
35700
35933
|
"16:9",
|
|
35701
35934
|
"5:7",
|
|
35702
|
-
"8:1"
|
|
35935
|
+
"8:1",
|
|
35936
|
+
"4:1",
|
|
35937
|
+
"5:3",
|
|
35938
|
+
"1:2"
|
|
35703
35939
|
]
|
|
35704
35940
|
},
|
|
35705
35941
|
atlas: {
|
|
@@ -36940,6 +37176,7 @@ var patterns = {
|
|
|
36940
37176
|
family: "core",
|
|
36941
37177
|
description: "TableView — sortable, selectable data table rendering rows over configurable columns, with inline row actions and grouping.",
|
|
36942
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",
|
|
36943
37180
|
suggestedFor: [
|
|
36944
37181
|
"table",
|
|
36945
37182
|
"view",
|
|
@@ -37396,7 +37633,6 @@ var patterns = {
|
|
|
37396
37633
|
"function"
|
|
37397
37634
|
],
|
|
37398
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.",
|
|
37399
|
-
kind: "callback",
|
|
37400
37636
|
callbackArgs: [
|
|
37401
37637
|
{
|
|
37402
37638
|
name: "item",
|
|
@@ -37414,7 +37650,6 @@ var patterns = {
|
|
|
37414
37650
|
"function"
|
|
37415
37651
|
],
|
|
37416
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.",
|
|
37417
|
-
kind: "callback",
|
|
37418
37653
|
callbackArgs: [
|
|
37419
37654
|
{
|
|
37420
37655
|
name: "item",
|
|
@@ -37440,6 +37675,48 @@ var patterns = {
|
|
|
37440
37675
|
"bordered"
|
|
37441
37676
|
],
|
|
37442
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
|
+
}
|
|
37443
37720
|
}
|
|
37444
37721
|
}
|
|
37445
37722
|
},
|
|
@@ -38021,6 +38298,7 @@ var patterns = {
|
|
|
38021
38298
|
"code-runner-panel": {
|
|
38022
38299
|
type: "code-runner-panel",
|
|
38023
38300
|
category: "display",
|
|
38301
|
+
sourceFile: "components/core/organisms/CodeRunnerPanel.tsx",
|
|
38024
38302
|
tier: "organisms",
|
|
38025
38303
|
family: "core",
|
|
38026
38304
|
description: "CodeRunnerPanel component",
|
|
@@ -38058,7 +38336,6 @@ var patterns = {
|
|
|
38058
38336
|
"function"
|
|
38059
38337
|
],
|
|
38060
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.",
|
|
38061
|
-
kind: "callback",
|
|
38062
38339
|
callbackArgs: [
|
|
38063
38340
|
{
|
|
38064
38341
|
name: "code",
|
|
@@ -38085,6 +38362,7 @@ var patterns = {
|
|
|
38085
38362
|
"segment-renderer": {
|
|
38086
38363
|
type: "segment-renderer",
|
|
38087
38364
|
category: "display",
|
|
38365
|
+
sourceFile: "components/core/organisms/SegmentRenderer.tsx",
|
|
38088
38366
|
tier: "organisms",
|
|
38089
38367
|
family: "core",
|
|
38090
38368
|
description: "SegmentRenderer component",
|
|
@@ -38176,7 +38454,6 @@ var patterns = {
|
|
|
38176
38454
|
"function"
|
|
38177
38455
|
],
|
|
38178
38456
|
description: "Simulate executing runnable code blocks. Omit to render runnable blocks as read-only. Real execution is a future track.",
|
|
38179
|
-
kind: "callback",
|
|
38180
38457
|
callbackArgs: [
|
|
38181
38458
|
{
|
|
38182
38459
|
name: "code",
|
|
@@ -38194,7 +38471,6 @@ var patterns = {
|
|
|
38194
38471
|
"function"
|
|
38195
38472
|
],
|
|
38196
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.",
|
|
38197
|
-
kind: "callback",
|
|
38198
38474
|
callbackArgs: [
|
|
38199
38475
|
{
|
|
38200
38476
|
name: "type",
|
|
@@ -38749,6 +39025,7 @@ var patterns = {
|
|
|
38749
39025
|
"canvas-2d": {
|
|
38750
39026
|
type: "canvas-2d",
|
|
38751
39027
|
category: "game",
|
|
39028
|
+
sourceFile: "components/game/molecules/Canvas2D.tsx",
|
|
38752
39029
|
tier: "molecules",
|
|
38753
39030
|
family: "game",
|
|
38754
39031
|
description: "Canvas2D component",
|
|
@@ -38895,7 +39172,10 @@ var patterns = {
|
|
|
38895
39172
|
"1:1",
|
|
38896
39173
|
"16:9",
|
|
38897
39174
|
"5:7",
|
|
38898
|
-
"8:1"
|
|
39175
|
+
"8:1",
|
|
39176
|
+
"4:1",
|
|
39177
|
+
"5:3",
|
|
39178
|
+
"1:2"
|
|
38899
39179
|
]
|
|
38900
39180
|
},
|
|
38901
39181
|
atlas: {
|
|
@@ -38991,10 +39271,12 @@ var patterns = {
|
|
|
38991
39271
|
"object"
|
|
38992
39272
|
],
|
|
38993
39273
|
description: "Maps a keydown `e.code` → the board's SEMANTIC event (device-agnostic input).",
|
|
39274
|
+
kind: "event-map",
|
|
38994
39275
|
mapValue: {
|
|
38995
39276
|
types: [
|
|
38996
39277
|
"string"
|
|
38997
|
-
]
|
|
39278
|
+
],
|
|
39279
|
+
kind: "event"
|
|
38998
39280
|
}
|
|
38999
39281
|
},
|
|
39000
39282
|
keyUpMap: {
|
|
@@ -39002,10 +39284,12 @@ var patterns = {
|
|
|
39002
39284
|
"object"
|
|
39003
39285
|
],
|
|
39004
39286
|
description: "Maps a keyup `e.code` → the board's SEMANTIC event.",
|
|
39287
|
+
kind: "event-map",
|
|
39005
39288
|
mapValue: {
|
|
39006
39289
|
types: [
|
|
39007
39290
|
"string"
|
|
39008
|
-
]
|
|
39291
|
+
],
|
|
39292
|
+
kind: "event"
|
|
39009
39293
|
}
|
|
39010
39294
|
},
|
|
39011
39295
|
editable: {
|
|
@@ -39208,6 +39492,7 @@ var patterns = {
|
|
|
39208
39492
|
"control-grid": {
|
|
39209
39493
|
type: "control-grid",
|
|
39210
39494
|
category: "game",
|
|
39495
|
+
sourceFile: "components/game/molecules/ControlGrid.tsx",
|
|
39211
39496
|
tier: "molecules",
|
|
39212
39497
|
family: "game",
|
|
39213
39498
|
description: "ControlGrid component",
|
|
@@ -39319,7 +39604,10 @@ var patterns = {
|
|
|
39319
39604
|
"1:1",
|
|
39320
39605
|
"16:9",
|
|
39321
39606
|
"5:7",
|
|
39322
|
-
"8:1"
|
|
39607
|
+
"8:1",
|
|
39608
|
+
"4:1",
|
|
39609
|
+
"5:3",
|
|
39610
|
+
"1:2"
|
|
39323
39611
|
]
|
|
39324
39612
|
},
|
|
39325
39613
|
atlas: {
|
|
@@ -39462,10 +39750,12 @@ var patterns = {
|
|
|
39462
39750
|
"object"
|
|
39463
39751
|
],
|
|
39464
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",
|
|
39465
39754
|
mapValue: {
|
|
39466
39755
|
types: [
|
|
39467
39756
|
"string"
|
|
39468
|
-
]
|
|
39757
|
+
],
|
|
39758
|
+
kind: "event"
|
|
39469
39759
|
}
|
|
39470
39760
|
},
|
|
39471
39761
|
directionReleaseEvents: {
|
|
@@ -39473,10 +39763,12 @@ var patterns = {
|
|
|
39473
39763
|
"object"
|
|
39474
39764
|
],
|
|
39475
39765
|
description: "Per-direction RELEASE → semantic event, e.g. `{ left: \"STOP\", right: \"STOP\" }`. Omit a direction to ignore its release.",
|
|
39766
|
+
kind: "event-map",
|
|
39476
39767
|
mapValue: {
|
|
39477
39768
|
types: [
|
|
39478
39769
|
"string"
|
|
39479
|
-
]
|
|
39770
|
+
],
|
|
39771
|
+
kind: "event"
|
|
39480
39772
|
}
|
|
39481
39773
|
},
|
|
39482
39774
|
directionAssets: {
|
|
@@ -39548,7 +39840,10 @@ var patterns = {
|
|
|
39548
39840
|
"1:1",
|
|
39549
39841
|
"16:9",
|
|
39550
39842
|
"5:7",
|
|
39551
|
-
"8:1"
|
|
39843
|
+
"8:1",
|
|
39844
|
+
"4:1",
|
|
39845
|
+
"5:3",
|
|
39846
|
+
"1:2"
|
|
39552
39847
|
]
|
|
39553
39848
|
},
|
|
39554
39849
|
atlas: {
|
|
@@ -39619,6 +39914,7 @@ var patterns = {
|
|
|
39619
39914
|
"game-icon": {
|
|
39620
39915
|
type: "game-icon",
|
|
39621
39916
|
category: "game",
|
|
39917
|
+
sourceFile: "components/core/atoms/GameIcon.tsx",
|
|
39622
39918
|
tier: "atoms",
|
|
39623
39919
|
family: "core",
|
|
39624
39920
|
description: "GameIcon component",
|
|
@@ -39694,7 +39990,10 @@ var patterns = {
|
|
|
39694
39990
|
"1:1",
|
|
39695
39991
|
"16:9",
|
|
39696
39992
|
"5:7",
|
|
39697
|
-
"8:1"
|
|
39993
|
+
"8:1",
|
|
39994
|
+
"4:1",
|
|
39995
|
+
"5:3",
|
|
39996
|
+
"1:2"
|
|
39698
39997
|
]
|
|
39699
39998
|
},
|
|
39700
39999
|
atlas: {
|
|
@@ -43430,6 +43729,7 @@ var patterns = {
|
|
|
43430
43729
|
"math-canvas": {
|
|
43431
43730
|
type: "math-canvas",
|
|
43432
43731
|
category: "learning",
|
|
43732
|
+
sourceFile: "components/learning/molecules/MathCanvas.tsx",
|
|
43433
43733
|
tier: "molecules",
|
|
43434
43734
|
family: "learning",
|
|
43435
43735
|
description: "MathCanvas component",
|
|
@@ -44470,10 +44770,12 @@ var patterns = {
|
|
|
44470
44770
|
"object"
|
|
44471
44771
|
],
|
|
44472
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",
|
|
44473
44774
|
mapValue: {
|
|
44474
44775
|
types: [
|
|
44475
44776
|
"string"
|
|
44476
|
-
]
|
|
44777
|
+
],
|
|
44778
|
+
kind: "event"
|
|
44477
44779
|
}
|
|
44478
44780
|
},
|
|
44479
44781
|
keyUpMap: {
|
|
@@ -44481,10 +44783,12 @@ var patterns = {
|
|
|
44481
44783
|
"object"
|
|
44482
44784
|
],
|
|
44483
44785
|
description: "Maps a keyup `e.code` → the board's SEMANTIC event.",
|
|
44786
|
+
kind: "event-map",
|
|
44484
44787
|
mapValue: {
|
|
44485
44788
|
types: [
|
|
44486
44789
|
"string"
|
|
44487
|
-
]
|
|
44790
|
+
],
|
|
44791
|
+
kind: "event"
|
|
44488
44792
|
}
|
|
44489
44793
|
},
|
|
44490
44794
|
isLoading: {
|
|
@@ -48034,6 +48338,7 @@ var patterns = {
|
|
|
48034
48338
|
"draw-sprite": {
|
|
48035
48339
|
type: "draw-sprite",
|
|
48036
48340
|
category: "game",
|
|
48341
|
+
sourceFile: "components/game/atoms/DrawSprite.tsx",
|
|
48037
48342
|
tier: "atoms",
|
|
48038
48343
|
family: "game",
|
|
48039
48344
|
description: "DrawSprite component",
|
|
@@ -48155,7 +48460,10 @@ var patterns = {
|
|
|
48155
48460
|
"1:1",
|
|
48156
48461
|
"16:9",
|
|
48157
48462
|
"5:7",
|
|
48158
|
-
"8:1"
|
|
48463
|
+
"8:1",
|
|
48464
|
+
"4:1",
|
|
48465
|
+
"5:3",
|
|
48466
|
+
"1:2"
|
|
48159
48467
|
]
|
|
48160
48468
|
},
|
|
48161
48469
|
atlas: {
|
|
@@ -49139,6 +49447,7 @@ var patterns = {
|
|
|
49139
49447
|
"draw-sprite-layer": {
|
|
49140
49448
|
type: "draw-sprite-layer",
|
|
49141
49449
|
category: "game",
|
|
49450
|
+
sourceFile: "components/game/molecules/DrawSpriteLayer.tsx",
|
|
49142
49451
|
tier: "molecules",
|
|
49143
49452
|
family: "game",
|
|
49144
49453
|
description: "DrawSpriteLayer component",
|
|
@@ -49281,7 +49590,10 @@ var patterns = {
|
|
|
49281
49590
|
"1:1",
|
|
49282
49591
|
"16:9",
|
|
49283
49592
|
"5:7",
|
|
49284
|
-
"8:1"
|
|
49593
|
+
"8:1",
|
|
49594
|
+
"4:1",
|
|
49595
|
+
"5:3",
|
|
49596
|
+
"1:2"
|
|
49285
49597
|
]
|
|
49286
49598
|
},
|
|
49287
49599
|
atlas: {
|
|
@@ -49587,6 +49899,7 @@ var patterns = {
|
|
|
49587
49899
|
canvas: {
|
|
49588
49900
|
type: "canvas",
|
|
49589
49901
|
category: "game",
|
|
49902
|
+
sourceFile: "components/game/molecules/Canvas.tsx",
|
|
49590
49903
|
tier: "molecules",
|
|
49591
49904
|
family: "game",
|
|
49592
49905
|
description: "Canvas component",
|
|
@@ -49826,7 +50139,10 @@ var patterns = {
|
|
|
49826
50139
|
"1:1",
|
|
49827
50140
|
"16:9",
|
|
49828
50141
|
"5:7",
|
|
49829
|
-
"8:1"
|
|
50142
|
+
"8:1",
|
|
50143
|
+
"4:1",
|
|
50144
|
+
"5:3",
|
|
50145
|
+
"1:2"
|
|
49830
50146
|
]
|
|
49831
50147
|
},
|
|
49832
50148
|
atlas: {
|
|
@@ -50244,10 +50560,12 @@ var patterns = {
|
|
|
50244
50560
|
"object"
|
|
50245
50561
|
],
|
|
50246
50562
|
description: "keyMap prop",
|
|
50563
|
+
kind: "event-map",
|
|
50247
50564
|
mapValue: {
|
|
50248
50565
|
types: [
|
|
50249
50566
|
"string"
|
|
50250
|
-
]
|
|
50567
|
+
],
|
|
50568
|
+
kind: "event"
|
|
50251
50569
|
}
|
|
50252
50570
|
},
|
|
50253
50571
|
keyUpMap: {
|
|
@@ -50255,10 +50573,12 @@ var patterns = {
|
|
|
50255
50573
|
"object"
|
|
50256
50574
|
],
|
|
50257
50575
|
description: "keyUpMap prop",
|
|
50576
|
+
kind: "event-map",
|
|
50258
50577
|
mapValue: {
|
|
50259
50578
|
types: [
|
|
50260
50579
|
"string"
|
|
50261
|
-
]
|
|
50580
|
+
],
|
|
50581
|
+
kind: "event"
|
|
50262
50582
|
}
|
|
50263
50583
|
},
|
|
50264
50584
|
editable: {
|
|
@@ -52266,6 +52586,7 @@ var patterns = {
|
|
|
52266
52586
|
"draw-fx-layer": {
|
|
52267
52587
|
type: "draw-fx-layer",
|
|
52268
52588
|
category: "game",
|
|
52589
|
+
sourceFile: "components/game/molecules/DrawFxLayer.tsx",
|
|
52269
52590
|
tier: "molecules",
|
|
52270
52591
|
family: "game",
|
|
52271
52592
|
description: "DrawFxLayer component",
|
|
@@ -52641,7 +52962,10 @@ var patterns = {
|
|
|
52641
52962
|
"1:1",
|
|
52642
52963
|
"16:9",
|
|
52643
52964
|
"5:7",
|
|
52644
|
-
"8:1"
|
|
52965
|
+
"8:1",
|
|
52966
|
+
"4:1",
|
|
52967
|
+
"5:3",
|
|
52968
|
+
"1:2"
|
|
52645
52969
|
]
|
|
52646
52970
|
},
|
|
52647
52971
|
atlas: {
|
|
@@ -54059,7 +54383,10 @@ var patterns = {
|
|
|
54059
54383
|
"1:1",
|
|
54060
54384
|
"16:9",
|
|
54061
54385
|
"5:7",
|
|
54062
|
-
"8:1"
|
|
54386
|
+
"8:1",
|
|
54387
|
+
"4:1",
|
|
54388
|
+
"5:3",
|
|
54389
|
+
"1:2"
|
|
54063
54390
|
]
|
|
54064
54391
|
},
|
|
54065
54392
|
atlas: {
|
|
@@ -54191,7 +54518,7 @@ var patterns = {
|
|
|
54191
54518
|
types: [
|
|
54192
54519
|
"array"
|
|
54193
54520
|
],
|
|
54194
|
-
description: "The skeleton (bind pose; FK chain via `parent` names).",
|
|
54521
|
+
description: "The skeleton (bind pose; FK chain via `parent` names). Falls back to the rigbundle's `bones` when empty.",
|
|
54195
54522
|
required: true,
|
|
54196
54523
|
items: {
|
|
54197
54524
|
types: [
|
|
@@ -54274,6 +54601,12 @@ var patterns = {
|
|
|
54274
54601
|
"frames"
|
|
54275
54602
|
]
|
|
54276
54603
|
},
|
|
54604
|
+
clipName: {
|
|
54605
|
+
types: [
|
|
54606
|
+
"string"
|
|
54607
|
+
],
|
|
54608
|
+
description: "Named clip inside the rigbundle at `meshUrl` (`clips[clipName].frames`); used when `clip` is absent. Empty/unknown = no clip."
|
|
54609
|
+
},
|
|
54277
54610
|
frame: {
|
|
54278
54611
|
types: [
|
|
54279
54612
|
"number"
|
|
@@ -54344,7 +54677,7 @@ var patternsRegistry = {
|
|
|
54344
54677
|
};
|
|
54345
54678
|
|
|
54346
54679
|
var version$2 = "1.0.0";
|
|
54347
|
-
var exportedAt$2 = "2026-09-
|
|
54680
|
+
var exportedAt$2 = "2026-09-12T17:27:32.966Z";
|
|
54348
54681
|
var integrators = {
|
|
54349
54682
|
github: {
|
|
54350
54683
|
name: "github",
|
|
@@ -57960,9 +58293,9 @@ var integrators = {
|
|
|
57960
58293
|
},
|
|
57961
58294
|
{
|
|
57962
58295
|
name: "rig",
|
|
57963
|
-
type: "
|
|
58296
|
+
type: "object",
|
|
57964
58297
|
required: true,
|
|
57965
|
-
description: "
|
|
58298
|
+
description: "The rig definition (parts, boxes, pivots, …) as JSON."
|
|
57966
58299
|
}
|
|
57967
58300
|
],
|
|
57968
58301
|
responseShape: {
|
|
@@ -57985,9 +58318,9 @@ var integrators = {
|
|
|
57985
58318
|
},
|
|
57986
58319
|
{
|
|
57987
58320
|
name: "rig",
|
|
57988
|
-
type: "
|
|
58321
|
+
type: "object",
|
|
57989
58322
|
required: true,
|
|
57990
|
-
description: "
|
|
58323
|
+
description: "The rig definition (parts, boxes, pivots, …) as JSON."
|
|
57991
58324
|
},
|
|
57992
58325
|
{
|
|
57993
58326
|
name: "preset",
|
|
@@ -58000,9 +58333,336 @@ var integrators = {
|
|
|
58000
58333
|
type: "string",
|
|
58001
58334
|
required: true,
|
|
58002
58335
|
description: "Output directory for rendered files."
|
|
58336
|
+
},
|
|
58337
|
+
{
|
|
58338
|
+
name: "mode",
|
|
58339
|
+
type: "string",
|
|
58340
|
+
required: false,
|
|
58341
|
+
description: "Render path: 'mesh' (skinned, deforming) or 'cutout' (rigid per-part layers). Defaults to 'mesh'."
|
|
58342
|
+
},
|
|
58343
|
+
{
|
|
58344
|
+
name: "supersample",
|
|
58345
|
+
type: "number",
|
|
58346
|
+
required: false,
|
|
58347
|
+
description: "Supersampling factor for the cutout path. Defaults to 1."
|
|
58348
|
+
}
|
|
58349
|
+
],
|
|
58350
|
+
responseShape: {
|
|
58351
|
+
outdir: "string",
|
|
58352
|
+
frames: "number",
|
|
58353
|
+
framePaths: "string[]",
|
|
58354
|
+
sheet: "string",
|
|
58355
|
+
gif: "string",
|
|
58356
|
+
atlas: "string"
|
|
58357
|
+
}
|
|
58358
|
+
},
|
|
58359
|
+
{
|
|
58360
|
+
name: "listPresets",
|
|
58361
|
+
description: "List the available animation presets (name, fps, frame count, bone roles) from the local rigger service.",
|
|
58362
|
+
params: [
|
|
58363
|
+
],
|
|
58364
|
+
responseShape: {
|
|
58365
|
+
presets: {
|
|
58366
|
+
type: "array",
|
|
58367
|
+
items: {
|
|
58368
|
+
type: "object",
|
|
58369
|
+
properties: {
|
|
58370
|
+
name: {
|
|
58371
|
+
type: "string",
|
|
58372
|
+
required: true
|
|
58373
|
+
},
|
|
58374
|
+
path: {
|
|
58375
|
+
type: "string",
|
|
58376
|
+
required: true
|
|
58377
|
+
},
|
|
58378
|
+
fps: {
|
|
58379
|
+
type: "number",
|
|
58380
|
+
required: true
|
|
58381
|
+
},
|
|
58382
|
+
frames: {
|
|
58383
|
+
type: "number",
|
|
58384
|
+
required: true
|
|
58385
|
+
},
|
|
58386
|
+
bones: {
|
|
58387
|
+
type: "object[]",
|
|
58388
|
+
required: true
|
|
58389
|
+
}
|
|
58390
|
+
}
|
|
58391
|
+
}
|
|
58392
|
+
}
|
|
58393
|
+
}
|
|
58394
|
+
},
|
|
58395
|
+
{
|
|
58396
|
+
name: "loadRig",
|
|
58397
|
+
description: "Load a rig file, resolving `cloneOf` parts to concrete box/pivot geometry.",
|
|
58398
|
+
params: [
|
|
58399
|
+
{
|
|
58400
|
+
name: "rigPath",
|
|
58401
|
+
type: "string",
|
|
58402
|
+
required: true,
|
|
58403
|
+
description: "Path to the rig JSON file."
|
|
58404
|
+
}
|
|
58405
|
+
],
|
|
58406
|
+
responseShape: {
|
|
58407
|
+
rig: "object",
|
|
58408
|
+
resolved: "object"
|
|
58409
|
+
}
|
|
58410
|
+
},
|
|
58411
|
+
{
|
|
58412
|
+
name: "saveRig",
|
|
58413
|
+
description: "Save a rig file; the server validates it and rejects a malformed part.",
|
|
58414
|
+
params: [
|
|
58415
|
+
{
|
|
58416
|
+
name: "rigPath",
|
|
58417
|
+
type: "string",
|
|
58418
|
+
required: true,
|
|
58419
|
+
description: "Path to write the rig JSON file."
|
|
58420
|
+
},
|
|
58421
|
+
{
|
|
58422
|
+
name: "rig",
|
|
58423
|
+
type: "object",
|
|
58424
|
+
required: true,
|
|
58425
|
+
description: "The rig definition (parts, boxes, pivots, …) as JSON."
|
|
58426
|
+
}
|
|
58427
|
+
],
|
|
58428
|
+
responseShape: {
|
|
58429
|
+
rigPath: "string",
|
|
58430
|
+
parts: "number"
|
|
58431
|
+
}
|
|
58432
|
+
},
|
|
58433
|
+
{
|
|
58434
|
+
name: "ownership",
|
|
58435
|
+
description: "Render the per-part pixel ownership map for a rig over a source image.",
|
|
58436
|
+
params: [
|
|
58437
|
+
{
|
|
58438
|
+
name: "imagePath",
|
|
58439
|
+
type: "string",
|
|
58440
|
+
required: true,
|
|
58441
|
+
description: "Path to the source image."
|
|
58442
|
+
},
|
|
58443
|
+
{
|
|
58444
|
+
name: "rig",
|
|
58445
|
+
type: "object",
|
|
58446
|
+
required: true,
|
|
58447
|
+
description: "The rig definition (parts, boxes, pivots, …) as JSON."
|
|
58448
|
+
},
|
|
58449
|
+
{
|
|
58450
|
+
name: "outPath",
|
|
58451
|
+
type: "string",
|
|
58452
|
+
required: true,
|
|
58453
|
+
description: "Path to write the ownership-map PNG."
|
|
58454
|
+
}
|
|
58455
|
+
],
|
|
58456
|
+
responseShape: {
|
|
58457
|
+
outPath: "string",
|
|
58458
|
+
legend: {
|
|
58459
|
+
type: "array",
|
|
58460
|
+
items: {
|
|
58461
|
+
type: "object",
|
|
58462
|
+
properties: {
|
|
58463
|
+
name: {
|
|
58464
|
+
type: "string",
|
|
58465
|
+
required: true
|
|
58466
|
+
},
|
|
58467
|
+
color: {
|
|
58468
|
+
type: "string",
|
|
58469
|
+
required: true
|
|
58470
|
+
}
|
|
58471
|
+
}
|
|
58472
|
+
}
|
|
58473
|
+
}
|
|
58474
|
+
}
|
|
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
|
+
},
|
|
58611
|
+
{
|
|
58612
|
+
name: "generate",
|
|
58613
|
+
description: "Generate one image on the local image server (text-to-image, or a Kontext edit conditioned on `sourcePath`).",
|
|
58614
|
+
params: [
|
|
58615
|
+
{
|
|
58616
|
+
name: "model",
|
|
58617
|
+
type: "'z-image-turbo' | 'kontext'",
|
|
58618
|
+
required: true,
|
|
58619
|
+
description: "Generation model: 'z-image-turbo' (text-to-image) or 'kontext' (edit; requires sourcePath)."
|
|
58620
|
+
},
|
|
58621
|
+
{
|
|
58622
|
+
name: "prompt",
|
|
58623
|
+
type: "string",
|
|
58624
|
+
required: true,
|
|
58625
|
+
description: "The generation/edit prompt."
|
|
58626
|
+
},
|
|
58627
|
+
{
|
|
58628
|
+
name: "seed",
|
|
58629
|
+
type: "number",
|
|
58630
|
+
required: false,
|
|
58631
|
+
description: "Random seed; omit for a fresh one each call."
|
|
58632
|
+
},
|
|
58633
|
+
{
|
|
58634
|
+
name: "size",
|
|
58635
|
+
type: "string",
|
|
58636
|
+
required: false,
|
|
58637
|
+
description: "Output image size, e.g. '1024x1024'. Defaults to '1024x1024'."
|
|
58638
|
+
},
|
|
58639
|
+
{
|
|
58640
|
+
name: "steps",
|
|
58641
|
+
type: "number",
|
|
58642
|
+
required: false,
|
|
58643
|
+
description: "Diffusion step count."
|
|
58644
|
+
},
|
|
58645
|
+
{
|
|
58646
|
+
name: "sourcePath",
|
|
58647
|
+
type: "string",
|
|
58648
|
+
required: false,
|
|
58649
|
+
description: "Path to the source image to edit; REQUIRED for 'kontext'."
|
|
58650
|
+
},
|
|
58651
|
+
{
|
|
58652
|
+
name: "outDir",
|
|
58653
|
+
type: "string",
|
|
58654
|
+
required: true,
|
|
58655
|
+
description: "Output directory the generated PNG is written under."
|
|
58003
58656
|
}
|
|
58004
58657
|
],
|
|
58005
58658
|
responseShape: {
|
|
58659
|
+
outPath: "string",
|
|
58660
|
+
model: "string",
|
|
58661
|
+
prompt: "string",
|
|
58662
|
+
seed: "number | null",
|
|
58663
|
+
size: "string",
|
|
58664
|
+
sourcePath: "string | null",
|
|
58665
|
+
elapsedMs: "number"
|
|
58006
58666
|
}
|
|
58007
58667
|
}
|
|
58008
58668
|
]
|
|
@@ -58028,7 +58688,7 @@ var integratorsRegistry = {
|
|
|
58028
58688
|
};
|
|
58029
58689
|
|
|
58030
58690
|
var version$1 = "1.0.0";
|
|
58031
|
-
var exportedAt$1 = "2026-09-
|
|
58691
|
+
var exportedAt$1 = "2026-09-12T18:14:02.248Z";
|
|
58032
58692
|
var mappings = {
|
|
58033
58693
|
"page-header": {
|
|
58034
58694
|
component: "PageHeader",
|
|
@@ -59480,7 +60140,7 @@ var componentMapping = {
|
|
|
59480
60140
|
};
|
|
59481
60141
|
|
|
59482
60142
|
var version = "1.0.0";
|
|
59483
|
-
var exportedAt = "2026-09-
|
|
60143
|
+
var exportedAt = "2026-09-12T18:14:02.248Z";
|
|
59484
60144
|
var contracts = {
|
|
59485
60145
|
form: {
|
|
59486
60146
|
emits: [
|
|
@@ -60783,6 +61443,11 @@ declare const SELF_OVERLAY_PATTERN_TYPES: ReadonlySet<string>;
|
|
|
60783
61443
|
* Each item has a field (default `"event"`, override
|
|
60784
61444
|
* with {@link PatternPropDef.eventField}) holding a
|
|
60785
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.
|
|
60786
61451
|
* - `"entity"` — the prop is the pattern's data INLET: the bound entity
|
|
60787
61452
|
* record(s) it renders. The inlet half of the circuit,
|
|
60788
61453
|
* symmetric with the event OUTLET kinds above. Source type:
|
|
@@ -60795,7 +61460,7 @@ declare const SELF_OVERLAY_PATTERN_TYPES: ReadonlySet<string>;
|
|
|
60795
61460
|
* Reserved for future use: `"config-binding"`. Add here rather than
|
|
60796
61461
|
* inventing per-consumer markers.
|
|
60797
61462
|
*/
|
|
60798
|
-
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';
|
|
60799
61464
|
/**
|
|
60800
61465
|
* Recursive structural schema for array elements / nested objects, mirrored
|
|
60801
61466
|
* into the registry by pattern-sync. Mirrors a tiny subset of JSON Schema
|
|
@@ -61340,6 +62005,7 @@ declare const registry: {
|
|
|
61340
62005
|
tier: string;
|
|
61341
62006
|
family: string;
|
|
61342
62007
|
description: string;
|
|
62008
|
+
fieldsContract: string;
|
|
61343
62009
|
suggestedFor: string[];
|
|
61344
62010
|
typicalSize: string;
|
|
61345
62011
|
propsSchema: {
|
|
@@ -61630,6 +62296,31 @@ declare const registry: {
|
|
|
61630
62296
|
enumValues: string[];
|
|
61631
62297
|
default: string;
|
|
61632
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
|
+
};
|
|
61633
62324
|
};
|
|
61634
62325
|
};
|
|
61635
62326
|
"entity-list": {
|
|
@@ -61773,7 +62464,6 @@ declare const registry: {
|
|
|
61773
62464
|
renderItem: {
|
|
61774
62465
|
types: string[];
|
|
61775
62466
|
description: string;
|
|
61776
|
-
kind: string;
|
|
61777
62467
|
callbackArgs: ({
|
|
61778
62468
|
name: string;
|
|
61779
62469
|
type: string;
|
|
@@ -65881,6 +66571,7 @@ declare const registry: {
|
|
|
65881
66571
|
button: {
|
|
65882
66572
|
type: string;
|
|
65883
66573
|
category: string;
|
|
66574
|
+
sourceFile: string;
|
|
65884
66575
|
tier: string;
|
|
65885
66576
|
family: string;
|
|
65886
66577
|
description: string;
|
|
@@ -65982,6 +66673,7 @@ declare const registry: {
|
|
|
65982
66673
|
types: string[];
|
|
65983
66674
|
description: string;
|
|
65984
66675
|
payloadFor: string;
|
|
66676
|
+
eventPayloadBrand: boolean;
|
|
65985
66677
|
};
|
|
65986
66678
|
label: {
|
|
65987
66679
|
types: string[];
|
|
@@ -66000,6 +66692,7 @@ declare const registry: {
|
|
|
66000
66692
|
badge: {
|
|
66001
66693
|
type: string;
|
|
66002
66694
|
category: string;
|
|
66695
|
+
sourceFile: string;
|
|
66003
66696
|
tier: string;
|
|
66004
66697
|
family: string;
|
|
66005
66698
|
description: string;
|
|
@@ -66366,6 +67059,7 @@ declare const registry: {
|
|
|
66366
67059
|
input: {
|
|
66367
67060
|
type: string;
|
|
66368
67061
|
category: string;
|
|
67062
|
+
sourceFile: string;
|
|
66369
67063
|
tier: string;
|
|
66370
67064
|
family: string;
|
|
66371
67065
|
description: string;
|
|
@@ -66439,8 +67133,6 @@ declare const registry: {
|
|
|
66439
67133
|
onClear: {
|
|
66440
67134
|
types: string[];
|
|
66441
67135
|
description: string;
|
|
66442
|
-
kind: string;
|
|
66443
|
-
emitPayloadSchema: never[];
|
|
66444
67136
|
};
|
|
66445
67137
|
options: {
|
|
66446
67138
|
types: string[];
|
|
@@ -66471,11 +67163,6 @@ declare const registry: {
|
|
|
66471
67163
|
name: string;
|
|
66472
67164
|
type: string;
|
|
66473
67165
|
required: boolean;
|
|
66474
|
-
typeWhen: {
|
|
66475
|
-
knob: string;
|
|
66476
|
-
equals: string;
|
|
66477
|
-
type: string;
|
|
66478
|
-
}[];
|
|
66479
67166
|
}[];
|
|
66480
67167
|
};
|
|
66481
67168
|
};
|
|
@@ -66525,6 +67212,7 @@ declare const registry: {
|
|
|
66525
67212
|
select: {
|
|
66526
67213
|
type: string;
|
|
66527
67214
|
category: string;
|
|
67215
|
+
sourceFile: string;
|
|
66528
67216
|
tier: string;
|
|
66529
67217
|
family: string;
|
|
66530
67218
|
description: string;
|
|
@@ -66641,6 +67329,18 @@ declare const registry: {
|
|
|
66641
67329
|
onValueChange: {
|
|
66642
67330
|
types: string[];
|
|
66643
67331
|
description: string;
|
|
67332
|
+
kind: string;
|
|
67333
|
+
emitPayloadSchema: {
|
|
67334
|
+
name: string;
|
|
67335
|
+
type: string;
|
|
67336
|
+
required: boolean;
|
|
67337
|
+
schema: {
|
|
67338
|
+
types: string[];
|
|
67339
|
+
items: {
|
|
67340
|
+
types: string[];
|
|
67341
|
+
};
|
|
67342
|
+
};
|
|
67343
|
+
}[];
|
|
66644
67344
|
};
|
|
66645
67345
|
};
|
|
66646
67346
|
};
|
|
@@ -67237,6 +67937,7 @@ declare const registry: {
|
|
|
67237
67937
|
"repeatable-form-section": {
|
|
67238
67938
|
type: string;
|
|
67239
67939
|
category: string;
|
|
67940
|
+
sourceFile: string;
|
|
67240
67941
|
tier: string;
|
|
67241
67942
|
family: string;
|
|
67242
67943
|
description: string;
|
|
@@ -67278,7 +67979,6 @@ declare const registry: {
|
|
|
67278
67979
|
types: string[];
|
|
67279
67980
|
description: string;
|
|
67280
67981
|
required: boolean;
|
|
67281
|
-
kind: string;
|
|
67282
67982
|
callbackArgs: ({
|
|
67283
67983
|
name: string;
|
|
67284
67984
|
type: string;
|
|
@@ -68211,6 +68911,7 @@ declare const registry: {
|
|
|
68211
68911
|
"input-group": {
|
|
68212
68912
|
type: string;
|
|
68213
68913
|
category: string;
|
|
68914
|
+
sourceFile: string;
|
|
68214
68915
|
tier: string;
|
|
68215
68916
|
family: string;
|
|
68216
68917
|
description: string;
|
|
@@ -68280,8 +68981,6 @@ declare const registry: {
|
|
|
68280
68981
|
onClear: {
|
|
68281
68982
|
types: string[];
|
|
68282
68983
|
description: string;
|
|
68283
|
-
kind: string;
|
|
68284
|
-
emitPayloadSchema: never[];
|
|
68285
68984
|
};
|
|
68286
68985
|
options: {
|
|
68287
68986
|
types: string[];
|
|
@@ -68311,11 +69010,6 @@ declare const registry: {
|
|
|
68311
69010
|
name: string;
|
|
68312
69011
|
type: string;
|
|
68313
69012
|
required: boolean;
|
|
68314
|
-
typeWhen: {
|
|
68315
|
-
knob: string;
|
|
68316
|
-
equals: string;
|
|
68317
|
-
type: string;
|
|
68318
|
-
}[];
|
|
68319
69013
|
}[];
|
|
68320
69014
|
};
|
|
68321
69015
|
leftAddon: {
|
|
@@ -69794,6 +70488,7 @@ declare const registry: {
|
|
|
69794
70488
|
"game-shell": {
|
|
69795
70489
|
type: string;
|
|
69796
70490
|
category: string;
|
|
70491
|
+
sourceFile: string;
|
|
69797
70492
|
tier: string;
|
|
69798
70493
|
family: string;
|
|
69799
70494
|
description: string;
|
|
@@ -71880,6 +72575,7 @@ declare const registry: {
|
|
|
71880
72575
|
"state-machine-view": {
|
|
71881
72576
|
type: string;
|
|
71882
72577
|
category: string;
|
|
72578
|
+
sourceFile: string;
|
|
71883
72579
|
tier: string;
|
|
71884
72580
|
family: string;
|
|
71885
72581
|
description: string;
|
|
@@ -71922,7 +72618,6 @@ declare const registry: {
|
|
|
71922
72618
|
renderStateNode: {
|
|
71923
72619
|
types: string[];
|
|
71924
72620
|
description: string;
|
|
71925
|
-
kind: string;
|
|
71926
72621
|
callbackArgs: ({
|
|
71927
72622
|
name: string;
|
|
71928
72623
|
type: string;
|
|
@@ -72175,6 +72870,7 @@ declare const registry: {
|
|
|
72175
72870
|
"calendar-grid": {
|
|
72176
72871
|
type: string;
|
|
72177
72872
|
category: string;
|
|
72873
|
+
sourceFile: string;
|
|
72178
72874
|
tier: string;
|
|
72179
72875
|
family: string;
|
|
72180
72876
|
description: string;
|
|
@@ -72260,6 +72956,7 @@ declare const registry: {
|
|
|
72260
72956
|
types: string[];
|
|
72261
72957
|
description: string;
|
|
72262
72958
|
payloadFor: string;
|
|
72959
|
+
eventPayloadBrand: boolean;
|
|
72263
72960
|
};
|
|
72264
72961
|
swipeLeftEvent: {
|
|
72265
72962
|
types: string[];
|
|
@@ -72302,7 +72999,6 @@ declare const registry: {
|
|
|
72302
72999
|
children: {
|
|
72303
73000
|
types: string[];
|
|
72304
73001
|
description: string;
|
|
72305
|
-
kind: string;
|
|
72306
73002
|
callbackArgs: {
|
|
72307
73003
|
name: string;
|
|
72308
73004
|
type: string;
|
|
@@ -72312,7 +73008,6 @@ declare const registry: {
|
|
|
72312
73008
|
renderItem: {
|
|
72313
73009
|
types: string[];
|
|
72314
73010
|
description: string;
|
|
72315
|
-
kind: string;
|
|
72316
73011
|
callbackArgs: {
|
|
72317
73012
|
name: string;
|
|
72318
73013
|
type: string;
|
|
@@ -72669,6 +73364,7 @@ declare const registry: {
|
|
|
72669
73364
|
"progress-dots": {
|
|
72670
73365
|
type: string;
|
|
72671
73366
|
category: string;
|
|
73367
|
+
sourceFile: string;
|
|
72672
73368
|
tier: string;
|
|
72673
73369
|
family: string;
|
|
72674
73370
|
description: string;
|
|
@@ -72688,7 +73384,6 @@ declare const registry: {
|
|
|
72688
73384
|
getState: {
|
|
72689
73385
|
types: string[];
|
|
72690
73386
|
description: string;
|
|
72691
|
-
kind: string;
|
|
72692
73387
|
callbackArgs: {
|
|
72693
73388
|
name: string;
|
|
72694
73389
|
type: string;
|
|
@@ -72724,6 +73419,7 @@ declare const registry: {
|
|
|
72724
73419
|
family: string;
|
|
72725
73420
|
description: string;
|
|
72726
73421
|
capabilities: string;
|
|
73422
|
+
fieldsContract: string;
|
|
72727
73423
|
suggestedFor: string[];
|
|
72728
73424
|
typicalSize: string;
|
|
72729
73425
|
propsSchema: {
|
|
@@ -72956,7 +73652,6 @@ declare const registry: {
|
|
|
72956
73652
|
children: {
|
|
72957
73653
|
types: string[];
|
|
72958
73654
|
description: string;
|
|
72959
|
-
kind: string;
|
|
72960
73655
|
callbackArgs: {
|
|
72961
73656
|
name: string;
|
|
72962
73657
|
type: string;
|
|
@@ -72966,7 +73661,6 @@ declare const registry: {
|
|
|
72966
73661
|
renderItem: {
|
|
72967
73662
|
types: string[];
|
|
72968
73663
|
description: string;
|
|
72969
|
-
kind: string;
|
|
72970
73664
|
callbackArgs: {
|
|
72971
73665
|
name: string;
|
|
72972
73666
|
type: string;
|
|
@@ -72984,6 +73678,31 @@ declare const registry: {
|
|
|
72984
73678
|
enumValues: string[];
|
|
72985
73679
|
default: string;
|
|
72986
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
|
+
};
|
|
72987
73706
|
};
|
|
72988
73707
|
};
|
|
72989
73708
|
"data-list": {
|
|
@@ -72993,6 +73712,7 @@ declare const registry: {
|
|
|
72993
73712
|
tier: string;
|
|
72994
73713
|
family: string;
|
|
72995
73714
|
description: string;
|
|
73715
|
+
fieldsContract: string;
|
|
72996
73716
|
suggestedFor: string[];
|
|
72997
73717
|
typicalSize: string;
|
|
72998
73718
|
propsSchema: {
|
|
@@ -73267,7 +73987,6 @@ declare const registry: {
|
|
|
73267
73987
|
children: {
|
|
73268
73988
|
types: string[];
|
|
73269
73989
|
description: string;
|
|
73270
|
-
kind: string;
|
|
73271
73990
|
callbackArgs: {
|
|
73272
73991
|
name: string;
|
|
73273
73992
|
type: string;
|
|
@@ -73277,7 +73996,6 @@ declare const registry: {
|
|
|
73277
73996
|
renderItem: {
|
|
73278
73997
|
types: string[];
|
|
73279
73998
|
description: string;
|
|
73280
|
-
kind: string;
|
|
73281
73999
|
callbackArgs: {
|
|
73282
74000
|
name: string;
|
|
73283
74001
|
type: string;
|
|
@@ -73304,6 +74022,31 @@ declare const registry: {
|
|
|
73304
74022
|
enumValues: string[];
|
|
73305
74023
|
default: string;
|
|
73306
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
|
+
};
|
|
73307
74050
|
};
|
|
73308
74051
|
};
|
|
73309
74052
|
"map-view": {
|
|
@@ -73483,6 +74226,7 @@ declare const registry: {
|
|
|
73483
74226
|
"range-slider": {
|
|
73484
74227
|
type: string;
|
|
73485
74228
|
category: string;
|
|
74229
|
+
sourceFile: string;
|
|
73486
74230
|
tier: string;
|
|
73487
74231
|
family: string;
|
|
73488
74232
|
description: string;
|
|
@@ -73552,6 +74296,7 @@ declare const registry: {
|
|
|
73552
74296
|
types: string[];
|
|
73553
74297
|
description: string;
|
|
73554
74298
|
payloadFor: string;
|
|
74299
|
+
eventPayloadBrand: boolean;
|
|
73555
74300
|
};
|
|
73556
74301
|
onChange: {
|
|
73557
74302
|
types: string[];
|
|
@@ -73565,7 +74310,6 @@ declare const registry: {
|
|
|
73565
74310
|
formatValue: {
|
|
73566
74311
|
types: string[];
|
|
73567
74312
|
description: string;
|
|
73568
|
-
kind: string;
|
|
73569
74313
|
callbackArgs: {
|
|
73570
74314
|
name: string;
|
|
73571
74315
|
type: string;
|
|
@@ -74138,7 +74882,6 @@ declare const registry: {
|
|
|
74138
74882
|
renderItem: {
|
|
74139
74883
|
types: string[];
|
|
74140
74884
|
description: string;
|
|
74141
|
-
kind: string;
|
|
74142
74885
|
callbackArgs: ({
|
|
74143
74886
|
name: string;
|
|
74144
74887
|
type: string;
|
|
@@ -74166,7 +74909,6 @@ declare const registry: {
|
|
|
74166
74909
|
children: {
|
|
74167
74910
|
types: string[];
|
|
74168
74911
|
description: string;
|
|
74169
|
-
kind: string;
|
|
74170
74912
|
callbackArgs: ({
|
|
74171
74913
|
name: string;
|
|
74172
74914
|
type: string;
|
|
@@ -74280,6 +75022,7 @@ declare const registry: {
|
|
|
74280
75022
|
"sortable-list": {
|
|
74281
75023
|
type: string;
|
|
74282
75024
|
category: string;
|
|
75025
|
+
sourceFile: string;
|
|
74283
75026
|
tier: string;
|
|
74284
75027
|
family: string;
|
|
74285
75028
|
description: string;
|
|
@@ -74298,7 +75041,6 @@ declare const registry: {
|
|
|
74298
75041
|
types: string[];
|
|
74299
75042
|
description: string;
|
|
74300
75043
|
required: boolean;
|
|
74301
|
-
kind: string;
|
|
74302
75044
|
callbackArgs: {
|
|
74303
75045
|
name: string;
|
|
74304
75046
|
type: string;
|
|
@@ -74321,6 +75063,7 @@ declare const registry: {
|
|
|
74321
75063
|
types: string[];
|
|
74322
75064
|
description: string;
|
|
74323
75065
|
payloadFor: string;
|
|
75066
|
+
eventPayloadBrand: boolean;
|
|
74324
75067
|
};
|
|
74325
75068
|
dragHandlePosition: {
|
|
74326
75069
|
types: string[];
|
|
@@ -78650,6 +79393,7 @@ declare const registry: {
|
|
|
78650
79393
|
"choice-button": {
|
|
78651
79394
|
type: string;
|
|
78652
79395
|
category: string;
|
|
79396
|
+
sourceFile: string;
|
|
78653
79397
|
tier: string;
|
|
78654
79398
|
family: string;
|
|
78655
79399
|
description: string;
|
|
@@ -78756,6 +79500,7 @@ declare const registry: {
|
|
|
78756
79500
|
"control-button": {
|
|
78757
79501
|
type: string;
|
|
78758
79502
|
category: string;
|
|
79503
|
+
sourceFile: string;
|
|
78759
79504
|
tier: string;
|
|
78760
79505
|
family: string;
|
|
78761
79506
|
description: string;
|
|
@@ -78873,6 +79618,7 @@ declare const registry: {
|
|
|
78873
79618
|
"dialogue-bubble": {
|
|
78874
79619
|
type: string;
|
|
78875
79620
|
category: string;
|
|
79621
|
+
sourceFile: string;
|
|
78876
79622
|
tier: string;
|
|
78877
79623
|
family: string;
|
|
78878
79624
|
description: string;
|
|
@@ -78964,6 +79710,7 @@ declare const registry: {
|
|
|
78964
79710
|
"health-bar": {
|
|
78965
79711
|
type: string;
|
|
78966
79712
|
category: string;
|
|
79713
|
+
sourceFile: string;
|
|
78967
79714
|
tier: string;
|
|
78968
79715
|
family: string;
|
|
78969
79716
|
description: string;
|
|
@@ -79119,6 +79866,7 @@ declare const registry: {
|
|
|
79119
79866
|
"score-display": {
|
|
79120
79867
|
type: string;
|
|
79121
79868
|
category: string;
|
|
79869
|
+
sourceFile: string;
|
|
79122
79870
|
tier: string;
|
|
79123
79871
|
family: string;
|
|
79124
79872
|
description: string;
|
|
@@ -79211,6 +79959,7 @@ declare const registry: {
|
|
|
79211
79959
|
"timer-display": {
|
|
79212
79960
|
type: string;
|
|
79213
79961
|
category: string;
|
|
79962
|
+
sourceFile: string;
|
|
79214
79963
|
tier: string;
|
|
79215
79964
|
family: string;
|
|
79216
79965
|
description: string;
|
|
@@ -80184,6 +80933,7 @@ declare const registry: {
|
|
|
80184
80933
|
"doc-search": {
|
|
80185
80934
|
type: string;
|
|
80186
80935
|
category: string;
|
|
80936
|
+
sourceFile: string;
|
|
80187
80937
|
tier: string;
|
|
80188
80938
|
family: string;
|
|
80189
80939
|
description: string;
|
|
@@ -80197,7 +80947,6 @@ declare const registry: {
|
|
|
80197
80947
|
onSearch: {
|
|
80198
80948
|
types: string[];
|
|
80199
80949
|
description: string;
|
|
80200
|
-
kind: string;
|
|
80201
80950
|
callbackArgs: {
|
|
80202
80951
|
name: string;
|
|
80203
80952
|
type: string;
|
|
@@ -80746,6 +81495,7 @@ declare const registry: {
|
|
|
80746
81495
|
"game-hud": {
|
|
80747
81496
|
type: string;
|
|
80748
81497
|
category: string;
|
|
81498
|
+
sourceFile: string;
|
|
80749
81499
|
tier: string;
|
|
80750
81500
|
family: string;
|
|
80751
81501
|
description: string;
|
|
@@ -81313,6 +82063,7 @@ declare const registry: {
|
|
|
81313
82063
|
"stat-badge": {
|
|
81314
82064
|
type: string;
|
|
81315
82065
|
category: string;
|
|
82066
|
+
sourceFile: string;
|
|
81316
82067
|
tier: string;
|
|
81317
82068
|
family: string;
|
|
81318
82069
|
description: string;
|
|
@@ -81731,6 +82482,7 @@ declare const registry: {
|
|
|
81731
82482
|
"game-audio-toggle": {
|
|
81732
82483
|
type: string;
|
|
81733
82484
|
category: string;
|
|
82485
|
+
sourceFile: string;
|
|
81734
82486
|
tier: string;
|
|
81735
82487
|
family: string;
|
|
81736
82488
|
description: string;
|
|
@@ -81883,6 +82635,7 @@ declare const registry: {
|
|
|
81883
82635
|
"trait-slot": {
|
|
81884
82636
|
type: string;
|
|
81885
82637
|
category: string;
|
|
82638
|
+
sourceFile: string;
|
|
81886
82639
|
tier: string;
|
|
81887
82640
|
family: string;
|
|
81888
82641
|
description: string;
|
|
@@ -82422,6 +83175,7 @@ declare const registry: {
|
|
|
82422
83175
|
"action-palette": {
|
|
82423
83176
|
type: string;
|
|
82424
83177
|
category: string;
|
|
83178
|
+
sourceFile: string;
|
|
82425
83179
|
tier: string;
|
|
82426
83180
|
family: string;
|
|
82427
83181
|
description: string;
|
|
@@ -82592,6 +83346,7 @@ declare const registry: {
|
|
|
82592
83346
|
"action-tile": {
|
|
82593
83347
|
type: string;
|
|
82594
83348
|
category: string;
|
|
83349
|
+
sourceFile: string;
|
|
82595
83350
|
tier: string;
|
|
82596
83351
|
family: string;
|
|
82597
83352
|
description: string;
|
|
@@ -82809,6 +83564,7 @@ declare const registry: {
|
|
|
82809
83564
|
"sequence-bar": {
|
|
82810
83565
|
type: string;
|
|
82811
83566
|
category: string;
|
|
83567
|
+
sourceFile: string;
|
|
82812
83568
|
tier: string;
|
|
82813
83569
|
family: string;
|
|
82814
83570
|
description: string;
|
|
@@ -83780,6 +84536,7 @@ declare const registry: {
|
|
|
83780
84536
|
family: string;
|
|
83781
84537
|
description: string;
|
|
83782
84538
|
capabilities: string;
|
|
84539
|
+
fieldsContract: string;
|
|
83783
84540
|
suggestedFor: string[];
|
|
83784
84541
|
typicalSize: string;
|
|
83785
84542
|
propsSchema: {
|
|
@@ -84048,7 +84805,6 @@ declare const registry: {
|
|
|
84048
84805
|
children: {
|
|
84049
84806
|
types: string[];
|
|
84050
84807
|
description: string;
|
|
84051
|
-
kind: string;
|
|
84052
84808
|
callbackArgs: {
|
|
84053
84809
|
name: string;
|
|
84054
84810
|
type: string;
|
|
@@ -84058,7 +84814,6 @@ declare const registry: {
|
|
|
84058
84814
|
renderItem: {
|
|
84059
84815
|
types: string[];
|
|
84060
84816
|
description: string;
|
|
84061
|
-
kind: string;
|
|
84062
84817
|
callbackArgs: {
|
|
84063
84818
|
name: string;
|
|
84064
84819
|
type: string;
|
|
@@ -84071,6 +84826,31 @@ declare const registry: {
|
|
|
84071
84826
|
enumValues: string[];
|
|
84072
84827
|
default: string;
|
|
84073
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
|
+
};
|
|
84074
84854
|
};
|
|
84075
84855
|
};
|
|
84076
84856
|
"step-flow": {
|
|
@@ -84445,6 +85225,7 @@ declare const registry: {
|
|
|
84445
85225
|
"code-runner-panel": {
|
|
84446
85226
|
type: string;
|
|
84447
85227
|
category: string;
|
|
85228
|
+
sourceFile: string;
|
|
84448
85229
|
tier: string;
|
|
84449
85230
|
family: string;
|
|
84450
85231
|
description: string;
|
|
@@ -84469,7 +85250,6 @@ declare const registry: {
|
|
|
84469
85250
|
onRun: {
|
|
84470
85251
|
types: string[];
|
|
84471
85252
|
description: string;
|
|
84472
|
-
kind: string;
|
|
84473
85253
|
callbackArgs: {
|
|
84474
85254
|
name: string;
|
|
84475
85255
|
type: string;
|
|
@@ -84490,6 +85270,7 @@ declare const registry: {
|
|
|
84490
85270
|
"segment-renderer": {
|
|
84491
85271
|
type: string;
|
|
84492
85272
|
category: string;
|
|
85273
|
+
sourceFile: string;
|
|
84493
85274
|
tier: string;
|
|
84494
85275
|
family: string;
|
|
84495
85276
|
description: string;
|
|
@@ -84546,7 +85327,6 @@ declare const registry: {
|
|
|
84546
85327
|
onRunCodeSimulation: {
|
|
84547
85328
|
types: string[];
|
|
84548
85329
|
description: string;
|
|
84549
|
-
kind: string;
|
|
84550
85330
|
callbackArgs: {
|
|
84551
85331
|
name: string;
|
|
84552
85332
|
type: string;
|
|
@@ -84556,7 +85336,6 @@ declare const registry: {
|
|
|
84556
85336
|
onRenderVisualization: {
|
|
84557
85337
|
types: string[];
|
|
84558
85338
|
description: string;
|
|
84559
|
-
kind: string;
|
|
84560
85339
|
callbackArgs: {
|
|
84561
85340
|
name: string;
|
|
84562
85341
|
type: string;
|
|
@@ -84887,6 +85666,7 @@ declare const registry: {
|
|
|
84887
85666
|
"canvas-2d": {
|
|
84888
85667
|
type: string;
|
|
84889
85668
|
category: string;
|
|
85669
|
+
sourceFile: string;
|
|
84890
85670
|
tier: string;
|
|
84891
85671
|
family: string;
|
|
84892
85672
|
description: string;
|
|
@@ -85024,15 +85804,19 @@ declare const registry: {
|
|
|
85024
85804
|
keyMap: {
|
|
85025
85805
|
types: string[];
|
|
85026
85806
|
description: string;
|
|
85807
|
+
kind: string;
|
|
85027
85808
|
mapValue: {
|
|
85028
85809
|
types: string[];
|
|
85810
|
+
kind: string;
|
|
85029
85811
|
};
|
|
85030
85812
|
};
|
|
85031
85813
|
keyUpMap: {
|
|
85032
85814
|
types: string[];
|
|
85033
85815
|
description: string;
|
|
85816
|
+
kind: string;
|
|
85034
85817
|
mapValue: {
|
|
85035
85818
|
types: string[];
|
|
85819
|
+
kind: string;
|
|
85036
85820
|
};
|
|
85037
85821
|
};
|
|
85038
85822
|
editable: {
|
|
@@ -85157,6 +85941,7 @@ declare const registry: {
|
|
|
85157
85941
|
"control-grid": {
|
|
85158
85942
|
type: string;
|
|
85159
85943
|
category: string;
|
|
85944
|
+
sourceFile: string;
|
|
85160
85945
|
tier: string;
|
|
85161
85946
|
family: string;
|
|
85162
85947
|
description: string;
|
|
@@ -85297,15 +86082,19 @@ declare const registry: {
|
|
|
85297
86082
|
directionEvents: {
|
|
85298
86083
|
types: string[];
|
|
85299
86084
|
description: string;
|
|
86085
|
+
kind: string;
|
|
85300
86086
|
mapValue: {
|
|
85301
86087
|
types: string[];
|
|
86088
|
+
kind: string;
|
|
85302
86089
|
};
|
|
85303
86090
|
};
|
|
85304
86091
|
directionReleaseEvents: {
|
|
85305
86092
|
types: string[];
|
|
85306
86093
|
description: string;
|
|
86094
|
+
kind: string;
|
|
85307
86095
|
mapValue: {
|
|
85308
86096
|
types: string[];
|
|
86097
|
+
kind: string;
|
|
85309
86098
|
};
|
|
85310
86099
|
};
|
|
85311
86100
|
directionAssets: {
|
|
@@ -85385,6 +86174,7 @@ declare const registry: {
|
|
|
85385
86174
|
"game-icon": {
|
|
85386
86175
|
type: string;
|
|
85387
86176
|
category: string;
|
|
86177
|
+
sourceFile: string;
|
|
85388
86178
|
tier: string;
|
|
85389
86179
|
family: string;
|
|
85390
86180
|
description: string;
|
|
@@ -87640,6 +88430,7 @@ declare const registry: {
|
|
|
87640
88430
|
"math-canvas": {
|
|
87641
88431
|
type: string;
|
|
87642
88432
|
category: string;
|
|
88433
|
+
sourceFile: string;
|
|
87643
88434
|
tier: string;
|
|
87644
88435
|
family: string;
|
|
87645
88436
|
description: string;
|
|
@@ -88254,15 +89045,19 @@ declare const registry: {
|
|
|
88254
89045
|
keyMap: {
|
|
88255
89046
|
types: string[];
|
|
88256
89047
|
description: string;
|
|
89048
|
+
kind: string;
|
|
88257
89049
|
mapValue: {
|
|
88258
89050
|
types: string[];
|
|
89051
|
+
kind: string;
|
|
88259
89052
|
};
|
|
88260
89053
|
};
|
|
88261
89054
|
keyUpMap: {
|
|
88262
89055
|
types: string[];
|
|
88263
89056
|
description: string;
|
|
89057
|
+
kind: string;
|
|
88264
89058
|
mapValue: {
|
|
88265
89059
|
types: string[];
|
|
89060
|
+
kind: string;
|
|
88266
89061
|
};
|
|
88267
89062
|
};
|
|
88268
89063
|
isLoading: {
|
|
@@ -90376,6 +91171,7 @@ declare const registry: {
|
|
|
90376
91171
|
"draw-sprite": {
|
|
90377
91172
|
type: string;
|
|
90378
91173
|
category: string;
|
|
91174
|
+
sourceFile: string;
|
|
90379
91175
|
tier: string;
|
|
90380
91176
|
family: string;
|
|
90381
91177
|
description: string;
|
|
@@ -91002,6 +91798,7 @@ declare const registry: {
|
|
|
91002
91798
|
"draw-sprite-layer": {
|
|
91003
91799
|
type: string;
|
|
91004
91800
|
category: string;
|
|
91801
|
+
sourceFile: string;
|
|
91005
91802
|
tier: string;
|
|
91006
91803
|
family: string;
|
|
91007
91804
|
description: string;
|
|
@@ -91250,6 +92047,7 @@ declare const registry: {
|
|
|
91250
92047
|
canvas: {
|
|
91251
92048
|
type: string;
|
|
91252
92049
|
category: string;
|
|
92050
|
+
sourceFile: string;
|
|
91253
92051
|
tier: string;
|
|
91254
92052
|
family: string;
|
|
91255
92053
|
description: string;
|
|
@@ -91611,15 +92409,19 @@ declare const registry: {
|
|
|
91611
92409
|
keyMap: {
|
|
91612
92410
|
types: string[];
|
|
91613
92411
|
description: string;
|
|
92412
|
+
kind: string;
|
|
91614
92413
|
mapValue: {
|
|
91615
92414
|
types: string[];
|
|
92415
|
+
kind: string;
|
|
91616
92416
|
};
|
|
91617
92417
|
};
|
|
91618
92418
|
keyUpMap: {
|
|
91619
92419
|
types: string[];
|
|
91620
92420
|
description: string;
|
|
92421
|
+
kind: string;
|
|
91621
92422
|
mapValue: {
|
|
91622
92423
|
types: string[];
|
|
92424
|
+
kind: string;
|
|
91623
92425
|
};
|
|
91624
92426
|
};
|
|
91625
92427
|
editable: {
|
|
@@ -92840,6 +93642,7 @@ declare const registry: {
|
|
|
92840
93642
|
"draw-fx-layer": {
|
|
92841
93643
|
type: string;
|
|
92842
93644
|
category: string;
|
|
93645
|
+
sourceFile: string;
|
|
92843
93646
|
tier: string;
|
|
92844
93647
|
family: string;
|
|
92845
93648
|
description: string;
|
|
@@ -94072,6 +94875,10 @@ declare const registry: {
|
|
|
94072
94875
|
};
|
|
94073
94876
|
propertyRequired: string[];
|
|
94074
94877
|
};
|
|
94878
|
+
clipName: {
|
|
94879
|
+
types: string[];
|
|
94880
|
+
description: string;
|
|
94881
|
+
};
|
|
94075
94882
|
frame: {
|
|
94076
94883
|
types: string[];
|
|
94077
94884
|
description: string;
|
|
@@ -94114,6 +94921,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
94114
94921
|
tier: string;
|
|
94115
94922
|
family: string;
|
|
94116
94923
|
description: string;
|
|
94924
|
+
fieldsContract: string;
|
|
94117
94925
|
suggestedFor: string[];
|
|
94118
94926
|
typicalSize: string;
|
|
94119
94927
|
propsSchema: {
|
|
@@ -94404,6 +95212,31 @@ declare const PATTERN_REGISTRY: {
|
|
|
94404
95212
|
enumValues: string[];
|
|
94405
95213
|
default: string;
|
|
94406
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
|
+
};
|
|
94407
95240
|
};
|
|
94408
95241
|
};
|
|
94409
95242
|
"entity-list": {
|
|
@@ -94547,7 +95380,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
94547
95380
|
renderItem: {
|
|
94548
95381
|
types: string[];
|
|
94549
95382
|
description: string;
|
|
94550
|
-
kind: string;
|
|
94551
95383
|
callbackArgs: ({
|
|
94552
95384
|
name: string;
|
|
94553
95385
|
type: string;
|
|
@@ -98655,6 +99487,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
98655
99487
|
button: {
|
|
98656
99488
|
type: string;
|
|
98657
99489
|
category: string;
|
|
99490
|
+
sourceFile: string;
|
|
98658
99491
|
tier: string;
|
|
98659
99492
|
family: string;
|
|
98660
99493
|
description: string;
|
|
@@ -98756,6 +99589,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
98756
99589
|
types: string[];
|
|
98757
99590
|
description: string;
|
|
98758
99591
|
payloadFor: string;
|
|
99592
|
+
eventPayloadBrand: boolean;
|
|
98759
99593
|
};
|
|
98760
99594
|
label: {
|
|
98761
99595
|
types: string[];
|
|
@@ -98774,6 +99608,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
98774
99608
|
badge: {
|
|
98775
99609
|
type: string;
|
|
98776
99610
|
category: string;
|
|
99611
|
+
sourceFile: string;
|
|
98777
99612
|
tier: string;
|
|
98778
99613
|
family: string;
|
|
98779
99614
|
description: string;
|
|
@@ -99140,6 +99975,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
99140
99975
|
input: {
|
|
99141
99976
|
type: string;
|
|
99142
99977
|
category: string;
|
|
99978
|
+
sourceFile: string;
|
|
99143
99979
|
tier: string;
|
|
99144
99980
|
family: string;
|
|
99145
99981
|
description: string;
|
|
@@ -99213,8 +100049,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
99213
100049
|
onClear: {
|
|
99214
100050
|
types: string[];
|
|
99215
100051
|
description: string;
|
|
99216
|
-
kind: string;
|
|
99217
|
-
emitPayloadSchema: never[];
|
|
99218
100052
|
};
|
|
99219
100053
|
options: {
|
|
99220
100054
|
types: string[];
|
|
@@ -99245,11 +100079,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
99245
100079
|
name: string;
|
|
99246
100080
|
type: string;
|
|
99247
100081
|
required: boolean;
|
|
99248
|
-
typeWhen: {
|
|
99249
|
-
knob: string;
|
|
99250
|
-
equals: string;
|
|
99251
|
-
type: string;
|
|
99252
|
-
}[];
|
|
99253
100082
|
}[];
|
|
99254
100083
|
};
|
|
99255
100084
|
};
|
|
@@ -99299,6 +100128,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
99299
100128
|
select: {
|
|
99300
100129
|
type: string;
|
|
99301
100130
|
category: string;
|
|
100131
|
+
sourceFile: string;
|
|
99302
100132
|
tier: string;
|
|
99303
100133
|
family: string;
|
|
99304
100134
|
description: string;
|
|
@@ -99415,6 +100245,18 @@ declare const PATTERN_REGISTRY: {
|
|
|
99415
100245
|
onValueChange: {
|
|
99416
100246
|
types: string[];
|
|
99417
100247
|
description: string;
|
|
100248
|
+
kind: string;
|
|
100249
|
+
emitPayloadSchema: {
|
|
100250
|
+
name: string;
|
|
100251
|
+
type: string;
|
|
100252
|
+
required: boolean;
|
|
100253
|
+
schema: {
|
|
100254
|
+
types: string[];
|
|
100255
|
+
items: {
|
|
100256
|
+
types: string[];
|
|
100257
|
+
};
|
|
100258
|
+
};
|
|
100259
|
+
}[];
|
|
99418
100260
|
};
|
|
99419
100261
|
};
|
|
99420
100262
|
};
|
|
@@ -100011,6 +100853,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
100011
100853
|
"repeatable-form-section": {
|
|
100012
100854
|
type: string;
|
|
100013
100855
|
category: string;
|
|
100856
|
+
sourceFile: string;
|
|
100014
100857
|
tier: string;
|
|
100015
100858
|
family: string;
|
|
100016
100859
|
description: string;
|
|
@@ -100052,7 +100895,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
100052
100895
|
types: string[];
|
|
100053
100896
|
description: string;
|
|
100054
100897
|
required: boolean;
|
|
100055
|
-
kind: string;
|
|
100056
100898
|
callbackArgs: ({
|
|
100057
100899
|
name: string;
|
|
100058
100900
|
type: string;
|
|
@@ -100985,6 +101827,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
100985
101827
|
"input-group": {
|
|
100986
101828
|
type: string;
|
|
100987
101829
|
category: string;
|
|
101830
|
+
sourceFile: string;
|
|
100988
101831
|
tier: string;
|
|
100989
101832
|
family: string;
|
|
100990
101833
|
description: string;
|
|
@@ -101054,8 +101897,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
101054
101897
|
onClear: {
|
|
101055
101898
|
types: string[];
|
|
101056
101899
|
description: string;
|
|
101057
|
-
kind: string;
|
|
101058
|
-
emitPayloadSchema: never[];
|
|
101059
101900
|
};
|
|
101060
101901
|
options: {
|
|
101061
101902
|
types: string[];
|
|
@@ -101085,11 +101926,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
101085
101926
|
name: string;
|
|
101086
101927
|
type: string;
|
|
101087
101928
|
required: boolean;
|
|
101088
|
-
typeWhen: {
|
|
101089
|
-
knob: string;
|
|
101090
|
-
equals: string;
|
|
101091
|
-
type: string;
|
|
101092
|
-
}[];
|
|
101093
101929
|
}[];
|
|
101094
101930
|
};
|
|
101095
101931
|
leftAddon: {
|
|
@@ -102568,6 +103404,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
102568
103404
|
"game-shell": {
|
|
102569
103405
|
type: string;
|
|
102570
103406
|
category: string;
|
|
103407
|
+
sourceFile: string;
|
|
102571
103408
|
tier: string;
|
|
102572
103409
|
family: string;
|
|
102573
103410
|
description: string;
|
|
@@ -104654,6 +105491,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
104654
105491
|
"state-machine-view": {
|
|
104655
105492
|
type: string;
|
|
104656
105493
|
category: string;
|
|
105494
|
+
sourceFile: string;
|
|
104657
105495
|
tier: string;
|
|
104658
105496
|
family: string;
|
|
104659
105497
|
description: string;
|
|
@@ -104696,7 +105534,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
104696
105534
|
renderStateNode: {
|
|
104697
105535
|
types: string[];
|
|
104698
105536
|
description: string;
|
|
104699
|
-
kind: string;
|
|
104700
105537
|
callbackArgs: ({
|
|
104701
105538
|
name: string;
|
|
104702
105539
|
type: string;
|
|
@@ -104949,6 +105786,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
104949
105786
|
"calendar-grid": {
|
|
104950
105787
|
type: string;
|
|
104951
105788
|
category: string;
|
|
105789
|
+
sourceFile: string;
|
|
104952
105790
|
tier: string;
|
|
104953
105791
|
family: string;
|
|
104954
105792
|
description: string;
|
|
@@ -105034,6 +105872,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
105034
105872
|
types: string[];
|
|
105035
105873
|
description: string;
|
|
105036
105874
|
payloadFor: string;
|
|
105875
|
+
eventPayloadBrand: boolean;
|
|
105037
105876
|
};
|
|
105038
105877
|
swipeLeftEvent: {
|
|
105039
105878
|
types: string[];
|
|
@@ -105076,7 +105915,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
105076
105915
|
children: {
|
|
105077
105916
|
types: string[];
|
|
105078
105917
|
description: string;
|
|
105079
|
-
kind: string;
|
|
105080
105918
|
callbackArgs: {
|
|
105081
105919
|
name: string;
|
|
105082
105920
|
type: string;
|
|
@@ -105086,7 +105924,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
105086
105924
|
renderItem: {
|
|
105087
105925
|
types: string[];
|
|
105088
105926
|
description: string;
|
|
105089
|
-
kind: string;
|
|
105090
105927
|
callbackArgs: {
|
|
105091
105928
|
name: string;
|
|
105092
105929
|
type: string;
|
|
@@ -105443,6 +106280,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
105443
106280
|
"progress-dots": {
|
|
105444
106281
|
type: string;
|
|
105445
106282
|
category: string;
|
|
106283
|
+
sourceFile: string;
|
|
105446
106284
|
tier: string;
|
|
105447
106285
|
family: string;
|
|
105448
106286
|
description: string;
|
|
@@ -105462,7 +106300,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
105462
106300
|
getState: {
|
|
105463
106301
|
types: string[];
|
|
105464
106302
|
description: string;
|
|
105465
|
-
kind: string;
|
|
105466
106303
|
callbackArgs: {
|
|
105467
106304
|
name: string;
|
|
105468
106305
|
type: string;
|
|
@@ -105498,6 +106335,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
105498
106335
|
family: string;
|
|
105499
106336
|
description: string;
|
|
105500
106337
|
capabilities: string;
|
|
106338
|
+
fieldsContract: string;
|
|
105501
106339
|
suggestedFor: string[];
|
|
105502
106340
|
typicalSize: string;
|
|
105503
106341
|
propsSchema: {
|
|
@@ -105730,7 +106568,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
105730
106568
|
children: {
|
|
105731
106569
|
types: string[];
|
|
105732
106570
|
description: string;
|
|
105733
|
-
kind: string;
|
|
105734
106571
|
callbackArgs: {
|
|
105735
106572
|
name: string;
|
|
105736
106573
|
type: string;
|
|
@@ -105740,7 +106577,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
105740
106577
|
renderItem: {
|
|
105741
106578
|
types: string[];
|
|
105742
106579
|
description: string;
|
|
105743
|
-
kind: string;
|
|
105744
106580
|
callbackArgs: {
|
|
105745
106581
|
name: string;
|
|
105746
106582
|
type: string;
|
|
@@ -105758,6 +106594,31 @@ declare const PATTERN_REGISTRY: {
|
|
|
105758
106594
|
enumValues: string[];
|
|
105759
106595
|
default: string;
|
|
105760
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
|
+
};
|
|
105761
106622
|
};
|
|
105762
106623
|
};
|
|
105763
106624
|
"data-list": {
|
|
@@ -105767,6 +106628,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
105767
106628
|
tier: string;
|
|
105768
106629
|
family: string;
|
|
105769
106630
|
description: string;
|
|
106631
|
+
fieldsContract: string;
|
|
105770
106632
|
suggestedFor: string[];
|
|
105771
106633
|
typicalSize: string;
|
|
105772
106634
|
propsSchema: {
|
|
@@ -106041,7 +106903,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
106041
106903
|
children: {
|
|
106042
106904
|
types: string[];
|
|
106043
106905
|
description: string;
|
|
106044
|
-
kind: string;
|
|
106045
106906
|
callbackArgs: {
|
|
106046
106907
|
name: string;
|
|
106047
106908
|
type: string;
|
|
@@ -106051,7 +106912,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
106051
106912
|
renderItem: {
|
|
106052
106913
|
types: string[];
|
|
106053
106914
|
description: string;
|
|
106054
|
-
kind: string;
|
|
106055
106915
|
callbackArgs: {
|
|
106056
106916
|
name: string;
|
|
106057
106917
|
type: string;
|
|
@@ -106078,6 +106938,31 @@ declare const PATTERN_REGISTRY: {
|
|
|
106078
106938
|
enumValues: string[];
|
|
106079
106939
|
default: string;
|
|
106080
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
|
+
};
|
|
106081
106966
|
};
|
|
106082
106967
|
};
|
|
106083
106968
|
"map-view": {
|
|
@@ -106257,6 +107142,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
106257
107142
|
"range-slider": {
|
|
106258
107143
|
type: string;
|
|
106259
107144
|
category: string;
|
|
107145
|
+
sourceFile: string;
|
|
106260
107146
|
tier: string;
|
|
106261
107147
|
family: string;
|
|
106262
107148
|
description: string;
|
|
@@ -106326,6 +107212,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
106326
107212
|
types: string[];
|
|
106327
107213
|
description: string;
|
|
106328
107214
|
payloadFor: string;
|
|
107215
|
+
eventPayloadBrand: boolean;
|
|
106329
107216
|
};
|
|
106330
107217
|
onChange: {
|
|
106331
107218
|
types: string[];
|
|
@@ -106339,7 +107226,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
106339
107226
|
formatValue: {
|
|
106340
107227
|
types: string[];
|
|
106341
107228
|
description: string;
|
|
106342
|
-
kind: string;
|
|
106343
107229
|
callbackArgs: {
|
|
106344
107230
|
name: string;
|
|
106345
107231
|
type: string;
|
|
@@ -106912,7 +107798,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
106912
107798
|
renderItem: {
|
|
106913
107799
|
types: string[];
|
|
106914
107800
|
description: string;
|
|
106915
|
-
kind: string;
|
|
106916
107801
|
callbackArgs: ({
|
|
106917
107802
|
name: string;
|
|
106918
107803
|
type: string;
|
|
@@ -106940,7 +107825,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
106940
107825
|
children: {
|
|
106941
107826
|
types: string[];
|
|
106942
107827
|
description: string;
|
|
106943
|
-
kind: string;
|
|
106944
107828
|
callbackArgs: ({
|
|
106945
107829
|
name: string;
|
|
106946
107830
|
type: string;
|
|
@@ -107054,6 +107938,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
107054
107938
|
"sortable-list": {
|
|
107055
107939
|
type: string;
|
|
107056
107940
|
category: string;
|
|
107941
|
+
sourceFile: string;
|
|
107057
107942
|
tier: string;
|
|
107058
107943
|
family: string;
|
|
107059
107944
|
description: string;
|
|
@@ -107072,7 +107957,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
107072
107957
|
types: string[];
|
|
107073
107958
|
description: string;
|
|
107074
107959
|
required: boolean;
|
|
107075
|
-
kind: string;
|
|
107076
107960
|
callbackArgs: {
|
|
107077
107961
|
name: string;
|
|
107078
107962
|
type: string;
|
|
@@ -107095,6 +107979,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
107095
107979
|
types: string[];
|
|
107096
107980
|
description: string;
|
|
107097
107981
|
payloadFor: string;
|
|
107982
|
+
eventPayloadBrand: boolean;
|
|
107098
107983
|
};
|
|
107099
107984
|
dragHandlePosition: {
|
|
107100
107985
|
types: string[];
|
|
@@ -111424,6 +112309,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
111424
112309
|
"choice-button": {
|
|
111425
112310
|
type: string;
|
|
111426
112311
|
category: string;
|
|
112312
|
+
sourceFile: string;
|
|
111427
112313
|
tier: string;
|
|
111428
112314
|
family: string;
|
|
111429
112315
|
description: string;
|
|
@@ -111530,6 +112416,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
111530
112416
|
"control-button": {
|
|
111531
112417
|
type: string;
|
|
111532
112418
|
category: string;
|
|
112419
|
+
sourceFile: string;
|
|
111533
112420
|
tier: string;
|
|
111534
112421
|
family: string;
|
|
111535
112422
|
description: string;
|
|
@@ -111647,6 +112534,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
111647
112534
|
"dialogue-bubble": {
|
|
111648
112535
|
type: string;
|
|
111649
112536
|
category: string;
|
|
112537
|
+
sourceFile: string;
|
|
111650
112538
|
tier: string;
|
|
111651
112539
|
family: string;
|
|
111652
112540
|
description: string;
|
|
@@ -111738,6 +112626,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
111738
112626
|
"health-bar": {
|
|
111739
112627
|
type: string;
|
|
111740
112628
|
category: string;
|
|
112629
|
+
sourceFile: string;
|
|
111741
112630
|
tier: string;
|
|
111742
112631
|
family: string;
|
|
111743
112632
|
description: string;
|
|
@@ -111893,6 +112782,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
111893
112782
|
"score-display": {
|
|
111894
112783
|
type: string;
|
|
111895
112784
|
category: string;
|
|
112785
|
+
sourceFile: string;
|
|
111896
112786
|
tier: string;
|
|
111897
112787
|
family: string;
|
|
111898
112788
|
description: string;
|
|
@@ -111985,6 +112875,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
111985
112875
|
"timer-display": {
|
|
111986
112876
|
type: string;
|
|
111987
112877
|
category: string;
|
|
112878
|
+
sourceFile: string;
|
|
111988
112879
|
tier: string;
|
|
111989
112880
|
family: string;
|
|
111990
112881
|
description: string;
|
|
@@ -112958,6 +113849,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
112958
113849
|
"doc-search": {
|
|
112959
113850
|
type: string;
|
|
112960
113851
|
category: string;
|
|
113852
|
+
sourceFile: string;
|
|
112961
113853
|
tier: string;
|
|
112962
113854
|
family: string;
|
|
112963
113855
|
description: string;
|
|
@@ -112971,7 +113863,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
112971
113863
|
onSearch: {
|
|
112972
113864
|
types: string[];
|
|
112973
113865
|
description: string;
|
|
112974
|
-
kind: string;
|
|
112975
113866
|
callbackArgs: {
|
|
112976
113867
|
name: string;
|
|
112977
113868
|
type: string;
|
|
@@ -113520,6 +114411,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
113520
114411
|
"game-hud": {
|
|
113521
114412
|
type: string;
|
|
113522
114413
|
category: string;
|
|
114414
|
+
sourceFile: string;
|
|
113523
114415
|
tier: string;
|
|
113524
114416
|
family: string;
|
|
113525
114417
|
description: string;
|
|
@@ -114087,6 +114979,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
114087
114979
|
"stat-badge": {
|
|
114088
114980
|
type: string;
|
|
114089
114981
|
category: string;
|
|
114982
|
+
sourceFile: string;
|
|
114090
114983
|
tier: string;
|
|
114091
114984
|
family: string;
|
|
114092
114985
|
description: string;
|
|
@@ -114505,6 +115398,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
114505
115398
|
"game-audio-toggle": {
|
|
114506
115399
|
type: string;
|
|
114507
115400
|
category: string;
|
|
115401
|
+
sourceFile: string;
|
|
114508
115402
|
tier: string;
|
|
114509
115403
|
family: string;
|
|
114510
115404
|
description: string;
|
|
@@ -114657,6 +115551,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
114657
115551
|
"trait-slot": {
|
|
114658
115552
|
type: string;
|
|
114659
115553
|
category: string;
|
|
115554
|
+
sourceFile: string;
|
|
114660
115555
|
tier: string;
|
|
114661
115556
|
family: string;
|
|
114662
115557
|
description: string;
|
|
@@ -115196,6 +116091,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
115196
116091
|
"action-palette": {
|
|
115197
116092
|
type: string;
|
|
115198
116093
|
category: string;
|
|
116094
|
+
sourceFile: string;
|
|
115199
116095
|
tier: string;
|
|
115200
116096
|
family: string;
|
|
115201
116097
|
description: string;
|
|
@@ -115366,6 +116262,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
115366
116262
|
"action-tile": {
|
|
115367
116263
|
type: string;
|
|
115368
116264
|
category: string;
|
|
116265
|
+
sourceFile: string;
|
|
115369
116266
|
tier: string;
|
|
115370
116267
|
family: string;
|
|
115371
116268
|
description: string;
|
|
@@ -115583,6 +116480,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
115583
116480
|
"sequence-bar": {
|
|
115584
116481
|
type: string;
|
|
115585
116482
|
category: string;
|
|
116483
|
+
sourceFile: string;
|
|
115586
116484
|
tier: string;
|
|
115587
116485
|
family: string;
|
|
115588
116486
|
description: string;
|
|
@@ -116554,6 +117452,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
116554
117452
|
family: string;
|
|
116555
117453
|
description: string;
|
|
116556
117454
|
capabilities: string;
|
|
117455
|
+
fieldsContract: string;
|
|
116557
117456
|
suggestedFor: string[];
|
|
116558
117457
|
typicalSize: string;
|
|
116559
117458
|
propsSchema: {
|
|
@@ -116822,7 +117721,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
116822
117721
|
children: {
|
|
116823
117722
|
types: string[];
|
|
116824
117723
|
description: string;
|
|
116825
|
-
kind: string;
|
|
116826
117724
|
callbackArgs: {
|
|
116827
117725
|
name: string;
|
|
116828
117726
|
type: string;
|
|
@@ -116832,7 +117730,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
116832
117730
|
renderItem: {
|
|
116833
117731
|
types: string[];
|
|
116834
117732
|
description: string;
|
|
116835
|
-
kind: string;
|
|
116836
117733
|
callbackArgs: {
|
|
116837
117734
|
name: string;
|
|
116838
117735
|
type: string;
|
|
@@ -116845,6 +117742,31 @@ declare const PATTERN_REGISTRY: {
|
|
|
116845
117742
|
enumValues: string[];
|
|
116846
117743
|
default: string;
|
|
116847
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
|
+
};
|
|
116848
117770
|
};
|
|
116849
117771
|
};
|
|
116850
117772
|
"step-flow": {
|
|
@@ -117219,6 +118141,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
117219
118141
|
"code-runner-panel": {
|
|
117220
118142
|
type: string;
|
|
117221
118143
|
category: string;
|
|
118144
|
+
sourceFile: string;
|
|
117222
118145
|
tier: string;
|
|
117223
118146
|
family: string;
|
|
117224
118147
|
description: string;
|
|
@@ -117243,7 +118166,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
117243
118166
|
onRun: {
|
|
117244
118167
|
types: string[];
|
|
117245
118168
|
description: string;
|
|
117246
|
-
kind: string;
|
|
117247
118169
|
callbackArgs: {
|
|
117248
118170
|
name: string;
|
|
117249
118171
|
type: string;
|
|
@@ -117264,6 +118186,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
117264
118186
|
"segment-renderer": {
|
|
117265
118187
|
type: string;
|
|
117266
118188
|
category: string;
|
|
118189
|
+
sourceFile: string;
|
|
117267
118190
|
tier: string;
|
|
117268
118191
|
family: string;
|
|
117269
118192
|
description: string;
|
|
@@ -117320,7 +118243,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
117320
118243
|
onRunCodeSimulation: {
|
|
117321
118244
|
types: string[];
|
|
117322
118245
|
description: string;
|
|
117323
|
-
kind: string;
|
|
117324
118246
|
callbackArgs: {
|
|
117325
118247
|
name: string;
|
|
117326
118248
|
type: string;
|
|
@@ -117330,7 +118252,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
117330
118252
|
onRenderVisualization: {
|
|
117331
118253
|
types: string[];
|
|
117332
118254
|
description: string;
|
|
117333
|
-
kind: string;
|
|
117334
118255
|
callbackArgs: {
|
|
117335
118256
|
name: string;
|
|
117336
118257
|
type: string;
|
|
@@ -117661,6 +118582,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
117661
118582
|
"canvas-2d": {
|
|
117662
118583
|
type: string;
|
|
117663
118584
|
category: string;
|
|
118585
|
+
sourceFile: string;
|
|
117664
118586
|
tier: string;
|
|
117665
118587
|
family: string;
|
|
117666
118588
|
description: string;
|
|
@@ -117798,15 +118720,19 @@ declare const PATTERN_REGISTRY: {
|
|
|
117798
118720
|
keyMap: {
|
|
117799
118721
|
types: string[];
|
|
117800
118722
|
description: string;
|
|
118723
|
+
kind: string;
|
|
117801
118724
|
mapValue: {
|
|
117802
118725
|
types: string[];
|
|
118726
|
+
kind: string;
|
|
117803
118727
|
};
|
|
117804
118728
|
};
|
|
117805
118729
|
keyUpMap: {
|
|
117806
118730
|
types: string[];
|
|
117807
118731
|
description: string;
|
|
118732
|
+
kind: string;
|
|
117808
118733
|
mapValue: {
|
|
117809
118734
|
types: string[];
|
|
118735
|
+
kind: string;
|
|
117810
118736
|
};
|
|
117811
118737
|
};
|
|
117812
118738
|
editable: {
|
|
@@ -117931,6 +118857,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
117931
118857
|
"control-grid": {
|
|
117932
118858
|
type: string;
|
|
117933
118859
|
category: string;
|
|
118860
|
+
sourceFile: string;
|
|
117934
118861
|
tier: string;
|
|
117935
118862
|
family: string;
|
|
117936
118863
|
description: string;
|
|
@@ -118071,15 +118998,19 @@ declare const PATTERN_REGISTRY: {
|
|
|
118071
118998
|
directionEvents: {
|
|
118072
118999
|
types: string[];
|
|
118073
119000
|
description: string;
|
|
119001
|
+
kind: string;
|
|
118074
119002
|
mapValue: {
|
|
118075
119003
|
types: string[];
|
|
119004
|
+
kind: string;
|
|
118076
119005
|
};
|
|
118077
119006
|
};
|
|
118078
119007
|
directionReleaseEvents: {
|
|
118079
119008
|
types: string[];
|
|
118080
119009
|
description: string;
|
|
119010
|
+
kind: string;
|
|
118081
119011
|
mapValue: {
|
|
118082
119012
|
types: string[];
|
|
119013
|
+
kind: string;
|
|
118083
119014
|
};
|
|
118084
119015
|
};
|
|
118085
119016
|
directionAssets: {
|
|
@@ -118159,6 +119090,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
118159
119090
|
"game-icon": {
|
|
118160
119091
|
type: string;
|
|
118161
119092
|
category: string;
|
|
119093
|
+
sourceFile: string;
|
|
118162
119094
|
tier: string;
|
|
118163
119095
|
family: string;
|
|
118164
119096
|
description: string;
|
|
@@ -120414,6 +121346,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
120414
121346
|
"math-canvas": {
|
|
120415
121347
|
type: string;
|
|
120416
121348
|
category: string;
|
|
121349
|
+
sourceFile: string;
|
|
120417
121350
|
tier: string;
|
|
120418
121351
|
family: string;
|
|
120419
121352
|
description: string;
|
|
@@ -121028,15 +121961,19 @@ declare const PATTERN_REGISTRY: {
|
|
|
121028
121961
|
keyMap: {
|
|
121029
121962
|
types: string[];
|
|
121030
121963
|
description: string;
|
|
121964
|
+
kind: string;
|
|
121031
121965
|
mapValue: {
|
|
121032
121966
|
types: string[];
|
|
121967
|
+
kind: string;
|
|
121033
121968
|
};
|
|
121034
121969
|
};
|
|
121035
121970
|
keyUpMap: {
|
|
121036
121971
|
types: string[];
|
|
121037
121972
|
description: string;
|
|
121973
|
+
kind: string;
|
|
121038
121974
|
mapValue: {
|
|
121039
121975
|
types: string[];
|
|
121976
|
+
kind: string;
|
|
121040
121977
|
};
|
|
121041
121978
|
};
|
|
121042
121979
|
isLoading: {
|
|
@@ -123150,6 +124087,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
123150
124087
|
"draw-sprite": {
|
|
123151
124088
|
type: string;
|
|
123152
124089
|
category: string;
|
|
124090
|
+
sourceFile: string;
|
|
123153
124091
|
tier: string;
|
|
123154
124092
|
family: string;
|
|
123155
124093
|
description: string;
|
|
@@ -123776,6 +124714,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
123776
124714
|
"draw-sprite-layer": {
|
|
123777
124715
|
type: string;
|
|
123778
124716
|
category: string;
|
|
124717
|
+
sourceFile: string;
|
|
123779
124718
|
tier: string;
|
|
123780
124719
|
family: string;
|
|
123781
124720
|
description: string;
|
|
@@ -124024,6 +124963,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
124024
124963
|
canvas: {
|
|
124025
124964
|
type: string;
|
|
124026
124965
|
category: string;
|
|
124966
|
+
sourceFile: string;
|
|
124027
124967
|
tier: string;
|
|
124028
124968
|
family: string;
|
|
124029
124969
|
description: string;
|
|
@@ -124385,15 +125325,19 @@ declare const PATTERN_REGISTRY: {
|
|
|
124385
125325
|
keyMap: {
|
|
124386
125326
|
types: string[];
|
|
124387
125327
|
description: string;
|
|
125328
|
+
kind: string;
|
|
124388
125329
|
mapValue: {
|
|
124389
125330
|
types: string[];
|
|
125331
|
+
kind: string;
|
|
124390
125332
|
};
|
|
124391
125333
|
};
|
|
124392
125334
|
keyUpMap: {
|
|
124393
125335
|
types: string[];
|
|
124394
125336
|
description: string;
|
|
125337
|
+
kind: string;
|
|
124395
125338
|
mapValue: {
|
|
124396
125339
|
types: string[];
|
|
125340
|
+
kind: string;
|
|
124397
125341
|
};
|
|
124398
125342
|
};
|
|
124399
125343
|
editable: {
|
|
@@ -125614,6 +126558,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
125614
126558
|
"draw-fx-layer": {
|
|
125615
126559
|
type: string;
|
|
125616
126560
|
category: string;
|
|
126561
|
+
sourceFile: string;
|
|
125617
126562
|
tier: string;
|
|
125618
126563
|
family: string;
|
|
125619
126564
|
description: string;
|
|
@@ -126846,6 +127791,10 @@ declare const PATTERN_REGISTRY: {
|
|
|
126846
127791
|
};
|
|
126847
127792
|
propertyRequired: string[];
|
|
126848
127793
|
};
|
|
127794
|
+
clipName: {
|
|
127795
|
+
types: string[];
|
|
127796
|
+
description: string;
|
|
127797
|
+
};
|
|
126849
127798
|
frame: {
|
|
126850
127799
|
types: string[];
|
|
126851
127800
|
description: string;
|
|
@@ -129935,6 +130884,27 @@ declare const INTEGRATORS_REGISTRY: {
|
|
|
129935
130884
|
vertexCount?: undefined;
|
|
129936
130885
|
triangleCount?: undefined;
|
|
129937
130886
|
clips?: undefined;
|
|
130887
|
+
outdir?: undefined;
|
|
130888
|
+
frames?: undefined;
|
|
130889
|
+
framePaths?: undefined;
|
|
130890
|
+
sheet?: undefined;
|
|
130891
|
+
gif?: undefined;
|
|
130892
|
+
atlas?: undefined;
|
|
130893
|
+
presets?: undefined;
|
|
130894
|
+
rig?: undefined;
|
|
130895
|
+
resolved?: undefined;
|
|
130896
|
+
rigPath?: undefined;
|
|
130897
|
+
parts?: undefined;
|
|
130898
|
+
outPath?: undefined;
|
|
130899
|
+
legend?: undefined;
|
|
130900
|
+
layers?: undefined;
|
|
130901
|
+
fps?: undefined;
|
|
130902
|
+
model?: undefined;
|
|
130903
|
+
prompt?: undefined;
|
|
130904
|
+
seed?: undefined;
|
|
130905
|
+
size?: undefined;
|
|
130906
|
+
sourcePath?: undefined;
|
|
130907
|
+
elapsedMs?: undefined;
|
|
129938
130908
|
};
|
|
129939
130909
|
} | {
|
|
129940
130910
|
name: string;
|
|
@@ -129952,6 +130922,27 @@ declare const INTEGRATORS_REGISTRY: {
|
|
|
129952
130922
|
triangleCount: string;
|
|
129953
130923
|
clips: string;
|
|
129954
130924
|
ok?: undefined;
|
|
130925
|
+
outdir?: undefined;
|
|
130926
|
+
frames?: undefined;
|
|
130927
|
+
framePaths?: undefined;
|
|
130928
|
+
sheet?: undefined;
|
|
130929
|
+
gif?: undefined;
|
|
130930
|
+
atlas?: undefined;
|
|
130931
|
+
presets?: undefined;
|
|
130932
|
+
rig?: undefined;
|
|
130933
|
+
resolved?: undefined;
|
|
130934
|
+
rigPath?: undefined;
|
|
130935
|
+
parts?: undefined;
|
|
130936
|
+
outPath?: undefined;
|
|
130937
|
+
legend?: undefined;
|
|
130938
|
+
layers?: undefined;
|
|
130939
|
+
fps?: undefined;
|
|
130940
|
+
model?: undefined;
|
|
130941
|
+
prompt?: undefined;
|
|
130942
|
+
seed?: undefined;
|
|
130943
|
+
size?: undefined;
|
|
130944
|
+
sourcePath?: undefined;
|
|
130945
|
+
elapsedMs?: undefined;
|
|
129955
130946
|
};
|
|
129956
130947
|
} | {
|
|
129957
130948
|
name: string;
|
|
@@ -129963,12 +130954,410 @@ declare const INTEGRATORS_REGISTRY: {
|
|
|
129963
130954
|
description: string;
|
|
129964
130955
|
}[];
|
|
129965
130956
|
responseShape: {
|
|
130957
|
+
outdir: string;
|
|
130958
|
+
frames: string;
|
|
130959
|
+
framePaths: string;
|
|
130960
|
+
sheet: string;
|
|
130961
|
+
gif: string;
|
|
130962
|
+
atlas: string;
|
|
130963
|
+
ok?: undefined;
|
|
130964
|
+
bundlePath?: undefined;
|
|
130965
|
+
boneCount?: undefined;
|
|
130966
|
+
vertexCount?: undefined;
|
|
130967
|
+
triangleCount?: undefined;
|
|
130968
|
+
clips?: undefined;
|
|
130969
|
+
presets?: undefined;
|
|
130970
|
+
rig?: undefined;
|
|
130971
|
+
resolved?: undefined;
|
|
130972
|
+
rigPath?: undefined;
|
|
130973
|
+
parts?: undefined;
|
|
130974
|
+
outPath?: undefined;
|
|
130975
|
+
legend?: undefined;
|
|
130976
|
+
layers?: undefined;
|
|
130977
|
+
fps?: undefined;
|
|
130978
|
+
model?: undefined;
|
|
130979
|
+
prompt?: undefined;
|
|
130980
|
+
seed?: undefined;
|
|
130981
|
+
size?: undefined;
|
|
130982
|
+
sourcePath?: undefined;
|
|
130983
|
+
elapsedMs?: undefined;
|
|
130984
|
+
};
|
|
130985
|
+
} | {
|
|
130986
|
+
name: string;
|
|
130987
|
+
description: string;
|
|
130988
|
+
params: never[];
|
|
130989
|
+
responseShape: {
|
|
130990
|
+
presets: {
|
|
130991
|
+
type: string;
|
|
130992
|
+
items: {
|
|
130993
|
+
type: string;
|
|
130994
|
+
properties: {
|
|
130995
|
+
name: {
|
|
130996
|
+
type: string;
|
|
130997
|
+
required: boolean;
|
|
130998
|
+
};
|
|
130999
|
+
path: {
|
|
131000
|
+
type: string;
|
|
131001
|
+
required: boolean;
|
|
131002
|
+
};
|
|
131003
|
+
fps: {
|
|
131004
|
+
type: string;
|
|
131005
|
+
required: boolean;
|
|
131006
|
+
};
|
|
131007
|
+
frames: {
|
|
131008
|
+
type: string;
|
|
131009
|
+
required: boolean;
|
|
131010
|
+
};
|
|
131011
|
+
bones: {
|
|
131012
|
+
type: string;
|
|
131013
|
+
required: boolean;
|
|
131014
|
+
};
|
|
131015
|
+
};
|
|
131016
|
+
};
|
|
131017
|
+
};
|
|
131018
|
+
ok?: undefined;
|
|
131019
|
+
bundlePath?: undefined;
|
|
131020
|
+
boneCount?: undefined;
|
|
131021
|
+
vertexCount?: undefined;
|
|
131022
|
+
triangleCount?: undefined;
|
|
131023
|
+
clips?: undefined;
|
|
131024
|
+
outdir?: undefined;
|
|
131025
|
+
frames?: undefined;
|
|
131026
|
+
framePaths?: undefined;
|
|
131027
|
+
sheet?: undefined;
|
|
131028
|
+
gif?: undefined;
|
|
131029
|
+
atlas?: undefined;
|
|
131030
|
+
rig?: undefined;
|
|
131031
|
+
resolved?: undefined;
|
|
131032
|
+
rigPath?: undefined;
|
|
131033
|
+
parts?: undefined;
|
|
131034
|
+
outPath?: undefined;
|
|
131035
|
+
legend?: undefined;
|
|
131036
|
+
layers?: undefined;
|
|
131037
|
+
fps?: undefined;
|
|
131038
|
+
model?: undefined;
|
|
131039
|
+
prompt?: undefined;
|
|
131040
|
+
seed?: undefined;
|
|
131041
|
+
size?: undefined;
|
|
131042
|
+
sourcePath?: undefined;
|
|
131043
|
+
elapsedMs?: undefined;
|
|
131044
|
+
};
|
|
131045
|
+
} | {
|
|
131046
|
+
name: string;
|
|
131047
|
+
description: string;
|
|
131048
|
+
params: {
|
|
131049
|
+
name: string;
|
|
131050
|
+
type: string;
|
|
131051
|
+
required: boolean;
|
|
131052
|
+
description: string;
|
|
131053
|
+
}[];
|
|
131054
|
+
responseShape: {
|
|
131055
|
+
rig: string;
|
|
131056
|
+
resolved: string;
|
|
131057
|
+
ok?: undefined;
|
|
131058
|
+
bundlePath?: undefined;
|
|
131059
|
+
boneCount?: undefined;
|
|
131060
|
+
vertexCount?: undefined;
|
|
131061
|
+
triangleCount?: undefined;
|
|
131062
|
+
clips?: undefined;
|
|
131063
|
+
outdir?: undefined;
|
|
131064
|
+
frames?: undefined;
|
|
131065
|
+
framePaths?: undefined;
|
|
131066
|
+
sheet?: undefined;
|
|
131067
|
+
gif?: undefined;
|
|
131068
|
+
atlas?: undefined;
|
|
131069
|
+
presets?: undefined;
|
|
131070
|
+
rigPath?: undefined;
|
|
131071
|
+
parts?: undefined;
|
|
131072
|
+
outPath?: undefined;
|
|
131073
|
+
legend?: undefined;
|
|
131074
|
+
layers?: undefined;
|
|
131075
|
+
fps?: undefined;
|
|
131076
|
+
model?: undefined;
|
|
131077
|
+
prompt?: undefined;
|
|
131078
|
+
seed?: undefined;
|
|
131079
|
+
size?: undefined;
|
|
131080
|
+
sourcePath?: undefined;
|
|
131081
|
+
elapsedMs?: undefined;
|
|
131082
|
+
};
|
|
131083
|
+
} | {
|
|
131084
|
+
name: string;
|
|
131085
|
+
description: string;
|
|
131086
|
+
params: {
|
|
131087
|
+
name: string;
|
|
131088
|
+
type: string;
|
|
131089
|
+
required: boolean;
|
|
131090
|
+
description: string;
|
|
131091
|
+
}[];
|
|
131092
|
+
responseShape: {
|
|
131093
|
+
rigPath: string;
|
|
131094
|
+
parts: string;
|
|
131095
|
+
ok?: undefined;
|
|
131096
|
+
bundlePath?: undefined;
|
|
131097
|
+
boneCount?: undefined;
|
|
131098
|
+
vertexCount?: undefined;
|
|
131099
|
+
triangleCount?: undefined;
|
|
131100
|
+
clips?: undefined;
|
|
131101
|
+
outdir?: undefined;
|
|
131102
|
+
frames?: undefined;
|
|
131103
|
+
framePaths?: undefined;
|
|
131104
|
+
sheet?: undefined;
|
|
131105
|
+
gif?: undefined;
|
|
131106
|
+
atlas?: undefined;
|
|
131107
|
+
presets?: undefined;
|
|
131108
|
+
rig?: undefined;
|
|
131109
|
+
resolved?: undefined;
|
|
131110
|
+
outPath?: undefined;
|
|
131111
|
+
legend?: undefined;
|
|
131112
|
+
layers?: undefined;
|
|
131113
|
+
fps?: undefined;
|
|
131114
|
+
model?: undefined;
|
|
131115
|
+
prompt?: undefined;
|
|
131116
|
+
seed?: undefined;
|
|
131117
|
+
size?: undefined;
|
|
131118
|
+
sourcePath?: undefined;
|
|
131119
|
+
elapsedMs?: undefined;
|
|
131120
|
+
};
|
|
131121
|
+
} | {
|
|
131122
|
+
name: string;
|
|
131123
|
+
description: string;
|
|
131124
|
+
params: {
|
|
131125
|
+
name: string;
|
|
131126
|
+
type: string;
|
|
131127
|
+
required: boolean;
|
|
131128
|
+
description: string;
|
|
131129
|
+
}[];
|
|
131130
|
+
responseShape: {
|
|
131131
|
+
outPath: string;
|
|
131132
|
+
legend: {
|
|
131133
|
+
type: string;
|
|
131134
|
+
items: {
|
|
131135
|
+
type: string;
|
|
131136
|
+
properties: {
|
|
131137
|
+
name: {
|
|
131138
|
+
type: string;
|
|
131139
|
+
required: boolean;
|
|
131140
|
+
};
|
|
131141
|
+
color: {
|
|
131142
|
+
type: string;
|
|
131143
|
+
required: boolean;
|
|
131144
|
+
};
|
|
131145
|
+
};
|
|
131146
|
+
};
|
|
131147
|
+
};
|
|
131148
|
+
ok?: undefined;
|
|
131149
|
+
bundlePath?: undefined;
|
|
131150
|
+
boneCount?: undefined;
|
|
131151
|
+
vertexCount?: undefined;
|
|
131152
|
+
triangleCount?: undefined;
|
|
131153
|
+
clips?: undefined;
|
|
131154
|
+
outdir?: undefined;
|
|
131155
|
+
frames?: undefined;
|
|
131156
|
+
framePaths?: undefined;
|
|
131157
|
+
sheet?: undefined;
|
|
131158
|
+
gif?: undefined;
|
|
131159
|
+
atlas?: undefined;
|
|
131160
|
+
presets?: undefined;
|
|
131161
|
+
rig?: undefined;
|
|
131162
|
+
resolved?: undefined;
|
|
131163
|
+
rigPath?: undefined;
|
|
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;
|
|
131317
|
+
model?: undefined;
|
|
131318
|
+
prompt?: undefined;
|
|
131319
|
+
seed?: undefined;
|
|
131320
|
+
size?: undefined;
|
|
131321
|
+
sourcePath?: undefined;
|
|
131322
|
+
elapsedMs?: undefined;
|
|
131323
|
+
};
|
|
131324
|
+
} | {
|
|
131325
|
+
name: string;
|
|
131326
|
+
description: string;
|
|
131327
|
+
params: {
|
|
131328
|
+
name: string;
|
|
131329
|
+
type: string;
|
|
131330
|
+
required: boolean;
|
|
131331
|
+
description: string;
|
|
131332
|
+
}[];
|
|
131333
|
+
responseShape: {
|
|
131334
|
+
outPath: string;
|
|
131335
|
+
model: string;
|
|
131336
|
+
prompt: string;
|
|
131337
|
+
seed: string;
|
|
131338
|
+
size: string;
|
|
131339
|
+
sourcePath: string;
|
|
131340
|
+
elapsedMs: string;
|
|
129966
131341
|
ok?: undefined;
|
|
129967
131342
|
bundlePath?: undefined;
|
|
129968
131343
|
boneCount?: undefined;
|
|
129969
131344
|
vertexCount?: undefined;
|
|
129970
131345
|
triangleCount?: undefined;
|
|
129971
131346
|
clips?: undefined;
|
|
131347
|
+
outdir?: undefined;
|
|
131348
|
+
frames?: undefined;
|
|
131349
|
+
framePaths?: undefined;
|
|
131350
|
+
sheet?: undefined;
|
|
131351
|
+
gif?: undefined;
|
|
131352
|
+
atlas?: undefined;
|
|
131353
|
+
presets?: undefined;
|
|
131354
|
+
rig?: undefined;
|
|
131355
|
+
resolved?: undefined;
|
|
131356
|
+
rigPath?: undefined;
|
|
131357
|
+
parts?: undefined;
|
|
131358
|
+
legend?: undefined;
|
|
131359
|
+
layers?: undefined;
|
|
131360
|
+
fps?: undefined;
|
|
129972
131361
|
};
|
|
129973
131362
|
})[];
|
|
129974
131363
|
};
|