@almadar/core 10.41.0 → 10.43.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 +596 -5
- package/dist/builders.js +47 -41
- package/dist/builders.js.map +1 -1
- package/dist/{effect-DSbx6joe.d.ts → effect-NbTgX2yB.d.ts} +1574 -100
- package/dist/{expression-DpAj1RzP.d.ts → expression-Yf7qvvOs.d.ts} +85 -10
- package/dist/factory/index.d.ts +5 -7
- package/dist/factory-runtime/index.d.ts +5 -5
- package/dist/factory-runtime/index.js +47 -41
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/index.d.ts +38 -17
- package/dist/index.js +332 -506
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +32 -2
- package/dist/mock/index.js +32 -2
- package/dist/mock/index.js.map +1 -1
- package/dist/patterns/component-mapping.json +8 -23
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +343 -857
- package/dist/patterns/index.js +166 -399
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +155 -370
- package/dist/patterns/registry.json +155 -370
- package/dist/{builders-CikYSzX6.d.ts → schema-DdcBBHkb.d.ts} +7016 -2545
- package/dist/state-machine/index.d.ts +1 -1
- package/dist/{trait-2E6TQw19.d.ts → trait-DdBiEffx.d.ts} +1336 -324
- package/dist/types/index.d.ts +148 -41
- package/dist/types/index.js +144 -112
- package/dist/types/index.js.map +1 -1
- package/dist/{types-CzocAZtG.d.ts → types-B4NVh8V9.d.ts} +3 -2
- package/package.json +1 -1
- package/src/types/bindings.ts +79 -0
- package/dist/entity-DfD-iXkn.d.ts +0 -1572
package/dist/patterns/index.d.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import { A as AnyPatternConfig,
|
|
2
|
-
export {
|
|
3
|
-
import { d as EventPayloadValue, a as EventPayload } from '../expression-
|
|
4
|
-
import { F as FieldValue, J as JsonValue } from '../entity-DfD-iXkn.js';
|
|
1
|
+
import { A as AnyPatternConfig, h as RenderBinding, F as FieldValue, aY as PatternType } from '../effect-NbTgX2yB.js';
|
|
2
|
+
export { aR as PATTERN_TYPES, aV as PatternConfig, aW as PatternProps, aX as PatternPropsMap, cL as isValidPatternType } from '../effect-NbTgX2yB.js';
|
|
3
|
+
import { d as EventPayloadValue, a as EventPayload, J as JsonValue } from '../expression-Yf7qvvOs.js';
|
|
5
4
|
import 'zod';
|
|
6
5
|
|
|
7
6
|
var version$3 = "1.0.0";
|
|
8
|
-
var exportedAt$3 = "2026-07-
|
|
7
|
+
var exportedAt$3 = "2026-07-29T19:32:01.461Z";
|
|
9
8
|
var patterns = {
|
|
10
9
|
"entity-table": {
|
|
11
10
|
type: "entity-table",
|
|
@@ -8532,6 +8531,25 @@ var patterns = {
|
|
|
8532
8531
|
description: "Show arrow",
|
|
8533
8532
|
"default": true
|
|
8534
8533
|
},
|
|
8534
|
+
open: {
|
|
8535
|
+
types: [
|
|
8536
|
+
"boolean"
|
|
8537
|
+
],
|
|
8538
|
+
description: "Controlled open state. When set, the host owns visibility and the popover reports intent through onOpenChange instead of toggling itself."
|
|
8539
|
+
},
|
|
8540
|
+
onOpenChange: {
|
|
8541
|
+
types: [
|
|
8542
|
+
"function"
|
|
8543
|
+
],
|
|
8544
|
+
description: "Fired when the popover wants to change visibility (trigger click, outside click)",
|
|
8545
|
+
kind: "callback",
|
|
8546
|
+
callbackArgs: [
|
|
8547
|
+
{
|
|
8548
|
+
name: "open",
|
|
8549
|
+
type: "boolean"
|
|
8550
|
+
}
|
|
8551
|
+
]
|
|
8552
|
+
},
|
|
8535
8553
|
className: {
|
|
8536
8554
|
types: [
|
|
8537
8555
|
"string"
|
|
@@ -18225,6 +18243,22 @@ var patterns = {
|
|
|
18225
18243
|
description: "Max items to show before \"Show More\" button. Defaults to 5. Set to 0 to disable.",
|
|
18226
18244
|
"default": 5
|
|
18227
18245
|
},
|
|
18246
|
+
sortBy: {
|
|
18247
|
+
types: [
|
|
18248
|
+
"string"
|
|
18249
|
+
],
|
|
18250
|
+
description: "Field name to order rows by. Values are compared by their own type — numbers numerically, date-like strings chronologically, everything else alphabetically — never by what the field is called. Empty cells sort last. Unset leaves the incoming order untouched. Orders only the rows already fetched: a collection larger than its `limit` still needs ordering at the data layer."
|
|
18251
|
+
},
|
|
18252
|
+
sortDirection: {
|
|
18253
|
+
types: [
|
|
18254
|
+
"string"
|
|
18255
|
+
],
|
|
18256
|
+
description: "Direction for `sortBy`. Defaults to ascending.",
|
|
18257
|
+
enumValues: [
|
|
18258
|
+
"asc",
|
|
18259
|
+
"desc"
|
|
18260
|
+
]
|
|
18261
|
+
},
|
|
18228
18262
|
look: {
|
|
18229
18263
|
types: [
|
|
18230
18264
|
"string"
|
|
@@ -33616,6 +33650,13 @@ var patterns = {
|
|
|
33616
33650
|
],
|
|
33617
33651
|
description: "Max inline action buttons before the rest collapse into a \"⋯\" overflow menu. Omit = all inline."
|
|
33618
33652
|
},
|
|
33653
|
+
itemClickEvent: {
|
|
33654
|
+
types: [
|
|
33655
|
+
"string"
|
|
33656
|
+
],
|
|
33657
|
+
description: "When set, the whole row is clickable and emits UI:{itemClickEvent} with { id, row } (action-button clicks stopPropagation so they still win). Mirrors DataList's contract.",
|
|
33658
|
+
kind: "event"
|
|
33659
|
+
},
|
|
33619
33660
|
selectable: {
|
|
33620
33661
|
types: [
|
|
33621
33662
|
"boolean"
|
|
@@ -35136,9 +35177,22 @@ var patterns = {
|
|
|
35136
35177
|
types: [
|
|
35137
35178
|
"number"
|
|
35138
35179
|
],
|
|
35139
|
-
description: "Render scale (
|
|
35180
|
+
description: "Render scale, legacy-squared semantics: on-screen cell ≈ `256 × scale²` px (the authored contract every board tuned its value for). Converted internally to the single camera zoom against the board's native tile width, so the cell pitch follows the asset while the on-screen size stays as authored. Ignored when `fit` is on; passed through raw for `free`/`side` (world-pixel-direct).",
|
|
35140
35181
|
"default": 0.4
|
|
35141
35182
|
},
|
|
35183
|
+
tileWidth: {
|
|
35184
|
+
types: [
|
|
35185
|
+
"number"
|
|
35186
|
+
],
|
|
35187
|
+
description: "Native tile/cell width in source px for this board's asset (e.g. 16 for Kenney tiny-dungeon, ~128 for iso blocks). The grid cell pitch follows the asset, so tile textures map 1:1 (crisp, no stretch). Defaults to the detected atlas tile width, else 256."
|
|
35188
|
+
},
|
|
35189
|
+
fit: {
|
|
35190
|
+
types: [
|
|
35191
|
+
"boolean"
|
|
35192
|
+
],
|
|
35193
|
+
description: "Auto-fit the board's grid extent to the viewport (default false — boards render at their authored `scale` and overflow → pan). Opt in for whole-board-overview boards. User wheel/pinch zoom always wins after the initial fit.",
|
|
35194
|
+
"default": false
|
|
35195
|
+
},
|
|
35142
35196
|
showMinimap: {
|
|
35143
35197
|
types: [
|
|
35144
35198
|
"boolean"
|
|
@@ -39314,7 +39368,8 @@ var patterns = {
|
|
|
39314
39368
|
"cell",
|
|
39315
39369
|
"rect",
|
|
39316
39370
|
"ellipse",
|
|
39317
|
-
"poly"
|
|
39371
|
+
"poly",
|
|
39372
|
+
"path"
|
|
39318
39373
|
]
|
|
39319
39374
|
},
|
|
39320
39375
|
position: {
|
|
@@ -39399,6 +39454,12 @@ var patterns = {
|
|
|
39399
39454
|
]
|
|
39400
39455
|
}
|
|
39401
39456
|
},
|
|
39457
|
+
d: {
|
|
39458
|
+
types: [
|
|
39459
|
+
"string"
|
|
39460
|
+
],
|
|
39461
|
+
description: "SVG path data in world units relative to the cell's projected top-left — same coordinate convention as `points`."
|
|
39462
|
+
},
|
|
39402
39463
|
fill: {
|
|
39403
39464
|
types: [
|
|
39404
39465
|
"string"
|
|
@@ -39587,13 +39648,13 @@ var patterns = {
|
|
|
39587
39648
|
types: [
|
|
39588
39649
|
"number"
|
|
39589
39650
|
],
|
|
39590
|
-
description: "Draw width in world units (fractions of `projector.tileWidth`)
|
|
39651
|
+
description: "Draw width in world units (fractions of `projector.tileWidth`). Omitted → one cell on tile grids (`flat`/`iso`/`hex`); native source px on `free`/`side`."
|
|
39591
39652
|
},
|
|
39592
39653
|
height: {
|
|
39593
39654
|
types: [
|
|
39594
39655
|
"number"
|
|
39595
39656
|
],
|
|
39596
|
-
description: "Draw height in world units (fractions of `projector.tileWidth`)
|
|
39657
|
+
description: "Draw height in world units (fractions of `projector.tileWidth`). Omitted → one cell on tile grids (`flat`/`iso`/`hex`); native source px on `free`/`side`."
|
|
39597
39658
|
},
|
|
39598
39659
|
frame: {
|
|
39599
39660
|
types: [
|
|
@@ -39799,7 +39860,8 @@ var patterns = {
|
|
|
39799
39860
|
"cell",
|
|
39800
39861
|
"rect",
|
|
39801
39862
|
"ellipse",
|
|
39802
|
-
"poly"
|
|
39863
|
+
"poly",
|
|
39864
|
+
"path"
|
|
39803
39865
|
]
|
|
39804
39866
|
},
|
|
39805
39867
|
position: {
|
|
@@ -39874,6 +39936,11 @@ var patterns = {
|
|
|
39874
39936
|
]
|
|
39875
39937
|
}
|
|
39876
39938
|
},
|
|
39939
|
+
d: {
|
|
39940
|
+
types: [
|
|
39941
|
+
"string"
|
|
39942
|
+
]
|
|
39943
|
+
},
|
|
39877
39944
|
fill: {
|
|
39878
39945
|
types: [
|
|
39879
39946
|
"string"
|
|
@@ -40330,6 +40397,18 @@ var patterns = {
|
|
|
40330
40397
|
],
|
|
40331
40398
|
description: "Minimap overlay (2D)."
|
|
40332
40399
|
},
|
|
40400
|
+
fit: {
|
|
40401
|
+
types: [
|
|
40402
|
+
"boolean"
|
|
40403
|
+
],
|
|
40404
|
+
description: "Auto-fit the board's grid extent to the viewport (2D grid layouts; default false — boards render at their authored `camera.zoom` scale)."
|
|
40405
|
+
},
|
|
40406
|
+
tileWidth: {
|
|
40407
|
+
types: [
|
|
40408
|
+
"number"
|
|
40409
|
+
],
|
|
40410
|
+
description: "Native tile/cell width in source px of the board's asset (2D grid layouts; defaults to the detected atlas tile width, else 256)."
|
|
40411
|
+
},
|
|
40333
40412
|
backgroundImage: {
|
|
40334
40413
|
types: [
|
|
40335
40414
|
"asset",
|
|
@@ -41025,175 +41104,72 @@ var patterns = {
|
|
|
41025
41104
|
}
|
|
41026
41105
|
}
|
|
41027
41106
|
},
|
|
41028
|
-
"
|
|
41029
|
-
type: "
|
|
41107
|
+
"draw-group": {
|
|
41108
|
+
type: "draw-group",
|
|
41030
41109
|
category: "game",
|
|
41031
41110
|
tier: "atoms",
|
|
41032
41111
|
family: "game",
|
|
41033
|
-
description: "
|
|
41112
|
+
description: "DrawGroup component",
|
|
41034
41113
|
suggestedFor: [
|
|
41035
|
-
"svg",
|
|
41036
41114
|
"draw",
|
|
41037
41115
|
"group",
|
|
41038
|
-
"
|
|
41039
|
-
],
|
|
41040
|
-
typicalSize: "small",
|
|
41041
|
-
propsSchema: {
|
|
41042
|
-
x: {
|
|
41043
|
-
types: [
|
|
41044
|
-
"number"
|
|
41045
|
-
],
|
|
41046
|
-
description: "Grid-cell x of the group's origin.",
|
|
41047
|
-
"default": 0
|
|
41048
|
-
},
|
|
41049
|
-
y: {
|
|
41050
|
-
types: [
|
|
41051
|
-
"number"
|
|
41052
|
-
],
|
|
41053
|
-
description: "Grid-cell y of the group's origin.",
|
|
41054
|
-
"default": 0
|
|
41055
|
-
},
|
|
41056
|
-
scale: {
|
|
41057
|
-
types: [
|
|
41058
|
-
"number"
|
|
41059
|
-
],
|
|
41060
|
-
description: "Uniform scale applied after the translate."
|
|
41061
|
-
},
|
|
41062
|
-
rotate: {
|
|
41063
|
-
types: [
|
|
41064
|
-
"number"
|
|
41065
|
-
],
|
|
41066
|
-
description: "Rotation in degrees applied after the translate."
|
|
41067
|
-
},
|
|
41068
|
-
opacity: {
|
|
41069
|
-
types: [
|
|
41070
|
-
"number"
|
|
41071
|
-
],
|
|
41072
|
-
description: "0..1 opacity."
|
|
41073
|
-
},
|
|
41074
|
-
className: {
|
|
41075
|
-
types: [
|
|
41076
|
-
"string"
|
|
41077
|
-
],
|
|
41078
|
-
description: "Additional CSS classes"
|
|
41079
|
-
},
|
|
41080
|
-
children: {
|
|
41081
|
-
types: [
|
|
41082
|
-
"node"
|
|
41083
|
-
],
|
|
41084
|
-
description: "children prop"
|
|
41085
|
-
}
|
|
41086
|
-
}
|
|
41087
|
-
},
|
|
41088
|
-
"svg-draw-shape": {
|
|
41089
|
-
type: "svg-draw-shape",
|
|
41090
|
-
category: "game",
|
|
41091
|
-
tier: "atoms",
|
|
41092
|
-
family: "game",
|
|
41093
|
-
description: "SvgDrawShape component",
|
|
41094
|
-
suggestedFor: [
|
|
41095
|
-
"svg",
|
|
41096
|
-
"draw",
|
|
41097
|
-
"shape",
|
|
41098
|
-
"svg draw shape"
|
|
41116
|
+
"draw group"
|
|
41099
41117
|
],
|
|
41100
41118
|
typicalSize: "small",
|
|
41101
41119
|
propsSchema: {
|
|
41102
|
-
|
|
41120
|
+
id: {
|
|
41103
41121
|
types: [
|
|
41104
41122
|
"string"
|
|
41105
41123
|
],
|
|
41106
|
-
description: "
|
|
41107
|
-
required: true,
|
|
41108
|
-
enumValues: [
|
|
41109
|
-
"rect",
|
|
41110
|
-
"circle",
|
|
41111
|
-
"ellipse",
|
|
41112
|
-
"polygon",
|
|
41113
|
-
"polyline",
|
|
41114
|
-
"path",
|
|
41115
|
-
"line"
|
|
41116
|
-
]
|
|
41117
|
-
},
|
|
41118
|
-
x: {
|
|
41119
|
-
types: [
|
|
41120
|
-
"number"
|
|
41121
|
-
],
|
|
41122
|
-
description: "Grid-cell x of the element's translated origin.",
|
|
41123
|
-
required: true
|
|
41124
|
+
description: "Optional source-tagged hit-test handle — the host indexes the drawable's ScenePos→id so a pointer/raycast at that cell resolves to this id (unit/entity click). No id → the host emits only the coordinate (tile click)."
|
|
41124
41125
|
},
|
|
41125
|
-
|
|
41126
|
+
type: {
|
|
41126
41127
|
types: [
|
|
41127
|
-
"
|
|
41128
|
+
"unknown"
|
|
41128
41129
|
],
|
|
41129
|
-
description: "
|
|
41130
|
+
description: "type prop",
|
|
41130
41131
|
required: true
|
|
41131
41132
|
},
|
|
41132
|
-
|
|
41133
|
-
types: [
|
|
41134
|
-
"number"
|
|
41135
|
-
],
|
|
41136
|
-
description: "Rect width in cell units."
|
|
41137
|
-
},
|
|
41138
|
-
height: {
|
|
41139
|
-
types: [
|
|
41140
|
-
"number"
|
|
41141
|
-
],
|
|
41142
|
-
description: "Rect height in cell units."
|
|
41143
|
-
},
|
|
41144
|
-
radius: {
|
|
41145
|
-
types: [
|
|
41146
|
-
"number"
|
|
41147
|
-
],
|
|
41148
|
-
description: "Circle radius / ellipse horizontal radius in cell units."
|
|
41149
|
-
},
|
|
41150
|
-
radiusY: {
|
|
41151
|
-
types: [
|
|
41152
|
-
"number"
|
|
41153
|
-
],
|
|
41154
|
-
description: "Ellipse vertical radius in cell units; omitted → `radius` (a circle)."
|
|
41155
|
-
},
|
|
41156
|
-
points: {
|
|
41157
|
-
types: [
|
|
41158
|
-
"string"
|
|
41159
|
-
],
|
|
41160
|
-
description: "Polygon/polyline points, viewBox units relative to the translated origin."
|
|
41161
|
-
},
|
|
41162
|
-
d: {
|
|
41133
|
+
position: {
|
|
41163
41134
|
types: [
|
|
41164
|
-
"
|
|
41135
|
+
"object"
|
|
41165
41136
|
],
|
|
41166
|
-
description: "
|
|
41167
|
-
|
|
41168
|
-
|
|
41169
|
-
|
|
41170
|
-
|
|
41137
|
+
description: "Logical scene position; the projector maps it to pixels / world.",
|
|
41138
|
+
required: true,
|
|
41139
|
+
properties: {
|
|
41140
|
+
x: {
|
|
41141
|
+
types: [
|
|
41142
|
+
"number"
|
|
41143
|
+
]
|
|
41144
|
+
},
|
|
41145
|
+
y: {
|
|
41146
|
+
types: [
|
|
41147
|
+
"number"
|
|
41148
|
+
]
|
|
41149
|
+
},
|
|
41150
|
+
z: {
|
|
41151
|
+
types: [
|
|
41152
|
+
"number"
|
|
41153
|
+
]
|
|
41154
|
+
}
|
|
41155
|
+
},
|
|
41156
|
+
propertyRequired: [
|
|
41157
|
+
"x",
|
|
41158
|
+
"y"
|
|
41171
41159
|
],
|
|
41172
|
-
|
|
41160
|
+
scenePos: true
|
|
41173
41161
|
},
|
|
41174
|
-
|
|
41162
|
+
scale: {
|
|
41175
41163
|
types: [
|
|
41176
41164
|
"number"
|
|
41177
41165
|
],
|
|
41178
|
-
description: "
|
|
41179
|
-
},
|
|
41180
|
-
fill: {
|
|
41181
|
-
types: [
|
|
41182
|
-
"string"
|
|
41183
|
-
],
|
|
41184
|
-
description: "fill prop"
|
|
41185
|
-
},
|
|
41186
|
-
stroke: {
|
|
41187
|
-
types: [
|
|
41188
|
-
"string"
|
|
41189
|
-
],
|
|
41190
|
-
description: "stroke prop"
|
|
41166
|
+
description: "Uniform scale applied to the whole group."
|
|
41191
41167
|
},
|
|
41192
|
-
|
|
41168
|
+
rotate: {
|
|
41193
41169
|
types: [
|
|
41194
41170
|
"number"
|
|
41195
41171
|
],
|
|
41196
|
-
description: "
|
|
41172
|
+
description: "Rotation in radians (painter units)."
|
|
41197
41173
|
},
|
|
41198
41174
|
opacity: {
|
|
41199
41175
|
types: [
|
|
@@ -41201,267 +41177,74 @@ var patterns = {
|
|
|
41201
41177
|
],
|
|
41202
41178
|
description: "0..1 opacity."
|
|
41203
41179
|
},
|
|
41204
|
-
className: {
|
|
41205
|
-
types: [
|
|
41206
|
-
"string"
|
|
41207
|
-
],
|
|
41208
|
-
description: "Additional CSS classes"
|
|
41209
|
-
}
|
|
41210
|
-
}
|
|
41211
|
-
},
|
|
41212
|
-
"svg-draw-text": {
|
|
41213
|
-
type: "svg-draw-text",
|
|
41214
|
-
category: "game",
|
|
41215
|
-
tier: "atoms",
|
|
41216
|
-
family: "game",
|
|
41217
|
-
description: "SvgDrawText component",
|
|
41218
|
-
suggestedFor: [
|
|
41219
|
-
"svg",
|
|
41220
|
-
"draw",
|
|
41221
|
-
"text",
|
|
41222
|
-
"svg draw text"
|
|
41223
|
-
],
|
|
41224
|
-
typicalSize: "small",
|
|
41225
|
-
propsSchema: {
|
|
41226
|
-
x: {
|
|
41227
|
-
types: [
|
|
41228
|
-
"number"
|
|
41229
|
-
],
|
|
41230
|
-
description: "Grid-cell x of the text anchor.",
|
|
41231
|
-
required: true
|
|
41232
|
-
},
|
|
41233
|
-
y: {
|
|
41234
|
-
types: [
|
|
41235
|
-
"number"
|
|
41236
|
-
],
|
|
41237
|
-
description: "Grid-cell y of the text anchor.",
|
|
41238
|
-
required: true
|
|
41239
|
-
},
|
|
41240
|
-
text: {
|
|
41241
|
-
types: [
|
|
41242
|
-
"string"
|
|
41243
|
-
],
|
|
41244
|
-
description: "The text content.",
|
|
41245
|
-
required: true
|
|
41246
|
-
},
|
|
41247
|
-
size: {
|
|
41248
|
-
types: [
|
|
41249
|
-
"number"
|
|
41250
|
-
],
|
|
41251
|
-
description: "Font size in viewBox units (default 12).",
|
|
41252
|
-
"default": 12
|
|
41253
|
-
},
|
|
41254
|
-
fill: {
|
|
41255
|
-
types: [
|
|
41256
|
-
"string"
|
|
41257
|
-
],
|
|
41258
|
-
description: "fill prop",
|
|
41259
|
-
"default": "var(--color-foreground)"
|
|
41260
|
-
},
|
|
41261
|
-
anchor: {
|
|
41262
|
-
types: [
|
|
41263
|
-
"string"
|
|
41264
|
-
],
|
|
41265
|
-
description: "Text anchor (default 'middle').",
|
|
41266
|
-
enumValues: [
|
|
41267
|
-
"start",
|
|
41268
|
-
"middle",
|
|
41269
|
-
"end"
|
|
41270
|
-
],
|
|
41271
|
-
"default": "middle"
|
|
41272
|
-
},
|
|
41273
|
-
className: {
|
|
41274
|
-
types: [
|
|
41275
|
-
"string"
|
|
41276
|
-
],
|
|
41277
|
-
description: "Additional CSS classes"
|
|
41278
|
-
}
|
|
41279
|
-
}
|
|
41280
|
-
},
|
|
41281
|
-
"svg-draw-shape-layer": {
|
|
41282
|
-
type: "svg-draw-shape-layer",
|
|
41283
|
-
category: "game",
|
|
41284
|
-
tier: "molecules",
|
|
41285
|
-
family: "game",
|
|
41286
|
-
description: "SvgDrawShapeLayer component",
|
|
41287
|
-
suggestedFor: [
|
|
41288
|
-
"svg",
|
|
41289
|
-
"draw",
|
|
41290
|
-
"shape",
|
|
41291
|
-
"layer",
|
|
41292
|
-
"svg draw shape layer"
|
|
41293
|
-
],
|
|
41294
|
-
typicalSize: "medium",
|
|
41295
|
-
propsSchema: {
|
|
41296
41180
|
items: {
|
|
41297
41181
|
types: [
|
|
41298
41182
|
"array"
|
|
41299
41183
|
],
|
|
41300
|
-
description: "
|
|
41184
|
+
description: "The grouped drawables, painted through the normal dispatch.",
|
|
41301
41185
|
required: true,
|
|
41302
41186
|
items: {
|
|
41303
41187
|
types: [
|
|
41304
41188
|
"object"
|
|
41305
41189
|
],
|
|
41306
|
-
|
|
41307
|
-
id: {
|
|
41308
|
-
types: [
|
|
41309
|
-
"string"
|
|
41310
|
-
]
|
|
41311
|
-
}
|
|
41312
|
-
},
|
|
41313
|
-
required: [
|
|
41314
|
-
"id"
|
|
41315
|
-
]
|
|
41190
|
+
drawableSlot: true
|
|
41316
41191
|
}
|
|
41317
|
-
},
|
|
41318
|
-
fill: {
|
|
41319
|
-
types: [
|
|
41320
|
-
"string"
|
|
41321
|
-
],
|
|
41322
|
-
description: "Default fill for items that don't set one."
|
|
41323
|
-
},
|
|
41324
|
-
stroke: {
|
|
41325
|
-
types: [
|
|
41326
|
-
"string"
|
|
41327
|
-
],
|
|
41328
|
-
description: "Default stroke for items that don't set one."
|
|
41329
|
-
},
|
|
41330
|
-
strokeWidth: {
|
|
41331
|
-
types: [
|
|
41332
|
-
"number"
|
|
41333
|
-
],
|
|
41334
|
-
description: "Default strokeWidth for items that don't set one."
|
|
41335
|
-
},
|
|
41336
|
-
opacity: {
|
|
41337
|
-
types: [
|
|
41338
|
-
"number"
|
|
41339
|
-
],
|
|
41340
|
-
description: "Default 0..1 opacity for items that don't set one."
|
|
41341
41192
|
}
|
|
41342
|
-
}
|
|
41193
|
+
},
|
|
41194
|
+
drawable: true,
|
|
41195
|
+
drawHost: true
|
|
41343
41196
|
},
|
|
41344
|
-
"
|
|
41345
|
-
type: "
|
|
41346
|
-
category: "
|
|
41197
|
+
"emoji-picker": {
|
|
41198
|
+
type: "emoji-picker",
|
|
41199
|
+
category: "component",
|
|
41347
41200
|
tier: "molecules",
|
|
41348
|
-
family: "
|
|
41349
|
-
description: "
|
|
41201
|
+
family: "core",
|
|
41202
|
+
description: "EmojiPicker component",
|
|
41350
41203
|
suggestedFor: [
|
|
41351
|
-
"
|
|
41352
|
-
"
|
|
41353
|
-
"
|
|
41204
|
+
"emoji",
|
|
41205
|
+
"picker",
|
|
41206
|
+
"emoji picker"
|
|
41354
41207
|
],
|
|
41355
41208
|
typicalSize: "medium",
|
|
41356
41209
|
propsSchema: {
|
|
41357
|
-
|
|
41358
|
-
types: [
|
|
41359
|
-
"number"
|
|
41360
|
-
],
|
|
41361
|
-
description: "Grid width in cells.",
|
|
41362
|
-
required: true
|
|
41363
|
-
},
|
|
41364
|
-
rows: {
|
|
41365
|
-
types: [
|
|
41366
|
-
"number"
|
|
41367
|
-
],
|
|
41368
|
-
description: "Grid height in cells.",
|
|
41369
|
-
required: true
|
|
41370
|
-
},
|
|
41371
|
-
tileSize: {
|
|
41372
|
-
types: [
|
|
41373
|
-
"number"
|
|
41374
|
-
],
|
|
41375
|
-
description: "ViewBox units per cell (default 32); viewBox is `0 0 cols*tileSize rows*tileSize`.",
|
|
41376
|
-
"default": 32
|
|
41377
|
-
},
|
|
41378
|
-
background: {
|
|
41210
|
+
pickEvent: {
|
|
41379
41211
|
types: [
|
|
41380
41212
|
"string"
|
|
41381
41213
|
],
|
|
41382
|
-
description: "
|
|
41383
|
-
|
|
41214
|
+
description: "Declarative event name — picking an emoji emits UI:{pickEvent} with { emoji } via eventBus",
|
|
41215
|
+
kind: "event"
|
|
41384
41216
|
},
|
|
41385
|
-
|
|
41217
|
+
position: {
|
|
41386
41218
|
types: [
|
|
41387
41219
|
"string"
|
|
41388
41220
|
],
|
|
41389
|
-
description: "
|
|
41390
|
-
|
|
41391
|
-
|
|
41392
|
-
|
|
41393
|
-
name: "x",
|
|
41394
|
-
type: "number",
|
|
41395
|
-
required: true
|
|
41396
|
-
},
|
|
41397
|
-
{
|
|
41398
|
-
name: "y",
|
|
41399
|
-
type: "number",
|
|
41400
|
-
required: true
|
|
41401
|
-
}
|
|
41402
|
-
]
|
|
41403
|
-
},
|
|
41404
|
-
tileHoverEvent: {
|
|
41405
|
-
types: [
|
|
41406
|
-
"string"
|
|
41221
|
+
description: "Which side of the trigger the panel opens on",
|
|
41222
|
+
enumValues: [
|
|
41223
|
+
"top",
|
|
41224
|
+
"bottom"
|
|
41407
41225
|
],
|
|
41408
|
-
|
|
41409
|
-
kind: "event-ref",
|
|
41410
|
-
emitPayloadSchema: [
|
|
41411
|
-
{
|
|
41412
|
-
name: "x",
|
|
41413
|
-
type: "number",
|
|
41414
|
-
required: true
|
|
41415
|
-
},
|
|
41416
|
-
{
|
|
41417
|
-
name: "y",
|
|
41418
|
-
type: "number",
|
|
41419
|
-
required: true
|
|
41420
|
-
}
|
|
41421
|
-
]
|
|
41226
|
+
"default": "top"
|
|
41422
41227
|
},
|
|
41423
|
-
|
|
41228
|
+
triggerIcon: {
|
|
41424
41229
|
types: [
|
|
41230
|
+
"icon",
|
|
41425
41231
|
"string"
|
|
41426
41232
|
],
|
|
41427
|
-
description: "
|
|
41428
|
-
|
|
41429
|
-
emitPayloadSchema: [
|
|
41430
|
-
]
|
|
41233
|
+
description: "Icon shown on the trigger button",
|
|
41234
|
+
"default": "smile"
|
|
41431
41235
|
},
|
|
41432
|
-
|
|
41433
|
-
types: [
|
|
41434
|
-
"object"
|
|
41435
|
-
],
|
|
41436
|
-
description: "Keyboard → semantic events: `e.code` → event name, emitted as `UI:<event>` with `{}`.",
|
|
41437
|
-
mapValue: {
|
|
41438
|
-
types: [
|
|
41439
|
-
"string"
|
|
41440
|
-
]
|
|
41441
|
-
}
|
|
41442
|
-
},
|
|
41443
|
-
keyUpMap: {
|
|
41236
|
+
triggerLabel: {
|
|
41444
41237
|
types: [
|
|
41445
|
-
"
|
|
41238
|
+
"string"
|
|
41446
41239
|
],
|
|
41447
|
-
description: "
|
|
41448
|
-
|
|
41449
|
-
types: [
|
|
41450
|
-
"string"
|
|
41451
|
-
]
|
|
41452
|
-
}
|
|
41240
|
+
description: "Accessible label for the trigger button",
|
|
41241
|
+
"default": "Add emoji"
|
|
41453
41242
|
},
|
|
41454
41243
|
className: {
|
|
41455
41244
|
types: [
|
|
41456
41245
|
"string"
|
|
41457
41246
|
],
|
|
41458
|
-
description: "Additional CSS classes"
|
|
41459
|
-
},
|
|
41460
|
-
children: {
|
|
41461
|
-
types: [
|
|
41462
|
-
"node"
|
|
41463
|
-
],
|
|
41464
|
-
description: "children prop"
|
|
41247
|
+
description: "Additional CSS classes applied to the trigger button"
|
|
41465
41248
|
}
|
|
41466
41249
|
}
|
|
41467
41250
|
}
|
|
@@ -42391,7 +42174,7 @@ var integratorsRegistry = {
|
|
|
42391
42174
|
};
|
|
42392
42175
|
|
|
42393
42176
|
var version$1 = "1.0.0";
|
|
42394
|
-
var exportedAt$1 = "2026-07-
|
|
42177
|
+
var exportedAt$1 = "2026-07-29T19:32:01.461Z";
|
|
42395
42178
|
var mappings = {
|
|
42396
42179
|
"page-header": {
|
|
42397
42180
|
component: "PageHeader",
|
|
@@ -43765,30 +43548,15 @@ var mappings = {
|
|
|
43765
43548
|
importPath: "@/components/core/molecules/ImportSourcePicker",
|
|
43766
43549
|
category: "component"
|
|
43767
43550
|
},
|
|
43768
|
-
"
|
|
43769
|
-
component: "
|
|
43770
|
-
importPath: "@/components/game/atoms/
|
|
43551
|
+
"draw-group": {
|
|
43552
|
+
component: "DrawGroup",
|
|
43553
|
+
importPath: "@/components/game/atoms/DrawGroup",
|
|
43771
43554
|
category: "game"
|
|
43772
43555
|
},
|
|
43773
|
-
"
|
|
43774
|
-
component: "
|
|
43775
|
-
importPath: "@/components/
|
|
43776
|
-
category: "
|
|
43777
|
-
},
|
|
43778
|
-
"svg-draw-text": {
|
|
43779
|
-
component: "SvgDrawText",
|
|
43780
|
-
importPath: "@/components/game/atoms/SvgDrawText",
|
|
43781
|
-
category: "game"
|
|
43782
|
-
},
|
|
43783
|
-
"svg-draw-shape-layer": {
|
|
43784
|
-
component: "SvgDrawShapeLayer",
|
|
43785
|
-
importPath: "@/components/game/molecules/SvgDrawShapeLayer",
|
|
43786
|
-
category: "game"
|
|
43787
|
-
},
|
|
43788
|
-
"svg-stage": {
|
|
43789
|
-
component: "SvgStage",
|
|
43790
|
-
importPath: "@/components/game/molecules/SvgStage",
|
|
43791
|
-
category: "game"
|
|
43556
|
+
"emoji-picker": {
|
|
43557
|
+
component: "EmojiPicker",
|
|
43558
|
+
importPath: "@/components/core/molecules/EmojiPicker",
|
|
43559
|
+
category: "component"
|
|
43792
43560
|
}
|
|
43793
43561
|
};
|
|
43794
43562
|
var componentMapping = {
|
|
@@ -43798,7 +43566,7 @@ var componentMapping = {
|
|
|
43798
43566
|
};
|
|
43799
43567
|
|
|
43800
43568
|
var version = "1.0.0";
|
|
43801
|
-
var exportedAt = "2026-07-
|
|
43569
|
+
var exportedAt = "2026-07-29T19:32:01.461Z";
|
|
43802
43570
|
var contracts = {
|
|
43803
43571
|
form: {
|
|
43804
43572
|
emits: [
|
|
@@ -45296,6 +45064,15 @@ type SelectionChangePayload = EventPayload & {
|
|
|
45296
45064
|
* destructure without runtime checks.
|
|
45297
45065
|
*/
|
|
45298
45066
|
type LoadMoreRequestPayload = EventPayload;
|
|
45067
|
+
/**
|
|
45068
|
+
* Payload dispatched by an emoji-choosing pattern (`pickEvent` on
|
|
45069
|
+
* EmojiPicker) when the user picks a glyph. The receiving trait appends
|
|
45070
|
+
* the glyph to a draft, records a reaction, etc.
|
|
45071
|
+
*/
|
|
45072
|
+
type EmojiPickPayload = EventPayload & {
|
|
45073
|
+
/** The chosen emoji glyph (e.g. "😀"). */
|
|
45074
|
+
emoji: string;
|
|
45075
|
+
};
|
|
45299
45076
|
/**
|
|
45300
45077
|
* Payload dispatched by a schema-driven `Form` on successful submit
|
|
45301
45078
|
* (`submitEvent`). `data` holds the form's collected field values.
|
|
@@ -50692,6 +50469,19 @@ declare const registry: {
|
|
|
50692
50469
|
description: string;
|
|
50693
50470
|
default: boolean;
|
|
50694
50471
|
};
|
|
50472
|
+
open: {
|
|
50473
|
+
types: string[];
|
|
50474
|
+
description: string;
|
|
50475
|
+
};
|
|
50476
|
+
onOpenChange: {
|
|
50477
|
+
types: string[];
|
|
50478
|
+
description: string;
|
|
50479
|
+
kind: string;
|
|
50480
|
+
callbackArgs: {
|
|
50481
|
+
name: string;
|
|
50482
|
+
type: string;
|
|
50483
|
+
}[];
|
|
50484
|
+
};
|
|
50695
50485
|
className: {
|
|
50696
50486
|
types: string[];
|
|
50697
50487
|
description: string;
|
|
@@ -56609,6 +56399,15 @@ declare const registry: {
|
|
|
56609
56399
|
description: string;
|
|
56610
56400
|
default: number;
|
|
56611
56401
|
};
|
|
56402
|
+
sortBy: {
|
|
56403
|
+
types: string[];
|
|
56404
|
+
description: string;
|
|
56405
|
+
};
|
|
56406
|
+
sortDirection: {
|
|
56407
|
+
types: string[];
|
|
56408
|
+
description: string;
|
|
56409
|
+
enumValues: string[];
|
|
56410
|
+
};
|
|
56612
56411
|
look: {
|
|
56613
56412
|
types: string[];
|
|
56614
56413
|
description: string;
|
|
@@ -66068,6 +65867,11 @@ declare const registry: {
|
|
|
66068
65867
|
types: string[];
|
|
66069
65868
|
description: string;
|
|
66070
65869
|
};
|
|
65870
|
+
itemClickEvent: {
|
|
65871
|
+
types: string[];
|
|
65872
|
+
description: string;
|
|
65873
|
+
kind: string;
|
|
65874
|
+
};
|
|
66071
65875
|
selectable: {
|
|
66072
65876
|
types: string[];
|
|
66073
65877
|
description: string;
|
|
@@ -67016,6 +66820,15 @@ declare const registry: {
|
|
|
67016
66820
|
description: string;
|
|
67017
66821
|
default: number;
|
|
67018
66822
|
};
|
|
66823
|
+
tileWidth: {
|
|
66824
|
+
types: string[];
|
|
66825
|
+
description: string;
|
|
66826
|
+
};
|
|
66827
|
+
fit: {
|
|
66828
|
+
types: string[];
|
|
66829
|
+
description: string;
|
|
66830
|
+
default: boolean;
|
|
66831
|
+
};
|
|
67019
66832
|
showMinimap: {
|
|
67020
66833
|
types: string[];
|
|
67021
66834
|
description: string;
|
|
@@ -69583,6 +69396,10 @@ declare const registry: {
|
|
|
69583
69396
|
types: string[];
|
|
69584
69397
|
};
|
|
69585
69398
|
};
|
|
69399
|
+
d: {
|
|
69400
|
+
types: string[];
|
|
69401
|
+
description: string;
|
|
69402
|
+
};
|
|
69586
69403
|
fill: {
|
|
69587
69404
|
types: string[];
|
|
69588
69405
|
description: string;
|
|
@@ -69879,6 +69696,9 @@ declare const registry: {
|
|
|
69879
69696
|
types: string[];
|
|
69880
69697
|
};
|
|
69881
69698
|
};
|
|
69699
|
+
d: {
|
|
69700
|
+
types: string[];
|
|
69701
|
+
};
|
|
69882
69702
|
fill: {
|
|
69883
69703
|
types: string[];
|
|
69884
69704
|
};
|
|
@@ -70151,6 +69971,14 @@ declare const registry: {
|
|
|
70151
69971
|
types: string[];
|
|
70152
69972
|
description: string;
|
|
70153
69973
|
};
|
|
69974
|
+
fit: {
|
|
69975
|
+
types: string[];
|
|
69976
|
+
description: string;
|
|
69977
|
+
};
|
|
69978
|
+
tileWidth: {
|
|
69979
|
+
types: string[];
|
|
69980
|
+
description: string;
|
|
69981
|
+
};
|
|
70154
69982
|
backgroundImage: {
|
|
70155
69983
|
types: string[];
|
|
70156
69984
|
description: string;
|
|
@@ -70579,7 +70407,7 @@ declare const registry: {
|
|
|
70579
70407
|
};
|
|
70580
70408
|
};
|
|
70581
70409
|
};
|
|
70582
|
-
"
|
|
70410
|
+
"draw-group": {
|
|
70583
70411
|
type: string;
|
|
70584
70412
|
category: string;
|
|
70585
70413
|
tier: string;
|
|
@@ -70588,104 +70416,38 @@ declare const registry: {
|
|
|
70588
70416
|
suggestedFor: string[];
|
|
70589
70417
|
typicalSize: string;
|
|
70590
70418
|
propsSchema: {
|
|
70591
|
-
|
|
70592
|
-
types: string[];
|
|
70593
|
-
description: string;
|
|
70594
|
-
default: number;
|
|
70595
|
-
};
|
|
70596
|
-
y: {
|
|
70597
|
-
types: string[];
|
|
70598
|
-
description: string;
|
|
70599
|
-
default: number;
|
|
70600
|
-
};
|
|
70601
|
-
scale: {
|
|
70602
|
-
types: string[];
|
|
70603
|
-
description: string;
|
|
70604
|
-
};
|
|
70605
|
-
rotate: {
|
|
70606
|
-
types: string[];
|
|
70607
|
-
description: string;
|
|
70608
|
-
};
|
|
70609
|
-
opacity: {
|
|
70610
|
-
types: string[];
|
|
70611
|
-
description: string;
|
|
70612
|
-
};
|
|
70613
|
-
className: {
|
|
70614
|
-
types: string[];
|
|
70615
|
-
description: string;
|
|
70616
|
-
};
|
|
70617
|
-
children: {
|
|
70618
|
-
types: string[];
|
|
70619
|
-
description: string;
|
|
70620
|
-
};
|
|
70621
|
-
};
|
|
70622
|
-
};
|
|
70623
|
-
"svg-draw-shape": {
|
|
70624
|
-
type: string;
|
|
70625
|
-
category: string;
|
|
70626
|
-
tier: string;
|
|
70627
|
-
family: string;
|
|
70628
|
-
description: string;
|
|
70629
|
-
suggestedFor: string[];
|
|
70630
|
-
typicalSize: string;
|
|
70631
|
-
propsSchema: {
|
|
70632
|
-
shape: {
|
|
70419
|
+
id: {
|
|
70633
70420
|
types: string[];
|
|
70634
70421
|
description: string;
|
|
70635
|
-
required: boolean;
|
|
70636
|
-
enumValues: string[];
|
|
70637
70422
|
};
|
|
70638
|
-
|
|
70423
|
+
type: {
|
|
70639
70424
|
types: string[];
|
|
70640
70425
|
description: string;
|
|
70641
70426
|
required: boolean;
|
|
70642
70427
|
};
|
|
70643
|
-
|
|
70428
|
+
position: {
|
|
70644
70429
|
types: string[];
|
|
70645
70430
|
description: string;
|
|
70646
70431
|
required: boolean;
|
|
70432
|
+
properties: {
|
|
70433
|
+
x: {
|
|
70434
|
+
types: string[];
|
|
70435
|
+
};
|
|
70436
|
+
y: {
|
|
70437
|
+
types: string[];
|
|
70438
|
+
};
|
|
70439
|
+
z: {
|
|
70440
|
+
types: string[];
|
|
70441
|
+
};
|
|
70442
|
+
};
|
|
70443
|
+
propertyRequired: string[];
|
|
70444
|
+
scenePos: boolean;
|
|
70647
70445
|
};
|
|
70648
|
-
|
|
70649
|
-
types: string[];
|
|
70650
|
-
description: string;
|
|
70651
|
-
};
|
|
70652
|
-
height: {
|
|
70653
|
-
types: string[];
|
|
70654
|
-
description: string;
|
|
70655
|
-
};
|
|
70656
|
-
radius: {
|
|
70657
|
-
types: string[];
|
|
70658
|
-
description: string;
|
|
70659
|
-
};
|
|
70660
|
-
radiusY: {
|
|
70661
|
-
types: string[];
|
|
70662
|
-
description: string;
|
|
70663
|
-
};
|
|
70664
|
-
points: {
|
|
70665
|
-
types: string[];
|
|
70666
|
-
description: string;
|
|
70667
|
-
};
|
|
70668
|
-
d: {
|
|
70669
|
-
types: string[];
|
|
70670
|
-
description: string;
|
|
70671
|
-
};
|
|
70672
|
-
x2: {
|
|
70673
|
-
types: string[];
|
|
70674
|
-
description: string;
|
|
70675
|
-
};
|
|
70676
|
-
y2: {
|
|
70677
|
-
types: string[];
|
|
70678
|
-
description: string;
|
|
70679
|
-
};
|
|
70680
|
-
fill: {
|
|
70681
|
-
types: string[];
|
|
70682
|
-
description: string;
|
|
70683
|
-
};
|
|
70684
|
-
stroke: {
|
|
70446
|
+
scale: {
|
|
70685
70447
|
types: string[];
|
|
70686
70448
|
description: string;
|
|
70687
70449
|
};
|
|
70688
|
-
|
|
70450
|
+
rotate: {
|
|
70689
70451
|
types: string[];
|
|
70690
70452
|
description: string;
|
|
70691
70453
|
};
|
|
@@ -70693,100 +70455,20 @@ declare const registry: {
|
|
|
70693
70455
|
types: string[];
|
|
70694
70456
|
description: string;
|
|
70695
70457
|
};
|
|
70696
|
-
className: {
|
|
70697
|
-
types: string[];
|
|
70698
|
-
description: string;
|
|
70699
|
-
};
|
|
70700
|
-
};
|
|
70701
|
-
};
|
|
70702
|
-
"svg-draw-text": {
|
|
70703
|
-
type: string;
|
|
70704
|
-
category: string;
|
|
70705
|
-
tier: string;
|
|
70706
|
-
family: string;
|
|
70707
|
-
description: string;
|
|
70708
|
-
suggestedFor: string[];
|
|
70709
|
-
typicalSize: string;
|
|
70710
|
-
propsSchema: {
|
|
70711
|
-
x: {
|
|
70712
|
-
types: string[];
|
|
70713
|
-
description: string;
|
|
70714
|
-
required: boolean;
|
|
70715
|
-
};
|
|
70716
|
-
y: {
|
|
70717
|
-
types: string[];
|
|
70718
|
-
description: string;
|
|
70719
|
-
required: boolean;
|
|
70720
|
-
};
|
|
70721
|
-
text: {
|
|
70722
|
-
types: string[];
|
|
70723
|
-
description: string;
|
|
70724
|
-
required: boolean;
|
|
70725
|
-
};
|
|
70726
|
-
size: {
|
|
70727
|
-
types: string[];
|
|
70728
|
-
description: string;
|
|
70729
|
-
default: number;
|
|
70730
|
-
};
|
|
70731
|
-
fill: {
|
|
70732
|
-
types: string[];
|
|
70733
|
-
description: string;
|
|
70734
|
-
default: string;
|
|
70735
|
-
};
|
|
70736
|
-
anchor: {
|
|
70737
|
-
types: string[];
|
|
70738
|
-
description: string;
|
|
70739
|
-
enumValues: string[];
|
|
70740
|
-
default: string;
|
|
70741
|
-
};
|
|
70742
|
-
className: {
|
|
70743
|
-
types: string[];
|
|
70744
|
-
description: string;
|
|
70745
|
-
};
|
|
70746
|
-
};
|
|
70747
|
-
};
|
|
70748
|
-
"svg-draw-shape-layer": {
|
|
70749
|
-
type: string;
|
|
70750
|
-
category: string;
|
|
70751
|
-
tier: string;
|
|
70752
|
-
family: string;
|
|
70753
|
-
description: string;
|
|
70754
|
-
suggestedFor: string[];
|
|
70755
|
-
typicalSize: string;
|
|
70756
|
-
propsSchema: {
|
|
70757
70458
|
items: {
|
|
70758
70459
|
types: string[];
|
|
70759
70460
|
description: string;
|
|
70760
70461
|
required: boolean;
|
|
70761
70462
|
items: {
|
|
70762
70463
|
types: string[];
|
|
70763
|
-
|
|
70764
|
-
id: {
|
|
70765
|
-
types: string[];
|
|
70766
|
-
};
|
|
70767
|
-
};
|
|
70768
|
-
required: string[];
|
|
70464
|
+
drawableSlot: boolean;
|
|
70769
70465
|
};
|
|
70770
70466
|
};
|
|
70771
|
-
fill: {
|
|
70772
|
-
types: string[];
|
|
70773
|
-
description: string;
|
|
70774
|
-
};
|
|
70775
|
-
stroke: {
|
|
70776
|
-
types: string[];
|
|
70777
|
-
description: string;
|
|
70778
|
-
};
|
|
70779
|
-
strokeWidth: {
|
|
70780
|
-
types: string[];
|
|
70781
|
-
description: string;
|
|
70782
|
-
};
|
|
70783
|
-
opacity: {
|
|
70784
|
-
types: string[];
|
|
70785
|
-
description: string;
|
|
70786
|
-
};
|
|
70787
70467
|
};
|
|
70468
|
+
drawable: boolean;
|
|
70469
|
+
drawHost: boolean;
|
|
70788
70470
|
};
|
|
70789
|
-
"
|
|
70471
|
+
"emoji-picker": {
|
|
70790
70472
|
type: string;
|
|
70791
70473
|
category: string;
|
|
70792
70474
|
tier: string;
|
|
@@ -70795,74 +70477,31 @@ declare const registry: {
|
|
|
70795
70477
|
suggestedFor: string[];
|
|
70796
70478
|
typicalSize: string;
|
|
70797
70479
|
propsSchema: {
|
|
70798
|
-
|
|
70799
|
-
types: string[];
|
|
70800
|
-
description: string;
|
|
70801
|
-
required: boolean;
|
|
70802
|
-
};
|
|
70803
|
-
rows: {
|
|
70804
|
-
types: string[];
|
|
70805
|
-
description: string;
|
|
70806
|
-
required: boolean;
|
|
70807
|
-
};
|
|
70808
|
-
tileSize: {
|
|
70809
|
-
types: string[];
|
|
70810
|
-
description: string;
|
|
70811
|
-
default: number;
|
|
70812
|
-
};
|
|
70813
|
-
background: {
|
|
70814
|
-
types: string[];
|
|
70815
|
-
description: string;
|
|
70816
|
-
default: string;
|
|
70817
|
-
};
|
|
70818
|
-
tileClickEvent: {
|
|
70819
|
-
types: string[];
|
|
70820
|
-
description: string;
|
|
70821
|
-
kind: string;
|
|
70822
|
-
emitPayloadSchema: {
|
|
70823
|
-
name: string;
|
|
70824
|
-
type: string;
|
|
70825
|
-
required: boolean;
|
|
70826
|
-
}[];
|
|
70827
|
-
};
|
|
70828
|
-
tileHoverEvent: {
|
|
70480
|
+
pickEvent: {
|
|
70829
70481
|
types: string[];
|
|
70830
70482
|
description: string;
|
|
70831
70483
|
kind: string;
|
|
70832
|
-
emitPayloadSchema: {
|
|
70833
|
-
name: string;
|
|
70834
|
-
type: string;
|
|
70835
|
-
required: boolean;
|
|
70836
|
-
}[];
|
|
70837
70484
|
};
|
|
70838
|
-
|
|
70485
|
+
position: {
|
|
70839
70486
|
types: string[];
|
|
70840
70487
|
description: string;
|
|
70841
|
-
|
|
70842
|
-
|
|
70488
|
+
enumValues: string[];
|
|
70489
|
+
default: string;
|
|
70843
70490
|
};
|
|
70844
|
-
|
|
70491
|
+
triggerIcon: {
|
|
70845
70492
|
types: string[];
|
|
70846
70493
|
description: string;
|
|
70847
|
-
|
|
70848
|
-
types: string[];
|
|
70849
|
-
};
|
|
70494
|
+
default: string;
|
|
70850
70495
|
};
|
|
70851
|
-
|
|
70496
|
+
triggerLabel: {
|
|
70852
70497
|
types: string[];
|
|
70853
70498
|
description: string;
|
|
70854
|
-
|
|
70855
|
-
types: string[];
|
|
70856
|
-
};
|
|
70499
|
+
default: string;
|
|
70857
70500
|
};
|
|
70858
70501
|
className: {
|
|
70859
70502
|
types: string[];
|
|
70860
70503
|
description: string;
|
|
70861
70504
|
};
|
|
70862
|
-
children: {
|
|
70863
|
-
types: string[];
|
|
70864
|
-
description: string;
|
|
70865
|
-
};
|
|
70866
70505
|
};
|
|
70867
70506
|
};
|
|
70868
70507
|
};
|
|
@@ -76041,6 +75680,19 @@ declare const PATTERN_REGISTRY: {
|
|
|
76041
75680
|
description: string;
|
|
76042
75681
|
default: boolean;
|
|
76043
75682
|
};
|
|
75683
|
+
open: {
|
|
75684
|
+
types: string[];
|
|
75685
|
+
description: string;
|
|
75686
|
+
};
|
|
75687
|
+
onOpenChange: {
|
|
75688
|
+
types: string[];
|
|
75689
|
+
description: string;
|
|
75690
|
+
kind: string;
|
|
75691
|
+
callbackArgs: {
|
|
75692
|
+
name: string;
|
|
75693
|
+
type: string;
|
|
75694
|
+
}[];
|
|
75695
|
+
};
|
|
76044
75696
|
className: {
|
|
76045
75697
|
types: string[];
|
|
76046
75698
|
description: string;
|
|
@@ -81958,6 +81610,15 @@ declare const PATTERN_REGISTRY: {
|
|
|
81958
81610
|
description: string;
|
|
81959
81611
|
default: number;
|
|
81960
81612
|
};
|
|
81613
|
+
sortBy: {
|
|
81614
|
+
types: string[];
|
|
81615
|
+
description: string;
|
|
81616
|
+
};
|
|
81617
|
+
sortDirection: {
|
|
81618
|
+
types: string[];
|
|
81619
|
+
description: string;
|
|
81620
|
+
enumValues: string[];
|
|
81621
|
+
};
|
|
81961
81622
|
look: {
|
|
81962
81623
|
types: string[];
|
|
81963
81624
|
description: string;
|
|
@@ -91417,6 +91078,11 @@ declare const PATTERN_REGISTRY: {
|
|
|
91417
91078
|
types: string[];
|
|
91418
91079
|
description: string;
|
|
91419
91080
|
};
|
|
91081
|
+
itemClickEvent: {
|
|
91082
|
+
types: string[];
|
|
91083
|
+
description: string;
|
|
91084
|
+
kind: string;
|
|
91085
|
+
};
|
|
91420
91086
|
selectable: {
|
|
91421
91087
|
types: string[];
|
|
91422
91088
|
description: string;
|
|
@@ -92365,6 +92031,15 @@ declare const PATTERN_REGISTRY: {
|
|
|
92365
92031
|
description: string;
|
|
92366
92032
|
default: number;
|
|
92367
92033
|
};
|
|
92034
|
+
tileWidth: {
|
|
92035
|
+
types: string[];
|
|
92036
|
+
description: string;
|
|
92037
|
+
};
|
|
92038
|
+
fit: {
|
|
92039
|
+
types: string[];
|
|
92040
|
+
description: string;
|
|
92041
|
+
default: boolean;
|
|
92042
|
+
};
|
|
92368
92043
|
showMinimap: {
|
|
92369
92044
|
types: string[];
|
|
92370
92045
|
description: string;
|
|
@@ -94932,6 +94607,10 @@ declare const PATTERN_REGISTRY: {
|
|
|
94932
94607
|
types: string[];
|
|
94933
94608
|
};
|
|
94934
94609
|
};
|
|
94610
|
+
d: {
|
|
94611
|
+
types: string[];
|
|
94612
|
+
description: string;
|
|
94613
|
+
};
|
|
94935
94614
|
fill: {
|
|
94936
94615
|
types: string[];
|
|
94937
94616
|
description: string;
|
|
@@ -95228,6 +94907,9 @@ declare const PATTERN_REGISTRY: {
|
|
|
95228
94907
|
types: string[];
|
|
95229
94908
|
};
|
|
95230
94909
|
};
|
|
94910
|
+
d: {
|
|
94911
|
+
types: string[];
|
|
94912
|
+
};
|
|
95231
94913
|
fill: {
|
|
95232
94914
|
types: string[];
|
|
95233
94915
|
};
|
|
@@ -95500,6 +95182,14 @@ declare const PATTERN_REGISTRY: {
|
|
|
95500
95182
|
types: string[];
|
|
95501
95183
|
description: string;
|
|
95502
95184
|
};
|
|
95185
|
+
fit: {
|
|
95186
|
+
types: string[];
|
|
95187
|
+
description: string;
|
|
95188
|
+
};
|
|
95189
|
+
tileWidth: {
|
|
95190
|
+
types: string[];
|
|
95191
|
+
description: string;
|
|
95192
|
+
};
|
|
95503
95193
|
backgroundImage: {
|
|
95504
95194
|
types: string[];
|
|
95505
95195
|
description: string;
|
|
@@ -95928,7 +95618,7 @@ declare const PATTERN_REGISTRY: {
|
|
|
95928
95618
|
};
|
|
95929
95619
|
};
|
|
95930
95620
|
};
|
|
95931
|
-
"
|
|
95621
|
+
"draw-group": {
|
|
95932
95622
|
type: string;
|
|
95933
95623
|
category: string;
|
|
95934
95624
|
tier: string;
|
|
@@ -95937,104 +95627,38 @@ declare const PATTERN_REGISTRY: {
|
|
|
95937
95627
|
suggestedFor: string[];
|
|
95938
95628
|
typicalSize: string;
|
|
95939
95629
|
propsSchema: {
|
|
95940
|
-
|
|
95941
|
-
types: string[];
|
|
95942
|
-
description: string;
|
|
95943
|
-
default: number;
|
|
95944
|
-
};
|
|
95945
|
-
y: {
|
|
95946
|
-
types: string[];
|
|
95947
|
-
description: string;
|
|
95948
|
-
default: number;
|
|
95949
|
-
};
|
|
95950
|
-
scale: {
|
|
95951
|
-
types: string[];
|
|
95952
|
-
description: string;
|
|
95953
|
-
};
|
|
95954
|
-
rotate: {
|
|
95955
|
-
types: string[];
|
|
95956
|
-
description: string;
|
|
95957
|
-
};
|
|
95958
|
-
opacity: {
|
|
95959
|
-
types: string[];
|
|
95960
|
-
description: string;
|
|
95961
|
-
};
|
|
95962
|
-
className: {
|
|
95963
|
-
types: string[];
|
|
95964
|
-
description: string;
|
|
95965
|
-
};
|
|
95966
|
-
children: {
|
|
95967
|
-
types: string[];
|
|
95968
|
-
description: string;
|
|
95969
|
-
};
|
|
95970
|
-
};
|
|
95971
|
-
};
|
|
95972
|
-
"svg-draw-shape": {
|
|
95973
|
-
type: string;
|
|
95974
|
-
category: string;
|
|
95975
|
-
tier: string;
|
|
95976
|
-
family: string;
|
|
95977
|
-
description: string;
|
|
95978
|
-
suggestedFor: string[];
|
|
95979
|
-
typicalSize: string;
|
|
95980
|
-
propsSchema: {
|
|
95981
|
-
shape: {
|
|
95630
|
+
id: {
|
|
95982
95631
|
types: string[];
|
|
95983
95632
|
description: string;
|
|
95984
|
-
required: boolean;
|
|
95985
|
-
enumValues: string[];
|
|
95986
95633
|
};
|
|
95987
|
-
|
|
95634
|
+
type: {
|
|
95988
95635
|
types: string[];
|
|
95989
95636
|
description: string;
|
|
95990
95637
|
required: boolean;
|
|
95991
95638
|
};
|
|
95992
|
-
|
|
95639
|
+
position: {
|
|
95993
95640
|
types: string[];
|
|
95994
95641
|
description: string;
|
|
95995
95642
|
required: boolean;
|
|
95643
|
+
properties: {
|
|
95644
|
+
x: {
|
|
95645
|
+
types: string[];
|
|
95646
|
+
};
|
|
95647
|
+
y: {
|
|
95648
|
+
types: string[];
|
|
95649
|
+
};
|
|
95650
|
+
z: {
|
|
95651
|
+
types: string[];
|
|
95652
|
+
};
|
|
95653
|
+
};
|
|
95654
|
+
propertyRequired: string[];
|
|
95655
|
+
scenePos: boolean;
|
|
95996
95656
|
};
|
|
95997
|
-
|
|
95998
|
-
types: string[];
|
|
95999
|
-
description: string;
|
|
96000
|
-
};
|
|
96001
|
-
height: {
|
|
96002
|
-
types: string[];
|
|
96003
|
-
description: string;
|
|
96004
|
-
};
|
|
96005
|
-
radius: {
|
|
96006
|
-
types: string[];
|
|
96007
|
-
description: string;
|
|
96008
|
-
};
|
|
96009
|
-
radiusY: {
|
|
96010
|
-
types: string[];
|
|
96011
|
-
description: string;
|
|
96012
|
-
};
|
|
96013
|
-
points: {
|
|
96014
|
-
types: string[];
|
|
96015
|
-
description: string;
|
|
96016
|
-
};
|
|
96017
|
-
d: {
|
|
96018
|
-
types: string[];
|
|
96019
|
-
description: string;
|
|
96020
|
-
};
|
|
96021
|
-
x2: {
|
|
96022
|
-
types: string[];
|
|
96023
|
-
description: string;
|
|
96024
|
-
};
|
|
96025
|
-
y2: {
|
|
96026
|
-
types: string[];
|
|
96027
|
-
description: string;
|
|
96028
|
-
};
|
|
96029
|
-
fill: {
|
|
96030
|
-
types: string[];
|
|
96031
|
-
description: string;
|
|
96032
|
-
};
|
|
96033
|
-
stroke: {
|
|
95657
|
+
scale: {
|
|
96034
95658
|
types: string[];
|
|
96035
95659
|
description: string;
|
|
96036
95660
|
};
|
|
96037
|
-
|
|
95661
|
+
rotate: {
|
|
96038
95662
|
types: string[];
|
|
96039
95663
|
description: string;
|
|
96040
95664
|
};
|
|
@@ -96042,100 +95666,20 @@ declare const PATTERN_REGISTRY: {
|
|
|
96042
95666
|
types: string[];
|
|
96043
95667
|
description: string;
|
|
96044
95668
|
};
|
|
96045
|
-
className: {
|
|
96046
|
-
types: string[];
|
|
96047
|
-
description: string;
|
|
96048
|
-
};
|
|
96049
|
-
};
|
|
96050
|
-
};
|
|
96051
|
-
"svg-draw-text": {
|
|
96052
|
-
type: string;
|
|
96053
|
-
category: string;
|
|
96054
|
-
tier: string;
|
|
96055
|
-
family: string;
|
|
96056
|
-
description: string;
|
|
96057
|
-
suggestedFor: string[];
|
|
96058
|
-
typicalSize: string;
|
|
96059
|
-
propsSchema: {
|
|
96060
|
-
x: {
|
|
96061
|
-
types: string[];
|
|
96062
|
-
description: string;
|
|
96063
|
-
required: boolean;
|
|
96064
|
-
};
|
|
96065
|
-
y: {
|
|
96066
|
-
types: string[];
|
|
96067
|
-
description: string;
|
|
96068
|
-
required: boolean;
|
|
96069
|
-
};
|
|
96070
|
-
text: {
|
|
96071
|
-
types: string[];
|
|
96072
|
-
description: string;
|
|
96073
|
-
required: boolean;
|
|
96074
|
-
};
|
|
96075
|
-
size: {
|
|
96076
|
-
types: string[];
|
|
96077
|
-
description: string;
|
|
96078
|
-
default: number;
|
|
96079
|
-
};
|
|
96080
|
-
fill: {
|
|
96081
|
-
types: string[];
|
|
96082
|
-
description: string;
|
|
96083
|
-
default: string;
|
|
96084
|
-
};
|
|
96085
|
-
anchor: {
|
|
96086
|
-
types: string[];
|
|
96087
|
-
description: string;
|
|
96088
|
-
enumValues: string[];
|
|
96089
|
-
default: string;
|
|
96090
|
-
};
|
|
96091
|
-
className: {
|
|
96092
|
-
types: string[];
|
|
96093
|
-
description: string;
|
|
96094
|
-
};
|
|
96095
|
-
};
|
|
96096
|
-
};
|
|
96097
|
-
"svg-draw-shape-layer": {
|
|
96098
|
-
type: string;
|
|
96099
|
-
category: string;
|
|
96100
|
-
tier: string;
|
|
96101
|
-
family: string;
|
|
96102
|
-
description: string;
|
|
96103
|
-
suggestedFor: string[];
|
|
96104
|
-
typicalSize: string;
|
|
96105
|
-
propsSchema: {
|
|
96106
95669
|
items: {
|
|
96107
95670
|
types: string[];
|
|
96108
95671
|
description: string;
|
|
96109
95672
|
required: boolean;
|
|
96110
95673
|
items: {
|
|
96111
95674
|
types: string[];
|
|
96112
|
-
|
|
96113
|
-
id: {
|
|
96114
|
-
types: string[];
|
|
96115
|
-
};
|
|
96116
|
-
};
|
|
96117
|
-
required: string[];
|
|
95675
|
+
drawableSlot: boolean;
|
|
96118
95676
|
};
|
|
96119
95677
|
};
|
|
96120
|
-
fill: {
|
|
96121
|
-
types: string[];
|
|
96122
|
-
description: string;
|
|
96123
|
-
};
|
|
96124
|
-
stroke: {
|
|
96125
|
-
types: string[];
|
|
96126
|
-
description: string;
|
|
96127
|
-
};
|
|
96128
|
-
strokeWidth: {
|
|
96129
|
-
types: string[];
|
|
96130
|
-
description: string;
|
|
96131
|
-
};
|
|
96132
|
-
opacity: {
|
|
96133
|
-
types: string[];
|
|
96134
|
-
description: string;
|
|
96135
|
-
};
|
|
96136
95678
|
};
|
|
95679
|
+
drawable: boolean;
|
|
95680
|
+
drawHost: boolean;
|
|
96137
95681
|
};
|
|
96138
|
-
"
|
|
95682
|
+
"emoji-picker": {
|
|
96139
95683
|
type: string;
|
|
96140
95684
|
category: string;
|
|
96141
95685
|
tier: string;
|
|
@@ -96144,74 +95688,31 @@ declare const PATTERN_REGISTRY: {
|
|
|
96144
95688
|
suggestedFor: string[];
|
|
96145
95689
|
typicalSize: string;
|
|
96146
95690
|
propsSchema: {
|
|
96147
|
-
|
|
96148
|
-
types: string[];
|
|
96149
|
-
description: string;
|
|
96150
|
-
required: boolean;
|
|
96151
|
-
};
|
|
96152
|
-
rows: {
|
|
96153
|
-
types: string[];
|
|
96154
|
-
description: string;
|
|
96155
|
-
required: boolean;
|
|
96156
|
-
};
|
|
96157
|
-
tileSize: {
|
|
96158
|
-
types: string[];
|
|
96159
|
-
description: string;
|
|
96160
|
-
default: number;
|
|
96161
|
-
};
|
|
96162
|
-
background: {
|
|
96163
|
-
types: string[];
|
|
96164
|
-
description: string;
|
|
96165
|
-
default: string;
|
|
96166
|
-
};
|
|
96167
|
-
tileClickEvent: {
|
|
96168
|
-
types: string[];
|
|
96169
|
-
description: string;
|
|
96170
|
-
kind: string;
|
|
96171
|
-
emitPayloadSchema: {
|
|
96172
|
-
name: string;
|
|
96173
|
-
type: string;
|
|
96174
|
-
required: boolean;
|
|
96175
|
-
}[];
|
|
96176
|
-
};
|
|
96177
|
-
tileHoverEvent: {
|
|
95691
|
+
pickEvent: {
|
|
96178
95692
|
types: string[];
|
|
96179
95693
|
description: string;
|
|
96180
95694
|
kind: string;
|
|
96181
|
-
emitPayloadSchema: {
|
|
96182
|
-
name: string;
|
|
96183
|
-
type: string;
|
|
96184
|
-
required: boolean;
|
|
96185
|
-
}[];
|
|
96186
95695
|
};
|
|
96187
|
-
|
|
95696
|
+
position: {
|
|
96188
95697
|
types: string[];
|
|
96189
95698
|
description: string;
|
|
96190
|
-
|
|
96191
|
-
|
|
95699
|
+
enumValues: string[];
|
|
95700
|
+
default: string;
|
|
96192
95701
|
};
|
|
96193
|
-
|
|
95702
|
+
triggerIcon: {
|
|
96194
95703
|
types: string[];
|
|
96195
95704
|
description: string;
|
|
96196
|
-
|
|
96197
|
-
types: string[];
|
|
96198
|
-
};
|
|
95705
|
+
default: string;
|
|
96199
95706
|
};
|
|
96200
|
-
|
|
95707
|
+
triggerLabel: {
|
|
96201
95708
|
types: string[];
|
|
96202
95709
|
description: string;
|
|
96203
|
-
|
|
96204
|
-
types: string[];
|
|
96205
|
-
};
|
|
95710
|
+
default: string;
|
|
96206
95711
|
};
|
|
96207
95712
|
className: {
|
|
96208
95713
|
types: string[];
|
|
96209
95714
|
description: string;
|
|
96210
95715
|
};
|
|
96211
|
-
children: {
|
|
96212
|
-
types: string[];
|
|
96213
|
-
description: string;
|
|
96214
|
-
};
|
|
96215
95716
|
};
|
|
96216
95717
|
};
|
|
96217
95718
|
};
|
|
@@ -98287,27 +97788,12 @@ declare const COMPONENT_MAPPING: {
|
|
|
98287
97788
|
importPath: string;
|
|
98288
97789
|
category: string;
|
|
98289
97790
|
};
|
|
98290
|
-
"
|
|
98291
|
-
component: string;
|
|
98292
|
-
importPath: string;
|
|
98293
|
-
category: string;
|
|
98294
|
-
};
|
|
98295
|
-
"svg-draw-shape": {
|
|
98296
|
-
component: string;
|
|
98297
|
-
importPath: string;
|
|
98298
|
-
category: string;
|
|
98299
|
-
};
|
|
98300
|
-
"svg-draw-text": {
|
|
98301
|
-
component: string;
|
|
98302
|
-
importPath: string;
|
|
98303
|
-
category: string;
|
|
98304
|
-
};
|
|
98305
|
-
"svg-draw-shape-layer": {
|
|
97791
|
+
"draw-group": {
|
|
98306
97792
|
component: string;
|
|
98307
97793
|
importPath: string;
|
|
98308
97794
|
category: string;
|
|
98309
97795
|
};
|
|
98310
|
-
"
|
|
97796
|
+
"emoji-picker": {
|
|
98311
97797
|
component: string;
|
|
98312
97798
|
importPath: string;
|
|
98313
97799
|
category: string;
|
|
@@ -99069,4 +98555,4 @@ declare function isDrawablePattern(patternType: string): boolean;
|
|
|
99069
98555
|
*/
|
|
99070
98556
|
declare function isDrawHostPattern(patternType: string): boolean;
|
|
99071
98557
|
|
|
99072
|
-
export { AnyPatternConfig, COMPONENT_MAPPING, EVENT_CONTRACTS, type FormSubmitPayload, INTEGRATORS_REGISTRY, type ItemActionPayload, type LoadMoreRequestPayload, PATTERN_REGISTRY, type PatternCallbackArg, type PatternEntry, type PatternPayloadField, type PatternPropDef, type PatternRecommendation, type PatternSwapGate, PatternType, type PropKind, type RecommendationContext, type RenderUiPayload, type SelectionChangePayload, buildRecommendationContext, collectRenderUiPatternTypes, componentMapping, eventContracts, findCompatiblePatterns, formatRecommendationsForPrompt, generatePatternDescription, getAllPatternTypes, getComponentForPattern, getEmittedEvents, getEntityCardinality, getOrbAllowedPatterns, getOrbAllowedPatternsCompact, getOrbAllowedPatternsFiltered, getOrbAllowedPatternsSlim, getPatternActionsRef, getPatternDefinition, getPatternMetadata, getPatternPropsCompact, getPatternsGroupedByCategory, integratorsRegistry, isContentBodyPattern, isContentBodyPatternType, isDrawHostPattern, isDrawablePattern, isEntityAwarePattern, isMainSlotRenderUi, patternsRegistry, recommendPatterns, registry, renderUiPatternTypesOf };
|
|
98558
|
+
export { AnyPatternConfig, COMPONENT_MAPPING, EVENT_CONTRACTS, type EmojiPickPayload, type FormSubmitPayload, INTEGRATORS_REGISTRY, type ItemActionPayload, type LoadMoreRequestPayload, PATTERN_REGISTRY, type PatternCallbackArg, type PatternEntry, type PatternPayloadField, type PatternPropDef, type PatternRecommendation, type PatternSwapGate, PatternType, type PropKind, type RecommendationContext, type RenderUiPayload, type SelectionChangePayload, buildRecommendationContext, collectRenderUiPatternTypes, componentMapping, eventContracts, findCompatiblePatterns, formatRecommendationsForPrompt, generatePatternDescription, getAllPatternTypes, getComponentForPattern, getEmittedEvents, getEntityCardinality, getOrbAllowedPatterns, getOrbAllowedPatternsCompact, getOrbAllowedPatternsFiltered, getOrbAllowedPatternsSlim, getPatternActionsRef, getPatternDefinition, getPatternMetadata, getPatternPropsCompact, getPatternsGroupedByCategory, integratorsRegistry, isContentBodyPattern, isContentBodyPatternType, isDrawHostPattern, isDrawablePattern, isEntityAwarePattern, isMainSlotRenderUi, patternsRegistry, recommendPatterns, registry, renderUiPatternTypesOf };
|