@almadar/patterns 2.0.1 → 2.1.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/component-mapping.json +1 -1
- package/dist/event-contracts.json +137 -24
- package/dist/index.d.ts +1162 -112
- package/dist/index.js +548 -67
- package/dist/index.js.map +1 -1
- package/dist/patterns-registry.json +406 -38
- package/dist/registry.json +406 -38
- package/package.json +4 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var version$3 = "1.0.0";
|
|
2
|
-
var exportedAt$3 = "2026-03-
|
|
2
|
+
var exportedAt$3 = "2026-03-06T07:07:47.853Z";
|
|
3
3
|
var patterns = {
|
|
4
4
|
"entity-table": {
|
|
5
5
|
type: "entity-table",
|
|
@@ -475,6 +475,18 @@ var patterns = {
|
|
|
475
475
|
"boolean"
|
|
476
476
|
],
|
|
477
477
|
description: "Show total count in pagination"
|
|
478
|
+
},
|
|
479
|
+
showAvatar: {
|
|
480
|
+
types: [
|
|
481
|
+
"boolean"
|
|
482
|
+
],
|
|
483
|
+
description: "Show avatar/image field on cards"
|
|
484
|
+
},
|
|
485
|
+
variant: {
|
|
486
|
+
types: [
|
|
487
|
+
"string"
|
|
488
|
+
],
|
|
489
|
+
description: "Visual variant for the card grid"
|
|
478
490
|
}
|
|
479
491
|
}
|
|
480
492
|
},
|
|
@@ -2152,6 +2164,12 @@ var patterns = {
|
|
|
2152
2164
|
"unknown"
|
|
2153
2165
|
],
|
|
2154
2166
|
description: "Metrics to display (schema format) - accepts readonly for compatibility with generated const arrays"
|
|
2167
|
+
},
|
|
2168
|
+
compact: {
|
|
2169
|
+
types: [
|
|
2170
|
+
"boolean"
|
|
2171
|
+
],
|
|
2172
|
+
description: "Compact display mode"
|
|
2155
2173
|
}
|
|
2156
2174
|
}
|
|
2157
2175
|
},
|
|
@@ -2166,6 +2184,84 @@ var patterns = {
|
|
|
2166
2184
|
],
|
|
2167
2185
|
typicalSize: "large",
|
|
2168
2186
|
propsSchema: {
|
|
2187
|
+
entity: {
|
|
2188
|
+
types: [
|
|
2189
|
+
"string"
|
|
2190
|
+
],
|
|
2191
|
+
description: "Entity name for schema-driven integration"
|
|
2192
|
+
},
|
|
2193
|
+
data: {
|
|
2194
|
+
types: [
|
|
2195
|
+
"array"
|
|
2196
|
+
],
|
|
2197
|
+
description: "Data array provided by the trait via render-ui"
|
|
2198
|
+
},
|
|
2199
|
+
className: {
|
|
2200
|
+
types: [
|
|
2201
|
+
"string"
|
|
2202
|
+
],
|
|
2203
|
+
description: "Additional CSS classes"
|
|
2204
|
+
},
|
|
2205
|
+
isLoading: {
|
|
2206
|
+
types: [
|
|
2207
|
+
"boolean"
|
|
2208
|
+
],
|
|
2209
|
+
description: "Loading state indicator"
|
|
2210
|
+
},
|
|
2211
|
+
error: {
|
|
2212
|
+
types: [
|
|
2213
|
+
"object"
|
|
2214
|
+
],
|
|
2215
|
+
description: "Error state"
|
|
2216
|
+
},
|
|
2217
|
+
sortBy: {
|
|
2218
|
+
types: [
|
|
2219
|
+
"string"
|
|
2220
|
+
],
|
|
2221
|
+
description: "Current sort field"
|
|
2222
|
+
},
|
|
2223
|
+
sortDirection: {
|
|
2224
|
+
types: [
|
|
2225
|
+
"string"
|
|
2226
|
+
],
|
|
2227
|
+
description: "Current sort direction"
|
|
2228
|
+
},
|
|
2229
|
+
searchValue: {
|
|
2230
|
+
types: [
|
|
2231
|
+
"string"
|
|
2232
|
+
],
|
|
2233
|
+
description: "Current search query value"
|
|
2234
|
+
},
|
|
2235
|
+
page: {
|
|
2236
|
+
types: [
|
|
2237
|
+
"number"
|
|
2238
|
+
],
|
|
2239
|
+
description: "Current page number"
|
|
2240
|
+
},
|
|
2241
|
+
pageSize: {
|
|
2242
|
+
types: [
|
|
2243
|
+
"number"
|
|
2244
|
+
],
|
|
2245
|
+
description: "Number of items per page"
|
|
2246
|
+
},
|
|
2247
|
+
totalCount: {
|
|
2248
|
+
types: [
|
|
2249
|
+
"number"
|
|
2250
|
+
],
|
|
2251
|
+
description: "Total number of items"
|
|
2252
|
+
},
|
|
2253
|
+
activeFilters: {
|
|
2254
|
+
types: [
|
|
2255
|
+
"object"
|
|
2256
|
+
],
|
|
2257
|
+
description: "Active filters"
|
|
2258
|
+
},
|
|
2259
|
+
selectedIds: {
|
|
2260
|
+
types: [
|
|
2261
|
+
"array"
|
|
2262
|
+
],
|
|
2263
|
+
description: "Currently selected item IDs"
|
|
2264
|
+
},
|
|
2169
2265
|
columns: {
|
|
2170
2266
|
types: [
|
|
2171
2267
|
"number"
|
|
@@ -2184,12 +2280,6 @@ var patterns = {
|
|
|
2184
2280
|
],
|
|
2185
2281
|
description: "Cell definitions",
|
|
2186
2282
|
required: true
|
|
2187
|
-
},
|
|
2188
|
-
className: {
|
|
2189
|
-
types: [
|
|
2190
|
-
"string"
|
|
2191
|
-
],
|
|
2192
|
-
description: "Additional CSS classes"
|
|
2193
2283
|
}
|
|
2194
2284
|
}
|
|
2195
2285
|
},
|
|
@@ -3389,6 +3479,12 @@ var patterns = {
|
|
|
3389
3479
|
"badgesize"
|
|
3390
3480
|
],
|
|
3391
3481
|
description: "size prop"
|
|
3482
|
+
},
|
|
3483
|
+
amount: {
|
|
3484
|
+
types: [
|
|
3485
|
+
"number"
|
|
3486
|
+
],
|
|
3487
|
+
description: "Numeric count or amount to display in badge"
|
|
3392
3488
|
}
|
|
3393
3489
|
}
|
|
3394
3490
|
},
|
|
@@ -3597,6 +3693,30 @@ var patterns = {
|
|
|
3597
3693
|
"string"
|
|
3598
3694
|
],
|
|
3599
3695
|
description: "Declarative event name — emits UI:{action} via eventBus on card click"
|
|
3696
|
+
},
|
|
3697
|
+
isSelected: {
|
|
3698
|
+
types: [
|
|
3699
|
+
"boolean"
|
|
3700
|
+
],
|
|
3701
|
+
description: "Whether the card is selected (highlighted state)"
|
|
3702
|
+
},
|
|
3703
|
+
name: {
|
|
3704
|
+
types: [
|
|
3705
|
+
"string"
|
|
3706
|
+
],
|
|
3707
|
+
description: "Card name (alias for title)"
|
|
3708
|
+
},
|
|
3709
|
+
level: {
|
|
3710
|
+
types: [
|
|
3711
|
+
"number"
|
|
3712
|
+
],
|
|
3713
|
+
description: "Level indicator"
|
|
3714
|
+
},
|
|
3715
|
+
maxLevel: {
|
|
3716
|
+
types: [
|
|
3717
|
+
"number"
|
|
3718
|
+
],
|
|
3719
|
+
description: "Maximum level"
|
|
3600
3720
|
}
|
|
3601
3721
|
}
|
|
3602
3722
|
},
|
|
@@ -7371,6 +7491,19 @@ var patterns = {
|
|
|
7371
7491
|
],
|
|
7372
7492
|
typicalSize: "full",
|
|
7373
7493
|
propsSchema: {
|
|
7494
|
+
entity: {
|
|
7495
|
+
types: [
|
|
7496
|
+
"object"
|
|
7497
|
+
],
|
|
7498
|
+
description: "Entity data, the sole source of runtime state",
|
|
7499
|
+
required: true
|
|
7500
|
+
},
|
|
7501
|
+
className: {
|
|
7502
|
+
types: [
|
|
7503
|
+
"string"
|
|
7504
|
+
],
|
|
7505
|
+
description: "External styling override"
|
|
7506
|
+
},
|
|
7374
7507
|
onIncrement: {
|
|
7375
7508
|
types: [
|
|
7376
7509
|
"function"
|
|
@@ -7473,6 +7606,12 @@ var patterns = {
|
|
|
7473
7606
|
"function"
|
|
7474
7607
|
],
|
|
7475
7608
|
description: "Callback when user clicks sign out (optional - uses auth context signOut if not provided)"
|
|
7609
|
+
},
|
|
7610
|
+
children: {
|
|
7611
|
+
types: [
|
|
7612
|
+
"node"
|
|
7613
|
+
],
|
|
7614
|
+
description: "Page content rendered inside the main area"
|
|
7476
7615
|
}
|
|
7477
7616
|
}
|
|
7478
7617
|
},
|
|
@@ -7487,6 +7626,19 @@ var patterns = {
|
|
|
7487
7626
|
],
|
|
7488
7627
|
typicalSize: "full",
|
|
7489
7628
|
propsSchema: {
|
|
7629
|
+
entity: {
|
|
7630
|
+
types: [
|
|
7631
|
+
"object"
|
|
7632
|
+
],
|
|
7633
|
+
description: "Entity data, the sole source of runtime state",
|
|
7634
|
+
required: true
|
|
7635
|
+
},
|
|
7636
|
+
className: {
|
|
7637
|
+
types: [
|
|
7638
|
+
"string"
|
|
7639
|
+
],
|
|
7640
|
+
description: "Additional class name"
|
|
7641
|
+
},
|
|
7490
7642
|
title: {
|
|
7491
7643
|
types: [
|
|
7492
7644
|
"string"
|
|
@@ -7523,12 +7675,6 @@ var patterns = {
|
|
|
7523
7675
|
"object"
|
|
7524
7676
|
],
|
|
7525
7677
|
description: "Game controls"
|
|
7526
|
-
},
|
|
7527
|
-
className: {
|
|
7528
|
-
types: [
|
|
7529
|
-
"string"
|
|
7530
|
-
],
|
|
7531
|
-
description: "Additional class name"
|
|
7532
7678
|
}
|
|
7533
7679
|
}
|
|
7534
7680
|
},
|
|
@@ -7544,6 +7690,19 @@ var patterns = {
|
|
|
7544
7690
|
],
|
|
7545
7691
|
typicalSize: "full",
|
|
7546
7692
|
propsSchema: {
|
|
7693
|
+
entity: {
|
|
7694
|
+
types: [
|
|
7695
|
+
"object"
|
|
7696
|
+
],
|
|
7697
|
+
description: "Entity data, the sole source of runtime state",
|
|
7698
|
+
required: true
|
|
7699
|
+
},
|
|
7700
|
+
className: {
|
|
7701
|
+
types: [
|
|
7702
|
+
"string"
|
|
7703
|
+
],
|
|
7704
|
+
description: "Additional class name"
|
|
7705
|
+
},
|
|
7547
7706
|
title: {
|
|
7548
7707
|
types: [
|
|
7549
7708
|
"string"
|
|
@@ -7575,12 +7734,6 @@ var patterns = {
|
|
|
7575
7734
|
"node"
|
|
7576
7735
|
],
|
|
7577
7736
|
description: "Footer content"
|
|
7578
|
-
},
|
|
7579
|
-
className: {
|
|
7580
|
-
types: [
|
|
7581
|
-
"string"
|
|
7582
|
-
],
|
|
7583
|
-
description: "Additional class name"
|
|
7584
7737
|
}
|
|
7585
7738
|
}
|
|
7586
7739
|
},
|
|
@@ -7618,6 +7771,12 @@ var patterns = {
|
|
|
7618
7771
|
"boolean"
|
|
7619
7772
|
],
|
|
7620
7773
|
description: "Whether to show the minimal top bar (default: true)"
|
|
7774
|
+
},
|
|
7775
|
+
children: {
|
|
7776
|
+
types: [
|
|
7777
|
+
"node"
|
|
7778
|
+
],
|
|
7779
|
+
description: "Game content rendered inside the full-screen area"
|
|
7621
7780
|
}
|
|
7622
7781
|
}
|
|
7623
7782
|
},
|
|
@@ -8627,11 +8786,23 @@ var patterns = {
|
|
|
8627
8786
|
],
|
|
8628
8787
|
typicalSize: "large",
|
|
8629
8788
|
propsSchema: {
|
|
8789
|
+
entity: {
|
|
8790
|
+
types: [
|
|
8791
|
+
"string"
|
|
8792
|
+
],
|
|
8793
|
+
description: "Entity name for schema-driven integration"
|
|
8794
|
+
},
|
|
8795
|
+
data: {
|
|
8796
|
+
types: [
|
|
8797
|
+
"array"
|
|
8798
|
+
],
|
|
8799
|
+
description: "Data array provided by the trait via render-ui"
|
|
8800
|
+
},
|
|
8630
8801
|
className: {
|
|
8631
8802
|
types: [
|
|
8632
8803
|
"string"
|
|
8633
8804
|
],
|
|
8634
|
-
description: "
|
|
8805
|
+
description: "Additional CSS classes"
|
|
8635
8806
|
},
|
|
8636
8807
|
isLoading: {
|
|
8637
8808
|
types: [
|
|
@@ -8641,21 +8812,63 @@ var patterns = {
|
|
|
8641
8812
|
},
|
|
8642
8813
|
error: {
|
|
8643
8814
|
types: [
|
|
8644
|
-
"
|
|
8815
|
+
"object"
|
|
8645
8816
|
],
|
|
8646
8817
|
description: "Error state"
|
|
8647
8818
|
},
|
|
8648
|
-
|
|
8819
|
+
sortBy: {
|
|
8649
8820
|
types: [
|
|
8650
8821
|
"string"
|
|
8651
8822
|
],
|
|
8652
|
-
description: "
|
|
8823
|
+
description: "Current sort field"
|
|
8824
|
+
},
|
|
8825
|
+
sortDirection: {
|
|
8826
|
+
types: [
|
|
8827
|
+
"string"
|
|
8828
|
+
],
|
|
8829
|
+
description: "Current sort direction"
|
|
8830
|
+
},
|
|
8831
|
+
searchValue: {
|
|
8832
|
+
types: [
|
|
8833
|
+
"string"
|
|
8834
|
+
],
|
|
8835
|
+
description: "Current search query value"
|
|
8836
|
+
},
|
|
8837
|
+
page: {
|
|
8838
|
+
types: [
|
|
8839
|
+
"number"
|
|
8840
|
+
],
|
|
8841
|
+
description: "Current page number"
|
|
8842
|
+
},
|
|
8843
|
+
pageSize: {
|
|
8844
|
+
types: [
|
|
8845
|
+
"number"
|
|
8846
|
+
],
|
|
8847
|
+
description: "Number of items per page"
|
|
8848
|
+
},
|
|
8849
|
+
totalCount: {
|
|
8850
|
+
types: [
|
|
8851
|
+
"number"
|
|
8852
|
+
],
|
|
8853
|
+
description: "Total number of items"
|
|
8854
|
+
},
|
|
8855
|
+
activeFilters: {
|
|
8856
|
+
types: [
|
|
8857
|
+
"object"
|
|
8858
|
+
],
|
|
8859
|
+
description: "Active filters"
|
|
8860
|
+
},
|
|
8861
|
+
selectedIds: {
|
|
8862
|
+
types: [
|
|
8863
|
+
"array"
|
|
8864
|
+
],
|
|
8865
|
+
description: "Currently selected item IDs"
|
|
8653
8866
|
},
|
|
8654
8867
|
tiles: {
|
|
8655
8868
|
types: [
|
|
8656
8869
|
"array"
|
|
8657
8870
|
],
|
|
8658
|
-
description: "
|
|
8871
|
+
description: "EntityDisplayProps provides: className, isLoading, error, entity,"
|
|
8659
8872
|
},
|
|
8660
8873
|
units: {
|
|
8661
8874
|
types: [
|
|
@@ -8697,25 +8910,25 @@ var patterns = {
|
|
|
8697
8910
|
types: [
|
|
8698
8911
|
"function"
|
|
8699
8912
|
],
|
|
8700
|
-
description: "--- Event handlers ---"
|
|
8913
|
+
description: "--- Event handlers (legacy callbacks — prefer declarative event string props below) ---"
|
|
8701
8914
|
},
|
|
8702
8915
|
onUnitClick: {
|
|
8703
8916
|
types: [
|
|
8704
8917
|
"function"
|
|
8705
8918
|
],
|
|
8706
|
-
description: "
|
|
8919
|
+
description: "eslint-disable-next-line almadar/organism-no-callback-props"
|
|
8707
8920
|
},
|
|
8708
8921
|
onTileHover: {
|
|
8709
8922
|
types: [
|
|
8710
8923
|
"function"
|
|
8711
8924
|
],
|
|
8712
|
-
description: "
|
|
8925
|
+
description: "eslint-disable-next-line almadar/organism-no-callback-props"
|
|
8713
8926
|
},
|
|
8714
8927
|
onTileLeave: {
|
|
8715
8928
|
types: [
|
|
8716
8929
|
"function"
|
|
8717
8930
|
],
|
|
8718
|
-
description: "
|
|
8931
|
+
description: "eslint-disable-next-line almadar/organism-no-callback-props"
|
|
8719
8932
|
},
|
|
8720
8933
|
tileClickEvent: {
|
|
8721
8934
|
types: [
|
|
@@ -8777,6 +8990,18 @@ var patterns = {
|
|
|
8777
8990
|
],
|
|
8778
8991
|
description: "Extra scale multiplier for unit draw size. 1 = default."
|
|
8779
8992
|
},
|
|
8993
|
+
boardWidth: {
|
|
8994
|
+
types: [
|
|
8995
|
+
"number"
|
|
8996
|
+
],
|
|
8997
|
+
description: "Board width in tiles (overrides tile-derived size)"
|
|
8998
|
+
},
|
|
8999
|
+
boardHeight: {
|
|
9000
|
+
types: [
|
|
9001
|
+
"number"
|
|
9002
|
+
],
|
|
9003
|
+
description: "Board height in tiles (overrides tile-derived size)"
|
|
9004
|
+
},
|
|
8780
9005
|
diamondTopY: {
|
|
8781
9006
|
types: [
|
|
8782
9007
|
"number"
|
|
@@ -8817,7 +9042,7 @@ var patterns = {
|
|
|
8817
9042
|
types: [
|
|
8818
9043
|
"function"
|
|
8819
9044
|
],
|
|
8820
|
-
description: "Callback to draw canvas effects after units"
|
|
9045
|
+
description: "Callback to draw canvas effects after units (canvas-specific: cannot be declarative)"
|
|
8821
9046
|
},
|
|
8822
9047
|
hasActiveEffects: {
|
|
8823
9048
|
types: [
|
|
@@ -8850,6 +9075,19 @@ var patterns = {
|
|
|
8850
9075
|
],
|
|
8851
9076
|
typicalSize: "full",
|
|
8852
9077
|
propsSchema: {
|
|
9078
|
+
entity: {
|
|
9079
|
+
types: [
|
|
9080
|
+
"object"
|
|
9081
|
+
],
|
|
9082
|
+
description: "Entity data, the sole source of runtime state",
|
|
9083
|
+
required: true
|
|
9084
|
+
},
|
|
9085
|
+
className: {
|
|
9086
|
+
types: [
|
|
9087
|
+
"string"
|
|
9088
|
+
],
|
|
9089
|
+
description: "External styling override"
|
|
9090
|
+
},
|
|
8853
9091
|
scale: {
|
|
8854
9092
|
types: [
|
|
8855
9093
|
"number"
|
|
@@ -8875,6 +9113,19 @@ var patterns = {
|
|
|
8875
9113
|
],
|
|
8876
9114
|
typicalSize: "full",
|
|
8877
9115
|
propsSchema: {
|
|
9116
|
+
entity: {
|
|
9117
|
+
types: [
|
|
9118
|
+
"object"
|
|
9119
|
+
],
|
|
9120
|
+
description: "Entity data, the sole source of runtime state",
|
|
9121
|
+
required: true
|
|
9122
|
+
},
|
|
9123
|
+
className: {
|
|
9124
|
+
types: [
|
|
9125
|
+
"string"
|
|
9126
|
+
],
|
|
9127
|
+
description: "External styling override"
|
|
9128
|
+
},
|
|
8878
9129
|
scale: {
|
|
8879
9130
|
types: [
|
|
8880
9131
|
"number"
|
|
@@ -8895,6 +9146,19 @@ var patterns = {
|
|
|
8895
9146
|
],
|
|
8896
9147
|
typicalSize: "full",
|
|
8897
9148
|
propsSchema: {
|
|
9149
|
+
entity: {
|
|
9150
|
+
types: [
|
|
9151
|
+
"object"
|
|
9152
|
+
],
|
|
9153
|
+
description: "Entity data, the sole source of runtime state",
|
|
9154
|
+
required: true
|
|
9155
|
+
},
|
|
9156
|
+
className: {
|
|
9157
|
+
types: [
|
|
9158
|
+
"string"
|
|
9159
|
+
],
|
|
9160
|
+
description: "External styling override"
|
|
9161
|
+
},
|
|
8898
9162
|
scale: {
|
|
8899
9163
|
types: [
|
|
8900
9164
|
"number"
|
|
@@ -9456,10 +9720,81 @@ var patterns = {
|
|
|
9456
9720
|
propsSchema: {
|
|
9457
9721
|
entity: {
|
|
9458
9722
|
types: [
|
|
9459
|
-
"
|
|
9723
|
+
"string"
|
|
9460
9724
|
],
|
|
9461
|
-
description: "
|
|
9462
|
-
|
|
9725
|
+
description: "Entity name for schema-driven integration"
|
|
9726
|
+
},
|
|
9727
|
+
data: {
|
|
9728
|
+
types: [
|
|
9729
|
+
"array"
|
|
9730
|
+
],
|
|
9731
|
+
description: "Data array provided by the trait via render-ui"
|
|
9732
|
+
},
|
|
9733
|
+
className: {
|
|
9734
|
+
types: [
|
|
9735
|
+
"string"
|
|
9736
|
+
],
|
|
9737
|
+
description: "className prop"
|
|
9738
|
+
},
|
|
9739
|
+
isLoading: {
|
|
9740
|
+
types: [
|
|
9741
|
+
"boolean"
|
|
9742
|
+
],
|
|
9743
|
+
description: "Loading state indicator"
|
|
9744
|
+
},
|
|
9745
|
+
error: {
|
|
9746
|
+
types: [
|
|
9747
|
+
"object"
|
|
9748
|
+
],
|
|
9749
|
+
description: "Error state"
|
|
9750
|
+
},
|
|
9751
|
+
sortBy: {
|
|
9752
|
+
types: [
|
|
9753
|
+
"string"
|
|
9754
|
+
],
|
|
9755
|
+
description: "Current sort field"
|
|
9756
|
+
},
|
|
9757
|
+
sortDirection: {
|
|
9758
|
+
types: [
|
|
9759
|
+
"string"
|
|
9760
|
+
],
|
|
9761
|
+
description: "Current sort direction"
|
|
9762
|
+
},
|
|
9763
|
+
searchValue: {
|
|
9764
|
+
types: [
|
|
9765
|
+
"string"
|
|
9766
|
+
],
|
|
9767
|
+
description: "Current search query value"
|
|
9768
|
+
},
|
|
9769
|
+
page: {
|
|
9770
|
+
types: [
|
|
9771
|
+
"number"
|
|
9772
|
+
],
|
|
9773
|
+
description: "Current page number"
|
|
9774
|
+
},
|
|
9775
|
+
pageSize: {
|
|
9776
|
+
types: [
|
|
9777
|
+
"number"
|
|
9778
|
+
],
|
|
9779
|
+
description: "Number of items per page"
|
|
9780
|
+
},
|
|
9781
|
+
totalCount: {
|
|
9782
|
+
types: [
|
|
9783
|
+
"number"
|
|
9784
|
+
],
|
|
9785
|
+
description: "Total number of items"
|
|
9786
|
+
},
|
|
9787
|
+
activeFilters: {
|
|
9788
|
+
types: [
|
|
9789
|
+
"object"
|
|
9790
|
+
],
|
|
9791
|
+
description: "Active filters"
|
|
9792
|
+
},
|
|
9793
|
+
selectedIds: {
|
|
9794
|
+
types: [
|
|
9795
|
+
"array"
|
|
9796
|
+
],
|
|
9797
|
+
description: "Currently selected item IDs"
|
|
9463
9798
|
},
|
|
9464
9799
|
scale: {
|
|
9465
9800
|
types: [
|
|
@@ -9586,12 +9921,6 @@ var patterns = {
|
|
|
9586
9921
|
"function"
|
|
9587
9922
|
],
|
|
9588
9923
|
description: "resolveUnitFrame prop"
|
|
9589
|
-
},
|
|
9590
|
-
className: {
|
|
9591
|
-
types: [
|
|
9592
|
-
"string"
|
|
9593
|
-
],
|
|
9594
|
-
description: "className prop"
|
|
9595
9924
|
}
|
|
9596
9925
|
}
|
|
9597
9926
|
},
|
|
@@ -10341,6 +10670,19 @@ var patterns = {
|
|
|
10341
10670
|
],
|
|
10342
10671
|
typicalSize: "full",
|
|
10343
10672
|
propsSchema: {
|
|
10673
|
+
entity: {
|
|
10674
|
+
types: [
|
|
10675
|
+
"object"
|
|
10676
|
+
],
|
|
10677
|
+
description: "Entity data, the sole source of runtime state",
|
|
10678
|
+
required: true
|
|
10679
|
+
},
|
|
10680
|
+
className: {
|
|
10681
|
+
types: [
|
|
10682
|
+
"string"
|
|
10683
|
+
],
|
|
10684
|
+
description: "External styling override"
|
|
10685
|
+
},
|
|
10344
10686
|
cameraMode: {
|
|
10345
10687
|
types: [
|
|
10346
10688
|
"string"
|
|
@@ -10440,6 +10782,19 @@ var patterns = {
|
|
|
10440
10782
|
],
|
|
10441
10783
|
typicalSize: "full",
|
|
10442
10784
|
propsSchema: {
|
|
10785
|
+
entity: {
|
|
10786
|
+
types: [
|
|
10787
|
+
"object"
|
|
10788
|
+
],
|
|
10789
|
+
description: "Entity data, the sole source of runtime state",
|
|
10790
|
+
required: true
|
|
10791
|
+
},
|
|
10792
|
+
className: {
|
|
10793
|
+
types: [
|
|
10794
|
+
"string"
|
|
10795
|
+
],
|
|
10796
|
+
description: "External styling override"
|
|
10797
|
+
},
|
|
10443
10798
|
cameraMode: {
|
|
10444
10799
|
types: [
|
|
10445
10800
|
"string"
|
|
@@ -10534,6 +10889,19 @@ var patterns = {
|
|
|
10534
10889
|
],
|
|
10535
10890
|
typicalSize: "full",
|
|
10536
10891
|
propsSchema: {
|
|
10892
|
+
entity: {
|
|
10893
|
+
types: [
|
|
10894
|
+
"object"
|
|
10895
|
+
],
|
|
10896
|
+
description: "Entity data, the sole source of runtime state",
|
|
10897
|
+
required: true
|
|
10898
|
+
},
|
|
10899
|
+
className: {
|
|
10900
|
+
types: [
|
|
10901
|
+
"string"
|
|
10902
|
+
],
|
|
10903
|
+
description: "External styling override"
|
|
10904
|
+
},
|
|
10537
10905
|
cameraMode: {
|
|
10538
10906
|
types: [
|
|
10539
10907
|
"string"
|
|
@@ -14076,7 +14444,7 @@ var integratorsRegistry = {
|
|
|
14076
14444
|
};
|
|
14077
14445
|
|
|
14078
14446
|
var version$1 = "1.0.0";
|
|
14079
|
-
var exportedAt$1 = "2026-03-
|
|
14447
|
+
var exportedAt$1 = "2026-03-06T07:07:47.853Z";
|
|
14080
14448
|
var mappings = {
|
|
14081
14449
|
"page-header": {
|
|
14082
14450
|
component: "PageHeader",
|
|
@@ -15034,7 +15402,7 @@ var componentMapping = {
|
|
|
15034
15402
|
};
|
|
15035
15403
|
|
|
15036
15404
|
var version = "1.0.0";
|
|
15037
|
-
var exportedAt = "2026-03-
|
|
15405
|
+
var exportedAt = "2026-03-06T07:07:47.853Z";
|
|
15038
15406
|
var contracts = {
|
|
15039
15407
|
form: {
|
|
15040
15408
|
emits: [
|
|
@@ -15198,13 +15566,6 @@ var contracts = {
|
|
|
15198
15566
|
type: "object"
|
|
15199
15567
|
}
|
|
15200
15568
|
},
|
|
15201
|
-
{
|
|
15202
|
-
event: "VIEW",
|
|
15203
|
-
trigger: "action",
|
|
15204
|
-
payload: {
|
|
15205
|
-
type: "object"
|
|
15206
|
-
}
|
|
15207
|
-
},
|
|
15208
15569
|
{
|
|
15209
15570
|
event: "NAVIGATE",
|
|
15210
15571
|
trigger: "action",
|
|
@@ -15240,13 +15601,6 @@ var contracts = {
|
|
|
15240
15601
|
payload: {
|
|
15241
15602
|
type: "object"
|
|
15242
15603
|
}
|
|
15243
|
-
},
|
|
15244
|
-
{
|
|
15245
|
-
event: "VIEW",
|
|
15246
|
-
trigger: "action",
|
|
15247
|
-
payload: {
|
|
15248
|
-
type: "object"
|
|
15249
|
-
}
|
|
15250
15604
|
}
|
|
15251
15605
|
],
|
|
15252
15606
|
requires: [
|
|
@@ -15595,7 +15949,7 @@ var contracts = {
|
|
|
15595
15949
|
],
|
|
15596
15950
|
requires: [
|
|
15597
15951
|
],
|
|
15598
|
-
entityAware:
|
|
15952
|
+
entityAware: true
|
|
15599
15953
|
},
|
|
15600
15954
|
stats: {
|
|
15601
15955
|
emits: [
|
|
@@ -15690,19 +16044,25 @@ var contracts = {
|
|
|
15690
16044
|
"dialogue-box": {
|
|
15691
16045
|
emits: [
|
|
15692
16046
|
{
|
|
15693
|
-
event: "
|
|
15694
|
-
trigger: "
|
|
16047
|
+
event: "COMPLETE",
|
|
16048
|
+
trigger: "action",
|
|
15695
16049
|
payload: {
|
|
15696
|
-
type: "
|
|
16050
|
+
type: "object"
|
|
15697
16051
|
}
|
|
15698
16052
|
},
|
|
15699
16053
|
{
|
|
15700
|
-
event: "
|
|
15701
|
-
trigger: "
|
|
16054
|
+
event: "CHOICE",
|
|
16055
|
+
trigger: "action",
|
|
15702
16056
|
payload: {
|
|
15703
|
-
type: "
|
|
15704
|
-
}
|
|
15705
|
-
|
|
16057
|
+
type: "object"
|
|
16058
|
+
}
|
|
16059
|
+
},
|
|
16060
|
+
{
|
|
16061
|
+
event: "ADVANCE",
|
|
16062
|
+
trigger: "action",
|
|
16063
|
+
payload: {
|
|
16064
|
+
type: "object"
|
|
16065
|
+
}
|
|
15706
16066
|
}
|
|
15707
16067
|
],
|
|
15708
16068
|
requires: [
|
|
@@ -16163,6 +16523,132 @@ var contracts = {
|
|
|
16163
16523
|
requires: [
|
|
16164
16524
|
],
|
|
16165
16525
|
entityAware: true
|
|
16526
|
+
},
|
|
16527
|
+
"action-buttons": {
|
|
16528
|
+
emits: [
|
|
16529
|
+
{
|
|
16530
|
+
event: "ACTION",
|
|
16531
|
+
trigger: "action",
|
|
16532
|
+
payload: {
|
|
16533
|
+
type: "object"
|
|
16534
|
+
}
|
|
16535
|
+
}
|
|
16536
|
+
],
|
|
16537
|
+
requires: [
|
|
16538
|
+
],
|
|
16539
|
+
entityAware: false
|
|
16540
|
+
},
|
|
16541
|
+
"d-pad": {
|
|
16542
|
+
emits: [
|
|
16543
|
+
{
|
|
16544
|
+
event: "DIRECTION",
|
|
16545
|
+
trigger: "action",
|
|
16546
|
+
payload: {
|
|
16547
|
+
type: "object"
|
|
16548
|
+
}
|
|
16549
|
+
}
|
|
16550
|
+
],
|
|
16551
|
+
requires: [
|
|
16552
|
+
],
|
|
16553
|
+
entityAware: false
|
|
16554
|
+
},
|
|
16555
|
+
"isometric-canvas": {
|
|
16556
|
+
emits: [
|
|
16557
|
+
{
|
|
16558
|
+
event: "TILE_CLICK",
|
|
16559
|
+
trigger: "action",
|
|
16560
|
+
payload: {
|
|
16561
|
+
type: "object"
|
|
16562
|
+
}
|
|
16563
|
+
},
|
|
16564
|
+
{
|
|
16565
|
+
event: "UNIT_CLICK",
|
|
16566
|
+
trigger: "action",
|
|
16567
|
+
payload: {
|
|
16568
|
+
type: "object"
|
|
16569
|
+
}
|
|
16570
|
+
},
|
|
16571
|
+
{
|
|
16572
|
+
event: "TILE_HOVER",
|
|
16573
|
+
trigger: "action",
|
|
16574
|
+
payload: {
|
|
16575
|
+
type: "object"
|
|
16576
|
+
}
|
|
16577
|
+
},
|
|
16578
|
+
{
|
|
16579
|
+
event: "TILE_LEAVE",
|
|
16580
|
+
trigger: "action",
|
|
16581
|
+
payload: {
|
|
16582
|
+
type: "object"
|
|
16583
|
+
}
|
|
16584
|
+
}
|
|
16585
|
+
],
|
|
16586
|
+
requires: [
|
|
16587
|
+
],
|
|
16588
|
+
entityAware: true
|
|
16589
|
+
},
|
|
16590
|
+
"trait-slot": {
|
|
16591
|
+
emits: [
|
|
16592
|
+
{
|
|
16593
|
+
event: "CLICK",
|
|
16594
|
+
trigger: "action",
|
|
16595
|
+
payload: {
|
|
16596
|
+
type: "object"
|
|
16597
|
+
}
|
|
16598
|
+
},
|
|
16599
|
+
{
|
|
16600
|
+
event: "REMOVE",
|
|
16601
|
+
trigger: "action",
|
|
16602
|
+
payload: {
|
|
16603
|
+
type: "object"
|
|
16604
|
+
}
|
|
16605
|
+
}
|
|
16606
|
+
],
|
|
16607
|
+
requires: [
|
|
16608
|
+
],
|
|
16609
|
+
entityAware: true
|
|
16610
|
+
},
|
|
16611
|
+
"world-map-board": {
|
|
16612
|
+
emits: [
|
|
16613
|
+
{
|
|
16614
|
+
event: "HERO_SELECT",
|
|
16615
|
+
trigger: "action",
|
|
16616
|
+
payload: {
|
|
16617
|
+
type: "object"
|
|
16618
|
+
}
|
|
16619
|
+
},
|
|
16620
|
+
{
|
|
16621
|
+
event: "HERO_MOVE",
|
|
16622
|
+
trigger: "action",
|
|
16623
|
+
payload: {
|
|
16624
|
+
type: "object"
|
|
16625
|
+
}
|
|
16626
|
+
},
|
|
16627
|
+
{
|
|
16628
|
+
event: "BATTLE_ENCOUNTER",
|
|
16629
|
+
trigger: "action",
|
|
16630
|
+
payload: {
|
|
16631
|
+
type: "object"
|
|
16632
|
+
}
|
|
16633
|
+
},
|
|
16634
|
+
{
|
|
16635
|
+
event: "FEATURE_ENTER",
|
|
16636
|
+
trigger: "action",
|
|
16637
|
+
payload: {
|
|
16638
|
+
type: "object"
|
|
16639
|
+
}
|
|
16640
|
+
},
|
|
16641
|
+
{
|
|
16642
|
+
event: "TILE_CLICK",
|
|
16643
|
+
trigger: "action",
|
|
16644
|
+
payload: {
|
|
16645
|
+
type: "object"
|
|
16646
|
+
}
|
|
16647
|
+
}
|
|
16648
|
+
],
|
|
16649
|
+
requires: [
|
|
16650
|
+
],
|
|
16651
|
+
entityAware: true
|
|
16166
16652
|
}
|
|
16167
16653
|
};
|
|
16168
16654
|
var eventContracts = {
|
|
@@ -19021,6 +19507,15 @@ declare function isValidPatternType(type: string): type is PatternType;
|
|
|
19021
19507
|
* @packageDocumentation
|
|
19022
19508
|
*/
|
|
19023
19509
|
|
|
19510
|
+
type PatternEntry$1 = {
|
|
19511
|
+
category?: string;
|
|
19512
|
+
description?: string;
|
|
19513
|
+
propsSchema?: Record<string, {
|
|
19514
|
+
types?: string[];
|
|
19515
|
+
required?: boolean;
|
|
19516
|
+
}>;
|
|
19517
|
+
entityAware?: boolean;
|
|
19518
|
+
};
|
|
19024
19519
|
/**
|
|
19025
19520
|
* Get patterns grouped by category.
|
|
19026
19521
|
* Categories are derived from pattern registry metadata.
|
|
@@ -19048,7 +19543,7 @@ declare function getAllPatternTypes(): PatternType[];
|
|
|
19048
19543
|
/**
|
|
19049
19544
|
* Get pattern metadata for a specific pattern.
|
|
19050
19545
|
*/
|
|
19051
|
-
declare function getPatternMetadata(patternType: string):
|
|
19546
|
+
declare function getPatternMetadata(patternType: string): PatternEntry$1 | null;
|
|
19052
19547
|
|
|
19053
19548
|
/**
|
|
19054
19549
|
* Pattern Recommender
|
|
@@ -19461,6 +19956,14 @@ declare const registry: {
|
|
|
19461
19956
|
types: string[];
|
|
19462
19957
|
description: string;
|
|
19463
19958
|
};
|
|
19959
|
+
showAvatar: {
|
|
19960
|
+
types: string[];
|
|
19961
|
+
description: string;
|
|
19962
|
+
};
|
|
19963
|
+
variant: {
|
|
19964
|
+
types: string[];
|
|
19965
|
+
description: string;
|
|
19966
|
+
};
|
|
19464
19967
|
};
|
|
19465
19968
|
};
|
|
19466
19969
|
"detail-panel": {
|
|
@@ -20581,6 +21084,10 @@ declare const registry: {
|
|
|
20581
21084
|
types: string[];
|
|
20582
21085
|
description: string;
|
|
20583
21086
|
};
|
|
21087
|
+
compact: {
|
|
21088
|
+
types: string[];
|
|
21089
|
+
description: string;
|
|
21090
|
+
};
|
|
20584
21091
|
};
|
|
20585
21092
|
};
|
|
20586
21093
|
"dashboard-grid": {
|
|
@@ -20590,6 +21097,58 @@ declare const registry: {
|
|
|
20590
21097
|
suggestedFor: string[];
|
|
20591
21098
|
typicalSize: string;
|
|
20592
21099
|
propsSchema: {
|
|
21100
|
+
entity: {
|
|
21101
|
+
types: string[];
|
|
21102
|
+
description: string;
|
|
21103
|
+
};
|
|
21104
|
+
data: {
|
|
21105
|
+
types: string[];
|
|
21106
|
+
description: string;
|
|
21107
|
+
};
|
|
21108
|
+
className: {
|
|
21109
|
+
types: string[];
|
|
21110
|
+
description: string;
|
|
21111
|
+
};
|
|
21112
|
+
isLoading: {
|
|
21113
|
+
types: string[];
|
|
21114
|
+
description: string;
|
|
21115
|
+
};
|
|
21116
|
+
error: {
|
|
21117
|
+
types: string[];
|
|
21118
|
+
description: string;
|
|
21119
|
+
};
|
|
21120
|
+
sortBy: {
|
|
21121
|
+
types: string[];
|
|
21122
|
+
description: string;
|
|
21123
|
+
};
|
|
21124
|
+
sortDirection: {
|
|
21125
|
+
types: string[];
|
|
21126
|
+
description: string;
|
|
21127
|
+
};
|
|
21128
|
+
searchValue: {
|
|
21129
|
+
types: string[];
|
|
21130
|
+
description: string;
|
|
21131
|
+
};
|
|
21132
|
+
page: {
|
|
21133
|
+
types: string[];
|
|
21134
|
+
description: string;
|
|
21135
|
+
};
|
|
21136
|
+
pageSize: {
|
|
21137
|
+
types: string[];
|
|
21138
|
+
description: string;
|
|
21139
|
+
};
|
|
21140
|
+
totalCount: {
|
|
21141
|
+
types: string[];
|
|
21142
|
+
description: string;
|
|
21143
|
+
};
|
|
21144
|
+
activeFilters: {
|
|
21145
|
+
types: string[];
|
|
21146
|
+
description: string;
|
|
21147
|
+
};
|
|
21148
|
+
selectedIds: {
|
|
21149
|
+
types: string[];
|
|
21150
|
+
description: string;
|
|
21151
|
+
};
|
|
20593
21152
|
columns: {
|
|
20594
21153
|
types: string[];
|
|
20595
21154
|
description: string;
|
|
@@ -20603,10 +21162,6 @@ declare const registry: {
|
|
|
20603
21162
|
description: string;
|
|
20604
21163
|
required: boolean;
|
|
20605
21164
|
};
|
|
20606
|
-
className: {
|
|
20607
|
-
types: string[];
|
|
20608
|
-
description: string;
|
|
20609
|
-
};
|
|
20610
21165
|
};
|
|
20611
21166
|
};
|
|
20612
21167
|
modal: {
|
|
@@ -21411,6 +21966,10 @@ declare const registry: {
|
|
|
21411
21966
|
types: string[];
|
|
21412
21967
|
description: string;
|
|
21413
21968
|
};
|
|
21969
|
+
amount: {
|
|
21970
|
+
types: string[];
|
|
21971
|
+
description: string;
|
|
21972
|
+
};
|
|
21414
21973
|
};
|
|
21415
21974
|
};
|
|
21416
21975
|
avatar: {
|
|
@@ -21550,6 +22109,22 @@ declare const registry: {
|
|
|
21550
22109
|
types: string[];
|
|
21551
22110
|
description: string;
|
|
21552
22111
|
};
|
|
22112
|
+
isSelected: {
|
|
22113
|
+
types: string[];
|
|
22114
|
+
description: string;
|
|
22115
|
+
};
|
|
22116
|
+
name: {
|
|
22117
|
+
types: string[];
|
|
22118
|
+
description: string;
|
|
22119
|
+
};
|
|
22120
|
+
level: {
|
|
22121
|
+
types: string[];
|
|
22122
|
+
description: string;
|
|
22123
|
+
};
|
|
22124
|
+
maxLevel: {
|
|
22125
|
+
types: string[];
|
|
22126
|
+
description: string;
|
|
22127
|
+
};
|
|
21553
22128
|
};
|
|
21554
22129
|
};
|
|
21555
22130
|
"progress-bar": {
|
|
@@ -24111,6 +24686,15 @@ declare const registry: {
|
|
|
24111
24686
|
suggestedFor: string[];
|
|
24112
24687
|
typicalSize: string;
|
|
24113
24688
|
propsSchema: {
|
|
24689
|
+
entity: {
|
|
24690
|
+
types: string[];
|
|
24691
|
+
description: string;
|
|
24692
|
+
required: boolean;
|
|
24693
|
+
};
|
|
24694
|
+
className: {
|
|
24695
|
+
types: string[];
|
|
24696
|
+
description: string;
|
|
24697
|
+
};
|
|
24114
24698
|
onIncrement: {
|
|
24115
24699
|
types: string[];
|
|
24116
24700
|
description: string;
|
|
@@ -24180,6 +24764,10 @@ declare const registry: {
|
|
|
24180
24764
|
types: string[];
|
|
24181
24765
|
description: string;
|
|
24182
24766
|
};
|
|
24767
|
+
children: {
|
|
24768
|
+
types: string[];
|
|
24769
|
+
description: string;
|
|
24770
|
+
};
|
|
24183
24771
|
};
|
|
24184
24772
|
};
|
|
24185
24773
|
"game-template": {
|
|
@@ -24189,6 +24777,15 @@ declare const registry: {
|
|
|
24189
24777
|
suggestedFor: string[];
|
|
24190
24778
|
typicalSize: string;
|
|
24191
24779
|
propsSchema: {
|
|
24780
|
+
entity: {
|
|
24781
|
+
types: string[];
|
|
24782
|
+
description: string;
|
|
24783
|
+
required: boolean;
|
|
24784
|
+
};
|
|
24785
|
+
className: {
|
|
24786
|
+
types: string[];
|
|
24787
|
+
description: string;
|
|
24788
|
+
};
|
|
24192
24789
|
title: {
|
|
24193
24790
|
types: string[];
|
|
24194
24791
|
description: string;
|
|
@@ -24214,10 +24811,6 @@ declare const registry: {
|
|
|
24214
24811
|
types: string[];
|
|
24215
24812
|
description: string;
|
|
24216
24813
|
};
|
|
24217
|
-
className: {
|
|
24218
|
-
types: string[];
|
|
24219
|
-
description: string;
|
|
24220
|
-
};
|
|
24221
24814
|
};
|
|
24222
24815
|
};
|
|
24223
24816
|
"generic-app-template": {
|
|
@@ -24227,6 +24820,15 @@ declare const registry: {
|
|
|
24227
24820
|
suggestedFor: string[];
|
|
24228
24821
|
typicalSize: string;
|
|
24229
24822
|
propsSchema: {
|
|
24823
|
+
entity: {
|
|
24824
|
+
types: string[];
|
|
24825
|
+
description: string;
|
|
24826
|
+
required: boolean;
|
|
24827
|
+
};
|
|
24828
|
+
className: {
|
|
24829
|
+
types: string[];
|
|
24830
|
+
description: string;
|
|
24831
|
+
};
|
|
24230
24832
|
title: {
|
|
24231
24833
|
types: string[];
|
|
24232
24834
|
description: string;
|
|
@@ -24249,10 +24851,6 @@ declare const registry: {
|
|
|
24249
24851
|
types: string[];
|
|
24250
24852
|
description: string;
|
|
24251
24853
|
};
|
|
24252
|
-
className: {
|
|
24253
|
-
types: string[];
|
|
24254
|
-
description: string;
|
|
24255
|
-
};
|
|
24256
24854
|
};
|
|
24257
24855
|
};
|
|
24258
24856
|
"game-shell": {
|
|
@@ -24278,6 +24876,10 @@ declare const registry: {
|
|
|
24278
24876
|
types: string[];
|
|
24279
24877
|
description: string;
|
|
24280
24878
|
};
|
|
24879
|
+
children: {
|
|
24880
|
+
types: string[];
|
|
24881
|
+
description: string;
|
|
24882
|
+
};
|
|
24281
24883
|
};
|
|
24282
24884
|
};
|
|
24283
24885
|
chart: {
|
|
@@ -24948,6 +25550,14 @@ declare const registry: {
|
|
|
24948
25550
|
suggestedFor: string[];
|
|
24949
25551
|
typicalSize: string;
|
|
24950
25552
|
propsSchema: {
|
|
25553
|
+
entity: {
|
|
25554
|
+
types: string[];
|
|
25555
|
+
description: string;
|
|
25556
|
+
};
|
|
25557
|
+
data: {
|
|
25558
|
+
types: string[];
|
|
25559
|
+
description: string;
|
|
25560
|
+
};
|
|
24951
25561
|
className: {
|
|
24952
25562
|
types: string[];
|
|
24953
25563
|
description: string;
|
|
@@ -24960,7 +25570,35 @@ declare const registry: {
|
|
|
24960
25570
|
types: string[];
|
|
24961
25571
|
description: string;
|
|
24962
25572
|
};
|
|
24963
|
-
|
|
25573
|
+
sortBy: {
|
|
25574
|
+
types: string[];
|
|
25575
|
+
description: string;
|
|
25576
|
+
};
|
|
25577
|
+
sortDirection: {
|
|
25578
|
+
types: string[];
|
|
25579
|
+
description: string;
|
|
25580
|
+
};
|
|
25581
|
+
searchValue: {
|
|
25582
|
+
types: string[];
|
|
25583
|
+
description: string;
|
|
25584
|
+
};
|
|
25585
|
+
page: {
|
|
25586
|
+
types: string[];
|
|
25587
|
+
description: string;
|
|
25588
|
+
};
|
|
25589
|
+
pageSize: {
|
|
25590
|
+
types: string[];
|
|
25591
|
+
description: string;
|
|
25592
|
+
};
|
|
25593
|
+
totalCount: {
|
|
25594
|
+
types: string[];
|
|
25595
|
+
description: string;
|
|
25596
|
+
};
|
|
25597
|
+
activeFilters: {
|
|
25598
|
+
types: string[];
|
|
25599
|
+
description: string;
|
|
25600
|
+
};
|
|
25601
|
+
selectedIds: {
|
|
24964
25602
|
types: string[];
|
|
24965
25603
|
description: string;
|
|
24966
25604
|
};
|
|
@@ -25048,6 +25686,14 @@ declare const registry: {
|
|
|
25048
25686
|
types: string[];
|
|
25049
25687
|
description: string;
|
|
25050
25688
|
};
|
|
25689
|
+
boardWidth: {
|
|
25690
|
+
types: string[];
|
|
25691
|
+
description: string;
|
|
25692
|
+
};
|
|
25693
|
+
boardHeight: {
|
|
25694
|
+
types: string[];
|
|
25695
|
+
description: string;
|
|
25696
|
+
};
|
|
25051
25697
|
diamondTopY: {
|
|
25052
25698
|
types: string[];
|
|
25053
25699
|
description: string;
|
|
@@ -25097,6 +25743,15 @@ declare const registry: {
|
|
|
25097
25743
|
suggestedFor: string[];
|
|
25098
25744
|
typicalSize: string;
|
|
25099
25745
|
propsSchema: {
|
|
25746
|
+
entity: {
|
|
25747
|
+
types: string[];
|
|
25748
|
+
description: string;
|
|
25749
|
+
required: boolean;
|
|
25750
|
+
};
|
|
25751
|
+
className: {
|
|
25752
|
+
types: string[];
|
|
25753
|
+
description: string;
|
|
25754
|
+
};
|
|
25100
25755
|
scale: {
|
|
25101
25756
|
types: string[];
|
|
25102
25757
|
description: string;
|
|
@@ -25114,6 +25769,15 @@ declare const registry: {
|
|
|
25114
25769
|
suggestedFor: string[];
|
|
25115
25770
|
typicalSize: string;
|
|
25116
25771
|
propsSchema: {
|
|
25772
|
+
entity: {
|
|
25773
|
+
types: string[];
|
|
25774
|
+
description: string;
|
|
25775
|
+
required: boolean;
|
|
25776
|
+
};
|
|
25777
|
+
className: {
|
|
25778
|
+
types: string[];
|
|
25779
|
+
description: string;
|
|
25780
|
+
};
|
|
25117
25781
|
scale: {
|
|
25118
25782
|
types: string[];
|
|
25119
25783
|
description: string;
|
|
@@ -25127,6 +25791,15 @@ declare const registry: {
|
|
|
25127
25791
|
suggestedFor: string[];
|
|
25128
25792
|
typicalSize: string;
|
|
25129
25793
|
propsSchema: {
|
|
25794
|
+
entity: {
|
|
25795
|
+
types: string[];
|
|
25796
|
+
description: string;
|
|
25797
|
+
required: boolean;
|
|
25798
|
+
};
|
|
25799
|
+
className: {
|
|
25800
|
+
types: string[];
|
|
25801
|
+
description: string;
|
|
25802
|
+
};
|
|
25130
25803
|
scale: {
|
|
25131
25804
|
types: string[];
|
|
25132
25805
|
description: string;
|
|
@@ -25504,7 +26177,54 @@ declare const registry: {
|
|
|
25504
26177
|
entity: {
|
|
25505
26178
|
types: string[];
|
|
25506
26179
|
description: string;
|
|
25507
|
-
|
|
26180
|
+
};
|
|
26181
|
+
data: {
|
|
26182
|
+
types: string[];
|
|
26183
|
+
description: string;
|
|
26184
|
+
};
|
|
26185
|
+
className: {
|
|
26186
|
+
types: string[];
|
|
26187
|
+
description: string;
|
|
26188
|
+
};
|
|
26189
|
+
isLoading: {
|
|
26190
|
+
types: string[];
|
|
26191
|
+
description: string;
|
|
26192
|
+
};
|
|
26193
|
+
error: {
|
|
26194
|
+
types: string[];
|
|
26195
|
+
description: string;
|
|
26196
|
+
};
|
|
26197
|
+
sortBy: {
|
|
26198
|
+
types: string[];
|
|
26199
|
+
description: string;
|
|
26200
|
+
};
|
|
26201
|
+
sortDirection: {
|
|
26202
|
+
types: string[];
|
|
26203
|
+
description: string;
|
|
26204
|
+
};
|
|
26205
|
+
searchValue: {
|
|
26206
|
+
types: string[];
|
|
26207
|
+
description: string;
|
|
26208
|
+
};
|
|
26209
|
+
page: {
|
|
26210
|
+
types: string[];
|
|
26211
|
+
description: string;
|
|
26212
|
+
};
|
|
26213
|
+
pageSize: {
|
|
26214
|
+
types: string[];
|
|
26215
|
+
description: string;
|
|
26216
|
+
};
|
|
26217
|
+
totalCount: {
|
|
26218
|
+
types: string[];
|
|
26219
|
+
description: string;
|
|
26220
|
+
};
|
|
26221
|
+
activeFilters: {
|
|
26222
|
+
types: string[];
|
|
26223
|
+
description: string;
|
|
26224
|
+
};
|
|
26225
|
+
selectedIds: {
|
|
26226
|
+
types: string[];
|
|
26227
|
+
description: string;
|
|
25508
26228
|
};
|
|
25509
26229
|
scale: {
|
|
25510
26230
|
types: string[];
|
|
@@ -25590,10 +26310,6 @@ declare const registry: {
|
|
|
25590
26310
|
types: string[];
|
|
25591
26311
|
description: string;
|
|
25592
26312
|
};
|
|
25593
|
-
className: {
|
|
25594
|
-
types: string[];
|
|
25595
|
-
description: string;
|
|
25596
|
-
};
|
|
25597
26313
|
};
|
|
25598
26314
|
};
|
|
25599
26315
|
"collapsible-section": {
|
|
@@ -26099,6 +26815,15 @@ declare const registry: {
|
|
|
26099
26815
|
suggestedFor: string[];
|
|
26100
26816
|
typicalSize: string;
|
|
26101
26817
|
propsSchema: {
|
|
26818
|
+
entity: {
|
|
26819
|
+
types: string[];
|
|
26820
|
+
description: string;
|
|
26821
|
+
required: boolean;
|
|
26822
|
+
};
|
|
26823
|
+
className: {
|
|
26824
|
+
types: string[];
|
|
26825
|
+
description: string;
|
|
26826
|
+
};
|
|
26102
26827
|
cameraMode: {
|
|
26103
26828
|
types: string[];
|
|
26104
26829
|
description: string;
|
|
@@ -26164,6 +26889,15 @@ declare const registry: {
|
|
|
26164
26889
|
suggestedFor: string[];
|
|
26165
26890
|
typicalSize: string;
|
|
26166
26891
|
propsSchema: {
|
|
26892
|
+
entity: {
|
|
26893
|
+
types: string[];
|
|
26894
|
+
description: string;
|
|
26895
|
+
required: boolean;
|
|
26896
|
+
};
|
|
26897
|
+
className: {
|
|
26898
|
+
types: string[];
|
|
26899
|
+
description: string;
|
|
26900
|
+
};
|
|
26167
26901
|
cameraMode: {
|
|
26168
26902
|
types: string[];
|
|
26169
26903
|
description: string;
|
|
@@ -26225,6 +26959,15 @@ declare const registry: {
|
|
|
26225
26959
|
suggestedFor: string[];
|
|
26226
26960
|
typicalSize: string;
|
|
26227
26961
|
propsSchema: {
|
|
26962
|
+
entity: {
|
|
26963
|
+
types: string[];
|
|
26964
|
+
description: string;
|
|
26965
|
+
required: boolean;
|
|
26966
|
+
};
|
|
26967
|
+
className: {
|
|
26968
|
+
types: string[];
|
|
26969
|
+
description: string;
|
|
26970
|
+
};
|
|
26228
26971
|
cameraMode: {
|
|
26229
26972
|
types: string[];
|
|
26230
26973
|
description: string;
|
|
@@ -28441,6 +29184,14 @@ declare const PATTERN_REGISTRY: {
|
|
|
28441
29184
|
types: string[];
|
|
28442
29185
|
description: string;
|
|
28443
29186
|
};
|
|
29187
|
+
showAvatar: {
|
|
29188
|
+
types: string[];
|
|
29189
|
+
description: string;
|
|
29190
|
+
};
|
|
29191
|
+
variant: {
|
|
29192
|
+
types: string[];
|
|
29193
|
+
description: string;
|
|
29194
|
+
};
|
|
28444
29195
|
};
|
|
28445
29196
|
};
|
|
28446
29197
|
"detail-panel": {
|
|
@@ -29561,6 +30312,10 @@ declare const PATTERN_REGISTRY: {
|
|
|
29561
30312
|
types: string[];
|
|
29562
30313
|
description: string;
|
|
29563
30314
|
};
|
|
30315
|
+
compact: {
|
|
30316
|
+
types: string[];
|
|
30317
|
+
description: string;
|
|
30318
|
+
};
|
|
29564
30319
|
};
|
|
29565
30320
|
};
|
|
29566
30321
|
"dashboard-grid": {
|
|
@@ -29570,6 +30325,58 @@ declare const PATTERN_REGISTRY: {
|
|
|
29570
30325
|
suggestedFor: string[];
|
|
29571
30326
|
typicalSize: string;
|
|
29572
30327
|
propsSchema: {
|
|
30328
|
+
entity: {
|
|
30329
|
+
types: string[];
|
|
30330
|
+
description: string;
|
|
30331
|
+
};
|
|
30332
|
+
data: {
|
|
30333
|
+
types: string[];
|
|
30334
|
+
description: string;
|
|
30335
|
+
};
|
|
30336
|
+
className: {
|
|
30337
|
+
types: string[];
|
|
30338
|
+
description: string;
|
|
30339
|
+
};
|
|
30340
|
+
isLoading: {
|
|
30341
|
+
types: string[];
|
|
30342
|
+
description: string;
|
|
30343
|
+
};
|
|
30344
|
+
error: {
|
|
30345
|
+
types: string[];
|
|
30346
|
+
description: string;
|
|
30347
|
+
};
|
|
30348
|
+
sortBy: {
|
|
30349
|
+
types: string[];
|
|
30350
|
+
description: string;
|
|
30351
|
+
};
|
|
30352
|
+
sortDirection: {
|
|
30353
|
+
types: string[];
|
|
30354
|
+
description: string;
|
|
30355
|
+
};
|
|
30356
|
+
searchValue: {
|
|
30357
|
+
types: string[];
|
|
30358
|
+
description: string;
|
|
30359
|
+
};
|
|
30360
|
+
page: {
|
|
30361
|
+
types: string[];
|
|
30362
|
+
description: string;
|
|
30363
|
+
};
|
|
30364
|
+
pageSize: {
|
|
30365
|
+
types: string[];
|
|
30366
|
+
description: string;
|
|
30367
|
+
};
|
|
30368
|
+
totalCount: {
|
|
30369
|
+
types: string[];
|
|
30370
|
+
description: string;
|
|
30371
|
+
};
|
|
30372
|
+
activeFilters: {
|
|
30373
|
+
types: string[];
|
|
30374
|
+
description: string;
|
|
30375
|
+
};
|
|
30376
|
+
selectedIds: {
|
|
30377
|
+
types: string[];
|
|
30378
|
+
description: string;
|
|
30379
|
+
};
|
|
29573
30380
|
columns: {
|
|
29574
30381
|
types: string[];
|
|
29575
30382
|
description: string;
|
|
@@ -29583,10 +30390,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
29583
30390
|
description: string;
|
|
29584
30391
|
required: boolean;
|
|
29585
30392
|
};
|
|
29586
|
-
className: {
|
|
29587
|
-
types: string[];
|
|
29588
|
-
description: string;
|
|
29589
|
-
};
|
|
29590
30393
|
};
|
|
29591
30394
|
};
|
|
29592
30395
|
modal: {
|
|
@@ -30391,6 +31194,10 @@ declare const PATTERN_REGISTRY: {
|
|
|
30391
31194
|
types: string[];
|
|
30392
31195
|
description: string;
|
|
30393
31196
|
};
|
|
31197
|
+
amount: {
|
|
31198
|
+
types: string[];
|
|
31199
|
+
description: string;
|
|
31200
|
+
};
|
|
30394
31201
|
};
|
|
30395
31202
|
};
|
|
30396
31203
|
avatar: {
|
|
@@ -30530,6 +31337,22 @@ declare const PATTERN_REGISTRY: {
|
|
|
30530
31337
|
types: string[];
|
|
30531
31338
|
description: string;
|
|
30532
31339
|
};
|
|
31340
|
+
isSelected: {
|
|
31341
|
+
types: string[];
|
|
31342
|
+
description: string;
|
|
31343
|
+
};
|
|
31344
|
+
name: {
|
|
31345
|
+
types: string[];
|
|
31346
|
+
description: string;
|
|
31347
|
+
};
|
|
31348
|
+
level: {
|
|
31349
|
+
types: string[];
|
|
31350
|
+
description: string;
|
|
31351
|
+
};
|
|
31352
|
+
maxLevel: {
|
|
31353
|
+
types: string[];
|
|
31354
|
+
description: string;
|
|
31355
|
+
};
|
|
30533
31356
|
};
|
|
30534
31357
|
};
|
|
30535
31358
|
"progress-bar": {
|
|
@@ -33091,6 +33914,15 @@ declare const PATTERN_REGISTRY: {
|
|
|
33091
33914
|
suggestedFor: string[];
|
|
33092
33915
|
typicalSize: string;
|
|
33093
33916
|
propsSchema: {
|
|
33917
|
+
entity: {
|
|
33918
|
+
types: string[];
|
|
33919
|
+
description: string;
|
|
33920
|
+
required: boolean;
|
|
33921
|
+
};
|
|
33922
|
+
className: {
|
|
33923
|
+
types: string[];
|
|
33924
|
+
description: string;
|
|
33925
|
+
};
|
|
33094
33926
|
onIncrement: {
|
|
33095
33927
|
types: string[];
|
|
33096
33928
|
description: string;
|
|
@@ -33160,6 +33992,10 @@ declare const PATTERN_REGISTRY: {
|
|
|
33160
33992
|
types: string[];
|
|
33161
33993
|
description: string;
|
|
33162
33994
|
};
|
|
33995
|
+
children: {
|
|
33996
|
+
types: string[];
|
|
33997
|
+
description: string;
|
|
33998
|
+
};
|
|
33163
33999
|
};
|
|
33164
34000
|
};
|
|
33165
34001
|
"game-template": {
|
|
@@ -33169,6 +34005,15 @@ declare const PATTERN_REGISTRY: {
|
|
|
33169
34005
|
suggestedFor: string[];
|
|
33170
34006
|
typicalSize: string;
|
|
33171
34007
|
propsSchema: {
|
|
34008
|
+
entity: {
|
|
34009
|
+
types: string[];
|
|
34010
|
+
description: string;
|
|
34011
|
+
required: boolean;
|
|
34012
|
+
};
|
|
34013
|
+
className: {
|
|
34014
|
+
types: string[];
|
|
34015
|
+
description: string;
|
|
34016
|
+
};
|
|
33172
34017
|
title: {
|
|
33173
34018
|
types: string[];
|
|
33174
34019
|
description: string;
|
|
@@ -33194,10 +34039,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
33194
34039
|
types: string[];
|
|
33195
34040
|
description: string;
|
|
33196
34041
|
};
|
|
33197
|
-
className: {
|
|
33198
|
-
types: string[];
|
|
33199
|
-
description: string;
|
|
33200
|
-
};
|
|
33201
34042
|
};
|
|
33202
34043
|
};
|
|
33203
34044
|
"generic-app-template": {
|
|
@@ -33207,6 +34048,15 @@ declare const PATTERN_REGISTRY: {
|
|
|
33207
34048
|
suggestedFor: string[];
|
|
33208
34049
|
typicalSize: string;
|
|
33209
34050
|
propsSchema: {
|
|
34051
|
+
entity: {
|
|
34052
|
+
types: string[];
|
|
34053
|
+
description: string;
|
|
34054
|
+
required: boolean;
|
|
34055
|
+
};
|
|
34056
|
+
className: {
|
|
34057
|
+
types: string[];
|
|
34058
|
+
description: string;
|
|
34059
|
+
};
|
|
33210
34060
|
title: {
|
|
33211
34061
|
types: string[];
|
|
33212
34062
|
description: string;
|
|
@@ -33229,10 +34079,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
33229
34079
|
types: string[];
|
|
33230
34080
|
description: string;
|
|
33231
34081
|
};
|
|
33232
|
-
className: {
|
|
33233
|
-
types: string[];
|
|
33234
|
-
description: string;
|
|
33235
|
-
};
|
|
33236
34082
|
};
|
|
33237
34083
|
};
|
|
33238
34084
|
"game-shell": {
|
|
@@ -33258,6 +34104,10 @@ declare const PATTERN_REGISTRY: {
|
|
|
33258
34104
|
types: string[];
|
|
33259
34105
|
description: string;
|
|
33260
34106
|
};
|
|
34107
|
+
children: {
|
|
34108
|
+
types: string[];
|
|
34109
|
+
description: string;
|
|
34110
|
+
};
|
|
33261
34111
|
};
|
|
33262
34112
|
};
|
|
33263
34113
|
chart: {
|
|
@@ -33928,6 +34778,14 @@ declare const PATTERN_REGISTRY: {
|
|
|
33928
34778
|
suggestedFor: string[];
|
|
33929
34779
|
typicalSize: string;
|
|
33930
34780
|
propsSchema: {
|
|
34781
|
+
entity: {
|
|
34782
|
+
types: string[];
|
|
34783
|
+
description: string;
|
|
34784
|
+
};
|
|
34785
|
+
data: {
|
|
34786
|
+
types: string[];
|
|
34787
|
+
description: string;
|
|
34788
|
+
};
|
|
33931
34789
|
className: {
|
|
33932
34790
|
types: string[];
|
|
33933
34791
|
description: string;
|
|
@@ -33940,7 +34798,35 @@ declare const PATTERN_REGISTRY: {
|
|
|
33940
34798
|
types: string[];
|
|
33941
34799
|
description: string;
|
|
33942
34800
|
};
|
|
33943
|
-
|
|
34801
|
+
sortBy: {
|
|
34802
|
+
types: string[];
|
|
34803
|
+
description: string;
|
|
34804
|
+
};
|
|
34805
|
+
sortDirection: {
|
|
34806
|
+
types: string[];
|
|
34807
|
+
description: string;
|
|
34808
|
+
};
|
|
34809
|
+
searchValue: {
|
|
34810
|
+
types: string[];
|
|
34811
|
+
description: string;
|
|
34812
|
+
};
|
|
34813
|
+
page: {
|
|
34814
|
+
types: string[];
|
|
34815
|
+
description: string;
|
|
34816
|
+
};
|
|
34817
|
+
pageSize: {
|
|
34818
|
+
types: string[];
|
|
34819
|
+
description: string;
|
|
34820
|
+
};
|
|
34821
|
+
totalCount: {
|
|
34822
|
+
types: string[];
|
|
34823
|
+
description: string;
|
|
34824
|
+
};
|
|
34825
|
+
activeFilters: {
|
|
34826
|
+
types: string[];
|
|
34827
|
+
description: string;
|
|
34828
|
+
};
|
|
34829
|
+
selectedIds: {
|
|
33944
34830
|
types: string[];
|
|
33945
34831
|
description: string;
|
|
33946
34832
|
};
|
|
@@ -34028,6 +34914,14 @@ declare const PATTERN_REGISTRY: {
|
|
|
34028
34914
|
types: string[];
|
|
34029
34915
|
description: string;
|
|
34030
34916
|
};
|
|
34917
|
+
boardWidth: {
|
|
34918
|
+
types: string[];
|
|
34919
|
+
description: string;
|
|
34920
|
+
};
|
|
34921
|
+
boardHeight: {
|
|
34922
|
+
types: string[];
|
|
34923
|
+
description: string;
|
|
34924
|
+
};
|
|
34031
34925
|
diamondTopY: {
|
|
34032
34926
|
types: string[];
|
|
34033
34927
|
description: string;
|
|
@@ -34077,6 +34971,15 @@ declare const PATTERN_REGISTRY: {
|
|
|
34077
34971
|
suggestedFor: string[];
|
|
34078
34972
|
typicalSize: string;
|
|
34079
34973
|
propsSchema: {
|
|
34974
|
+
entity: {
|
|
34975
|
+
types: string[];
|
|
34976
|
+
description: string;
|
|
34977
|
+
required: boolean;
|
|
34978
|
+
};
|
|
34979
|
+
className: {
|
|
34980
|
+
types: string[];
|
|
34981
|
+
description: string;
|
|
34982
|
+
};
|
|
34080
34983
|
scale: {
|
|
34081
34984
|
types: string[];
|
|
34082
34985
|
description: string;
|
|
@@ -34094,6 +34997,15 @@ declare const PATTERN_REGISTRY: {
|
|
|
34094
34997
|
suggestedFor: string[];
|
|
34095
34998
|
typicalSize: string;
|
|
34096
34999
|
propsSchema: {
|
|
35000
|
+
entity: {
|
|
35001
|
+
types: string[];
|
|
35002
|
+
description: string;
|
|
35003
|
+
required: boolean;
|
|
35004
|
+
};
|
|
35005
|
+
className: {
|
|
35006
|
+
types: string[];
|
|
35007
|
+
description: string;
|
|
35008
|
+
};
|
|
34097
35009
|
scale: {
|
|
34098
35010
|
types: string[];
|
|
34099
35011
|
description: string;
|
|
@@ -34107,6 +35019,15 @@ declare const PATTERN_REGISTRY: {
|
|
|
34107
35019
|
suggestedFor: string[];
|
|
34108
35020
|
typicalSize: string;
|
|
34109
35021
|
propsSchema: {
|
|
35022
|
+
entity: {
|
|
35023
|
+
types: string[];
|
|
35024
|
+
description: string;
|
|
35025
|
+
required: boolean;
|
|
35026
|
+
};
|
|
35027
|
+
className: {
|
|
35028
|
+
types: string[];
|
|
35029
|
+
description: string;
|
|
35030
|
+
};
|
|
34110
35031
|
scale: {
|
|
34111
35032
|
types: string[];
|
|
34112
35033
|
description: string;
|
|
@@ -34484,7 +35405,54 @@ declare const PATTERN_REGISTRY: {
|
|
|
34484
35405
|
entity: {
|
|
34485
35406
|
types: string[];
|
|
34486
35407
|
description: string;
|
|
34487
|
-
|
|
35408
|
+
};
|
|
35409
|
+
data: {
|
|
35410
|
+
types: string[];
|
|
35411
|
+
description: string;
|
|
35412
|
+
};
|
|
35413
|
+
className: {
|
|
35414
|
+
types: string[];
|
|
35415
|
+
description: string;
|
|
35416
|
+
};
|
|
35417
|
+
isLoading: {
|
|
35418
|
+
types: string[];
|
|
35419
|
+
description: string;
|
|
35420
|
+
};
|
|
35421
|
+
error: {
|
|
35422
|
+
types: string[];
|
|
35423
|
+
description: string;
|
|
35424
|
+
};
|
|
35425
|
+
sortBy: {
|
|
35426
|
+
types: string[];
|
|
35427
|
+
description: string;
|
|
35428
|
+
};
|
|
35429
|
+
sortDirection: {
|
|
35430
|
+
types: string[];
|
|
35431
|
+
description: string;
|
|
35432
|
+
};
|
|
35433
|
+
searchValue: {
|
|
35434
|
+
types: string[];
|
|
35435
|
+
description: string;
|
|
35436
|
+
};
|
|
35437
|
+
page: {
|
|
35438
|
+
types: string[];
|
|
35439
|
+
description: string;
|
|
35440
|
+
};
|
|
35441
|
+
pageSize: {
|
|
35442
|
+
types: string[];
|
|
35443
|
+
description: string;
|
|
35444
|
+
};
|
|
35445
|
+
totalCount: {
|
|
35446
|
+
types: string[];
|
|
35447
|
+
description: string;
|
|
35448
|
+
};
|
|
35449
|
+
activeFilters: {
|
|
35450
|
+
types: string[];
|
|
35451
|
+
description: string;
|
|
35452
|
+
};
|
|
35453
|
+
selectedIds: {
|
|
35454
|
+
types: string[];
|
|
35455
|
+
description: string;
|
|
34488
35456
|
};
|
|
34489
35457
|
scale: {
|
|
34490
35458
|
types: string[];
|
|
@@ -34570,10 +35538,6 @@ declare const PATTERN_REGISTRY: {
|
|
|
34570
35538
|
types: string[];
|
|
34571
35539
|
description: string;
|
|
34572
35540
|
};
|
|
34573
|
-
className: {
|
|
34574
|
-
types: string[];
|
|
34575
|
-
description: string;
|
|
34576
|
-
};
|
|
34577
35541
|
};
|
|
34578
35542
|
};
|
|
34579
35543
|
"collapsible-section": {
|
|
@@ -35079,6 +36043,15 @@ declare const PATTERN_REGISTRY: {
|
|
|
35079
36043
|
suggestedFor: string[];
|
|
35080
36044
|
typicalSize: string;
|
|
35081
36045
|
propsSchema: {
|
|
36046
|
+
entity: {
|
|
36047
|
+
types: string[];
|
|
36048
|
+
description: string;
|
|
36049
|
+
required: boolean;
|
|
36050
|
+
};
|
|
36051
|
+
className: {
|
|
36052
|
+
types: string[];
|
|
36053
|
+
description: string;
|
|
36054
|
+
};
|
|
35082
36055
|
cameraMode: {
|
|
35083
36056
|
types: string[];
|
|
35084
36057
|
description: string;
|
|
@@ -35144,6 +36117,15 @@ declare const PATTERN_REGISTRY: {
|
|
|
35144
36117
|
suggestedFor: string[];
|
|
35145
36118
|
typicalSize: string;
|
|
35146
36119
|
propsSchema: {
|
|
36120
|
+
entity: {
|
|
36121
|
+
types: string[];
|
|
36122
|
+
description: string;
|
|
36123
|
+
required: boolean;
|
|
36124
|
+
};
|
|
36125
|
+
className: {
|
|
36126
|
+
types: string[];
|
|
36127
|
+
description: string;
|
|
36128
|
+
};
|
|
35147
36129
|
cameraMode: {
|
|
35148
36130
|
types: string[];
|
|
35149
36131
|
description: string;
|
|
@@ -35205,6 +36187,15 @@ declare const PATTERN_REGISTRY: {
|
|
|
35205
36187
|
suggestedFor: string[];
|
|
35206
36188
|
typicalSize: string;
|
|
35207
36189
|
propsSchema: {
|
|
36190
|
+
entity: {
|
|
36191
|
+
types: string[];
|
|
36192
|
+
description: string;
|
|
36193
|
+
required: boolean;
|
|
36194
|
+
};
|
|
36195
|
+
className: {
|
|
36196
|
+
types: string[];
|
|
36197
|
+
description: string;
|
|
36198
|
+
};
|
|
35208
36199
|
cameraMode: {
|
|
35209
36200
|
types: string[];
|
|
35210
36201
|
description: string;
|
|
@@ -38982,21 +39973,13 @@ declare const EVENT_CONTRACTS: {
|
|
|
38982
39973
|
entityAware: boolean;
|
|
38983
39974
|
};
|
|
38984
39975
|
"dialogue-box": {
|
|
38985
|
-
emits:
|
|
38986
|
-
event: string;
|
|
38987
|
-
trigger: string;
|
|
38988
|
-
payload: {
|
|
38989
|
-
type: string;
|
|
38990
|
-
};
|
|
38991
|
-
optional?: undefined;
|
|
38992
|
-
} | {
|
|
39976
|
+
emits: {
|
|
38993
39977
|
event: string;
|
|
38994
39978
|
trigger: string;
|
|
38995
39979
|
payload: {
|
|
38996
39980
|
type: string;
|
|
38997
39981
|
};
|
|
38998
|
-
|
|
38999
|
-
})[];
|
|
39982
|
+
}[];
|
|
39000
39983
|
requires: never[];
|
|
39001
39984
|
entityAware: boolean;
|
|
39002
39985
|
};
|
|
@@ -39261,10 +40244,77 @@ declare const EVENT_CONTRACTS: {
|
|
|
39261
40244
|
requires: never[];
|
|
39262
40245
|
entityAware: boolean;
|
|
39263
40246
|
};
|
|
40247
|
+
"action-buttons": {
|
|
40248
|
+
emits: {
|
|
40249
|
+
event: string;
|
|
40250
|
+
trigger: string;
|
|
40251
|
+
payload: {
|
|
40252
|
+
type: string;
|
|
40253
|
+
};
|
|
40254
|
+
}[];
|
|
40255
|
+
requires: never[];
|
|
40256
|
+
entityAware: boolean;
|
|
40257
|
+
};
|
|
40258
|
+
"d-pad": {
|
|
40259
|
+
emits: {
|
|
40260
|
+
event: string;
|
|
40261
|
+
trigger: string;
|
|
40262
|
+
payload: {
|
|
40263
|
+
type: string;
|
|
40264
|
+
};
|
|
40265
|
+
}[];
|
|
40266
|
+
requires: never[];
|
|
40267
|
+
entityAware: boolean;
|
|
40268
|
+
};
|
|
40269
|
+
"isometric-canvas": {
|
|
40270
|
+
emits: {
|
|
40271
|
+
event: string;
|
|
40272
|
+
trigger: string;
|
|
40273
|
+
payload: {
|
|
40274
|
+
type: string;
|
|
40275
|
+
};
|
|
40276
|
+
}[];
|
|
40277
|
+
requires: never[];
|
|
40278
|
+
entityAware: boolean;
|
|
40279
|
+
};
|
|
40280
|
+
"trait-slot": {
|
|
40281
|
+
emits: {
|
|
40282
|
+
event: string;
|
|
40283
|
+
trigger: string;
|
|
40284
|
+
payload: {
|
|
40285
|
+
type: string;
|
|
40286
|
+
};
|
|
40287
|
+
}[];
|
|
40288
|
+
requires: never[];
|
|
40289
|
+
entityAware: boolean;
|
|
40290
|
+
};
|
|
40291
|
+
"world-map-board": {
|
|
40292
|
+
emits: {
|
|
40293
|
+
event: string;
|
|
40294
|
+
trigger: string;
|
|
40295
|
+
payload: {
|
|
40296
|
+
type: string;
|
|
40297
|
+
};
|
|
40298
|
+
}[];
|
|
40299
|
+
requires: never[];
|
|
40300
|
+
entityAware: boolean;
|
|
40301
|
+
};
|
|
39264
40302
|
};
|
|
39265
40303
|
};
|
|
39266
|
-
|
|
39267
|
-
|
|
40304
|
+
type PatternEntry = {
|
|
40305
|
+
type: string;
|
|
40306
|
+
category: string;
|
|
40307
|
+
description?: string;
|
|
40308
|
+
suggestedFor?: string[];
|
|
40309
|
+
typicalSize?: string;
|
|
40310
|
+
propsSchema?: Record<string, {
|
|
40311
|
+
types?: string[];
|
|
40312
|
+
required?: boolean;
|
|
40313
|
+
}>;
|
|
40314
|
+
entityAware?: boolean;
|
|
40315
|
+
};
|
|
40316
|
+
declare function getPatternDefinition(patternType: string): PatternEntry | null;
|
|
40317
|
+
declare function getComponentForPattern(patternType: string): string | null;
|
|
39268
40318
|
/**
|
|
39269
40319
|
* Check if a pattern is entity-aware (requires data injection).
|
|
39270
40320
|
*
|