@almadar/patterns 2.3.0 → 2.6.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 +213 -3
- package/dist/event-contracts.json +2 -2
- package/dist/index.d.ts +13431 -7150
- package/dist/index.js +2857 -158
- package/dist/index.js.map +1 -1
- package/dist/patterns-registry.json +2558 -69
- package/dist/registry.json +2558 -69
- package/package.json +1 -1
package/dist/registry.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-03-
|
|
3
|
+
"exportedAt": "2026-03-11T04:10:55.563Z",
|
|
4
4
|
"patterns": {
|
|
5
5
|
"entity-table": {
|
|
6
6
|
"type": "entity-table",
|
|
@@ -2158,9 +2158,10 @@
|
|
|
2158
2158
|
},
|
|
2159
2159
|
"icon": {
|
|
2160
2160
|
"types": [
|
|
2161
|
-
"icon"
|
|
2161
|
+
"icon",
|
|
2162
|
+
"string"
|
|
2162
2163
|
],
|
|
2163
|
-
"description": "Icon to display"
|
|
2164
|
+
"description": "Icon to display (Lucide component or icon name string)"
|
|
2164
2165
|
},
|
|
2165
2166
|
"iconBg": {
|
|
2166
2167
|
"types": [
|
|
@@ -2197,6 +2198,12 @@
|
|
|
2197
2198
|
"boolean"
|
|
2198
2199
|
],
|
|
2199
2200
|
"description": "Compact display mode"
|
|
2201
|
+
},
|
|
2202
|
+
"sparklineData": {
|
|
2203
|
+
"types": [
|
|
2204
|
+
"unknown"
|
|
2205
|
+
],
|
|
2206
|
+
"description": "Sparkline data points for an inline trend chart"
|
|
2200
2207
|
}
|
|
2201
2208
|
}
|
|
2202
2209
|
},
|
|
@@ -2386,6 +2393,12 @@
|
|
|
2386
2393
|
"string"
|
|
2387
2394
|
],
|
|
2388
2395
|
"description": "Declarative close event — emits UI:{closeEvent} via eventBus when modal should close"
|
|
2396
|
+
},
|
|
2397
|
+
"swipeDownToClose": {
|
|
2398
|
+
"types": [
|
|
2399
|
+
"boolean"
|
|
2400
|
+
],
|
|
2401
|
+
"description": "Enable swipe-down-to-close on mobile bottom sheet (default: true)"
|
|
2389
2402
|
}
|
|
2390
2403
|
}
|
|
2391
2404
|
},
|
|
@@ -3520,6 +3533,12 @@
|
|
|
3520
3533
|
"string"
|
|
3521
3534
|
],
|
|
3522
3535
|
"description": "Badge label text (alternative to children for schema-driven rendering)"
|
|
3536
|
+
},
|
|
3537
|
+
"icon": {
|
|
3538
|
+
"types": [
|
|
3539
|
+
"node"
|
|
3540
|
+
],
|
|
3541
|
+
"description": "Icon name (Lucide icon string) or React node"
|
|
3523
3542
|
}
|
|
3524
3543
|
}
|
|
3525
3544
|
},
|
|
@@ -3752,6 +3771,18 @@
|
|
|
3752
3771
|
"number"
|
|
3753
3772
|
],
|
|
3754
3773
|
"description": "Maximum level"
|
|
3774
|
+
},
|
|
3775
|
+
"longPressEvent": {
|
|
3776
|
+
"types": [
|
|
3777
|
+
"string"
|
|
3778
|
+
],
|
|
3779
|
+
"description": "Event emitted on long press: UI:{longPressEvent}"
|
|
3780
|
+
},
|
|
3781
|
+
"longPressPayload": {
|
|
3782
|
+
"types": [
|
|
3783
|
+
"object"
|
|
3784
|
+
],
|
|
3785
|
+
"description": "Additional payload for long-press events"
|
|
3755
3786
|
}
|
|
3756
3787
|
}
|
|
3757
3788
|
},
|
|
@@ -4854,6 +4885,12 @@
|
|
|
4854
4885
|
"object"
|
|
4855
4886
|
],
|
|
4856
4887
|
"description": "Payload to include with the action event"
|
|
4888
|
+
},
|
|
4889
|
+
"responsive": {
|
|
4890
|
+
"types": [
|
|
4891
|
+
"boolean"
|
|
4892
|
+
],
|
|
4893
|
+
"description": "When true, horizontal stacks flip to vertical below the md breakpoint (768px)"
|
|
4857
4894
|
}
|
|
4858
4895
|
}
|
|
4859
4896
|
},
|
|
@@ -8486,7 +8523,7 @@
|
|
|
8486
8523
|
},
|
|
8487
8524
|
"graph-canvas": {
|
|
8488
8525
|
"type": "graph-canvas",
|
|
8489
|
-
"category": "
|
|
8526
|
+
"category": "game",
|
|
8490
8527
|
"description": "Force-directed graph visualization for node-link data with interactive zoom, pan, and layout",
|
|
8491
8528
|
"suggestedFor": [
|
|
8492
8529
|
"knowledge graphs",
|
|
@@ -8822,18 +8859,6 @@
|
|
|
8822
8859
|
],
|
|
8823
8860
|
"typicalSize": "large",
|
|
8824
8861
|
"propsSchema": {
|
|
8825
|
-
"entity": {
|
|
8826
|
-
"types": [
|
|
8827
|
-
"string"
|
|
8828
|
-
],
|
|
8829
|
-
"description": "Entity name for schema-driven integration"
|
|
8830
|
-
},
|
|
8831
|
-
"data": {
|
|
8832
|
-
"types": [
|
|
8833
|
-
"array"
|
|
8834
|
-
],
|
|
8835
|
-
"description": "Data array provided by the trait via render-ui"
|
|
8836
|
-
},
|
|
8837
8862
|
"className": {
|
|
8838
8863
|
"types": [
|
|
8839
8864
|
"string"
|
|
@@ -8848,63 +8873,15 @@
|
|
|
8848
8873
|
},
|
|
8849
8874
|
"error": {
|
|
8850
8875
|
"types": [
|
|
8851
|
-
"
|
|
8876
|
+
"error"
|
|
8852
8877
|
],
|
|
8853
8878
|
"description": "Error state"
|
|
8854
8879
|
},
|
|
8855
|
-
"sortBy": {
|
|
8856
|
-
"types": [
|
|
8857
|
-
"string"
|
|
8858
|
-
],
|
|
8859
|
-
"description": "Current sort field"
|
|
8860
|
-
},
|
|
8861
|
-
"sortDirection": {
|
|
8862
|
-
"types": [
|
|
8863
|
-
"string"
|
|
8864
|
-
],
|
|
8865
|
-
"description": "Current sort direction"
|
|
8866
|
-
},
|
|
8867
|
-
"searchValue": {
|
|
8868
|
-
"types": [
|
|
8869
|
-
"string"
|
|
8870
|
-
],
|
|
8871
|
-
"description": "Current search query value"
|
|
8872
|
-
},
|
|
8873
|
-
"page": {
|
|
8874
|
-
"types": [
|
|
8875
|
-
"number"
|
|
8876
|
-
],
|
|
8877
|
-
"description": "Current page number"
|
|
8878
|
-
},
|
|
8879
|
-
"pageSize": {
|
|
8880
|
-
"types": [
|
|
8881
|
-
"number"
|
|
8882
|
-
],
|
|
8883
|
-
"description": "Number of items per page"
|
|
8884
|
-
},
|
|
8885
|
-
"totalCount": {
|
|
8886
|
-
"types": [
|
|
8887
|
-
"number"
|
|
8888
|
-
],
|
|
8889
|
-
"description": "Total number of items"
|
|
8890
|
-
},
|
|
8891
|
-
"activeFilters": {
|
|
8892
|
-
"types": [
|
|
8893
|
-
"object"
|
|
8894
|
-
],
|
|
8895
|
-
"description": "Active filters"
|
|
8896
|
-
},
|
|
8897
|
-
"selectedIds": {
|
|
8898
|
-
"types": [
|
|
8899
|
-
"array"
|
|
8900
|
-
],
|
|
8901
|
-
"description": "Currently selected item IDs"
|
|
8902
|
-
},
|
|
8903
8880
|
"tiles": {
|
|
8904
8881
|
"types": [
|
|
8905
8882
|
"array"
|
|
8906
8883
|
],
|
|
8907
|
-
"description": "
|
|
8884
|
+
"description": "--- Grid data ---"
|
|
8908
8885
|
},
|
|
8909
8886
|
"units": {
|
|
8910
8887
|
"types": [
|
|
@@ -8952,19 +8929,19 @@
|
|
|
8952
8929
|
"types": [
|
|
8953
8930
|
"function"
|
|
8954
8931
|
],
|
|
8955
|
-
"description": "
|
|
8932
|
+
"description": "onUnitClick prop"
|
|
8956
8933
|
},
|
|
8957
8934
|
"onTileHover": {
|
|
8958
8935
|
"types": [
|
|
8959
8936
|
"function"
|
|
8960
8937
|
],
|
|
8961
|
-
"description": "
|
|
8938
|
+
"description": "onTileHover prop"
|
|
8962
8939
|
},
|
|
8963
8940
|
"onTileLeave": {
|
|
8964
8941
|
"types": [
|
|
8965
8942
|
"function"
|
|
8966
8943
|
],
|
|
8967
|
-
"description": "
|
|
8944
|
+
"description": "onTileLeave prop"
|
|
8968
8945
|
},
|
|
8969
8946
|
"tileClickEvent": {
|
|
8970
8947
|
"types": [
|
|
@@ -12611,6 +12588,7 @@
|
|
|
12611
12588
|
"propsSchema": {
|
|
12612
12589
|
"preset": {
|
|
12613
12590
|
"types": [
|
|
12591
|
+
"string",
|
|
12614
12592
|
"physicspreset"
|
|
12615
12593
|
],
|
|
12616
12594
|
"description": "preset prop",
|
|
@@ -13715,6 +13693,30 @@
|
|
|
13715
13693
|
"string"
|
|
13716
13694
|
],
|
|
13717
13695
|
"description": "Additional CSS classes"
|
|
13696
|
+
},
|
|
13697
|
+
"longPressEvent": {
|
|
13698
|
+
"types": [
|
|
13699
|
+
"string"
|
|
13700
|
+
],
|
|
13701
|
+
"description": "Event emitted on long-press of a time slot: UI:{longPressEvent} with { date, time }"
|
|
13702
|
+
},
|
|
13703
|
+
"longPressPayload": {
|
|
13704
|
+
"types": [
|
|
13705
|
+
"object"
|
|
13706
|
+
],
|
|
13707
|
+
"description": "Additional payload for long-press events"
|
|
13708
|
+
},
|
|
13709
|
+
"swipeLeftEvent": {
|
|
13710
|
+
"types": [
|
|
13711
|
+
"string"
|
|
13712
|
+
],
|
|
13713
|
+
"description": "Event emitted on swipe left (next week): UI:{swipeLeftEvent}"
|
|
13714
|
+
},
|
|
13715
|
+
"swipeRightEvent": {
|
|
13716
|
+
"types": [
|
|
13717
|
+
"string"
|
|
13718
|
+
],
|
|
13719
|
+
"description": "Event emitted on swipe right (prev week): UI:{swipeRightEvent}"
|
|
13718
13720
|
}
|
|
13719
13721
|
}
|
|
13720
13722
|
},
|
|
@@ -14103,6 +14105,48 @@
|
|
|
14103
14105
|
"string"
|
|
14104
14106
|
],
|
|
14105
14107
|
"description": "Entity field name containing an image URL for card thumbnails"
|
|
14108
|
+
},
|
|
14109
|
+
"selectable": {
|
|
14110
|
+
"types": [
|
|
14111
|
+
"boolean"
|
|
14112
|
+
],
|
|
14113
|
+
"description": "Enable multi-select with checkboxes"
|
|
14114
|
+
},
|
|
14115
|
+
"selectionEvent": {
|
|
14116
|
+
"types": [
|
|
14117
|
+
"string"
|
|
14118
|
+
],
|
|
14119
|
+
"description": "Selection change event name (emits UI:{selectionEvent} with { selectedIds: string[] })"
|
|
14120
|
+
},
|
|
14121
|
+
"infiniteScroll": {
|
|
14122
|
+
"types": [
|
|
14123
|
+
"boolean"
|
|
14124
|
+
],
|
|
14125
|
+
"description": "Enable infinite scroll loading"
|
|
14126
|
+
},
|
|
14127
|
+
"loadMoreEvent": {
|
|
14128
|
+
"types": [
|
|
14129
|
+
"string"
|
|
14130
|
+
],
|
|
14131
|
+
"description": "Event emitted when more items needed: UI:{loadMoreEvent}"
|
|
14132
|
+
},
|
|
14133
|
+
"hasMore": {
|
|
14134
|
+
"types": [
|
|
14135
|
+
"boolean"
|
|
14136
|
+
],
|
|
14137
|
+
"description": "Whether more items are available for infinite scroll"
|
|
14138
|
+
},
|
|
14139
|
+
"children": {
|
|
14140
|
+
"types": [
|
|
14141
|
+
"function"
|
|
14142
|
+
],
|
|
14143
|
+
"description": "Render prop for custom per-item content. When provided, `fields` and `itemActions` are ignored."
|
|
14144
|
+
},
|
|
14145
|
+
"pageSize": {
|
|
14146
|
+
"types": [
|
|
14147
|
+
"number"
|
|
14148
|
+
],
|
|
14149
|
+
"description": "Max items to show before \"Show More\" button. Defaults to 0 (disabled)."
|
|
14106
14150
|
}
|
|
14107
14151
|
}
|
|
14108
14152
|
},
|
|
@@ -14153,6 +14197,24 @@
|
|
|
14153
14197
|
],
|
|
14154
14198
|
"description": "Visual variant"
|
|
14155
14199
|
},
|
|
14200
|
+
"groupBy": {
|
|
14201
|
+
"types": [
|
|
14202
|
+
"string"
|
|
14203
|
+
],
|
|
14204
|
+
"description": "Group items by a field value (renders section headers between groups)"
|
|
14205
|
+
},
|
|
14206
|
+
"senderField": {
|
|
14207
|
+
"types": [
|
|
14208
|
+
"string"
|
|
14209
|
+
],
|
|
14210
|
+
"description": "Field name identifying the sender (used with variant: \"message\")"
|
|
14211
|
+
},
|
|
14212
|
+
"currentUser": {
|
|
14213
|
+
"types": [
|
|
14214
|
+
"string"
|
|
14215
|
+
],
|
|
14216
|
+
"description": "Current user identifier; messages matching this value align right (used with variant: \"message\")"
|
|
14217
|
+
},
|
|
14156
14218
|
"className": {
|
|
14157
14219
|
"types": [
|
|
14158
14220
|
"string"
|
|
@@ -14170,6 +14232,2433 @@
|
|
|
14170
14232
|
"error"
|
|
14171
14233
|
],
|
|
14172
14234
|
"description": "Error state"
|
|
14235
|
+
},
|
|
14236
|
+
"reorderable": {
|
|
14237
|
+
"types": [
|
|
14238
|
+
"boolean"
|
|
14239
|
+
],
|
|
14240
|
+
"description": "Enable drag-to-reorder with grip handles"
|
|
14241
|
+
},
|
|
14242
|
+
"reorderEvent": {
|
|
14243
|
+
"types": [
|
|
14244
|
+
"string"
|
|
14245
|
+
],
|
|
14246
|
+
"description": "Event emitted on reorder: UI:{reorderEvent} with { fromIndex, toIndex }"
|
|
14247
|
+
},
|
|
14248
|
+
"swipeLeftEvent": {
|
|
14249
|
+
"types": [
|
|
14250
|
+
"string"
|
|
14251
|
+
],
|
|
14252
|
+
"description": "Event emitted on left swipe: UI:{swipeLeftEvent} with { row }"
|
|
14253
|
+
},
|
|
14254
|
+
"swipeLeftActions": {
|
|
14255
|
+
"types": [
|
|
14256
|
+
"unknown"
|
|
14257
|
+
],
|
|
14258
|
+
"description": "Actions revealed on left swipe"
|
|
14259
|
+
},
|
|
14260
|
+
"swipeRightEvent": {
|
|
14261
|
+
"types": [
|
|
14262
|
+
"string"
|
|
14263
|
+
],
|
|
14264
|
+
"description": "Event emitted on right swipe: UI:{swipeRightEvent} with { row }"
|
|
14265
|
+
},
|
|
14266
|
+
"swipeRightActions": {
|
|
14267
|
+
"types": [
|
|
14268
|
+
"unknown"
|
|
14269
|
+
],
|
|
14270
|
+
"description": "Actions revealed on right swipe"
|
|
14271
|
+
},
|
|
14272
|
+
"longPressEvent": {
|
|
14273
|
+
"types": [
|
|
14274
|
+
"string"
|
|
14275
|
+
],
|
|
14276
|
+
"description": "Event emitted on long press: UI:{longPressEvent} with { row }"
|
|
14277
|
+
},
|
|
14278
|
+
"infiniteScroll": {
|
|
14279
|
+
"types": [
|
|
14280
|
+
"boolean"
|
|
14281
|
+
],
|
|
14282
|
+
"description": "Enable infinite scroll loading"
|
|
14283
|
+
},
|
|
14284
|
+
"loadMoreEvent": {
|
|
14285
|
+
"types": [
|
|
14286
|
+
"string"
|
|
14287
|
+
],
|
|
14288
|
+
"description": "Event emitted when more items needed: UI:{loadMoreEvent}"
|
|
14289
|
+
},
|
|
14290
|
+
"hasMore": {
|
|
14291
|
+
"types": [
|
|
14292
|
+
"boolean"
|
|
14293
|
+
],
|
|
14294
|
+
"description": "Whether more items are available for infinite scroll"
|
|
14295
|
+
},
|
|
14296
|
+
"children": {
|
|
14297
|
+
"types": [
|
|
14298
|
+
"function"
|
|
14299
|
+
],
|
|
14300
|
+
"description": "Render prop for custom per-item content. When provided, `fields` and `itemActions` are ignored."
|
|
14301
|
+
},
|
|
14302
|
+
"pageSize": {
|
|
14303
|
+
"types": [
|
|
14304
|
+
"number"
|
|
14305
|
+
],
|
|
14306
|
+
"description": "Max items to show before \"Show More\" button. Defaults to 5. Set to 0 to disable."
|
|
14307
|
+
}
|
|
14308
|
+
}
|
|
14309
|
+
},
|
|
14310
|
+
"platformer-canvas": {
|
|
14311
|
+
"type": "platformer-canvas",
|
|
14312
|
+
"category": "game",
|
|
14313
|
+
"description": "PlatformerCanvas component",
|
|
14314
|
+
"suggestedFor": [
|
|
14315
|
+
"platformer",
|
|
14316
|
+
"canvas",
|
|
14317
|
+
"platformer canvas"
|
|
14318
|
+
],
|
|
14319
|
+
"typicalSize": "large",
|
|
14320
|
+
"propsSchema": {
|
|
14321
|
+
"player": {
|
|
14322
|
+
"types": [
|
|
14323
|
+
"platformerplayer"
|
|
14324
|
+
],
|
|
14325
|
+
"description": "Player state data"
|
|
14326
|
+
},
|
|
14327
|
+
"platforms": {
|
|
14328
|
+
"types": [
|
|
14329
|
+
"unknown"
|
|
14330
|
+
],
|
|
14331
|
+
"description": "Static platforms / level geometry"
|
|
14332
|
+
},
|
|
14333
|
+
"worldWidth": {
|
|
14334
|
+
"types": [
|
|
14335
|
+
"number"
|
|
14336
|
+
],
|
|
14337
|
+
"description": "World dimensions"
|
|
14338
|
+
},
|
|
14339
|
+
"worldHeight": {
|
|
14340
|
+
"types": [
|
|
14341
|
+
"number"
|
|
14342
|
+
],
|
|
14343
|
+
"description": "worldHeight prop"
|
|
14344
|
+
},
|
|
14345
|
+
"canvasWidth": {
|
|
14346
|
+
"types": [
|
|
14347
|
+
"number"
|
|
14348
|
+
],
|
|
14349
|
+
"description": "Canvas display size"
|
|
14350
|
+
},
|
|
14351
|
+
"canvasHeight": {
|
|
14352
|
+
"types": [
|
|
14353
|
+
"number"
|
|
14354
|
+
],
|
|
14355
|
+
"description": "canvasHeight prop"
|
|
14356
|
+
},
|
|
14357
|
+
"followCamera": {
|
|
14358
|
+
"types": [
|
|
14359
|
+
"boolean"
|
|
14360
|
+
],
|
|
14361
|
+
"description": "Camera follows player"
|
|
14362
|
+
},
|
|
14363
|
+
"bgColor": {
|
|
14364
|
+
"types": [
|
|
14365
|
+
"string"
|
|
14366
|
+
],
|
|
14367
|
+
"description": "Background color"
|
|
14368
|
+
},
|
|
14369
|
+
"playerSprite": {
|
|
14370
|
+
"types": [
|
|
14371
|
+
"string"
|
|
14372
|
+
],
|
|
14373
|
+
"description": "Player sprite image URL"
|
|
14374
|
+
},
|
|
14375
|
+
"tileSprites": {
|
|
14376
|
+
"types": [
|
|
14377
|
+
"object"
|
|
14378
|
+
],
|
|
14379
|
+
"description": "Map of platform type to tile sprite URL"
|
|
14380
|
+
},
|
|
14381
|
+
"backgroundImage": {
|
|
14382
|
+
"types": [
|
|
14383
|
+
"string"
|
|
14384
|
+
],
|
|
14385
|
+
"description": "Background image URL"
|
|
14386
|
+
},
|
|
14387
|
+
"assetBaseUrl": {
|
|
14388
|
+
"types": [
|
|
14389
|
+
"string"
|
|
14390
|
+
],
|
|
14391
|
+
"description": "Base URL prefix for asset URLs"
|
|
14392
|
+
},
|
|
14393
|
+
"leftEvent": {
|
|
14394
|
+
"types": [
|
|
14395
|
+
"string"
|
|
14396
|
+
],
|
|
14397
|
+
"description": "Event names for keyboard controls"
|
|
14398
|
+
},
|
|
14399
|
+
"rightEvent": {
|
|
14400
|
+
"types": [
|
|
14401
|
+
"string"
|
|
14402
|
+
],
|
|
14403
|
+
"description": "rightEvent prop"
|
|
14404
|
+
},
|
|
14405
|
+
"jumpEvent": {
|
|
14406
|
+
"types": [
|
|
14407
|
+
"string"
|
|
14408
|
+
],
|
|
14409
|
+
"description": "jumpEvent prop"
|
|
14410
|
+
},
|
|
14411
|
+
"stopEvent": {
|
|
14412
|
+
"types": [
|
|
14413
|
+
"string"
|
|
14414
|
+
],
|
|
14415
|
+
"description": "stopEvent prop"
|
|
14416
|
+
},
|
|
14417
|
+
"className": {
|
|
14418
|
+
"types": [
|
|
14419
|
+
"string"
|
|
14420
|
+
],
|
|
14421
|
+
"description": "Additional CSS classes"
|
|
14422
|
+
}
|
|
14423
|
+
}
|
|
14424
|
+
},
|
|
14425
|
+
"map-view": {
|
|
14426
|
+
"type": "map-view",
|
|
14427
|
+
"category": "component",
|
|
14428
|
+
"description": "MapView component",
|
|
14429
|
+
"suggestedFor": [
|
|
14430
|
+
"map",
|
|
14431
|
+
"view",
|
|
14432
|
+
"map view"
|
|
14433
|
+
],
|
|
14434
|
+
"typicalSize": "medium",
|
|
14435
|
+
"propsSchema": {
|
|
14436
|
+
"markers": {
|
|
14437
|
+
"types": [
|
|
14438
|
+
"array"
|
|
14439
|
+
],
|
|
14440
|
+
"description": "Array of markers to display"
|
|
14441
|
+
},
|
|
14442
|
+
"centerLat": {
|
|
14443
|
+
"types": [
|
|
14444
|
+
"number"
|
|
14445
|
+
],
|
|
14446
|
+
"description": "Map center latitude"
|
|
14447
|
+
},
|
|
14448
|
+
"centerLng": {
|
|
14449
|
+
"types": [
|
|
14450
|
+
"number"
|
|
14451
|
+
],
|
|
14452
|
+
"description": "Map center longitude"
|
|
14453
|
+
},
|
|
14454
|
+
"zoom": {
|
|
14455
|
+
"types": [
|
|
14456
|
+
"number"
|
|
14457
|
+
],
|
|
14458
|
+
"description": "Zoom level (1-18, default 13)"
|
|
14459
|
+
},
|
|
14460
|
+
"height": {
|
|
14461
|
+
"types": [
|
|
14462
|
+
"string"
|
|
14463
|
+
],
|
|
14464
|
+
"description": "Height of the map container (default \"400px\")"
|
|
14465
|
+
},
|
|
14466
|
+
"onMarkerClick": {
|
|
14467
|
+
"types": [
|
|
14468
|
+
"function"
|
|
14469
|
+
],
|
|
14470
|
+
"description": "Callback when a marker is clicked (programmatic use)"
|
|
14471
|
+
},
|
|
14472
|
+
"onMapClick": {
|
|
14473
|
+
"types": [
|
|
14474
|
+
"function"
|
|
14475
|
+
],
|
|
14476
|
+
"description": "Callback when the map is clicked (programmatic use)"
|
|
14477
|
+
},
|
|
14478
|
+
"mapClickEvent": {
|
|
14479
|
+
"types": [
|
|
14480
|
+
"string"
|
|
14481
|
+
],
|
|
14482
|
+
"description": "Event name dispatched via event bus when the map is clicked. Payload: { latitude, longitude }"
|
|
14483
|
+
},
|
|
14484
|
+
"markerClickEvent": {
|
|
14485
|
+
"types": [
|
|
14486
|
+
"string"
|
|
14487
|
+
],
|
|
14488
|
+
"description": "Event name dispatched via event bus when a marker is clicked. Payload: marker data"
|
|
14489
|
+
},
|
|
14490
|
+
"showClickedPin": {
|
|
14491
|
+
"types": [
|
|
14492
|
+
"boolean"
|
|
14493
|
+
],
|
|
14494
|
+
"description": "Whether to show a pin at the clicked location"
|
|
14495
|
+
},
|
|
14496
|
+
"className": {
|
|
14497
|
+
"types": [
|
|
14498
|
+
"string"
|
|
14499
|
+
],
|
|
14500
|
+
"description": "Additional CSS classes"
|
|
14501
|
+
},
|
|
14502
|
+
"showAttribution": {
|
|
14503
|
+
"types": [
|
|
14504
|
+
"boolean"
|
|
14505
|
+
],
|
|
14506
|
+
"description": "Show attribution (default true)"
|
|
14507
|
+
}
|
|
14508
|
+
}
|
|
14509
|
+
},
|
|
14510
|
+
"range-slider": {
|
|
14511
|
+
"type": "range-slider",
|
|
14512
|
+
"category": "component",
|
|
14513
|
+
"description": "RangeSlider component",
|
|
14514
|
+
"suggestedFor": [
|
|
14515
|
+
"range",
|
|
14516
|
+
"slider",
|
|
14517
|
+
"range slider"
|
|
14518
|
+
],
|
|
14519
|
+
"typicalSize": "small",
|
|
14520
|
+
"propsSchema": {
|
|
14521
|
+
"min": {
|
|
14522
|
+
"types": [
|
|
14523
|
+
"number"
|
|
14524
|
+
],
|
|
14525
|
+
"description": "Minimum value"
|
|
14526
|
+
},
|
|
14527
|
+
"max": {
|
|
14528
|
+
"types": [
|
|
14529
|
+
"number"
|
|
14530
|
+
],
|
|
14531
|
+
"description": "Maximum value"
|
|
14532
|
+
},
|
|
14533
|
+
"value": {
|
|
14534
|
+
"types": [
|
|
14535
|
+
"number"
|
|
14536
|
+
],
|
|
14537
|
+
"description": "Current value"
|
|
14538
|
+
},
|
|
14539
|
+
"step": {
|
|
14540
|
+
"types": [
|
|
14541
|
+
"number"
|
|
14542
|
+
],
|
|
14543
|
+
"description": "Step increment"
|
|
14544
|
+
},
|
|
14545
|
+
"showTooltip": {
|
|
14546
|
+
"types": [
|
|
14547
|
+
"boolean"
|
|
14548
|
+
],
|
|
14549
|
+
"description": "Show tooltip with current value on drag"
|
|
14550
|
+
},
|
|
14551
|
+
"showTicks": {
|
|
14552
|
+
"types": [
|
|
14553
|
+
"boolean"
|
|
14554
|
+
],
|
|
14555
|
+
"description": "Show tick marks at step intervals"
|
|
14556
|
+
},
|
|
14557
|
+
"buffered": {
|
|
14558
|
+
"types": [
|
|
14559
|
+
"number"
|
|
14560
|
+
],
|
|
14561
|
+
"description": "Buffered range (0-100), for media seek bars"
|
|
14562
|
+
},
|
|
14563
|
+
"size": {
|
|
14564
|
+
"types": [
|
|
14565
|
+
"rangeslidersize"
|
|
14566
|
+
],
|
|
14567
|
+
"description": "Slider size"
|
|
14568
|
+
},
|
|
14569
|
+
"disabled": {
|
|
14570
|
+
"types": [
|
|
14571
|
+
"boolean"
|
|
14572
|
+
],
|
|
14573
|
+
"description": "Disabled state"
|
|
14574
|
+
},
|
|
14575
|
+
"action": {
|
|
14576
|
+
"types": [
|
|
14577
|
+
"string"
|
|
14578
|
+
],
|
|
14579
|
+
"description": "Declarative event name for value changes"
|
|
14580
|
+
},
|
|
14581
|
+
"actionPayload": {
|
|
14582
|
+
"types": [
|
|
14583
|
+
"object"
|
|
14584
|
+
],
|
|
14585
|
+
"description": "Payload to include with the action event"
|
|
14586
|
+
},
|
|
14587
|
+
"onChange": {
|
|
14588
|
+
"types": [
|
|
14589
|
+
"function"
|
|
14590
|
+
],
|
|
14591
|
+
"description": "Direct onChange callback"
|
|
14592
|
+
},
|
|
14593
|
+
"formatValue": {
|
|
14594
|
+
"types": [
|
|
14595
|
+
"function"
|
|
14596
|
+
],
|
|
14597
|
+
"description": "Format function for tooltip display"
|
|
14598
|
+
}
|
|
14599
|
+
}
|
|
14600
|
+
},
|
|
14601
|
+
"status-dot": {
|
|
14602
|
+
"type": "status-dot",
|
|
14603
|
+
"category": "display",
|
|
14604
|
+
"description": "StatusDot component",
|
|
14605
|
+
"suggestedFor": [
|
|
14606
|
+
"status",
|
|
14607
|
+
"dot",
|
|
14608
|
+
"status dot"
|
|
14609
|
+
],
|
|
14610
|
+
"typicalSize": "small",
|
|
14611
|
+
"propsSchema": {
|
|
14612
|
+
"status": {
|
|
14613
|
+
"types": [
|
|
14614
|
+
"statusdotstatus"
|
|
14615
|
+
],
|
|
14616
|
+
"description": "Status determines the dot color"
|
|
14617
|
+
},
|
|
14618
|
+
"pulse": {
|
|
14619
|
+
"types": [
|
|
14620
|
+
"boolean"
|
|
14621
|
+
],
|
|
14622
|
+
"description": "Enable pulse animation for active/critical states"
|
|
14623
|
+
},
|
|
14624
|
+
"size": {
|
|
14625
|
+
"types": [
|
|
14626
|
+
"statusdotsize"
|
|
14627
|
+
],
|
|
14628
|
+
"description": "Dot size"
|
|
14629
|
+
},
|
|
14630
|
+
"label": {
|
|
14631
|
+
"types": [
|
|
14632
|
+
"string"
|
|
14633
|
+
],
|
|
14634
|
+
"description": "Accessible label (rendered as sr-only text)"
|
|
14635
|
+
}
|
|
14636
|
+
}
|
|
14637
|
+
},
|
|
14638
|
+
"trend-indicator": {
|
|
14639
|
+
"type": "trend-indicator",
|
|
14640
|
+
"category": "component",
|
|
14641
|
+
"description": "TrendIndicator component",
|
|
14642
|
+
"suggestedFor": [
|
|
14643
|
+
"trend",
|
|
14644
|
+
"indicator",
|
|
14645
|
+
"trend indicator"
|
|
14646
|
+
],
|
|
14647
|
+
"typicalSize": "small",
|
|
14648
|
+
"propsSchema": {
|
|
14649
|
+
"value": {
|
|
14650
|
+
"types": [
|
|
14651
|
+
"number"
|
|
14652
|
+
],
|
|
14653
|
+
"description": "Numeric value to display (e.g., 12.5 for +12.5%)"
|
|
14654
|
+
},
|
|
14655
|
+
"direction": {
|
|
14656
|
+
"types": [
|
|
14657
|
+
"trenddirection"
|
|
14658
|
+
],
|
|
14659
|
+
"description": "Override automatic direction detection (positive=up, negative=down, zero=flat)"
|
|
14660
|
+
},
|
|
14661
|
+
"showValue": {
|
|
14662
|
+
"types": [
|
|
14663
|
+
"boolean"
|
|
14664
|
+
],
|
|
14665
|
+
"description": "Show the formatted value text next to the arrow"
|
|
14666
|
+
},
|
|
14667
|
+
"invert": {
|
|
14668
|
+
"types": [
|
|
14669
|
+
"boolean"
|
|
14670
|
+
],
|
|
14671
|
+
"description": "Invert color logic (for metrics where down is good, e.g., error rate, bounce rate)"
|
|
14672
|
+
},
|
|
14673
|
+
"label": {
|
|
14674
|
+
"types": [
|
|
14675
|
+
"string"
|
|
14676
|
+
],
|
|
14677
|
+
"description": "Accessible label override"
|
|
14678
|
+
},
|
|
14679
|
+
"size": {
|
|
14680
|
+
"types": [
|
|
14681
|
+
"trendindicatorsize"
|
|
14682
|
+
],
|
|
14683
|
+
"description": "Size of the indicator"
|
|
14684
|
+
}
|
|
14685
|
+
}
|
|
14686
|
+
},
|
|
14687
|
+
"lightbox": {
|
|
14688
|
+
"type": "lightbox",
|
|
14689
|
+
"category": "component",
|
|
14690
|
+
"description": "Lightbox component",
|
|
14691
|
+
"suggestedFor": [
|
|
14692
|
+
"lightbox"
|
|
14693
|
+
],
|
|
14694
|
+
"typicalSize": "medium",
|
|
14695
|
+
"propsSchema": {
|
|
14696
|
+
"images": {
|
|
14697
|
+
"types": [
|
|
14698
|
+
"array"
|
|
14699
|
+
],
|
|
14700
|
+
"description": "Array of images to display",
|
|
14701
|
+
"required": true
|
|
14702
|
+
},
|
|
14703
|
+
"currentIndex": {
|
|
14704
|
+
"types": [
|
|
14705
|
+
"number"
|
|
14706
|
+
],
|
|
14707
|
+
"description": "Current image index"
|
|
14708
|
+
},
|
|
14709
|
+
"isOpen": {
|
|
14710
|
+
"types": [
|
|
14711
|
+
"boolean"
|
|
14712
|
+
],
|
|
14713
|
+
"description": "Whether the lightbox is open"
|
|
14714
|
+
},
|
|
14715
|
+
"showCounter": {
|
|
14716
|
+
"types": [
|
|
14717
|
+
"boolean"
|
|
14718
|
+
],
|
|
14719
|
+
"description": "Show image counter (e.g., \"3 of 12\")"
|
|
14720
|
+
},
|
|
14721
|
+
"closeAction": {
|
|
14722
|
+
"types": [
|
|
14723
|
+
"string"
|
|
14724
|
+
],
|
|
14725
|
+
"description": "Declarative close event name"
|
|
14726
|
+
},
|
|
14727
|
+
"onClose": {
|
|
14728
|
+
"types": [
|
|
14729
|
+
"function"
|
|
14730
|
+
],
|
|
14731
|
+
"description": "Direct onClose callback"
|
|
14732
|
+
},
|
|
14733
|
+
"onIndexChange": {
|
|
14734
|
+
"types": [
|
|
14735
|
+
"function"
|
|
14736
|
+
],
|
|
14737
|
+
"description": "Direct onIndexChange callback"
|
|
14738
|
+
},
|
|
14739
|
+
"className": {
|
|
14740
|
+
"types": [
|
|
14741
|
+
"string"
|
|
14742
|
+
],
|
|
14743
|
+
"description": "Additional CSS classes"
|
|
14744
|
+
}
|
|
14745
|
+
}
|
|
14746
|
+
},
|
|
14747
|
+
"number-stepper": {
|
|
14748
|
+
"type": "number-stepper",
|
|
14749
|
+
"category": "component",
|
|
14750
|
+
"description": "NumberStepper component",
|
|
14751
|
+
"suggestedFor": [
|
|
14752
|
+
"number",
|
|
14753
|
+
"stepper",
|
|
14754
|
+
"number stepper"
|
|
14755
|
+
],
|
|
14756
|
+
"typicalSize": "medium",
|
|
14757
|
+
"propsSchema": {
|
|
14758
|
+
"value": {
|
|
14759
|
+
"types": [
|
|
14760
|
+
"number"
|
|
14761
|
+
],
|
|
14762
|
+
"description": "Current value"
|
|
14763
|
+
},
|
|
14764
|
+
"min": {
|
|
14765
|
+
"types": [
|
|
14766
|
+
"number"
|
|
14767
|
+
],
|
|
14768
|
+
"description": "Minimum value"
|
|
14769
|
+
},
|
|
14770
|
+
"max": {
|
|
14771
|
+
"types": [
|
|
14772
|
+
"number"
|
|
14773
|
+
],
|
|
14774
|
+
"description": "Maximum value"
|
|
14775
|
+
},
|
|
14776
|
+
"step": {
|
|
14777
|
+
"types": [
|
|
14778
|
+
"number"
|
|
14779
|
+
],
|
|
14780
|
+
"description": "Step increment"
|
|
14781
|
+
},
|
|
14782
|
+
"size": {
|
|
14783
|
+
"types": [
|
|
14784
|
+
"numbersteppersize"
|
|
14785
|
+
],
|
|
14786
|
+
"description": "Size variant"
|
|
14787
|
+
},
|
|
14788
|
+
"disabled": {
|
|
14789
|
+
"types": [
|
|
14790
|
+
"boolean"
|
|
14791
|
+
],
|
|
14792
|
+
"description": "Disabled state"
|
|
14793
|
+
},
|
|
14794
|
+
"onChange": {
|
|
14795
|
+
"types": [
|
|
14796
|
+
"function"
|
|
14797
|
+
],
|
|
14798
|
+
"description": "Direct onChange callback"
|
|
14799
|
+
},
|
|
14800
|
+
"action": {
|
|
14801
|
+
"types": [
|
|
14802
|
+
"string"
|
|
14803
|
+
],
|
|
14804
|
+
"description": "Declarative event name for value changes"
|
|
14805
|
+
},
|
|
14806
|
+
"actionPayload": {
|
|
14807
|
+
"types": [
|
|
14808
|
+
"object"
|
|
14809
|
+
],
|
|
14810
|
+
"description": "Payload to include with the action event"
|
|
14811
|
+
},
|
|
14812
|
+
"className": {
|
|
14813
|
+
"types": [
|
|
14814
|
+
"string"
|
|
14815
|
+
],
|
|
14816
|
+
"description": "Additional CSS classes"
|
|
14817
|
+
},
|
|
14818
|
+
"label": {
|
|
14819
|
+
"types": [
|
|
14820
|
+
"string"
|
|
14821
|
+
],
|
|
14822
|
+
"description": "Accessible label"
|
|
14823
|
+
}
|
|
14824
|
+
}
|
|
14825
|
+
},
|
|
14826
|
+
"star-rating": {
|
|
14827
|
+
"type": "star-rating",
|
|
14828
|
+
"category": "component",
|
|
14829
|
+
"description": "StarRating component",
|
|
14830
|
+
"suggestedFor": [
|
|
14831
|
+
"star",
|
|
14832
|
+
"rating",
|
|
14833
|
+
"star rating"
|
|
14834
|
+
],
|
|
14835
|
+
"typicalSize": "medium",
|
|
14836
|
+
"propsSchema": {
|
|
14837
|
+
"value": {
|
|
14838
|
+
"types": [
|
|
14839
|
+
"number"
|
|
14840
|
+
],
|
|
14841
|
+
"description": "Current rating value"
|
|
14842
|
+
},
|
|
14843
|
+
"max": {
|
|
14844
|
+
"types": [
|
|
14845
|
+
"number"
|
|
14846
|
+
],
|
|
14847
|
+
"description": "Maximum number of stars"
|
|
14848
|
+
},
|
|
14849
|
+
"readOnly": {
|
|
14850
|
+
"types": [
|
|
14851
|
+
"boolean"
|
|
14852
|
+
],
|
|
14853
|
+
"description": "Read-only display mode"
|
|
14854
|
+
},
|
|
14855
|
+
"precision": {
|
|
14856
|
+
"types": [
|
|
14857
|
+
"starratingprecision"
|
|
14858
|
+
],
|
|
14859
|
+
"description": "Full or half-star precision"
|
|
14860
|
+
},
|
|
14861
|
+
"size": {
|
|
14862
|
+
"types": [
|
|
14863
|
+
"starratingsize"
|
|
14864
|
+
],
|
|
14865
|
+
"description": "Star size"
|
|
14866
|
+
},
|
|
14867
|
+
"action": {
|
|
14868
|
+
"types": [
|
|
14869
|
+
"string"
|
|
14870
|
+
],
|
|
14871
|
+
"description": "Declarative event name for rating changes"
|
|
14872
|
+
},
|
|
14873
|
+
"actionPayload": {
|
|
14874
|
+
"types": [
|
|
14875
|
+
"object"
|
|
14876
|
+
],
|
|
14877
|
+
"description": "Payload to include with the action event"
|
|
14878
|
+
},
|
|
14879
|
+
"onChange": {
|
|
14880
|
+
"types": [
|
|
14881
|
+
"function"
|
|
14882
|
+
],
|
|
14883
|
+
"description": "Direct onChange callback"
|
|
14884
|
+
},
|
|
14885
|
+
"className": {
|
|
14886
|
+
"types": [
|
|
14887
|
+
"string"
|
|
14888
|
+
],
|
|
14889
|
+
"description": "Additional CSS classes"
|
|
14890
|
+
},
|
|
14891
|
+
"label": {
|
|
14892
|
+
"types": [
|
|
14893
|
+
"string"
|
|
14894
|
+
],
|
|
14895
|
+
"description": "Accessible label"
|
|
14896
|
+
}
|
|
14897
|
+
}
|
|
14898
|
+
},
|
|
14899
|
+
"upload-drop-zone": {
|
|
14900
|
+
"type": "upload-drop-zone",
|
|
14901
|
+
"category": "component",
|
|
14902
|
+
"description": "UploadDropZone component",
|
|
14903
|
+
"suggestedFor": [
|
|
14904
|
+
"upload",
|
|
14905
|
+
"drop",
|
|
14906
|
+
"zone",
|
|
14907
|
+
"upload drop zone"
|
|
14908
|
+
],
|
|
14909
|
+
"typicalSize": "medium",
|
|
14910
|
+
"propsSchema": {
|
|
14911
|
+
"accept": {
|
|
14912
|
+
"types": [
|
|
14913
|
+
"string"
|
|
14914
|
+
],
|
|
14915
|
+
"description": "Accepted MIME types (e.g., \"image/*\", \"application/pdf\")"
|
|
14916
|
+
},
|
|
14917
|
+
"maxSize": {
|
|
14918
|
+
"types": [
|
|
14919
|
+
"number"
|
|
14920
|
+
],
|
|
14921
|
+
"description": "Max file size in bytes"
|
|
14922
|
+
},
|
|
14923
|
+
"maxFiles": {
|
|
14924
|
+
"types": [
|
|
14925
|
+
"number"
|
|
14926
|
+
],
|
|
14927
|
+
"description": "Max number of files"
|
|
14928
|
+
},
|
|
14929
|
+
"label": {
|
|
14930
|
+
"types": [
|
|
14931
|
+
"string"
|
|
14932
|
+
],
|
|
14933
|
+
"description": "Label text"
|
|
14934
|
+
},
|
|
14935
|
+
"description": {
|
|
14936
|
+
"types": [
|
|
14937
|
+
"string"
|
|
14938
|
+
],
|
|
14939
|
+
"description": "Description text below label"
|
|
14940
|
+
},
|
|
14941
|
+
"icon": {
|
|
14942
|
+
"types": [
|
|
14943
|
+
"string"
|
|
14944
|
+
],
|
|
14945
|
+
"description": "Icon name (Lucide string)"
|
|
14946
|
+
},
|
|
14947
|
+
"disabled": {
|
|
14948
|
+
"types": [
|
|
14949
|
+
"boolean"
|
|
14950
|
+
],
|
|
14951
|
+
"description": "Disabled state"
|
|
14952
|
+
},
|
|
14953
|
+
"action": {
|
|
14954
|
+
"types": [
|
|
14955
|
+
"string"
|
|
14956
|
+
],
|
|
14957
|
+
"description": "Declarative event name for file selection"
|
|
14958
|
+
},
|
|
14959
|
+
"actionPayload": {
|
|
14960
|
+
"types": [
|
|
14961
|
+
"object"
|
|
14962
|
+
],
|
|
14963
|
+
"description": "Payload to include with the action event"
|
|
14964
|
+
},
|
|
14965
|
+
"onFiles": {
|
|
14966
|
+
"types": [
|
|
14967
|
+
"function"
|
|
14968
|
+
],
|
|
14969
|
+
"description": "Direct onFiles callback"
|
|
14970
|
+
},
|
|
14971
|
+
"className": {
|
|
14972
|
+
"types": [
|
|
14973
|
+
"string"
|
|
14974
|
+
],
|
|
14975
|
+
"description": "Additional CSS classes"
|
|
14976
|
+
}
|
|
14977
|
+
}
|
|
14978
|
+
},
|
|
14979
|
+
"animated-counter": {
|
|
14980
|
+
"type": "animated-counter",
|
|
14981
|
+
"category": "component",
|
|
14982
|
+
"description": "AnimatedCounter component",
|
|
14983
|
+
"suggestedFor": [
|
|
14984
|
+
"animated",
|
|
14985
|
+
"counter",
|
|
14986
|
+
"animated counter"
|
|
14987
|
+
],
|
|
14988
|
+
"typicalSize": "small",
|
|
14989
|
+
"propsSchema": {
|
|
14990
|
+
"value": {
|
|
14991
|
+
"types": [
|
|
14992
|
+
"number"
|
|
14993
|
+
],
|
|
14994
|
+
"description": "The target number to animate to",
|
|
14995
|
+
"required": true
|
|
14996
|
+
},
|
|
14997
|
+
"duration": {
|
|
14998
|
+
"types": [
|
|
14999
|
+
"number"
|
|
15000
|
+
],
|
|
15001
|
+
"description": "Animation duration in milliseconds"
|
|
15002
|
+
},
|
|
15003
|
+
"prefix": {
|
|
15004
|
+
"types": [
|
|
15005
|
+
"string"
|
|
15006
|
+
],
|
|
15007
|
+
"description": "Text to display before the number"
|
|
15008
|
+
},
|
|
15009
|
+
"suffix": {
|
|
15010
|
+
"types": [
|
|
15011
|
+
"string"
|
|
15012
|
+
],
|
|
15013
|
+
"description": "Text to display after the number"
|
|
15014
|
+
},
|
|
15015
|
+
"className": {
|
|
15016
|
+
"types": [
|
|
15017
|
+
"string"
|
|
15018
|
+
],
|
|
15019
|
+
"description": "Additional class names"
|
|
15020
|
+
}
|
|
15021
|
+
}
|
|
15022
|
+
},
|
|
15023
|
+
"confetti-effect": {
|
|
15024
|
+
"type": "confetti-effect",
|
|
15025
|
+
"category": "component",
|
|
15026
|
+
"description": "ConfettiEffect component",
|
|
15027
|
+
"suggestedFor": [
|
|
15028
|
+
"confetti",
|
|
15029
|
+
"effect",
|
|
15030
|
+
"confetti effect"
|
|
15031
|
+
],
|
|
15032
|
+
"typicalSize": "small",
|
|
15033
|
+
"propsSchema": {
|
|
15034
|
+
"trigger": {
|
|
15035
|
+
"types": [
|
|
15036
|
+
"boolean"
|
|
15037
|
+
],
|
|
15038
|
+
"description": "When this changes from false to true, a burst of particles is spawned",
|
|
15039
|
+
"required": true
|
|
15040
|
+
},
|
|
15041
|
+
"duration": {
|
|
15042
|
+
"types": [
|
|
15043
|
+
"number"
|
|
15044
|
+
],
|
|
15045
|
+
"description": "How long the animation lasts in milliseconds"
|
|
15046
|
+
},
|
|
15047
|
+
"particleCount": {
|
|
15048
|
+
"types": [
|
|
15049
|
+
"number"
|
|
15050
|
+
],
|
|
15051
|
+
"description": "Number of particles to spawn"
|
|
15052
|
+
},
|
|
15053
|
+
"className": {
|
|
15054
|
+
"types": [
|
|
15055
|
+
"string"
|
|
15056
|
+
],
|
|
15057
|
+
"description": "Additional class names"
|
|
15058
|
+
}
|
|
15059
|
+
}
|
|
15060
|
+
},
|
|
15061
|
+
"infinite-scroll-sentinel": {
|
|
15062
|
+
"type": "infinite-scroll-sentinel",
|
|
15063
|
+
"category": "component",
|
|
15064
|
+
"description": "InfiniteScrollSentinel component",
|
|
15065
|
+
"suggestedFor": [
|
|
15066
|
+
"infinite",
|
|
15067
|
+
"scroll",
|
|
15068
|
+
"sentinel",
|
|
15069
|
+
"infinite scroll sentinel"
|
|
15070
|
+
],
|
|
15071
|
+
"typicalSize": "small",
|
|
15072
|
+
"propsSchema": {
|
|
15073
|
+
"loadMoreEvent": {
|
|
15074
|
+
"types": [
|
|
15075
|
+
"string"
|
|
15076
|
+
],
|
|
15077
|
+
"description": "Event name to emit when load-more is triggered (emitted as UI:{loadMoreEvent})",
|
|
15078
|
+
"required": true
|
|
15079
|
+
},
|
|
15080
|
+
"loadMorePayload": {
|
|
15081
|
+
"types": [
|
|
15082
|
+
"object"
|
|
15083
|
+
],
|
|
15084
|
+
"description": "Optional payload to include with the load-more event"
|
|
15085
|
+
},
|
|
15086
|
+
"isLoading": {
|
|
15087
|
+
"types": [
|
|
15088
|
+
"boolean"
|
|
15089
|
+
],
|
|
15090
|
+
"description": "Whether a load operation is currently in progress"
|
|
15091
|
+
},
|
|
15092
|
+
"hasMore": {
|
|
15093
|
+
"types": [
|
|
15094
|
+
"boolean"
|
|
15095
|
+
],
|
|
15096
|
+
"description": "Whether there are more items to load"
|
|
15097
|
+
},
|
|
15098
|
+
"threshold": {
|
|
15099
|
+
"types": [
|
|
15100
|
+
"string"
|
|
15101
|
+
],
|
|
15102
|
+
"description": "IntersectionObserver rootMargin for early trigger"
|
|
15103
|
+
},
|
|
15104
|
+
"className": {
|
|
15105
|
+
"types": [
|
|
15106
|
+
"string"
|
|
15107
|
+
],
|
|
15108
|
+
"description": "Additional class names"
|
|
15109
|
+
}
|
|
15110
|
+
}
|
|
15111
|
+
},
|
|
15112
|
+
"typewriter-text": {
|
|
15113
|
+
"type": "typewriter-text",
|
|
15114
|
+
"category": "component",
|
|
15115
|
+
"description": "TypewriterText component",
|
|
15116
|
+
"suggestedFor": [
|
|
15117
|
+
"typewriter",
|
|
15118
|
+
"text",
|
|
15119
|
+
"typewriter text"
|
|
15120
|
+
],
|
|
15121
|
+
"typicalSize": "small",
|
|
15122
|
+
"propsSchema": {
|
|
15123
|
+
"text": {
|
|
15124
|
+
"types": [
|
|
15125
|
+
"string"
|
|
15126
|
+
],
|
|
15127
|
+
"description": "The full text to reveal",
|
|
15128
|
+
"required": true
|
|
15129
|
+
},
|
|
15130
|
+
"speed": {
|
|
15131
|
+
"types": [
|
|
15132
|
+
"number"
|
|
15133
|
+
],
|
|
15134
|
+
"description": "Milliseconds per character"
|
|
15135
|
+
},
|
|
15136
|
+
"startDelay": {
|
|
15137
|
+
"types": [
|
|
15138
|
+
"number"
|
|
15139
|
+
],
|
|
15140
|
+
"description": "Delay before typing starts (ms)"
|
|
15141
|
+
},
|
|
15142
|
+
"className": {
|
|
15143
|
+
"types": [
|
|
15144
|
+
"string"
|
|
15145
|
+
],
|
|
15146
|
+
"description": "Additional class names"
|
|
15147
|
+
},
|
|
15148
|
+
"onComplete": {
|
|
15149
|
+
"types": [
|
|
15150
|
+
"function"
|
|
15151
|
+
],
|
|
15152
|
+
"description": "Called when the entire text has been revealed"
|
|
15153
|
+
}
|
|
15154
|
+
}
|
|
15155
|
+
},
|
|
15156
|
+
"carousel": {
|
|
15157
|
+
"type": "carousel",
|
|
15158
|
+
"category": "component",
|
|
15159
|
+
"description": "Carousel component",
|
|
15160
|
+
"suggestedFor": [
|
|
15161
|
+
"carousel"
|
|
15162
|
+
],
|
|
15163
|
+
"typicalSize": "medium",
|
|
15164
|
+
"propsSchema": {
|
|
15165
|
+
"items": {
|
|
15166
|
+
"types": [
|
|
15167
|
+
"array"
|
|
15168
|
+
],
|
|
15169
|
+
"description": "Array of items to display as slides",
|
|
15170
|
+
"required": true
|
|
15171
|
+
},
|
|
15172
|
+
"renderItem": {
|
|
15173
|
+
"types": [
|
|
15174
|
+
"function"
|
|
15175
|
+
],
|
|
15176
|
+
"description": "Render function for each slide",
|
|
15177
|
+
"required": true
|
|
15178
|
+
},
|
|
15179
|
+
"autoPlay": {
|
|
15180
|
+
"types": [
|
|
15181
|
+
"boolean"
|
|
15182
|
+
],
|
|
15183
|
+
"description": "Enable auto-play rotation"
|
|
15184
|
+
},
|
|
15185
|
+
"autoPlayInterval": {
|
|
15186
|
+
"types": [
|
|
15187
|
+
"number"
|
|
15188
|
+
],
|
|
15189
|
+
"description": "Auto-play interval in milliseconds (default: 5000)"
|
|
15190
|
+
},
|
|
15191
|
+
"showDots": {
|
|
15192
|
+
"types": [
|
|
15193
|
+
"boolean"
|
|
15194
|
+
],
|
|
15195
|
+
"description": "Show dot indicators"
|
|
15196
|
+
},
|
|
15197
|
+
"showArrows": {
|
|
15198
|
+
"types": [
|
|
15199
|
+
"boolean"
|
|
15200
|
+
],
|
|
15201
|
+
"description": "Show prev/next arrow buttons"
|
|
15202
|
+
},
|
|
15203
|
+
"loop": {
|
|
15204
|
+
"types": [
|
|
15205
|
+
"boolean"
|
|
15206
|
+
],
|
|
15207
|
+
"description": "Enable infinite loop"
|
|
15208
|
+
},
|
|
15209
|
+
"slideChangeEvent": {
|
|
15210
|
+
"types": [
|
|
15211
|
+
"string"
|
|
15212
|
+
],
|
|
15213
|
+
"description": "Declarative event name for slide change"
|
|
15214
|
+
},
|
|
15215
|
+
"slideChangePayload": {
|
|
15216
|
+
"types": [
|
|
15217
|
+
"object"
|
|
15218
|
+
],
|
|
15219
|
+
"description": "Payload to include with the slide change event"
|
|
15220
|
+
},
|
|
15221
|
+
"className": {
|
|
15222
|
+
"types": [
|
|
15223
|
+
"string"
|
|
15224
|
+
],
|
|
15225
|
+
"description": "Additional CSS classes"
|
|
15226
|
+
}
|
|
15227
|
+
}
|
|
15228
|
+
},
|
|
15229
|
+
"pull-to-refresh": {
|
|
15230
|
+
"type": "pull-to-refresh",
|
|
15231
|
+
"category": "component",
|
|
15232
|
+
"description": "PullToRefresh component",
|
|
15233
|
+
"suggestedFor": [
|
|
15234
|
+
"pull",
|
|
15235
|
+
"refresh",
|
|
15236
|
+
"pull to refresh"
|
|
15237
|
+
],
|
|
15238
|
+
"typicalSize": "medium",
|
|
15239
|
+
"propsSchema": {
|
|
15240
|
+
"refreshEvent": {
|
|
15241
|
+
"types": [
|
|
15242
|
+
"string"
|
|
15243
|
+
],
|
|
15244
|
+
"description": "Event name to emit on refresh (emitted as UI:{refreshEvent})",
|
|
15245
|
+
"required": true
|
|
15246
|
+
},
|
|
15247
|
+
"refreshPayload": {
|
|
15248
|
+
"types": [
|
|
15249
|
+
"object"
|
|
15250
|
+
],
|
|
15251
|
+
"description": "Payload to include with the refresh event"
|
|
15252
|
+
},
|
|
15253
|
+
"threshold": {
|
|
15254
|
+
"types": [
|
|
15255
|
+
"number"
|
|
15256
|
+
],
|
|
15257
|
+
"description": "Pull distance threshold to trigger refresh in px (default: 60)"
|
|
15258
|
+
},
|
|
15259
|
+
"children": {
|
|
15260
|
+
"types": [
|
|
15261
|
+
"node"
|
|
15262
|
+
],
|
|
15263
|
+
"description": "Content to wrap",
|
|
15264
|
+
"required": true
|
|
15265
|
+
},
|
|
15266
|
+
"className": {
|
|
15267
|
+
"types": [
|
|
15268
|
+
"string"
|
|
15269
|
+
],
|
|
15270
|
+
"description": "Additional CSS classes"
|
|
15271
|
+
}
|
|
15272
|
+
}
|
|
15273
|
+
},
|
|
15274
|
+
"sortable-list": {
|
|
15275
|
+
"type": "sortable-list",
|
|
15276
|
+
"category": "display",
|
|
15277
|
+
"description": "SortableList component",
|
|
15278
|
+
"suggestedFor": [
|
|
15279
|
+
"sortable",
|
|
15280
|
+
"list",
|
|
15281
|
+
"sortable list"
|
|
15282
|
+
],
|
|
15283
|
+
"typicalSize": "medium",
|
|
15284
|
+
"propsSchema": {
|
|
15285
|
+
"items": {
|
|
15286
|
+
"types": [
|
|
15287
|
+
"array"
|
|
15288
|
+
],
|
|
15289
|
+
"description": "items prop",
|
|
15290
|
+
"required": true
|
|
15291
|
+
},
|
|
15292
|
+
"renderItem": {
|
|
15293
|
+
"types": [
|
|
15294
|
+
"function"
|
|
15295
|
+
],
|
|
15296
|
+
"description": "renderItem prop",
|
|
15297
|
+
"required": true
|
|
15298
|
+
},
|
|
15299
|
+
"reorderEvent": {
|
|
15300
|
+
"types": [
|
|
15301
|
+
"string"
|
|
15302
|
+
],
|
|
15303
|
+
"description": "reorderEvent prop",
|
|
15304
|
+
"required": true
|
|
15305
|
+
},
|
|
15306
|
+
"reorderPayload": {
|
|
15307
|
+
"types": [
|
|
15308
|
+
"object"
|
|
15309
|
+
],
|
|
15310
|
+
"description": "reorderPayload prop"
|
|
15311
|
+
},
|
|
15312
|
+
"dragHandlePosition": {
|
|
15313
|
+
"types": [
|
|
15314
|
+
"string"
|
|
15315
|
+
],
|
|
15316
|
+
"description": "dragHandlePosition prop"
|
|
15317
|
+
},
|
|
15318
|
+
"className": {
|
|
15319
|
+
"types": [
|
|
15320
|
+
"string"
|
|
15321
|
+
],
|
|
15322
|
+
"description": "className prop"
|
|
15323
|
+
}
|
|
15324
|
+
}
|
|
15325
|
+
},
|
|
15326
|
+
"swipeable-row": {
|
|
15327
|
+
"type": "swipeable-row",
|
|
15328
|
+
"category": "component",
|
|
15329
|
+
"description": "SwipeableRow component",
|
|
15330
|
+
"suggestedFor": [
|
|
15331
|
+
"swipeable",
|
|
15332
|
+
"row",
|
|
15333
|
+
"swipeable row"
|
|
15334
|
+
],
|
|
15335
|
+
"typicalSize": "medium",
|
|
15336
|
+
"propsSchema": {
|
|
15337
|
+
"leftActions": {
|
|
15338
|
+
"types": [
|
|
15339
|
+
"array"
|
|
15340
|
+
],
|
|
15341
|
+
"description": "leftActions prop"
|
|
15342
|
+
},
|
|
15343
|
+
"rightActions": {
|
|
15344
|
+
"types": [
|
|
15345
|
+
"array"
|
|
15346
|
+
],
|
|
15347
|
+
"description": "rightActions prop"
|
|
15348
|
+
},
|
|
15349
|
+
"threshold": {
|
|
15350
|
+
"types": [
|
|
15351
|
+
"number"
|
|
15352
|
+
],
|
|
15353
|
+
"description": "threshold prop"
|
|
15354
|
+
},
|
|
15355
|
+
"children": {
|
|
15356
|
+
"types": [
|
|
15357
|
+
"node"
|
|
15358
|
+
],
|
|
15359
|
+
"description": "children prop",
|
|
15360
|
+
"required": true
|
|
15361
|
+
},
|
|
15362
|
+
"itemData": {
|
|
15363
|
+
"types": [
|
|
15364
|
+
"object"
|
|
15365
|
+
],
|
|
15366
|
+
"description": "itemData prop"
|
|
15367
|
+
},
|
|
15368
|
+
"className": {
|
|
15369
|
+
"types": [
|
|
15370
|
+
"string"
|
|
15371
|
+
],
|
|
15372
|
+
"description": "className prop"
|
|
15373
|
+
}
|
|
15374
|
+
}
|
|
15375
|
+
},
|
|
15376
|
+
"stat-display": {
|
|
15377
|
+
"type": "stat-display",
|
|
15378
|
+
"category": "display",
|
|
15379
|
+
"description": "StatDisplay component",
|
|
15380
|
+
"suggestedFor": [
|
|
15381
|
+
"stat",
|
|
15382
|
+
"display",
|
|
15383
|
+
"stat display"
|
|
15384
|
+
],
|
|
15385
|
+
"typicalSize": "medium",
|
|
15386
|
+
"propsSchema": {
|
|
15387
|
+
"label": {
|
|
15388
|
+
"types": [
|
|
15389
|
+
"string"
|
|
15390
|
+
],
|
|
15391
|
+
"description": "Display label (e.g., \"Total\", \"Remaining\")",
|
|
15392
|
+
"required": true
|
|
15393
|
+
},
|
|
15394
|
+
"value": {
|
|
15395
|
+
"types": [
|
|
15396
|
+
"number",
|
|
15397
|
+
"string"
|
|
15398
|
+
],
|
|
15399
|
+
"description": "Primary value (number or formatted string)"
|
|
15400
|
+
},
|
|
15401
|
+
"max": {
|
|
15402
|
+
"types": [
|
|
15403
|
+
"number"
|
|
15404
|
+
],
|
|
15405
|
+
"description": "Maximum value (renders as \"value / max\")"
|
|
15406
|
+
},
|
|
15407
|
+
"icon": {
|
|
15408
|
+
"types": [
|
|
15409
|
+
"node"
|
|
15410
|
+
],
|
|
15411
|
+
"description": "Lucide icon name or React node"
|
|
15412
|
+
},
|
|
15413
|
+
"iconBg": {
|
|
15414
|
+
"types": [
|
|
15415
|
+
"string"
|
|
15416
|
+
],
|
|
15417
|
+
"description": "Icon background color class"
|
|
15418
|
+
},
|
|
15419
|
+
"iconColor": {
|
|
15420
|
+
"types": [
|
|
15421
|
+
"string"
|
|
15422
|
+
],
|
|
15423
|
+
"description": "Icon color class"
|
|
15424
|
+
},
|
|
15425
|
+
"format": {
|
|
15426
|
+
"types": [
|
|
15427
|
+
"string"
|
|
15428
|
+
],
|
|
15429
|
+
"description": "Display format: \"number\", \"currency\", \"percent\""
|
|
15430
|
+
},
|
|
15431
|
+
"size": {
|
|
15432
|
+
"types": [
|
|
15433
|
+
"string"
|
|
15434
|
+
],
|
|
15435
|
+
"description": "Size variant"
|
|
15436
|
+
},
|
|
15437
|
+
"variant": {
|
|
15438
|
+
"types": [
|
|
15439
|
+
"string"
|
|
15440
|
+
],
|
|
15441
|
+
"description": "Color variant"
|
|
15442
|
+
},
|
|
15443
|
+
"compact": {
|
|
15444
|
+
"types": [
|
|
15445
|
+
"boolean"
|
|
15446
|
+
],
|
|
15447
|
+
"description": "Compact mode (inline, no card wrapper)"
|
|
15448
|
+
},
|
|
15449
|
+
"className": {
|
|
15450
|
+
"types": [
|
|
15451
|
+
"string"
|
|
15452
|
+
],
|
|
15453
|
+
"description": "Additional CSS classes"
|
|
15454
|
+
},
|
|
15455
|
+
"isLoading": {
|
|
15456
|
+
"types": [
|
|
15457
|
+
"boolean"
|
|
15458
|
+
],
|
|
15459
|
+
"description": "Loading state"
|
|
15460
|
+
},
|
|
15461
|
+
"error": {
|
|
15462
|
+
"types": [
|
|
15463
|
+
"error"
|
|
15464
|
+
],
|
|
15465
|
+
"description": "Error state"
|
|
15466
|
+
}
|
|
15467
|
+
}
|
|
15468
|
+
},
|
|
15469
|
+
"action-button": {
|
|
15470
|
+
"type": "action-button",
|
|
15471
|
+
"category": "component",
|
|
15472
|
+
"description": "ActionButton component",
|
|
15473
|
+
"suggestedFor": [
|
|
15474
|
+
"action",
|
|
15475
|
+
"button",
|
|
15476
|
+
"action button"
|
|
15477
|
+
],
|
|
15478
|
+
"typicalSize": "small",
|
|
15479
|
+
"propsSchema": {
|
|
15480
|
+
"label": {
|
|
15481
|
+
"types": [
|
|
15482
|
+
"string"
|
|
15483
|
+
],
|
|
15484
|
+
"description": "Button label text",
|
|
15485
|
+
"required": true
|
|
15486
|
+
},
|
|
15487
|
+
"icon": {
|
|
15488
|
+
"types": [
|
|
15489
|
+
"node"
|
|
15490
|
+
],
|
|
15491
|
+
"description": "Icon displayed before the label"
|
|
15492
|
+
},
|
|
15493
|
+
"cooldown": {
|
|
15494
|
+
"types": [
|
|
15495
|
+
"number"
|
|
15496
|
+
],
|
|
15497
|
+
"description": "Cooldown progress from 0 (ready) to 1 (full cooldown)"
|
|
15498
|
+
},
|
|
15499
|
+
"disabled": {
|
|
15500
|
+
"types": [
|
|
15501
|
+
"boolean"
|
|
15502
|
+
],
|
|
15503
|
+
"description": "Whether the button is disabled"
|
|
15504
|
+
},
|
|
15505
|
+
"hotkey": {
|
|
15506
|
+
"types": [
|
|
15507
|
+
"string"
|
|
15508
|
+
],
|
|
15509
|
+
"description": "Keyboard hotkey to display as a badge"
|
|
15510
|
+
},
|
|
15511
|
+
"size": {
|
|
15512
|
+
"types": [
|
|
15513
|
+
"string"
|
|
15514
|
+
],
|
|
15515
|
+
"description": "Size variant"
|
|
15516
|
+
},
|
|
15517
|
+
"variant": {
|
|
15518
|
+
"types": [
|
|
15519
|
+
"string"
|
|
15520
|
+
],
|
|
15521
|
+
"description": "Visual variant"
|
|
15522
|
+
},
|
|
15523
|
+
"onClick": {
|
|
15524
|
+
"types": [
|
|
15525
|
+
"function"
|
|
15526
|
+
],
|
|
15527
|
+
"description": "Click handler"
|
|
15528
|
+
},
|
|
15529
|
+
"className": {
|
|
15530
|
+
"types": [
|
|
15531
|
+
"string"
|
|
15532
|
+
],
|
|
15533
|
+
"description": "Additional CSS classes"
|
|
15534
|
+
}
|
|
15535
|
+
}
|
|
15536
|
+
},
|
|
15537
|
+
"choice-button": {
|
|
15538
|
+
"type": "choice-button",
|
|
15539
|
+
"category": "component",
|
|
15540
|
+
"description": "ChoiceButton component",
|
|
15541
|
+
"suggestedFor": [
|
|
15542
|
+
"choice",
|
|
15543
|
+
"button",
|
|
15544
|
+
"choice button"
|
|
15545
|
+
],
|
|
15546
|
+
"typicalSize": "small",
|
|
15547
|
+
"propsSchema": {
|
|
15548
|
+
"text": {
|
|
15549
|
+
"types": [
|
|
15550
|
+
"string"
|
|
15551
|
+
],
|
|
15552
|
+
"description": "Choice text content",
|
|
15553
|
+
"required": true
|
|
15554
|
+
},
|
|
15555
|
+
"index": {
|
|
15556
|
+
"types": [
|
|
15557
|
+
"number"
|
|
15558
|
+
],
|
|
15559
|
+
"description": "Choice index number (displayed as prefix)"
|
|
15560
|
+
},
|
|
15561
|
+
"disabled": {
|
|
15562
|
+
"types": [
|
|
15563
|
+
"boolean"
|
|
15564
|
+
],
|
|
15565
|
+
"description": "Whether the choice is disabled"
|
|
15566
|
+
},
|
|
15567
|
+
"selected": {
|
|
15568
|
+
"types": [
|
|
15569
|
+
"boolean"
|
|
15570
|
+
],
|
|
15571
|
+
"description": "Whether the choice is currently selected"
|
|
15572
|
+
},
|
|
15573
|
+
"onClick": {
|
|
15574
|
+
"types": [
|
|
15575
|
+
"function"
|
|
15576
|
+
],
|
|
15577
|
+
"description": "Click handler"
|
|
15578
|
+
},
|
|
15579
|
+
"className": {
|
|
15580
|
+
"types": [
|
|
15581
|
+
"string"
|
|
15582
|
+
],
|
|
15583
|
+
"description": "Additional CSS classes"
|
|
15584
|
+
}
|
|
15585
|
+
}
|
|
15586
|
+
},
|
|
15587
|
+
"combo-counter": {
|
|
15588
|
+
"type": "combo-counter",
|
|
15589
|
+
"category": "component",
|
|
15590
|
+
"description": "ComboCounter component",
|
|
15591
|
+
"suggestedFor": [
|
|
15592
|
+
"combo",
|
|
15593
|
+
"counter",
|
|
15594
|
+
"combo counter"
|
|
15595
|
+
],
|
|
15596
|
+
"typicalSize": "small",
|
|
15597
|
+
"propsSchema": {
|
|
15598
|
+
"combo": {
|
|
15599
|
+
"types": [
|
|
15600
|
+
"number"
|
|
15601
|
+
],
|
|
15602
|
+
"description": "Current combo count",
|
|
15603
|
+
"required": true
|
|
15604
|
+
},
|
|
15605
|
+
"multiplier": {
|
|
15606
|
+
"types": [
|
|
15607
|
+
"number"
|
|
15608
|
+
],
|
|
15609
|
+
"description": "Score multiplier"
|
|
15610
|
+
},
|
|
15611
|
+
"streak": {
|
|
15612
|
+
"types": [
|
|
15613
|
+
"number"
|
|
15614
|
+
],
|
|
15615
|
+
"description": "Current streak"
|
|
15616
|
+
},
|
|
15617
|
+
"size": {
|
|
15618
|
+
"types": [
|
|
15619
|
+
"string"
|
|
15620
|
+
],
|
|
15621
|
+
"description": "Size variant"
|
|
15622
|
+
},
|
|
15623
|
+
"className": {
|
|
15624
|
+
"types": [
|
|
15625
|
+
"string"
|
|
15626
|
+
],
|
|
15627
|
+
"description": "Additional CSS classes"
|
|
15628
|
+
}
|
|
15629
|
+
}
|
|
15630
|
+
},
|
|
15631
|
+
"damage-number": {
|
|
15632
|
+
"type": "damage-number",
|
|
15633
|
+
"category": "component",
|
|
15634
|
+
"description": "DamageNumber component",
|
|
15635
|
+
"suggestedFor": [
|
|
15636
|
+
"damage",
|
|
15637
|
+
"number",
|
|
15638
|
+
"damage number"
|
|
15639
|
+
],
|
|
15640
|
+
"typicalSize": "small",
|
|
15641
|
+
"propsSchema": {
|
|
15642
|
+
"value": {
|
|
15643
|
+
"types": [
|
|
15644
|
+
"number"
|
|
15645
|
+
],
|
|
15646
|
+
"description": "The damage/heal value to display",
|
|
15647
|
+
"required": true
|
|
15648
|
+
},
|
|
15649
|
+
"type": {
|
|
15650
|
+
"types": [
|
|
15651
|
+
"string"
|
|
15652
|
+
],
|
|
15653
|
+
"description": "Type of number display"
|
|
15654
|
+
},
|
|
15655
|
+
"size": {
|
|
15656
|
+
"types": [
|
|
15657
|
+
"string"
|
|
15658
|
+
],
|
|
15659
|
+
"description": "Size variant"
|
|
15660
|
+
},
|
|
15661
|
+
"className": {
|
|
15662
|
+
"types": [
|
|
15663
|
+
"string"
|
|
15664
|
+
],
|
|
15665
|
+
"description": "Additional CSS classes"
|
|
15666
|
+
}
|
|
15667
|
+
}
|
|
15668
|
+
},
|
|
15669
|
+
"dialogue-bubble": {
|
|
15670
|
+
"type": "dialogue-bubble",
|
|
15671
|
+
"category": "game",
|
|
15672
|
+
"description": "DialogueBubble component",
|
|
15673
|
+
"suggestedFor": [
|
|
15674
|
+
"dialogue",
|
|
15675
|
+
"bubble",
|
|
15676
|
+
"dialogue bubble"
|
|
15677
|
+
],
|
|
15678
|
+
"typicalSize": "small",
|
|
15679
|
+
"propsSchema": {
|
|
15680
|
+
"speaker": {
|
|
15681
|
+
"types": [
|
|
15682
|
+
"string"
|
|
15683
|
+
],
|
|
15684
|
+
"description": "Speaker name displayed at the top"
|
|
15685
|
+
},
|
|
15686
|
+
"text": {
|
|
15687
|
+
"types": [
|
|
15688
|
+
"string"
|
|
15689
|
+
],
|
|
15690
|
+
"description": "Dialogue text content",
|
|
15691
|
+
"required": true
|
|
15692
|
+
},
|
|
15693
|
+
"portrait": {
|
|
15694
|
+
"types": [
|
|
15695
|
+
"string"
|
|
15696
|
+
],
|
|
15697
|
+
"description": "URL for the speaker portrait image"
|
|
15698
|
+
},
|
|
15699
|
+
"position": {
|
|
15700
|
+
"types": [
|
|
15701
|
+
"string"
|
|
15702
|
+
],
|
|
15703
|
+
"description": "Position of the bubble on screen"
|
|
15704
|
+
},
|
|
15705
|
+
"className": {
|
|
15706
|
+
"types": [
|
|
15707
|
+
"string"
|
|
15708
|
+
],
|
|
15709
|
+
"description": "Additional CSS classes"
|
|
15710
|
+
}
|
|
15711
|
+
}
|
|
15712
|
+
},
|
|
15713
|
+
"item-slot": {
|
|
15714
|
+
"type": "item-slot",
|
|
15715
|
+
"category": "layout",
|
|
15716
|
+
"description": "ItemSlot component",
|
|
15717
|
+
"suggestedFor": [
|
|
15718
|
+
"item",
|
|
15719
|
+
"slot",
|
|
15720
|
+
"item slot"
|
|
15721
|
+
],
|
|
15722
|
+
"typicalSize": "small",
|
|
15723
|
+
"propsSchema": {
|
|
15724
|
+
"icon": {
|
|
15725
|
+
"types": [
|
|
15726
|
+
"node"
|
|
15727
|
+
],
|
|
15728
|
+
"description": "Icon component or emoji"
|
|
15729
|
+
},
|
|
15730
|
+
"label": {
|
|
15731
|
+
"types": [
|
|
15732
|
+
"string"
|
|
15733
|
+
],
|
|
15734
|
+
"description": "Item label"
|
|
15735
|
+
},
|
|
15736
|
+
"quantity": {
|
|
15737
|
+
"types": [
|
|
15738
|
+
"number"
|
|
15739
|
+
],
|
|
15740
|
+
"description": "Stack quantity"
|
|
15741
|
+
},
|
|
15742
|
+
"rarity": {
|
|
15743
|
+
"types": [
|
|
15744
|
+
"string"
|
|
15745
|
+
],
|
|
15746
|
+
"description": "Rarity tier affecting border color"
|
|
15747
|
+
},
|
|
15748
|
+
"empty": {
|
|
15749
|
+
"types": [
|
|
15750
|
+
"boolean"
|
|
15751
|
+
],
|
|
15752
|
+
"description": "Whether the slot is empty"
|
|
15753
|
+
},
|
|
15754
|
+
"size": {
|
|
15755
|
+
"types": [
|
|
15756
|
+
"string"
|
|
15757
|
+
],
|
|
15758
|
+
"description": "Size variant"
|
|
15759
|
+
},
|
|
15760
|
+
"selected": {
|
|
15761
|
+
"types": [
|
|
15762
|
+
"boolean"
|
|
15763
|
+
],
|
|
15764
|
+
"description": "Whether the slot is selected"
|
|
15765
|
+
},
|
|
15766
|
+
"onClick": {
|
|
15767
|
+
"types": [
|
|
15768
|
+
"function"
|
|
15769
|
+
],
|
|
15770
|
+
"description": "Click handler"
|
|
15771
|
+
},
|
|
15772
|
+
"className": {
|
|
15773
|
+
"types": [
|
|
15774
|
+
"string"
|
|
15775
|
+
],
|
|
15776
|
+
"description": "Additional CSS classes"
|
|
15777
|
+
}
|
|
15778
|
+
}
|
|
15779
|
+
},
|
|
15780
|
+
"mini-map": {
|
|
15781
|
+
"type": "mini-map",
|
|
15782
|
+
"category": "component",
|
|
15783
|
+
"description": "MiniMap component",
|
|
15784
|
+
"suggestedFor": [
|
|
15785
|
+
"mini",
|
|
15786
|
+
"map",
|
|
15787
|
+
"mini map"
|
|
15788
|
+
],
|
|
15789
|
+
"typicalSize": "small",
|
|
15790
|
+
"propsSchema": {
|
|
15791
|
+
"tiles": {
|
|
15792
|
+
"types": [
|
|
15793
|
+
"array"
|
|
15794
|
+
],
|
|
15795
|
+
"description": "Tile data: each tile renders as a 1px dot at (x,y) with the given color"
|
|
15796
|
+
},
|
|
15797
|
+
"units": {
|
|
15798
|
+
"types": [
|
|
15799
|
+
"array"
|
|
15800
|
+
],
|
|
15801
|
+
"description": "Unit positions: each unit renders as a 2px dot"
|
|
15802
|
+
},
|
|
15803
|
+
"width": {
|
|
15804
|
+
"types": [
|
|
15805
|
+
"number"
|
|
15806
|
+
],
|
|
15807
|
+
"description": "Canvas display width in pixels"
|
|
15808
|
+
},
|
|
15809
|
+
"height": {
|
|
15810
|
+
"types": [
|
|
15811
|
+
"number"
|
|
15812
|
+
],
|
|
15813
|
+
"description": "Canvas display height in pixels"
|
|
15814
|
+
},
|
|
15815
|
+
"mapWidth": {
|
|
15816
|
+
"types": [
|
|
15817
|
+
"number"
|
|
15818
|
+
],
|
|
15819
|
+
"description": "Logical map width (for coordinate scaling)"
|
|
15820
|
+
},
|
|
15821
|
+
"mapHeight": {
|
|
15822
|
+
"types": [
|
|
15823
|
+
"number"
|
|
15824
|
+
],
|
|
15825
|
+
"description": "Logical map height (for coordinate scaling)"
|
|
15826
|
+
},
|
|
15827
|
+
"viewportRect": {
|
|
15828
|
+
"types": [
|
|
15829
|
+
"object"
|
|
15830
|
+
],
|
|
15831
|
+
"description": "Viewport rectangle outline"
|
|
15832
|
+
},
|
|
15833
|
+
"className": {
|
|
15834
|
+
"types": [
|
|
15835
|
+
"string"
|
|
15836
|
+
],
|
|
15837
|
+
"description": "Additional CSS classes"
|
|
15838
|
+
}
|
|
15839
|
+
}
|
|
15840
|
+
},
|
|
15841
|
+
"resource-counter": {
|
|
15842
|
+
"type": "resource-counter",
|
|
15843
|
+
"category": "component",
|
|
15844
|
+
"description": "ResourceCounter component",
|
|
15845
|
+
"suggestedFor": [
|
|
15846
|
+
"resource",
|
|
15847
|
+
"counter",
|
|
15848
|
+
"resource counter"
|
|
15849
|
+
],
|
|
15850
|
+
"typicalSize": "small",
|
|
15851
|
+
"propsSchema": {
|
|
15852
|
+
"icon": {
|
|
15853
|
+
"types": [
|
|
15854
|
+
"node"
|
|
15855
|
+
],
|
|
15856
|
+
"description": "Icon component or emoji"
|
|
15857
|
+
},
|
|
15858
|
+
"label": {
|
|
15859
|
+
"types": [
|
|
15860
|
+
"string"
|
|
15861
|
+
],
|
|
15862
|
+
"description": "Resource label",
|
|
15863
|
+
"required": true
|
|
15864
|
+
},
|
|
15865
|
+
"value": {
|
|
15866
|
+
"types": [
|
|
15867
|
+
"number"
|
|
15868
|
+
],
|
|
15869
|
+
"description": "Current value",
|
|
15870
|
+
"required": true
|
|
15871
|
+
},
|
|
15872
|
+
"max": {
|
|
15873
|
+
"types": [
|
|
15874
|
+
"number"
|
|
15875
|
+
],
|
|
15876
|
+
"description": "Maximum value"
|
|
15877
|
+
},
|
|
15878
|
+
"color": {
|
|
15879
|
+
"types": [
|
|
15880
|
+
"string"
|
|
15881
|
+
],
|
|
15882
|
+
"description": "Accent color class (e.g. 'text-yellow-400')"
|
|
15883
|
+
},
|
|
15884
|
+
"size": {
|
|
15885
|
+
"types": [
|
|
15886
|
+
"string"
|
|
15887
|
+
],
|
|
15888
|
+
"description": "Size variant"
|
|
15889
|
+
},
|
|
15890
|
+
"className": {
|
|
15891
|
+
"types": [
|
|
15892
|
+
"string"
|
|
15893
|
+
],
|
|
15894
|
+
"description": "Additional CSS classes"
|
|
15895
|
+
}
|
|
15896
|
+
}
|
|
15897
|
+
},
|
|
15898
|
+
"status-effect": {
|
|
15899
|
+
"type": "status-effect",
|
|
15900
|
+
"category": "display",
|
|
15901
|
+
"description": "StatusEffect component",
|
|
15902
|
+
"suggestedFor": [
|
|
15903
|
+
"status",
|
|
15904
|
+
"effect",
|
|
15905
|
+
"status effect"
|
|
15906
|
+
],
|
|
15907
|
+
"typicalSize": "small",
|
|
15908
|
+
"propsSchema": {
|
|
15909
|
+
"icon": {
|
|
15910
|
+
"types": [
|
|
15911
|
+
"node"
|
|
15912
|
+
],
|
|
15913
|
+
"description": "Icon to display for the effect",
|
|
15914
|
+
"required": true
|
|
15915
|
+
},
|
|
15916
|
+
"label": {
|
|
15917
|
+
"types": [
|
|
15918
|
+
"string"
|
|
15919
|
+
],
|
|
15920
|
+
"description": "Label describing the effect"
|
|
15921
|
+
},
|
|
15922
|
+
"duration": {
|
|
15923
|
+
"types": [
|
|
15924
|
+
"number"
|
|
15925
|
+
],
|
|
15926
|
+
"description": "Remaining duration in seconds"
|
|
15927
|
+
},
|
|
15928
|
+
"stacks": {
|
|
15929
|
+
"types": [
|
|
15930
|
+
"number"
|
|
15931
|
+
],
|
|
15932
|
+
"description": "Number of stacks"
|
|
15933
|
+
},
|
|
15934
|
+
"variant": {
|
|
15935
|
+
"types": [
|
|
15936
|
+
"string"
|
|
15937
|
+
],
|
|
15938
|
+
"description": "Effect type"
|
|
15939
|
+
},
|
|
15940
|
+
"size": {
|
|
15941
|
+
"types": [
|
|
15942
|
+
"string"
|
|
15943
|
+
],
|
|
15944
|
+
"description": "Size variant"
|
|
15945
|
+
},
|
|
15946
|
+
"className": {
|
|
15947
|
+
"types": [
|
|
15948
|
+
"string"
|
|
15949
|
+
],
|
|
15950
|
+
"description": "Additional CSS classes"
|
|
15951
|
+
}
|
|
15952
|
+
}
|
|
15953
|
+
},
|
|
15954
|
+
"timer-display": {
|
|
15955
|
+
"type": "timer-display",
|
|
15956
|
+
"category": "component",
|
|
15957
|
+
"description": "TimerDisplay component",
|
|
15958
|
+
"suggestedFor": [
|
|
15959
|
+
"timer",
|
|
15960
|
+
"display",
|
|
15961
|
+
"timer display"
|
|
15962
|
+
],
|
|
15963
|
+
"typicalSize": "small",
|
|
15964
|
+
"propsSchema": {
|
|
15965
|
+
"seconds": {
|
|
15966
|
+
"types": [
|
|
15967
|
+
"number"
|
|
15968
|
+
],
|
|
15969
|
+
"description": "Time in seconds",
|
|
15970
|
+
"required": true
|
|
15971
|
+
},
|
|
15972
|
+
"running": {
|
|
15973
|
+
"types": [
|
|
15974
|
+
"boolean"
|
|
15975
|
+
],
|
|
15976
|
+
"description": "Whether the timer is running"
|
|
15977
|
+
},
|
|
15978
|
+
"format": {
|
|
15979
|
+
"types": [
|
|
15980
|
+
"string"
|
|
15981
|
+
],
|
|
15982
|
+
"description": "Display format"
|
|
15983
|
+
},
|
|
15984
|
+
"size": {
|
|
15985
|
+
"types": [
|
|
15986
|
+
"string"
|
|
15987
|
+
],
|
|
15988
|
+
"description": "Size variant"
|
|
15989
|
+
},
|
|
15990
|
+
"className": {
|
|
15991
|
+
"types": [
|
|
15992
|
+
"string"
|
|
15993
|
+
],
|
|
15994
|
+
"description": "Additional CSS classes"
|
|
15995
|
+
},
|
|
15996
|
+
"lowThreshold": {
|
|
15997
|
+
"types": [
|
|
15998
|
+
"number"
|
|
15999
|
+
],
|
|
16000
|
+
"description": "Seconds below which to pulse red"
|
|
16001
|
+
}
|
|
16002
|
+
}
|
|
16003
|
+
},
|
|
16004
|
+
"turn-indicator": {
|
|
16005
|
+
"type": "turn-indicator",
|
|
16006
|
+
"category": "component",
|
|
16007
|
+
"description": "TurnIndicator component",
|
|
16008
|
+
"suggestedFor": [
|
|
16009
|
+
"turn",
|
|
16010
|
+
"indicator",
|
|
16011
|
+
"turn indicator"
|
|
16012
|
+
],
|
|
16013
|
+
"typicalSize": "small",
|
|
16014
|
+
"propsSchema": {
|
|
16015
|
+
"currentTurn": {
|
|
16016
|
+
"types": [
|
|
16017
|
+
"number"
|
|
16018
|
+
],
|
|
16019
|
+
"description": "Current turn number",
|
|
16020
|
+
"required": true
|
|
16021
|
+
},
|
|
16022
|
+
"maxTurns": {
|
|
16023
|
+
"types": [
|
|
16024
|
+
"number"
|
|
16025
|
+
],
|
|
16026
|
+
"description": "Maximum number of turns"
|
|
16027
|
+
},
|
|
16028
|
+
"activeTeam": {
|
|
16029
|
+
"types": [
|
|
16030
|
+
"string"
|
|
16031
|
+
],
|
|
16032
|
+
"description": "Name of the active team"
|
|
16033
|
+
},
|
|
16034
|
+
"phase": {
|
|
16035
|
+
"types": [
|
|
16036
|
+
"string"
|
|
16037
|
+
],
|
|
16038
|
+
"description": "Current phase label"
|
|
16039
|
+
},
|
|
16040
|
+
"size": {
|
|
16041
|
+
"types": [
|
|
16042
|
+
"string"
|
|
16043
|
+
],
|
|
16044
|
+
"description": "Size variant"
|
|
16045
|
+
},
|
|
16046
|
+
"className": {
|
|
16047
|
+
"types": [
|
|
16048
|
+
"string"
|
|
16049
|
+
],
|
|
16050
|
+
"description": "Additional CSS classes"
|
|
16051
|
+
}
|
|
16052
|
+
}
|
|
16053
|
+
},
|
|
16054
|
+
"waypoint-marker": {
|
|
16055
|
+
"type": "waypoint-marker",
|
|
16056
|
+
"category": "component",
|
|
16057
|
+
"description": "WaypointMarker component",
|
|
16058
|
+
"suggestedFor": [
|
|
16059
|
+
"waypoint",
|
|
16060
|
+
"marker",
|
|
16061
|
+
"waypoint marker"
|
|
16062
|
+
],
|
|
16063
|
+
"typicalSize": "small",
|
|
16064
|
+
"propsSchema": {
|
|
16065
|
+
"label": {
|
|
16066
|
+
"types": [
|
|
16067
|
+
"string"
|
|
16068
|
+
],
|
|
16069
|
+
"description": "Label text below the marker"
|
|
16070
|
+
},
|
|
16071
|
+
"icon": {
|
|
16072
|
+
"types": [
|
|
16073
|
+
"node"
|
|
16074
|
+
],
|
|
16075
|
+
"description": "Custom icon to render inside the marker"
|
|
16076
|
+
},
|
|
16077
|
+
"active": {
|
|
16078
|
+
"types": [
|
|
16079
|
+
"boolean"
|
|
16080
|
+
],
|
|
16081
|
+
"description": "Whether this waypoint is currently active"
|
|
16082
|
+
},
|
|
16083
|
+
"completed": {
|
|
16084
|
+
"types": [
|
|
16085
|
+
"boolean"
|
|
16086
|
+
],
|
|
16087
|
+
"description": "Whether this waypoint has been completed"
|
|
16088
|
+
},
|
|
16089
|
+
"size": {
|
|
16090
|
+
"types": [
|
|
16091
|
+
"string"
|
|
16092
|
+
],
|
|
16093
|
+
"description": "Size variant"
|
|
16094
|
+
},
|
|
16095
|
+
"className": {
|
|
16096
|
+
"types": [
|
|
16097
|
+
"string"
|
|
16098
|
+
],
|
|
16099
|
+
"description": "Additional CSS classes"
|
|
16100
|
+
}
|
|
16101
|
+
}
|
|
16102
|
+
},
|
|
16103
|
+
"x-p-bar": {
|
|
16104
|
+
"type": "x-p-bar",
|
|
16105
|
+
"category": "component",
|
|
16106
|
+
"description": "XPBar component",
|
|
16107
|
+
"suggestedFor": [
|
|
16108
|
+
"bar",
|
|
16109
|
+
"x p bar"
|
|
16110
|
+
],
|
|
16111
|
+
"typicalSize": "small",
|
|
16112
|
+
"propsSchema": {
|
|
16113
|
+
"current": {
|
|
16114
|
+
"types": [
|
|
16115
|
+
"number"
|
|
16116
|
+
],
|
|
16117
|
+
"description": "Current XP value",
|
|
16118
|
+
"required": true
|
|
16119
|
+
},
|
|
16120
|
+
"max": {
|
|
16121
|
+
"types": [
|
|
16122
|
+
"number"
|
|
16123
|
+
],
|
|
16124
|
+
"description": "XP needed for next level",
|
|
16125
|
+
"required": true
|
|
16126
|
+
},
|
|
16127
|
+
"level": {
|
|
16128
|
+
"types": [
|
|
16129
|
+
"number"
|
|
16130
|
+
],
|
|
16131
|
+
"description": "Current level"
|
|
16132
|
+
},
|
|
16133
|
+
"showLabel": {
|
|
16134
|
+
"types": [
|
|
16135
|
+
"boolean"
|
|
16136
|
+
],
|
|
16137
|
+
"description": "Whether to show the XP label"
|
|
16138
|
+
},
|
|
16139
|
+
"size": {
|
|
16140
|
+
"types": [
|
|
16141
|
+
"string"
|
|
16142
|
+
],
|
|
16143
|
+
"description": "Size variant"
|
|
16144
|
+
},
|
|
16145
|
+
"animated": {
|
|
16146
|
+
"types": [
|
|
16147
|
+
"boolean"
|
|
16148
|
+
],
|
|
16149
|
+
"description": "Animate the fill bar"
|
|
16150
|
+
},
|
|
16151
|
+
"className": {
|
|
16152
|
+
"types": [
|
|
16153
|
+
"string"
|
|
16154
|
+
],
|
|
16155
|
+
"description": "Additional CSS classes"
|
|
16156
|
+
}
|
|
16157
|
+
}
|
|
16158
|
+
},
|
|
16159
|
+
"crafting-recipe": {
|
|
16160
|
+
"type": "crafting-recipe",
|
|
16161
|
+
"category": "component",
|
|
16162
|
+
"description": "CraftingRecipe component",
|
|
16163
|
+
"suggestedFor": [
|
|
16164
|
+
"crafting",
|
|
16165
|
+
"recipe",
|
|
16166
|
+
"crafting recipe"
|
|
16167
|
+
],
|
|
16168
|
+
"typicalSize": "medium",
|
|
16169
|
+
"propsSchema": {
|
|
16170
|
+
"inputs": {
|
|
16171
|
+
"types": [
|
|
16172
|
+
"array"
|
|
16173
|
+
],
|
|
16174
|
+
"description": "Input ingredients for the recipe",
|
|
16175
|
+
"required": true
|
|
16176
|
+
},
|
|
16177
|
+
"output": {
|
|
16178
|
+
"types": [
|
|
16179
|
+
"object"
|
|
16180
|
+
],
|
|
16181
|
+
"description": "Output item produced by the recipe",
|
|
16182
|
+
"required": true
|
|
16183
|
+
},
|
|
16184
|
+
"canCraft": {
|
|
16185
|
+
"types": [
|
|
16186
|
+
"boolean"
|
|
16187
|
+
],
|
|
16188
|
+
"description": "Whether the player has enough ingredients to craft"
|
|
16189
|
+
},
|
|
16190
|
+
"onCraft": {
|
|
16191
|
+
"types": [
|
|
16192
|
+
"function"
|
|
16193
|
+
],
|
|
16194
|
+
"description": "Callback when the craft button is clicked"
|
|
16195
|
+
},
|
|
16196
|
+
"craftEvent": {
|
|
16197
|
+
"types": [
|
|
16198
|
+
"string"
|
|
16199
|
+
],
|
|
16200
|
+
"description": "Event bus event name for crafting"
|
|
16201
|
+
},
|
|
16202
|
+
"className": {
|
|
16203
|
+
"types": [
|
|
16204
|
+
"string"
|
|
16205
|
+
],
|
|
16206
|
+
"description": "Additional CSS classes"
|
|
16207
|
+
}
|
|
16208
|
+
}
|
|
16209
|
+
},
|
|
16210
|
+
"enemy-plate": {
|
|
16211
|
+
"type": "enemy-plate",
|
|
16212
|
+
"category": "component",
|
|
16213
|
+
"description": "EnemyPlate component",
|
|
16214
|
+
"suggestedFor": [
|
|
16215
|
+
"enemy",
|
|
16216
|
+
"plate",
|
|
16217
|
+
"enemy plate"
|
|
16218
|
+
],
|
|
16219
|
+
"typicalSize": "medium",
|
|
16220
|
+
"propsSchema": {
|
|
16221
|
+
"name": {
|
|
16222
|
+
"types": [
|
|
16223
|
+
"string"
|
|
16224
|
+
],
|
|
16225
|
+
"description": "Enemy name",
|
|
16226
|
+
"required": true
|
|
16227
|
+
},
|
|
16228
|
+
"health": {
|
|
16229
|
+
"types": [
|
|
16230
|
+
"number"
|
|
16231
|
+
],
|
|
16232
|
+
"description": "Current health",
|
|
16233
|
+
"required": true
|
|
16234
|
+
},
|
|
16235
|
+
"maxHealth": {
|
|
16236
|
+
"types": [
|
|
16237
|
+
"number"
|
|
16238
|
+
],
|
|
16239
|
+
"description": "Maximum health",
|
|
16240
|
+
"required": true
|
|
16241
|
+
},
|
|
16242
|
+
"level": {
|
|
16243
|
+
"types": [
|
|
16244
|
+
"number"
|
|
16245
|
+
],
|
|
16246
|
+
"description": "Enemy level"
|
|
16247
|
+
},
|
|
16248
|
+
"effects": {
|
|
16249
|
+
"types": [
|
|
16250
|
+
"array"
|
|
16251
|
+
],
|
|
16252
|
+
"description": "Active status effects"
|
|
16253
|
+
},
|
|
16254
|
+
"className": {
|
|
16255
|
+
"types": [
|
|
16256
|
+
"string"
|
|
16257
|
+
],
|
|
16258
|
+
"description": "Additional CSS classes"
|
|
16259
|
+
}
|
|
16260
|
+
}
|
|
16261
|
+
},
|
|
16262
|
+
"game-canvas2-d": {
|
|
16263
|
+
"type": "game-canvas2-d",
|
|
16264
|
+
"category": "game",
|
|
16265
|
+
"description": "GameCanvas2D component",
|
|
16266
|
+
"suggestedFor": [
|
|
16267
|
+
"game",
|
|
16268
|
+
"canvas2",
|
|
16269
|
+
"game canvas2 d"
|
|
16270
|
+
],
|
|
16271
|
+
"typicalSize": "medium",
|
|
16272
|
+
"propsSchema": {
|
|
16273
|
+
"width": {
|
|
16274
|
+
"types": [
|
|
16275
|
+
"number"
|
|
16276
|
+
],
|
|
16277
|
+
"description": "Canvas width in pixels"
|
|
16278
|
+
},
|
|
16279
|
+
"height": {
|
|
16280
|
+
"types": [
|
|
16281
|
+
"number"
|
|
16282
|
+
],
|
|
16283
|
+
"description": "Canvas height in pixels"
|
|
16284
|
+
},
|
|
16285
|
+
"onDraw": {
|
|
16286
|
+
"types": [
|
|
16287
|
+
"function"
|
|
16288
|
+
],
|
|
16289
|
+
"description": "Called each frame with the 2D context and current frame count"
|
|
16290
|
+
},
|
|
16291
|
+
"onTick": {
|
|
16292
|
+
"types": [
|
|
16293
|
+
"function"
|
|
16294
|
+
],
|
|
16295
|
+
"description": "Called each tick with delta time in seconds"
|
|
16296
|
+
},
|
|
16297
|
+
"fps": {
|
|
16298
|
+
"types": [
|
|
16299
|
+
"number"
|
|
16300
|
+
],
|
|
16301
|
+
"description": "Target frames per second"
|
|
16302
|
+
},
|
|
16303
|
+
"className": {
|
|
16304
|
+
"types": [
|
|
16305
|
+
"string"
|
|
16306
|
+
],
|
|
16307
|
+
"description": "Additional CSS classes"
|
|
16308
|
+
}
|
|
16309
|
+
}
|
|
16310
|
+
},
|
|
16311
|
+
"health-panel": {
|
|
16312
|
+
"type": "health-panel",
|
|
16313
|
+
"category": "component",
|
|
16314
|
+
"description": "HealthPanel component",
|
|
16315
|
+
"suggestedFor": [
|
|
16316
|
+
"health",
|
|
16317
|
+
"panel",
|
|
16318
|
+
"health panel"
|
|
16319
|
+
],
|
|
16320
|
+
"typicalSize": "medium",
|
|
16321
|
+
"propsSchema": {
|
|
16322
|
+
"current": {
|
|
16323
|
+
"types": [
|
|
16324
|
+
"number"
|
|
16325
|
+
],
|
|
16326
|
+
"description": "Current health value",
|
|
16327
|
+
"required": true
|
|
16328
|
+
},
|
|
16329
|
+
"max": {
|
|
16330
|
+
"types": [
|
|
16331
|
+
"number"
|
|
16332
|
+
],
|
|
16333
|
+
"description": "Maximum health value",
|
|
16334
|
+
"required": true
|
|
16335
|
+
},
|
|
16336
|
+
"shield": {
|
|
16337
|
+
"types": [
|
|
16338
|
+
"number"
|
|
16339
|
+
],
|
|
16340
|
+
"description": "Shield/armor points"
|
|
16341
|
+
},
|
|
16342
|
+
"label": {
|
|
16343
|
+
"types": [
|
|
16344
|
+
"string"
|
|
16345
|
+
],
|
|
16346
|
+
"description": "Label shown above the bar"
|
|
16347
|
+
},
|
|
16348
|
+
"effects": {
|
|
16349
|
+
"types": [
|
|
16350
|
+
"array"
|
|
16351
|
+
],
|
|
16352
|
+
"description": "Active status effects displayed as small badges"
|
|
16353
|
+
},
|
|
16354
|
+
"showNumbers": {
|
|
16355
|
+
"types": [
|
|
16356
|
+
"boolean"
|
|
16357
|
+
],
|
|
16358
|
+
"description": "Whether to display numeric HP values"
|
|
16359
|
+
},
|
|
16360
|
+
"size": {
|
|
16361
|
+
"types": [
|
|
16362
|
+
"string"
|
|
16363
|
+
],
|
|
16364
|
+
"description": "Size variant"
|
|
16365
|
+
},
|
|
16366
|
+
"className": {
|
|
16367
|
+
"types": [
|
|
16368
|
+
"string"
|
|
16369
|
+
],
|
|
16370
|
+
"description": "Additional CSS classes"
|
|
16371
|
+
}
|
|
16372
|
+
}
|
|
16373
|
+
},
|
|
16374
|
+
"inventory-grid": {
|
|
16375
|
+
"type": "inventory-grid",
|
|
16376
|
+
"category": "game",
|
|
16377
|
+
"description": "InventoryGrid component",
|
|
16378
|
+
"suggestedFor": [
|
|
16379
|
+
"inventory",
|
|
16380
|
+
"grid",
|
|
16381
|
+
"inventory grid"
|
|
16382
|
+
],
|
|
16383
|
+
"typicalSize": "medium",
|
|
16384
|
+
"propsSchema": {
|
|
16385
|
+
"items": {
|
|
16386
|
+
"types": [
|
|
16387
|
+
"array"
|
|
16388
|
+
],
|
|
16389
|
+
"description": "Array of items to display in the grid",
|
|
16390
|
+
"required": true
|
|
16391
|
+
},
|
|
16392
|
+
"columns": {
|
|
16393
|
+
"types": [
|
|
16394
|
+
"number"
|
|
16395
|
+
],
|
|
16396
|
+
"description": "Number of columns in the grid"
|
|
16397
|
+
},
|
|
16398
|
+
"totalSlots": {
|
|
16399
|
+
"types": [
|
|
16400
|
+
"number"
|
|
16401
|
+
],
|
|
16402
|
+
"description": "Total number of slots (empty slots fill remaining space)"
|
|
16403
|
+
},
|
|
16404
|
+
"selectedId": {
|
|
16405
|
+
"types": [
|
|
16406
|
+
"string"
|
|
16407
|
+
],
|
|
16408
|
+
"description": "Currently selected item ID"
|
|
16409
|
+
},
|
|
16410
|
+
"onSelect": {
|
|
16411
|
+
"types": [
|
|
16412
|
+
"function"
|
|
16413
|
+
],
|
|
16414
|
+
"description": "Callback when an item is selected"
|
|
16415
|
+
},
|
|
16416
|
+
"selectEvent": {
|
|
16417
|
+
"types": [
|
|
16418
|
+
"string"
|
|
16419
|
+
],
|
|
16420
|
+
"description": "Event bus event name for selection"
|
|
16421
|
+
},
|
|
16422
|
+
"size": {
|
|
16423
|
+
"types": [
|
|
16424
|
+
"string"
|
|
16425
|
+
],
|
|
16426
|
+
"description": "Size variant for all item slots"
|
|
16427
|
+
},
|
|
16428
|
+
"className": {
|
|
16429
|
+
"types": [
|
|
16430
|
+
"string"
|
|
16431
|
+
],
|
|
16432
|
+
"description": "Additional CSS classes"
|
|
16433
|
+
}
|
|
16434
|
+
}
|
|
16435
|
+
},
|
|
16436
|
+
"powerup-slots": {
|
|
16437
|
+
"type": "powerup-slots",
|
|
16438
|
+
"category": "layout",
|
|
16439
|
+
"description": "PowerupSlots component",
|
|
16440
|
+
"suggestedFor": [
|
|
16441
|
+
"powerup",
|
|
16442
|
+
"slots",
|
|
16443
|
+
"powerup slots"
|
|
16444
|
+
],
|
|
16445
|
+
"typicalSize": "medium",
|
|
16446
|
+
"propsSchema": {
|
|
16447
|
+
"active": {
|
|
16448
|
+
"types": [
|
|
16449
|
+
"array"
|
|
16450
|
+
],
|
|
16451
|
+
"description": "Array of active powerups",
|
|
16452
|
+
"required": true
|
|
16453
|
+
},
|
|
16454
|
+
"maxSlots": {
|
|
16455
|
+
"types": [
|
|
16456
|
+
"number"
|
|
16457
|
+
],
|
|
16458
|
+
"description": "Maximum number of powerup slots"
|
|
16459
|
+
},
|
|
16460
|
+
"className": {
|
|
16461
|
+
"types": [
|
|
16462
|
+
"string"
|
|
16463
|
+
],
|
|
16464
|
+
"description": "Additional CSS classes"
|
|
16465
|
+
}
|
|
16466
|
+
}
|
|
16467
|
+
},
|
|
16468
|
+
"quest-tracker": {
|
|
16469
|
+
"type": "quest-tracker",
|
|
16470
|
+
"category": "component",
|
|
16471
|
+
"description": "QuestTracker component",
|
|
16472
|
+
"suggestedFor": [
|
|
16473
|
+
"quest",
|
|
16474
|
+
"tracker",
|
|
16475
|
+
"quest tracker"
|
|
16476
|
+
],
|
|
16477
|
+
"typicalSize": "medium",
|
|
16478
|
+
"propsSchema": {
|
|
16479
|
+
"quests": {
|
|
16480
|
+
"types": [
|
|
16481
|
+
"array"
|
|
16482
|
+
],
|
|
16483
|
+
"description": "Array of quests to display",
|
|
16484
|
+
"required": true
|
|
16485
|
+
},
|
|
16486
|
+
"activeQuestId": {
|
|
16487
|
+
"types": [
|
|
16488
|
+
"string"
|
|
16489
|
+
],
|
|
16490
|
+
"description": "ID of the currently active quest"
|
|
16491
|
+
},
|
|
16492
|
+
"className": {
|
|
16493
|
+
"types": [
|
|
16494
|
+
"string"
|
|
16495
|
+
],
|
|
16496
|
+
"description": "Additional CSS classes"
|
|
16497
|
+
}
|
|
16498
|
+
}
|
|
16499
|
+
},
|
|
16500
|
+
"resource-bar": {
|
|
16501
|
+
"type": "resource-bar",
|
|
16502
|
+
"category": "component",
|
|
16503
|
+
"description": "ResourceBar component",
|
|
16504
|
+
"suggestedFor": [
|
|
16505
|
+
"resource",
|
|
16506
|
+
"bar",
|
|
16507
|
+
"resource bar"
|
|
16508
|
+
],
|
|
16509
|
+
"typicalSize": "medium",
|
|
16510
|
+
"propsSchema": {
|
|
16511
|
+
"resources": {
|
|
16512
|
+
"types": [
|
|
16513
|
+
"array"
|
|
16514
|
+
],
|
|
16515
|
+
"description": "Resources to display",
|
|
16516
|
+
"required": true
|
|
16517
|
+
},
|
|
16518
|
+
"size": {
|
|
16519
|
+
"types": [
|
|
16520
|
+
"string"
|
|
16521
|
+
],
|
|
16522
|
+
"description": "Size variant"
|
|
16523
|
+
},
|
|
16524
|
+
"className": {
|
|
16525
|
+
"types": [
|
|
16526
|
+
"string"
|
|
16527
|
+
],
|
|
16528
|
+
"description": "Additional CSS classes"
|
|
16529
|
+
}
|
|
16530
|
+
}
|
|
16531
|
+
},
|
|
16532
|
+
"score-board": {
|
|
16533
|
+
"type": "score-board",
|
|
16534
|
+
"category": "game",
|
|
16535
|
+
"description": "ScoreBoard component",
|
|
16536
|
+
"suggestedFor": [
|
|
16537
|
+
"score",
|
|
16538
|
+
"board",
|
|
16539
|
+
"score board"
|
|
16540
|
+
],
|
|
16541
|
+
"typicalSize": "medium",
|
|
16542
|
+
"propsSchema": {
|
|
16543
|
+
"score": {
|
|
16544
|
+
"types": [
|
|
16545
|
+
"number"
|
|
16546
|
+
],
|
|
16547
|
+
"description": "Current score",
|
|
16548
|
+
"required": true
|
|
16549
|
+
},
|
|
16550
|
+
"highScore": {
|
|
16551
|
+
"types": [
|
|
16552
|
+
"number"
|
|
16553
|
+
],
|
|
16554
|
+
"description": "All-time high score"
|
|
16555
|
+
},
|
|
16556
|
+
"combo": {
|
|
16557
|
+
"types": [
|
|
16558
|
+
"number"
|
|
16559
|
+
],
|
|
16560
|
+
"description": "Current combo count"
|
|
16561
|
+
},
|
|
16562
|
+
"multiplier": {
|
|
16563
|
+
"types": [
|
|
16564
|
+
"number"
|
|
16565
|
+
],
|
|
16566
|
+
"description": "Score multiplier"
|
|
16567
|
+
},
|
|
16568
|
+
"level": {
|
|
16569
|
+
"types": [
|
|
16570
|
+
"number"
|
|
16571
|
+
],
|
|
16572
|
+
"description": "Current level"
|
|
16573
|
+
},
|
|
16574
|
+
"className": {
|
|
16575
|
+
"types": [
|
|
16576
|
+
"string"
|
|
16577
|
+
],
|
|
16578
|
+
"description": "Additional CSS classes"
|
|
16579
|
+
}
|
|
16580
|
+
}
|
|
16581
|
+
},
|
|
16582
|
+
"turn-panel": {
|
|
16583
|
+
"type": "turn-panel",
|
|
16584
|
+
"category": "component",
|
|
16585
|
+
"description": "TurnPanel component",
|
|
16586
|
+
"suggestedFor": [
|
|
16587
|
+
"turn",
|
|
16588
|
+
"panel",
|
|
16589
|
+
"turn panel"
|
|
16590
|
+
],
|
|
16591
|
+
"typicalSize": "medium",
|
|
16592
|
+
"propsSchema": {
|
|
16593
|
+
"currentTurn": {
|
|
16594
|
+
"types": [
|
|
16595
|
+
"number"
|
|
16596
|
+
],
|
|
16597
|
+
"description": "Current turn number",
|
|
16598
|
+
"required": true
|
|
16599
|
+
},
|
|
16600
|
+
"maxTurns": {
|
|
16601
|
+
"types": [
|
|
16602
|
+
"number"
|
|
16603
|
+
],
|
|
16604
|
+
"description": "Maximum number of turns"
|
|
16605
|
+
},
|
|
16606
|
+
"phase": {
|
|
16607
|
+
"types": [
|
|
16608
|
+
"string"
|
|
16609
|
+
],
|
|
16610
|
+
"description": "Current phase label"
|
|
16611
|
+
},
|
|
16612
|
+
"activeTeam": {
|
|
16613
|
+
"types": [
|
|
16614
|
+
"string"
|
|
16615
|
+
],
|
|
16616
|
+
"description": "Active team name"
|
|
16617
|
+
},
|
|
16618
|
+
"actions": {
|
|
16619
|
+
"types": [
|
|
16620
|
+
"array"
|
|
16621
|
+
],
|
|
16622
|
+
"description": "Action buttons to display"
|
|
16623
|
+
},
|
|
16624
|
+
"className": {
|
|
16625
|
+
"types": [
|
|
16626
|
+
"string"
|
|
16627
|
+
],
|
|
16628
|
+
"description": "Additional CSS classes"
|
|
16629
|
+
}
|
|
16630
|
+
}
|
|
16631
|
+
},
|
|
16632
|
+
"unit-command-bar": {
|
|
16633
|
+
"type": "unit-command-bar",
|
|
16634
|
+
"category": "component",
|
|
16635
|
+
"description": "UnitCommandBar component",
|
|
16636
|
+
"suggestedFor": [
|
|
16637
|
+
"unit",
|
|
16638
|
+
"command",
|
|
16639
|
+
"bar",
|
|
16640
|
+
"unit command bar"
|
|
16641
|
+
],
|
|
16642
|
+
"typicalSize": "medium",
|
|
16643
|
+
"propsSchema": {
|
|
16644
|
+
"commands": {
|
|
16645
|
+
"types": [
|
|
16646
|
+
"array"
|
|
16647
|
+
],
|
|
16648
|
+
"description": "Available commands",
|
|
16649
|
+
"required": true
|
|
16650
|
+
},
|
|
16651
|
+
"selectedUnitId": {
|
|
16652
|
+
"types": [
|
|
16653
|
+
"string"
|
|
16654
|
+
],
|
|
16655
|
+
"description": "ID of the currently selected unit"
|
|
16656
|
+
},
|
|
16657
|
+
"className": {
|
|
16658
|
+
"types": [
|
|
16659
|
+
"string"
|
|
16660
|
+
],
|
|
16661
|
+
"description": "Additional CSS classes"
|
|
14173
16662
|
}
|
|
14174
16663
|
}
|
|
14175
16664
|
},
|