@almadar/patterns 2.0.0 → 2.0.3
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 +111 -1
- package/dist/event-contracts.json +171 -48
- package/dist/index.d.ts +4911 -882
- package/dist/index.js +2005 -239
- package/dist/index.js.map +1 -1
- package/dist/patterns-registry.json +1713 -179
- package/dist/registry.json +1713 -179
- package/package.json +4 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-
|
|
3
|
+
"exportedAt": "2026-03-05T06:51:24.222Z",
|
|
4
4
|
"patterns": {
|
|
5
5
|
"entity-table": {
|
|
6
6
|
"type": "entity-table",
|
|
@@ -445,7 +445,7 @@
|
|
|
445
445
|
"types": [
|
|
446
446
|
"node"
|
|
447
447
|
],
|
|
448
|
-
"description": "Children elements (cards) - optional when using entity
|
|
448
|
+
"description": "Children elements (cards) - optional when using entity prop"
|
|
449
449
|
},
|
|
450
450
|
"fields": {
|
|
451
451
|
"types": [
|
|
@@ -476,6 +476,18 @@
|
|
|
476
476
|
"boolean"
|
|
477
477
|
],
|
|
478
478
|
"description": "Show total count in pagination"
|
|
479
|
+
},
|
|
480
|
+
"showAvatar": {
|
|
481
|
+
"types": [
|
|
482
|
+
"boolean"
|
|
483
|
+
],
|
|
484
|
+
"description": "Show avatar/image field on cards"
|
|
485
|
+
},
|
|
486
|
+
"variant": {
|
|
487
|
+
"types": [
|
|
488
|
+
"string"
|
|
489
|
+
],
|
|
490
|
+
"description": "Visual variant for the card grid"
|
|
479
491
|
}
|
|
480
492
|
}
|
|
481
493
|
},
|
|
@@ -490,6 +502,84 @@
|
|
|
490
502
|
],
|
|
491
503
|
"typicalSize": "medium",
|
|
492
504
|
"propsSchema": {
|
|
505
|
+
"entity": {
|
|
506
|
+
"types": [
|
|
507
|
+
"string"
|
|
508
|
+
],
|
|
509
|
+
"description": "Entity name for schema-driven integration"
|
|
510
|
+
},
|
|
511
|
+
"data": {
|
|
512
|
+
"types": [
|
|
513
|
+
"array"
|
|
514
|
+
],
|
|
515
|
+
"description": "Data array provided by the trait via render-ui"
|
|
516
|
+
},
|
|
517
|
+
"className": {
|
|
518
|
+
"types": [
|
|
519
|
+
"string"
|
|
520
|
+
],
|
|
521
|
+
"description": "Additional CSS classes"
|
|
522
|
+
},
|
|
523
|
+
"isLoading": {
|
|
524
|
+
"types": [
|
|
525
|
+
"boolean"
|
|
526
|
+
],
|
|
527
|
+
"description": "Loading state indicator"
|
|
528
|
+
},
|
|
529
|
+
"error": {
|
|
530
|
+
"types": [
|
|
531
|
+
"object"
|
|
532
|
+
],
|
|
533
|
+
"description": "Error state"
|
|
534
|
+
},
|
|
535
|
+
"sortBy": {
|
|
536
|
+
"types": [
|
|
537
|
+
"string"
|
|
538
|
+
],
|
|
539
|
+
"description": "Current sort field"
|
|
540
|
+
},
|
|
541
|
+
"sortDirection": {
|
|
542
|
+
"types": [
|
|
543
|
+
"string"
|
|
544
|
+
],
|
|
545
|
+
"description": "Current sort direction"
|
|
546
|
+
},
|
|
547
|
+
"searchValue": {
|
|
548
|
+
"types": [
|
|
549
|
+
"string"
|
|
550
|
+
],
|
|
551
|
+
"description": "Current search query value"
|
|
552
|
+
},
|
|
553
|
+
"page": {
|
|
554
|
+
"types": [
|
|
555
|
+
"number"
|
|
556
|
+
],
|
|
557
|
+
"description": "Current page number"
|
|
558
|
+
},
|
|
559
|
+
"pageSize": {
|
|
560
|
+
"types": [
|
|
561
|
+
"number"
|
|
562
|
+
],
|
|
563
|
+
"description": "Number of items per page"
|
|
564
|
+
},
|
|
565
|
+
"totalCount": {
|
|
566
|
+
"types": [
|
|
567
|
+
"number"
|
|
568
|
+
],
|
|
569
|
+
"description": "Total number of items"
|
|
570
|
+
},
|
|
571
|
+
"activeFilters": {
|
|
572
|
+
"types": [
|
|
573
|
+
"object"
|
|
574
|
+
],
|
|
575
|
+
"description": "Active filters"
|
|
576
|
+
},
|
|
577
|
+
"selectedIds": {
|
|
578
|
+
"types": [
|
|
579
|
+
"array"
|
|
580
|
+
],
|
|
581
|
+
"description": "Currently selected item IDs"
|
|
582
|
+
},
|
|
493
583
|
"title": {
|
|
494
584
|
"types": [
|
|
495
585
|
"string"
|
|
@@ -550,13 +640,6 @@
|
|
|
550
640
|
],
|
|
551
641
|
"description": "Alias for fields - backwards compatibility"
|
|
552
642
|
},
|
|
553
|
-
"data": {
|
|
554
|
-
"types": [
|
|
555
|
-
"object",
|
|
556
|
-
"unknown"
|
|
557
|
-
],
|
|
558
|
-
"description": "Data object provided by the trait via render-ui"
|
|
559
|
-
},
|
|
560
643
|
"initialData": {
|
|
561
644
|
"types": [
|
|
562
645
|
"object",
|
|
@@ -581,6 +664,24 @@
|
|
|
581
664
|
"string"
|
|
582
665
|
],
|
|
583
666
|
"description": "Panel width (CSS value, e.g., '400px', '50%')"
|
|
667
|
+
},
|
|
668
|
+
"entityId": {
|
|
669
|
+
"types": [
|
|
670
|
+
"string"
|
|
671
|
+
],
|
|
672
|
+
"description": "Entity ID for fetching specific entity"
|
|
673
|
+
},
|
|
674
|
+
"displayFields": {
|
|
675
|
+
"types": [
|
|
676
|
+
"unknown"
|
|
677
|
+
],
|
|
678
|
+
"description": "Display fields (alias for fields)"
|
|
679
|
+
},
|
|
680
|
+
"showActions": {
|
|
681
|
+
"types": [
|
|
682
|
+
"boolean"
|
|
683
|
+
],
|
|
684
|
+
"description": "Show actions flag"
|
|
584
685
|
}
|
|
585
686
|
}
|
|
586
687
|
},
|
|
@@ -740,7 +841,8 @@
|
|
|
740
841
|
},
|
|
741
842
|
"entity": {
|
|
742
843
|
"types": [
|
|
743
|
-
"string"
|
|
844
|
+
"string",
|
|
845
|
+
"orbitalentity"
|
|
744
846
|
],
|
|
745
847
|
"description": "Schema-based props"
|
|
746
848
|
},
|
|
@@ -926,7 +1028,8 @@
|
|
|
926
1028
|
},
|
|
927
1029
|
"entity": {
|
|
928
1030
|
"types": [
|
|
929
|
-
"string"
|
|
1031
|
+
"string",
|
|
1032
|
+
"orbitalentity"
|
|
930
1033
|
],
|
|
931
1034
|
"description": "Schema-based props"
|
|
932
1035
|
},
|
|
@@ -1898,6 +2001,84 @@
|
|
|
1898
2001
|
],
|
|
1899
2002
|
"typicalSize": "small",
|
|
1900
2003
|
"propsSchema": {
|
|
2004
|
+
"entity": {
|
|
2005
|
+
"types": [
|
|
2006
|
+
"string"
|
|
2007
|
+
],
|
|
2008
|
+
"description": "Entity name for schema-driven integration"
|
|
2009
|
+
},
|
|
2010
|
+
"data": {
|
|
2011
|
+
"types": [
|
|
2012
|
+
"array"
|
|
2013
|
+
],
|
|
2014
|
+
"description": "Data array provided by the trait via render-ui"
|
|
2015
|
+
},
|
|
2016
|
+
"className": {
|
|
2017
|
+
"types": [
|
|
2018
|
+
"string"
|
|
2019
|
+
],
|
|
2020
|
+
"description": "Additional CSS classes"
|
|
2021
|
+
},
|
|
2022
|
+
"isLoading": {
|
|
2023
|
+
"types": [
|
|
2024
|
+
"boolean"
|
|
2025
|
+
],
|
|
2026
|
+
"description": "Loading state indicator"
|
|
2027
|
+
},
|
|
2028
|
+
"error": {
|
|
2029
|
+
"types": [
|
|
2030
|
+
"object"
|
|
2031
|
+
],
|
|
2032
|
+
"description": "Error state"
|
|
2033
|
+
},
|
|
2034
|
+
"sortBy": {
|
|
2035
|
+
"types": [
|
|
2036
|
+
"string"
|
|
2037
|
+
],
|
|
2038
|
+
"description": "Current sort field"
|
|
2039
|
+
},
|
|
2040
|
+
"sortDirection": {
|
|
2041
|
+
"types": [
|
|
2042
|
+
"string"
|
|
2043
|
+
],
|
|
2044
|
+
"description": "Current sort direction"
|
|
2045
|
+
},
|
|
2046
|
+
"searchValue": {
|
|
2047
|
+
"types": [
|
|
2048
|
+
"string"
|
|
2049
|
+
],
|
|
2050
|
+
"description": "Current search query value"
|
|
2051
|
+
},
|
|
2052
|
+
"page": {
|
|
2053
|
+
"types": [
|
|
2054
|
+
"number"
|
|
2055
|
+
],
|
|
2056
|
+
"description": "Current page number"
|
|
2057
|
+
},
|
|
2058
|
+
"pageSize": {
|
|
2059
|
+
"types": [
|
|
2060
|
+
"number"
|
|
2061
|
+
],
|
|
2062
|
+
"description": "Number of items per page"
|
|
2063
|
+
},
|
|
2064
|
+
"totalCount": {
|
|
2065
|
+
"types": [
|
|
2066
|
+
"number"
|
|
2067
|
+
],
|
|
2068
|
+
"description": "Total number of items"
|
|
2069
|
+
},
|
|
2070
|
+
"activeFilters": {
|
|
2071
|
+
"types": [
|
|
2072
|
+
"object"
|
|
2073
|
+
],
|
|
2074
|
+
"description": "Active filters"
|
|
2075
|
+
},
|
|
2076
|
+
"selectedIds": {
|
|
2077
|
+
"types": [
|
|
2078
|
+
"array"
|
|
2079
|
+
],
|
|
2080
|
+
"description": "Currently selected item IDs"
|
|
2081
|
+
},
|
|
1901
2082
|
"label": {
|
|
1902
2083
|
"types": [
|
|
1903
2084
|
"string"
|
|
@@ -1979,41 +2160,17 @@
|
|
|
1979
2160
|
],
|
|
1980
2161
|
"description": "Action button"
|
|
1981
2162
|
},
|
|
1982
|
-
"className": {
|
|
1983
|
-
"types": [
|
|
1984
|
-
"string"
|
|
1985
|
-
],
|
|
1986
|
-
"description": "className prop"
|
|
1987
|
-
},
|
|
1988
|
-
"entity": {
|
|
1989
|
-
"types": [
|
|
1990
|
-
"string"
|
|
1991
|
-
],
|
|
1992
|
-
"description": "Schema-based props"
|
|
1993
|
-
},
|
|
1994
2163
|
"metrics": {
|
|
1995
2164
|
"types": [
|
|
1996
2165
|
"unknown"
|
|
1997
2166
|
],
|
|
1998
2167
|
"description": "Metrics to display (schema format) - accepts readonly for compatibility with generated const arrays"
|
|
1999
2168
|
},
|
|
2000
|
-
"
|
|
2001
|
-
"types": [
|
|
2002
|
-
"unknown"
|
|
2003
|
-
],
|
|
2004
|
-
"description": "Data to calculate stats from - accepts readonly for compatibility with generated const arrays"
|
|
2005
|
-
},
|
|
2006
|
-
"isLoading": {
|
|
2169
|
+
"compact": {
|
|
2007
2170
|
"types": [
|
|
2008
2171
|
"boolean"
|
|
2009
2172
|
],
|
|
2010
|
-
"description": "
|
|
2011
|
-
},
|
|
2012
|
-
"error": {
|
|
2013
|
-
"types": [
|
|
2014
|
-
"error"
|
|
2015
|
-
],
|
|
2016
|
-
"description": "Error state"
|
|
2173
|
+
"description": "Compact display mode"
|
|
2017
2174
|
}
|
|
2018
2175
|
}
|
|
2019
2176
|
},
|
|
@@ -2028,57 +2185,129 @@
|
|
|
2028
2185
|
],
|
|
2029
2186
|
"typicalSize": "large",
|
|
2030
2187
|
"propsSchema": {
|
|
2031
|
-
"
|
|
2032
|
-
"types": [
|
|
2033
|
-
"number"
|
|
2034
|
-
],
|
|
2035
|
-
"description": "Number of columns"
|
|
2036
|
-
},
|
|
2037
|
-
"gap": {
|
|
2188
|
+
"entity": {
|
|
2038
2189
|
"types": [
|
|
2039
2190
|
"string"
|
|
2040
2191
|
],
|
|
2041
|
-
"description": "
|
|
2192
|
+
"description": "Entity name for schema-driven integration"
|
|
2042
2193
|
},
|
|
2043
|
-
"
|
|
2194
|
+
"data": {
|
|
2044
2195
|
"types": [
|
|
2045
2196
|
"array"
|
|
2046
2197
|
],
|
|
2047
|
-
"description": "
|
|
2048
|
-
"required": true
|
|
2198
|
+
"description": "Data array provided by the trait via render-ui"
|
|
2049
2199
|
},
|
|
2050
2200
|
"className": {
|
|
2051
2201
|
"types": [
|
|
2052
2202
|
"string"
|
|
2053
2203
|
],
|
|
2054
2204
|
"description": "Additional CSS classes"
|
|
2055
|
-
}
|
|
2056
|
-
|
|
2057
|
-
},
|
|
2058
|
-
"modal": {
|
|
2059
|
-
"type": "modal",
|
|
2060
|
-
"category": "container",
|
|
2061
|
-
"description": "Modal dialog overlay",
|
|
2062
|
-
"suggestedFor": [
|
|
2063
|
-
"dialogs",
|
|
2064
|
-
"confirmations",
|
|
2065
|
-
"forms"
|
|
2066
|
-
],
|
|
2067
|
-
"typicalSize": "medium",
|
|
2068
|
-
"propsSchema": {
|
|
2069
|
-
"isOpen": {
|
|
2205
|
+
},
|
|
2206
|
+
"isLoading": {
|
|
2070
2207
|
"types": [
|
|
2071
2208
|
"boolean"
|
|
2072
2209
|
],
|
|
2073
|
-
"description": "
|
|
2210
|
+
"description": "Loading state indicator"
|
|
2074
2211
|
},
|
|
2075
|
-
"
|
|
2212
|
+
"error": {
|
|
2076
2213
|
"types": [
|
|
2077
|
-
"
|
|
2214
|
+
"object"
|
|
2078
2215
|
],
|
|
2079
|
-
"description": "
|
|
2216
|
+
"description": "Error state"
|
|
2080
2217
|
},
|
|
2081
|
-
"
|
|
2218
|
+
"sortBy": {
|
|
2219
|
+
"types": [
|
|
2220
|
+
"string"
|
|
2221
|
+
],
|
|
2222
|
+
"description": "Current sort field"
|
|
2223
|
+
},
|
|
2224
|
+
"sortDirection": {
|
|
2225
|
+
"types": [
|
|
2226
|
+
"string"
|
|
2227
|
+
],
|
|
2228
|
+
"description": "Current sort direction"
|
|
2229
|
+
},
|
|
2230
|
+
"searchValue": {
|
|
2231
|
+
"types": [
|
|
2232
|
+
"string"
|
|
2233
|
+
],
|
|
2234
|
+
"description": "Current search query value"
|
|
2235
|
+
},
|
|
2236
|
+
"page": {
|
|
2237
|
+
"types": [
|
|
2238
|
+
"number"
|
|
2239
|
+
],
|
|
2240
|
+
"description": "Current page number"
|
|
2241
|
+
},
|
|
2242
|
+
"pageSize": {
|
|
2243
|
+
"types": [
|
|
2244
|
+
"number"
|
|
2245
|
+
],
|
|
2246
|
+
"description": "Number of items per page"
|
|
2247
|
+
},
|
|
2248
|
+
"totalCount": {
|
|
2249
|
+
"types": [
|
|
2250
|
+
"number"
|
|
2251
|
+
],
|
|
2252
|
+
"description": "Total number of items"
|
|
2253
|
+
},
|
|
2254
|
+
"activeFilters": {
|
|
2255
|
+
"types": [
|
|
2256
|
+
"object"
|
|
2257
|
+
],
|
|
2258
|
+
"description": "Active filters"
|
|
2259
|
+
},
|
|
2260
|
+
"selectedIds": {
|
|
2261
|
+
"types": [
|
|
2262
|
+
"array"
|
|
2263
|
+
],
|
|
2264
|
+
"description": "Currently selected item IDs"
|
|
2265
|
+
},
|
|
2266
|
+
"columns": {
|
|
2267
|
+
"types": [
|
|
2268
|
+
"number"
|
|
2269
|
+
],
|
|
2270
|
+
"description": "Number of columns"
|
|
2271
|
+
},
|
|
2272
|
+
"gap": {
|
|
2273
|
+
"types": [
|
|
2274
|
+
"string"
|
|
2275
|
+
],
|
|
2276
|
+
"description": "Gap between cells"
|
|
2277
|
+
},
|
|
2278
|
+
"cells": {
|
|
2279
|
+
"types": [
|
|
2280
|
+
"array"
|
|
2281
|
+
],
|
|
2282
|
+
"description": "Cell definitions",
|
|
2283
|
+
"required": true
|
|
2284
|
+
}
|
|
2285
|
+
}
|
|
2286
|
+
},
|
|
2287
|
+
"modal": {
|
|
2288
|
+
"type": "modal",
|
|
2289
|
+
"category": "container",
|
|
2290
|
+
"description": "Modal dialog overlay",
|
|
2291
|
+
"suggestedFor": [
|
|
2292
|
+
"dialogs",
|
|
2293
|
+
"confirmations",
|
|
2294
|
+
"forms"
|
|
2295
|
+
],
|
|
2296
|
+
"typicalSize": "medium",
|
|
2297
|
+
"propsSchema": {
|
|
2298
|
+
"isOpen": {
|
|
2299
|
+
"types": [
|
|
2300
|
+
"boolean"
|
|
2301
|
+
],
|
|
2302
|
+
"description": "Whether the modal is open (defaults to true when rendered by slot wrapper)"
|
|
2303
|
+
},
|
|
2304
|
+
"onClose": {
|
|
2305
|
+
"types": [
|
|
2306
|
+
"function"
|
|
2307
|
+
],
|
|
2308
|
+
"description": "Callback when modal should close (injected by slot wrapper)"
|
|
2309
|
+
},
|
|
2310
|
+
"title": {
|
|
2082
2311
|
"types": [
|
|
2083
2312
|
"string"
|
|
2084
2313
|
],
|
|
@@ -3251,6 +3480,12 @@
|
|
|
3251
3480
|
"badgesize"
|
|
3252
3481
|
],
|
|
3253
3482
|
"description": "size prop"
|
|
3483
|
+
},
|
|
3484
|
+
"amount": {
|
|
3485
|
+
"types": [
|
|
3486
|
+
"number"
|
|
3487
|
+
],
|
|
3488
|
+
"description": "Numeric count or amount to display in badge"
|
|
3254
3489
|
}
|
|
3255
3490
|
}
|
|
3256
3491
|
},
|
|
@@ -3459,6 +3694,30 @@
|
|
|
3459
3694
|
"string"
|
|
3460
3695
|
],
|
|
3461
3696
|
"description": "Declarative event name — emits UI:{action} via eventBus on card click"
|
|
3697
|
+
},
|
|
3698
|
+
"isSelected": {
|
|
3699
|
+
"types": [
|
|
3700
|
+
"boolean"
|
|
3701
|
+
],
|
|
3702
|
+
"description": "Whether the card is selected (highlighted state)"
|
|
3703
|
+
},
|
|
3704
|
+
"name": {
|
|
3705
|
+
"types": [
|
|
3706
|
+
"string"
|
|
3707
|
+
],
|
|
3708
|
+
"description": "Card name (alias for title)"
|
|
3709
|
+
},
|
|
3710
|
+
"level": {
|
|
3711
|
+
"types": [
|
|
3712
|
+
"number"
|
|
3713
|
+
],
|
|
3714
|
+
"description": "Level indicator"
|
|
3715
|
+
},
|
|
3716
|
+
"maxLevel": {
|
|
3717
|
+
"types": [
|
|
3718
|
+
"number"
|
|
3719
|
+
],
|
|
3720
|
+
"description": "Maximum level"
|
|
3462
3721
|
}
|
|
3463
3722
|
}
|
|
3464
3723
|
},
|
|
@@ -6532,6 +6791,84 @@
|
|
|
6532
6791
|
],
|
|
6533
6792
|
"typicalSize": "large",
|
|
6534
6793
|
"propsSchema": {
|
|
6794
|
+
"entity": {
|
|
6795
|
+
"types": [
|
|
6796
|
+
"string"
|
|
6797
|
+
],
|
|
6798
|
+
"description": "Entity name for schema-driven integration"
|
|
6799
|
+
},
|
|
6800
|
+
"data": {
|
|
6801
|
+
"types": [
|
|
6802
|
+
"array"
|
|
6803
|
+
],
|
|
6804
|
+
"description": "Data array provided by the trait via render-ui"
|
|
6805
|
+
},
|
|
6806
|
+
"className": {
|
|
6807
|
+
"types": [
|
|
6808
|
+
"string"
|
|
6809
|
+
],
|
|
6810
|
+
"description": "Additional CSS classes"
|
|
6811
|
+
},
|
|
6812
|
+
"isLoading": {
|
|
6813
|
+
"types": [
|
|
6814
|
+
"boolean"
|
|
6815
|
+
],
|
|
6816
|
+
"description": "Loading state indicator"
|
|
6817
|
+
},
|
|
6818
|
+
"error": {
|
|
6819
|
+
"types": [
|
|
6820
|
+
"object"
|
|
6821
|
+
],
|
|
6822
|
+
"description": "Error state"
|
|
6823
|
+
},
|
|
6824
|
+
"sortBy": {
|
|
6825
|
+
"types": [
|
|
6826
|
+
"string"
|
|
6827
|
+
],
|
|
6828
|
+
"description": "Current sort field"
|
|
6829
|
+
},
|
|
6830
|
+
"sortDirection": {
|
|
6831
|
+
"types": [
|
|
6832
|
+
"string"
|
|
6833
|
+
],
|
|
6834
|
+
"description": "Current sort direction"
|
|
6835
|
+
},
|
|
6836
|
+
"searchValue": {
|
|
6837
|
+
"types": [
|
|
6838
|
+
"string"
|
|
6839
|
+
],
|
|
6840
|
+
"description": "Current search query value"
|
|
6841
|
+
},
|
|
6842
|
+
"page": {
|
|
6843
|
+
"types": [
|
|
6844
|
+
"number"
|
|
6845
|
+
],
|
|
6846
|
+
"description": "Current page number"
|
|
6847
|
+
},
|
|
6848
|
+
"pageSize": {
|
|
6849
|
+
"types": [
|
|
6850
|
+
"number"
|
|
6851
|
+
],
|
|
6852
|
+
"description": "Number of items per page"
|
|
6853
|
+
},
|
|
6854
|
+
"totalCount": {
|
|
6855
|
+
"types": [
|
|
6856
|
+
"number"
|
|
6857
|
+
],
|
|
6858
|
+
"description": "Total number of items"
|
|
6859
|
+
},
|
|
6860
|
+
"activeFilters": {
|
|
6861
|
+
"types": [
|
|
6862
|
+
"object"
|
|
6863
|
+
],
|
|
6864
|
+
"description": "Active filters"
|
|
6865
|
+
},
|
|
6866
|
+
"selectedIds": {
|
|
6867
|
+
"types": [
|
|
6868
|
+
"array"
|
|
6869
|
+
],
|
|
6870
|
+
"description": "Currently selected item IDs"
|
|
6871
|
+
},
|
|
6535
6872
|
"logo": {
|
|
6536
6873
|
"types": [
|
|
6537
6874
|
"node"
|
|
@@ -6581,11 +6918,11 @@
|
|
|
6581
6918
|
],
|
|
6582
6919
|
"description": "Default collapsed state"
|
|
6583
6920
|
},
|
|
6584
|
-
"
|
|
6921
|
+
"collapseChangeEvent": {
|
|
6585
6922
|
"types": [
|
|
6586
|
-
"
|
|
6923
|
+
"string"
|
|
6587
6924
|
],
|
|
6588
|
-
"description": "
|
|
6925
|
+
"description": "Event emitted when collapse state changes, payload: { collapsed: boolean }"
|
|
6589
6926
|
},
|
|
6590
6927
|
"hideCollapseButton": {
|
|
6591
6928
|
"types": [
|
|
@@ -6599,41 +6936,17 @@
|
|
|
6599
6936
|
],
|
|
6600
6937
|
"description": "Show a close button (for mobile)"
|
|
6601
6938
|
},
|
|
6602
|
-
"
|
|
6603
|
-
"types": [
|
|
6604
|
-
"function"
|
|
6605
|
-
],
|
|
6606
|
-
"description": "Callback when close button is clicked"
|
|
6607
|
-
},
|
|
6608
|
-
"onLogoClick": {
|
|
6609
|
-
"types": [
|
|
6610
|
-
"function"
|
|
6611
|
-
],
|
|
6612
|
-
"description": "Callback when logo/brand is clicked"
|
|
6613
|
-
},
|
|
6614
|
-
"className": {
|
|
6939
|
+
"closeEvent": {
|
|
6615
6940
|
"types": [
|
|
6616
6941
|
"string"
|
|
6617
6942
|
],
|
|
6618
|
-
"description": "
|
|
6619
|
-
},
|
|
6620
|
-
"isLoading": {
|
|
6621
|
-
"types": [
|
|
6622
|
-
"boolean"
|
|
6623
|
-
],
|
|
6624
|
-
"description": "Loading state indicator"
|
|
6625
|
-
},
|
|
6626
|
-
"error": {
|
|
6627
|
-
"types": [
|
|
6628
|
-
"error"
|
|
6629
|
-
],
|
|
6630
|
-
"description": "Error state"
|
|
6943
|
+
"description": "Event emitted when close button is clicked"
|
|
6631
6944
|
},
|
|
6632
|
-
"
|
|
6945
|
+
"logoClickEvent": {
|
|
6633
6946
|
"types": [
|
|
6634
6947
|
"string"
|
|
6635
6948
|
],
|
|
6636
|
-
"description": "
|
|
6949
|
+
"description": "Event emitted when logo/brand is clicked"
|
|
6637
6950
|
}
|
|
6638
6951
|
}
|
|
6639
6952
|
},
|
|
@@ -7281,6 +7594,12 @@
|
|
|
7281
7594
|
"function"
|
|
7282
7595
|
],
|
|
7283
7596
|
"description": "Callback when user clicks sign out (optional - uses auth context signOut if not provided)"
|
|
7597
|
+
},
|
|
7598
|
+
"children": {
|
|
7599
|
+
"types": [
|
|
7600
|
+
"node"
|
|
7601
|
+
],
|
|
7602
|
+
"description": "Page content rendered inside the main area"
|
|
7284
7603
|
}
|
|
7285
7604
|
}
|
|
7286
7605
|
},
|
|
@@ -7426,6 +7745,12 @@
|
|
|
7426
7745
|
"boolean"
|
|
7427
7746
|
],
|
|
7428
7747
|
"description": "Whether to show the minimal top bar (default: true)"
|
|
7748
|
+
},
|
|
7749
|
+
"children": {
|
|
7750
|
+
"types": [
|
|
7751
|
+
"node"
|
|
7752
|
+
],
|
|
7753
|
+
"description": "Game content rendered inside the full-screen area"
|
|
7429
7754
|
}
|
|
7430
7755
|
}
|
|
7431
7756
|
},
|
|
@@ -7638,59 +7963,107 @@
|
|
|
7638
7963
|
],
|
|
7639
7964
|
"typicalSize": "medium",
|
|
7640
7965
|
"propsSchema": {
|
|
7641
|
-
"
|
|
7966
|
+
"entity": {
|
|
7642
7967
|
"types": [
|
|
7643
7968
|
"string"
|
|
7644
7969
|
],
|
|
7645
|
-
"description": "
|
|
7970
|
+
"description": "Entity name for schema-driven integration"
|
|
7646
7971
|
},
|
|
7647
|
-
"
|
|
7972
|
+
"data": {
|
|
7648
7973
|
"types": [
|
|
7649
|
-
"
|
|
7974
|
+
"array"
|
|
7650
7975
|
],
|
|
7651
|
-
"description": "
|
|
7976
|
+
"description": "Data array provided by the trait via render-ui"
|
|
7652
7977
|
},
|
|
7653
|
-
"
|
|
7978
|
+
"className": {
|
|
7654
7979
|
"types": [
|
|
7655
|
-
"
|
|
7980
|
+
"string"
|
|
7656
7981
|
],
|
|
7657
|
-
"description": "
|
|
7982
|
+
"description": "Additional CSS classes"
|
|
7658
7983
|
},
|
|
7659
|
-
"
|
|
7984
|
+
"isLoading": {
|
|
7660
7985
|
"types": [
|
|
7661
|
-
"
|
|
7986
|
+
"boolean"
|
|
7662
7987
|
],
|
|
7663
|
-
"description": "
|
|
7988
|
+
"description": "Loading state indicator"
|
|
7664
7989
|
},
|
|
7665
|
-
"
|
|
7990
|
+
"error": {
|
|
7666
7991
|
"types": [
|
|
7667
|
-
"
|
|
7992
|
+
"object"
|
|
7668
7993
|
],
|
|
7669
|
-
"description": "
|
|
7994
|
+
"description": "Error state"
|
|
7670
7995
|
},
|
|
7671
|
-
"
|
|
7996
|
+
"sortBy": {
|
|
7672
7997
|
"types": [
|
|
7673
7998
|
"string"
|
|
7674
7999
|
],
|
|
7675
|
-
"description": "
|
|
8000
|
+
"description": "Current sort field"
|
|
7676
8001
|
},
|
|
7677
|
-
"
|
|
8002
|
+
"sortDirection": {
|
|
7678
8003
|
"types": [
|
|
7679
|
-
"
|
|
8004
|
+
"string"
|
|
7680
8005
|
],
|
|
7681
|
-
"description": "
|
|
8006
|
+
"description": "Current sort direction"
|
|
7682
8007
|
},
|
|
7683
|
-
"
|
|
8008
|
+
"searchValue": {
|
|
7684
8009
|
"types": [
|
|
7685
|
-
"
|
|
8010
|
+
"string"
|
|
7686
8011
|
],
|
|
7687
|
-
"description": "
|
|
8012
|
+
"description": "Current search query value"
|
|
7688
8013
|
},
|
|
7689
|
-
"
|
|
8014
|
+
"page": {
|
|
8015
|
+
"types": [
|
|
8016
|
+
"number"
|
|
8017
|
+
],
|
|
8018
|
+
"description": "Current page number"
|
|
8019
|
+
},
|
|
8020
|
+
"pageSize": {
|
|
8021
|
+
"types": [
|
|
8022
|
+
"number"
|
|
8023
|
+
],
|
|
8024
|
+
"description": "Number of items per page"
|
|
8025
|
+
},
|
|
8026
|
+
"totalCount": {
|
|
8027
|
+
"types": [
|
|
8028
|
+
"number"
|
|
8029
|
+
],
|
|
8030
|
+
"description": "Total number of items"
|
|
8031
|
+
},
|
|
8032
|
+
"activeFilters": {
|
|
8033
|
+
"types": [
|
|
8034
|
+
"object"
|
|
8035
|
+
],
|
|
8036
|
+
"description": "Active filters"
|
|
8037
|
+
},
|
|
8038
|
+
"selectedIds": {
|
|
8039
|
+
"types": [
|
|
8040
|
+
"array"
|
|
8041
|
+
],
|
|
8042
|
+
"description": "Currently selected item IDs"
|
|
8043
|
+
},
|
|
8044
|
+
"title": {
|
|
7690
8045
|
"types": [
|
|
7691
8046
|
"string"
|
|
7692
8047
|
],
|
|
7693
|
-
"description": "
|
|
8048
|
+
"description": "Timeline title"
|
|
8049
|
+
},
|
|
8050
|
+
"items": {
|
|
8051
|
+
"types": [
|
|
8052
|
+
"unknown"
|
|
8053
|
+
],
|
|
8054
|
+
"description": "Timeline items"
|
|
8055
|
+
},
|
|
8056
|
+
"fields": {
|
|
8057
|
+
"types": [
|
|
8058
|
+
"unknown"
|
|
8059
|
+
],
|
|
8060
|
+
"description": "Fields to display"
|
|
8061
|
+
},
|
|
8062
|
+
"itemActions": {
|
|
8063
|
+
"types": [
|
|
8064
|
+
"unknown"
|
|
8065
|
+
],
|
|
8066
|
+
"description": "Actions per item"
|
|
7694
8067
|
}
|
|
7695
8068
|
}
|
|
7696
8069
|
},
|
|
@@ -7706,6 +8079,84 @@
|
|
|
7706
8079
|
],
|
|
7707
8080
|
"typicalSize": "medium",
|
|
7708
8081
|
"propsSchema": {
|
|
8082
|
+
"entity": {
|
|
8083
|
+
"types": [
|
|
8084
|
+
"string"
|
|
8085
|
+
],
|
|
8086
|
+
"description": "Entity name for schema-driven integration"
|
|
8087
|
+
},
|
|
8088
|
+
"data": {
|
|
8089
|
+
"types": [
|
|
8090
|
+
"array"
|
|
8091
|
+
],
|
|
8092
|
+
"description": "Data array provided by the trait via render-ui"
|
|
8093
|
+
},
|
|
8094
|
+
"className": {
|
|
8095
|
+
"types": [
|
|
8096
|
+
"string"
|
|
8097
|
+
],
|
|
8098
|
+
"description": "Additional CSS classes"
|
|
8099
|
+
},
|
|
8100
|
+
"isLoading": {
|
|
8101
|
+
"types": [
|
|
8102
|
+
"boolean"
|
|
8103
|
+
],
|
|
8104
|
+
"description": "Loading state indicator"
|
|
8105
|
+
},
|
|
8106
|
+
"error": {
|
|
8107
|
+
"types": [
|
|
8108
|
+
"object"
|
|
8109
|
+
],
|
|
8110
|
+
"description": "Error state"
|
|
8111
|
+
},
|
|
8112
|
+
"sortBy": {
|
|
8113
|
+
"types": [
|
|
8114
|
+
"string"
|
|
8115
|
+
],
|
|
8116
|
+
"description": "Current sort field"
|
|
8117
|
+
},
|
|
8118
|
+
"sortDirection": {
|
|
8119
|
+
"types": [
|
|
8120
|
+
"string"
|
|
8121
|
+
],
|
|
8122
|
+
"description": "Current sort direction"
|
|
8123
|
+
},
|
|
8124
|
+
"searchValue": {
|
|
8125
|
+
"types": [
|
|
8126
|
+
"string"
|
|
8127
|
+
],
|
|
8128
|
+
"description": "Current search query value"
|
|
8129
|
+
},
|
|
8130
|
+
"page": {
|
|
8131
|
+
"types": [
|
|
8132
|
+
"number"
|
|
8133
|
+
],
|
|
8134
|
+
"description": "Current page number"
|
|
8135
|
+
},
|
|
8136
|
+
"pageSize": {
|
|
8137
|
+
"types": [
|
|
8138
|
+
"number"
|
|
8139
|
+
],
|
|
8140
|
+
"description": "Number of items per page"
|
|
8141
|
+
},
|
|
8142
|
+
"totalCount": {
|
|
8143
|
+
"types": [
|
|
8144
|
+
"number"
|
|
8145
|
+
],
|
|
8146
|
+
"description": "Total number of items"
|
|
8147
|
+
},
|
|
8148
|
+
"activeFilters": {
|
|
8149
|
+
"types": [
|
|
8150
|
+
"object"
|
|
8151
|
+
],
|
|
8152
|
+
"description": "Active filters"
|
|
8153
|
+
},
|
|
8154
|
+
"selectedIds": {
|
|
8155
|
+
"types": [
|
|
8156
|
+
"array"
|
|
8157
|
+
],
|
|
8158
|
+
"description": "Currently selected item IDs"
|
|
8159
|
+
},
|
|
7709
8160
|
"title": {
|
|
7710
8161
|
"types": [
|
|
7711
8162
|
"string"
|
|
@@ -7718,12 +8169,6 @@
|
|
|
7718
8169
|
],
|
|
7719
8170
|
"description": "Media items"
|
|
7720
8171
|
},
|
|
7721
|
-
"data": {
|
|
7722
|
-
"types": [
|
|
7723
|
-
"unknown"
|
|
7724
|
-
],
|
|
7725
|
-
"description": "Schema-driven data"
|
|
7726
|
-
},
|
|
7727
8172
|
"columns": {
|
|
7728
8173
|
"types": [
|
|
7729
8174
|
"number"
|
|
@@ -7742,11 +8187,11 @@
|
|
|
7742
8187
|
],
|
|
7743
8188
|
"description": "Selected item IDs"
|
|
7744
8189
|
},
|
|
7745
|
-
"
|
|
8190
|
+
"selectionEvent": {
|
|
7746
8191
|
"types": [
|
|
7747
|
-
"
|
|
8192
|
+
"string"
|
|
7748
8193
|
],
|
|
7749
|
-
"description": "
|
|
8194
|
+
"description": "Event name emitted when selection changes (emitted as UI:{selectionEvent})"
|
|
7750
8195
|
},
|
|
7751
8196
|
"showUpload": {
|
|
7752
8197
|
"types": [
|
|
@@ -7765,30 +8210,6 @@
|
|
|
7765
8210
|
"string"
|
|
7766
8211
|
],
|
|
7767
8212
|
"description": "Aspect ratio for thumbnails"
|
|
7768
|
-
},
|
|
7769
|
-
"entity": {
|
|
7770
|
-
"types": [
|
|
7771
|
-
"string"
|
|
7772
|
-
],
|
|
7773
|
-
"description": "Entity name for schema-driven auto-fetch"
|
|
7774
|
-
},
|
|
7775
|
-
"isLoading": {
|
|
7776
|
-
"types": [
|
|
7777
|
-
"boolean"
|
|
7778
|
-
],
|
|
7779
|
-
"description": "Loading state"
|
|
7780
|
-
},
|
|
7781
|
-
"error": {
|
|
7782
|
-
"types": [
|
|
7783
|
-
"error"
|
|
7784
|
-
],
|
|
7785
|
-
"description": "Error state"
|
|
7786
|
-
},
|
|
7787
|
-
"className": {
|
|
7788
|
-
"types": [
|
|
7789
|
-
"string"
|
|
7790
|
-
],
|
|
7791
|
-
"description": "Additional CSS classes"
|
|
7792
8213
|
}
|
|
7793
8214
|
}
|
|
7794
8215
|
},
|
|
@@ -8339,11 +8760,23 @@
|
|
|
8339
8760
|
],
|
|
8340
8761
|
"typicalSize": "large",
|
|
8341
8762
|
"propsSchema": {
|
|
8763
|
+
"entity": {
|
|
8764
|
+
"types": [
|
|
8765
|
+
"string"
|
|
8766
|
+
],
|
|
8767
|
+
"description": "Entity name for schema-driven integration"
|
|
8768
|
+
},
|
|
8769
|
+
"data": {
|
|
8770
|
+
"types": [
|
|
8771
|
+
"array"
|
|
8772
|
+
],
|
|
8773
|
+
"description": "Data array provided by the trait via render-ui"
|
|
8774
|
+
},
|
|
8342
8775
|
"className": {
|
|
8343
8776
|
"types": [
|
|
8344
8777
|
"string"
|
|
8345
8778
|
],
|
|
8346
|
-
"description": "
|
|
8779
|
+
"description": "Additional CSS classes"
|
|
8347
8780
|
},
|
|
8348
8781
|
"isLoading": {
|
|
8349
8782
|
"types": [
|
|
@@ -8353,21 +8786,63 @@
|
|
|
8353
8786
|
},
|
|
8354
8787
|
"error": {
|
|
8355
8788
|
"types": [
|
|
8356
|
-
"
|
|
8789
|
+
"object"
|
|
8357
8790
|
],
|
|
8358
8791
|
"description": "Error state"
|
|
8359
8792
|
},
|
|
8360
|
-
"
|
|
8793
|
+
"sortBy": {
|
|
8361
8794
|
"types": [
|
|
8362
8795
|
"string"
|
|
8363
8796
|
],
|
|
8364
|
-
"description": "
|
|
8797
|
+
"description": "Current sort field"
|
|
8798
|
+
},
|
|
8799
|
+
"sortDirection": {
|
|
8800
|
+
"types": [
|
|
8801
|
+
"string"
|
|
8802
|
+
],
|
|
8803
|
+
"description": "Current sort direction"
|
|
8804
|
+
},
|
|
8805
|
+
"searchValue": {
|
|
8806
|
+
"types": [
|
|
8807
|
+
"string"
|
|
8808
|
+
],
|
|
8809
|
+
"description": "Current search query value"
|
|
8810
|
+
},
|
|
8811
|
+
"page": {
|
|
8812
|
+
"types": [
|
|
8813
|
+
"number"
|
|
8814
|
+
],
|
|
8815
|
+
"description": "Current page number"
|
|
8816
|
+
},
|
|
8817
|
+
"pageSize": {
|
|
8818
|
+
"types": [
|
|
8819
|
+
"number"
|
|
8820
|
+
],
|
|
8821
|
+
"description": "Number of items per page"
|
|
8822
|
+
},
|
|
8823
|
+
"totalCount": {
|
|
8824
|
+
"types": [
|
|
8825
|
+
"number"
|
|
8826
|
+
],
|
|
8827
|
+
"description": "Total number of items"
|
|
8828
|
+
},
|
|
8829
|
+
"activeFilters": {
|
|
8830
|
+
"types": [
|
|
8831
|
+
"object"
|
|
8832
|
+
],
|
|
8833
|
+
"description": "Active filters"
|
|
8834
|
+
},
|
|
8835
|
+
"selectedIds": {
|
|
8836
|
+
"types": [
|
|
8837
|
+
"array"
|
|
8838
|
+
],
|
|
8839
|
+
"description": "Currently selected item IDs"
|
|
8365
8840
|
},
|
|
8366
8841
|
"tiles": {
|
|
8367
8842
|
"types": [
|
|
8368
8843
|
"array"
|
|
8369
8844
|
],
|
|
8370
|
-
"description": "
|
|
8845
|
+
"description": "EntityDisplayProps provides: className, isLoading, error, entity,"
|
|
8371
8846
|
},
|
|
8372
8847
|
"units": {
|
|
8373
8848
|
"types": [
|
|
@@ -8409,25 +8884,25 @@
|
|
|
8409
8884
|
"types": [
|
|
8410
8885
|
"function"
|
|
8411
8886
|
],
|
|
8412
|
-
"description": "--- Event handlers ---"
|
|
8887
|
+
"description": "--- Event handlers (legacy callbacks — prefer declarative event string props below) ---"
|
|
8413
8888
|
},
|
|
8414
8889
|
"onUnitClick": {
|
|
8415
8890
|
"types": [
|
|
8416
8891
|
"function"
|
|
8417
8892
|
],
|
|
8418
|
-
"description": "
|
|
8893
|
+
"description": "eslint-disable-next-line almadar/organism-no-callback-props"
|
|
8419
8894
|
},
|
|
8420
8895
|
"onTileHover": {
|
|
8421
8896
|
"types": [
|
|
8422
8897
|
"function"
|
|
8423
8898
|
],
|
|
8424
|
-
"description": "
|
|
8899
|
+
"description": "eslint-disable-next-line almadar/organism-no-callback-props"
|
|
8425
8900
|
},
|
|
8426
8901
|
"onTileLeave": {
|
|
8427
8902
|
"types": [
|
|
8428
8903
|
"function"
|
|
8429
8904
|
],
|
|
8430
|
-
"description": "
|
|
8905
|
+
"description": "eslint-disable-next-line almadar/organism-no-callback-props"
|
|
8431
8906
|
},
|
|
8432
8907
|
"tileClickEvent": {
|
|
8433
8908
|
"types": [
|
|
@@ -8489,6 +8964,18 @@
|
|
|
8489
8964
|
],
|
|
8490
8965
|
"description": "Extra scale multiplier for unit draw size. 1 = default."
|
|
8491
8966
|
},
|
|
8967
|
+
"boardWidth": {
|
|
8968
|
+
"types": [
|
|
8969
|
+
"number"
|
|
8970
|
+
],
|
|
8971
|
+
"description": "Board width in tiles (overrides tile-derived size)"
|
|
8972
|
+
},
|
|
8973
|
+
"boardHeight": {
|
|
8974
|
+
"types": [
|
|
8975
|
+
"number"
|
|
8976
|
+
],
|
|
8977
|
+
"description": "Board height in tiles (overrides tile-derived size)"
|
|
8978
|
+
},
|
|
8492
8979
|
"diamondTopY": {
|
|
8493
8980
|
"types": [
|
|
8494
8981
|
"number"
|
|
@@ -8529,7 +9016,7 @@
|
|
|
8529
9016
|
"types": [
|
|
8530
9017
|
"function"
|
|
8531
9018
|
],
|
|
8532
|
-
"description": "Callback to draw canvas effects after units"
|
|
9019
|
+
"description": "Callback to draw canvas effects after units (canvas-specific: cannot be declarative)"
|
|
8533
9020
|
},
|
|
8534
9021
|
"hasActiveEffects": {
|
|
8535
9022
|
"types": [
|
|
@@ -9168,12 +9655,23 @@
|
|
|
9168
9655
|
"propsSchema": {
|
|
9169
9656
|
"entity": {
|
|
9170
9657
|
"types": [
|
|
9171
|
-
"
|
|
9658
|
+
"string"
|
|
9172
9659
|
],
|
|
9173
|
-
"description": "
|
|
9174
|
-
"required": true
|
|
9660
|
+
"description": "Entity name for schema-driven integration"
|
|
9175
9661
|
},
|
|
9176
|
-
"
|
|
9662
|
+
"data": {
|
|
9663
|
+
"types": [
|
|
9664
|
+
"array"
|
|
9665
|
+
],
|
|
9666
|
+
"description": "Data array provided by the trait via render-ui"
|
|
9667
|
+
},
|
|
9668
|
+
"className": {
|
|
9669
|
+
"types": [
|
|
9670
|
+
"string"
|
|
9671
|
+
],
|
|
9672
|
+
"description": "className prop"
|
|
9673
|
+
},
|
|
9674
|
+
"isLoading": {
|
|
9177
9675
|
"types": [
|
|
9178
9676
|
"boolean"
|
|
9179
9677
|
],
|
|
@@ -9181,10 +9679,58 @@
|
|
|
9181
9679
|
},
|
|
9182
9680
|
"error": {
|
|
9183
9681
|
"types": [
|
|
9184
|
-
"
|
|
9682
|
+
"object"
|
|
9185
9683
|
],
|
|
9186
9684
|
"description": "Error state"
|
|
9187
9685
|
},
|
|
9686
|
+
"sortBy": {
|
|
9687
|
+
"types": [
|
|
9688
|
+
"string"
|
|
9689
|
+
],
|
|
9690
|
+
"description": "Current sort field"
|
|
9691
|
+
},
|
|
9692
|
+
"sortDirection": {
|
|
9693
|
+
"types": [
|
|
9694
|
+
"string"
|
|
9695
|
+
],
|
|
9696
|
+
"description": "Current sort direction"
|
|
9697
|
+
},
|
|
9698
|
+
"searchValue": {
|
|
9699
|
+
"types": [
|
|
9700
|
+
"string"
|
|
9701
|
+
],
|
|
9702
|
+
"description": "Current search query value"
|
|
9703
|
+
},
|
|
9704
|
+
"page": {
|
|
9705
|
+
"types": [
|
|
9706
|
+
"number"
|
|
9707
|
+
],
|
|
9708
|
+
"description": "Current page number"
|
|
9709
|
+
},
|
|
9710
|
+
"pageSize": {
|
|
9711
|
+
"types": [
|
|
9712
|
+
"number"
|
|
9713
|
+
],
|
|
9714
|
+
"description": "Number of items per page"
|
|
9715
|
+
},
|
|
9716
|
+
"totalCount": {
|
|
9717
|
+
"types": [
|
|
9718
|
+
"number"
|
|
9719
|
+
],
|
|
9720
|
+
"description": "Total number of items"
|
|
9721
|
+
},
|
|
9722
|
+
"activeFilters": {
|
|
9723
|
+
"types": [
|
|
9724
|
+
"object"
|
|
9725
|
+
],
|
|
9726
|
+
"description": "Active filters"
|
|
9727
|
+
},
|
|
9728
|
+
"selectedIds": {
|
|
9729
|
+
"types": [
|
|
9730
|
+
"array"
|
|
9731
|
+
],
|
|
9732
|
+
"description": "Currently selected item IDs"
|
|
9733
|
+
},
|
|
9188
9734
|
"scale": {
|
|
9189
9735
|
"types": [
|
|
9190
9736
|
"number"
|
|
@@ -9310,12 +9856,6 @@
|
|
|
9310
9856
|
"function"
|
|
9311
9857
|
],
|
|
9312
9858
|
"description": "resolveUnitFrame prop"
|
|
9313
|
-
},
|
|
9314
|
-
"className": {
|
|
9315
|
-
"types": [
|
|
9316
|
-
"string"
|
|
9317
|
-
],
|
|
9318
|
-
"description": "className prop"
|
|
9319
9859
|
}
|
|
9320
9860
|
}
|
|
9321
9861
|
},
|
|
@@ -11835,9 +12375,10 @@
|
|
|
11835
12375
|
},
|
|
11836
12376
|
"fieldMap": {
|
|
11837
12377
|
"types": [
|
|
11838
|
-
"bookfieldmap"
|
|
12378
|
+
"bookfieldmap",
|
|
12379
|
+
"string"
|
|
11839
12380
|
],
|
|
11840
|
-
"description": "Field name translation map
|
|
12381
|
+
"description": "Field name translation map — a BookFieldMap object or locale key (\"ar\")"
|
|
11841
12382
|
}
|
|
11842
12383
|
}
|
|
11843
12384
|
},
|
|
@@ -11867,6 +12408,999 @@
|
|
|
11867
12408
|
}
|
|
11868
12409
|
}
|
|
11869
12410
|
},
|
|
12411
|
+
"combat-log": {
|
|
12412
|
+
"type": "combat-log",
|
|
12413
|
+
"category": "game",
|
|
12414
|
+
"description": "CombatLog Component Scrollable log of combat events with icons and colors. Generalized from Trait Wars — removed asset manifest coupling.",
|
|
12415
|
+
"suggestedFor": [
|
|
12416
|
+
"combat",
|
|
12417
|
+
"log",
|
|
12418
|
+
"combat log"
|
|
12419
|
+
],
|
|
12420
|
+
"typicalSize": "large",
|
|
12421
|
+
"propsSchema": {
|
|
12422
|
+
"events": {
|
|
12423
|
+
"types": [
|
|
12424
|
+
"array"
|
|
12425
|
+
],
|
|
12426
|
+
"description": "events prop",
|
|
12427
|
+
"required": true
|
|
12428
|
+
},
|
|
12429
|
+
"maxVisible": {
|
|
12430
|
+
"types": [
|
|
12431
|
+
"number"
|
|
12432
|
+
],
|
|
12433
|
+
"description": "maxVisible prop"
|
|
12434
|
+
},
|
|
12435
|
+
"autoScroll": {
|
|
12436
|
+
"types": [
|
|
12437
|
+
"boolean"
|
|
12438
|
+
],
|
|
12439
|
+
"description": "autoScroll prop"
|
|
12440
|
+
},
|
|
12441
|
+
"showTimestamps": {
|
|
12442
|
+
"types": [
|
|
12443
|
+
"boolean"
|
|
12444
|
+
],
|
|
12445
|
+
"description": "showTimestamps prop"
|
|
12446
|
+
},
|
|
12447
|
+
"title": {
|
|
12448
|
+
"types": [
|
|
12449
|
+
"string"
|
|
12450
|
+
],
|
|
12451
|
+
"description": "title prop"
|
|
12452
|
+
},
|
|
12453
|
+
"className": {
|
|
12454
|
+
"types": [
|
|
12455
|
+
"string"
|
|
12456
|
+
],
|
|
12457
|
+
"description": "className prop"
|
|
12458
|
+
}
|
|
12459
|
+
}
|
|
12460
|
+
},
|
|
12461
|
+
"simulation-canvas": {
|
|
12462
|
+
"type": "simulation-canvas",
|
|
12463
|
+
"category": "game",
|
|
12464
|
+
"description": "SimulationCanvas Self-contained 2D physics canvas for educational presets. Runs its own Euler integration loop — no external physics hook needed.",
|
|
12465
|
+
"suggestedFor": [
|
|
12466
|
+
"simulation",
|
|
12467
|
+
"canvas",
|
|
12468
|
+
"simulation canvas"
|
|
12469
|
+
],
|
|
12470
|
+
"typicalSize": "large",
|
|
12471
|
+
"propsSchema": {
|
|
12472
|
+
"preset": {
|
|
12473
|
+
"types": [
|
|
12474
|
+
"physicspreset"
|
|
12475
|
+
],
|
|
12476
|
+
"description": "preset prop",
|
|
12477
|
+
"required": true
|
|
12478
|
+
},
|
|
12479
|
+
"width": {
|
|
12480
|
+
"types": [
|
|
12481
|
+
"number"
|
|
12482
|
+
],
|
|
12483
|
+
"description": "width prop"
|
|
12484
|
+
},
|
|
12485
|
+
"height": {
|
|
12486
|
+
"types": [
|
|
12487
|
+
"number"
|
|
12488
|
+
],
|
|
12489
|
+
"description": "height prop"
|
|
12490
|
+
},
|
|
12491
|
+
"running": {
|
|
12492
|
+
"types": [
|
|
12493
|
+
"boolean"
|
|
12494
|
+
],
|
|
12495
|
+
"description": "running prop",
|
|
12496
|
+
"required": true
|
|
12497
|
+
},
|
|
12498
|
+
"speed": {
|
|
12499
|
+
"types": [
|
|
12500
|
+
"number"
|
|
12501
|
+
],
|
|
12502
|
+
"description": "speed prop"
|
|
12503
|
+
},
|
|
12504
|
+
"className": {
|
|
12505
|
+
"types": [
|
|
12506
|
+
"string"
|
|
12507
|
+
],
|
|
12508
|
+
"description": "className prop"
|
|
12509
|
+
}
|
|
12510
|
+
}
|
|
12511
|
+
},
|
|
12512
|
+
"simulation-controls": {
|
|
12513
|
+
"type": "simulation-controls",
|
|
12514
|
+
"category": "display",
|
|
12515
|
+
"description": "SimulationControls Play/pause/step/reset controls with speed and parameter sliders.",
|
|
12516
|
+
"suggestedFor": [
|
|
12517
|
+
"simulation",
|
|
12518
|
+
"controls",
|
|
12519
|
+
"simulation controls"
|
|
12520
|
+
],
|
|
12521
|
+
"typicalSize": "large",
|
|
12522
|
+
"propsSchema": {
|
|
12523
|
+
"running": {
|
|
12524
|
+
"types": [
|
|
12525
|
+
"boolean"
|
|
12526
|
+
],
|
|
12527
|
+
"description": "running prop",
|
|
12528
|
+
"required": true
|
|
12529
|
+
},
|
|
12530
|
+
"speed": {
|
|
12531
|
+
"types": [
|
|
12532
|
+
"number"
|
|
12533
|
+
],
|
|
12534
|
+
"description": "speed prop",
|
|
12535
|
+
"required": true
|
|
12536
|
+
},
|
|
12537
|
+
"parameters": {
|
|
12538
|
+
"types": [
|
|
12539
|
+
"object"
|
|
12540
|
+
],
|
|
12541
|
+
"description": "parameters prop",
|
|
12542
|
+
"required": true
|
|
12543
|
+
},
|
|
12544
|
+
"onPlay": {
|
|
12545
|
+
"types": [
|
|
12546
|
+
"function"
|
|
12547
|
+
],
|
|
12548
|
+
"description": "onPlay prop",
|
|
12549
|
+
"required": true
|
|
12550
|
+
},
|
|
12551
|
+
"onPause": {
|
|
12552
|
+
"types": [
|
|
12553
|
+
"function"
|
|
12554
|
+
],
|
|
12555
|
+
"description": "onPause prop",
|
|
12556
|
+
"required": true
|
|
12557
|
+
},
|
|
12558
|
+
"onStep": {
|
|
12559
|
+
"types": [
|
|
12560
|
+
"function"
|
|
12561
|
+
],
|
|
12562
|
+
"description": "onStep prop",
|
|
12563
|
+
"required": true
|
|
12564
|
+
},
|
|
12565
|
+
"onReset": {
|
|
12566
|
+
"types": [
|
|
12567
|
+
"function"
|
|
12568
|
+
],
|
|
12569
|
+
"description": "onReset prop",
|
|
12570
|
+
"required": true
|
|
12571
|
+
},
|
|
12572
|
+
"onSpeedChange": {
|
|
12573
|
+
"types": [
|
|
12574
|
+
"function"
|
|
12575
|
+
],
|
|
12576
|
+
"description": "onSpeedChange prop",
|
|
12577
|
+
"required": true
|
|
12578
|
+
},
|
|
12579
|
+
"onParameterChange": {
|
|
12580
|
+
"types": [
|
|
12581
|
+
"function"
|
|
12582
|
+
],
|
|
12583
|
+
"description": "onParameterChange prop",
|
|
12584
|
+
"required": true
|
|
12585
|
+
},
|
|
12586
|
+
"className": {
|
|
12587
|
+
"types": [
|
|
12588
|
+
"string"
|
|
12589
|
+
],
|
|
12590
|
+
"description": "className prop"
|
|
12591
|
+
}
|
|
12592
|
+
}
|
|
12593
|
+
},
|
|
12594
|
+
"simulation-graph": {
|
|
12595
|
+
"type": "simulation-graph",
|
|
12596
|
+
"category": "display",
|
|
12597
|
+
"description": "SimulationGraph Real-time measurement graph for physics simulations. Renders measurement data as a simple line chart on canvas.",
|
|
12598
|
+
"suggestedFor": [
|
|
12599
|
+
"simulation",
|
|
12600
|
+
"graph",
|
|
12601
|
+
"simulation graph"
|
|
12602
|
+
],
|
|
12603
|
+
"typicalSize": "large",
|
|
12604
|
+
"propsSchema": {
|
|
12605
|
+
"label": {
|
|
12606
|
+
"types": [
|
|
12607
|
+
"string"
|
|
12608
|
+
],
|
|
12609
|
+
"description": "label prop",
|
|
12610
|
+
"required": true
|
|
12611
|
+
},
|
|
12612
|
+
"unit": {
|
|
12613
|
+
"types": [
|
|
12614
|
+
"string"
|
|
12615
|
+
],
|
|
12616
|
+
"description": "unit prop",
|
|
12617
|
+
"required": true
|
|
12618
|
+
},
|
|
12619
|
+
"data": {
|
|
12620
|
+
"types": [
|
|
12621
|
+
"array"
|
|
12622
|
+
],
|
|
12623
|
+
"description": "data prop",
|
|
12624
|
+
"required": true
|
|
12625
|
+
},
|
|
12626
|
+
"maxPoints": {
|
|
12627
|
+
"types": [
|
|
12628
|
+
"number"
|
|
12629
|
+
],
|
|
12630
|
+
"description": "maxPoints prop"
|
|
12631
|
+
},
|
|
12632
|
+
"width": {
|
|
12633
|
+
"types": [
|
|
12634
|
+
"number"
|
|
12635
|
+
],
|
|
12636
|
+
"description": "width prop"
|
|
12637
|
+
},
|
|
12638
|
+
"height": {
|
|
12639
|
+
"types": [
|
|
12640
|
+
"number"
|
|
12641
|
+
],
|
|
12642
|
+
"description": "height prop"
|
|
12643
|
+
},
|
|
12644
|
+
"color": {
|
|
12645
|
+
"types": [
|
|
12646
|
+
"string"
|
|
12647
|
+
],
|
|
12648
|
+
"description": "color prop"
|
|
12649
|
+
},
|
|
12650
|
+
"className": {
|
|
12651
|
+
"types": [
|
|
12652
|
+
"string"
|
|
12653
|
+
],
|
|
12654
|
+
"description": "className prop"
|
|
12655
|
+
}
|
|
12656
|
+
}
|
|
12657
|
+
},
|
|
12658
|
+
"builder-board": {
|
|
12659
|
+
"type": "builder-board",
|
|
12660
|
+
"category": "game",
|
|
12661
|
+
"description": "BuilderBoard Component-snapping game board. The player places components onto slots in a blueprint. Correct placement completes the build. Good for: architecture, circuits, molecules, system design stories. Events emitted via completeEvent (default UI:PUZZLE_COMPLETE).",
|
|
12662
|
+
"suggestedFor": [
|
|
12663
|
+
"builder",
|
|
12664
|
+
"board",
|
|
12665
|
+
"builder board"
|
|
12666
|
+
],
|
|
12667
|
+
"typicalSize": "large",
|
|
12668
|
+
"propsSchema": {
|
|
12669
|
+
"entity": {
|
|
12670
|
+
"types": [
|
|
12671
|
+
"builderpuzzleentity"
|
|
12672
|
+
],
|
|
12673
|
+
"description": "entity prop",
|
|
12674
|
+
"required": true
|
|
12675
|
+
},
|
|
12676
|
+
"completeEvent": {
|
|
12677
|
+
"types": [
|
|
12678
|
+
"string"
|
|
12679
|
+
],
|
|
12680
|
+
"description": "completeEvent prop"
|
|
12681
|
+
}
|
|
12682
|
+
}
|
|
12683
|
+
},
|
|
12684
|
+
"classifier-board": {
|
|
12685
|
+
"type": "classifier-board",
|
|
12686
|
+
"category": "game",
|
|
12687
|
+
"description": "ClassifierBoard Drag-and-drop classification game. The player sorts items into the correct category buckets. All items must be correctly classified to win. Good for: taxonomy, pattern recognition, sorting stories. Events emitted via completeEvent (default UI:PUZZLE_COMPLETE).",
|
|
12688
|
+
"suggestedFor": [
|
|
12689
|
+
"classifier",
|
|
12690
|
+
"board",
|
|
12691
|
+
"classifier board"
|
|
12692
|
+
],
|
|
12693
|
+
"typicalSize": "large",
|
|
12694
|
+
"propsSchema": {
|
|
12695
|
+
"entity": {
|
|
12696
|
+
"types": [
|
|
12697
|
+
"classifierpuzzleentity"
|
|
12698
|
+
],
|
|
12699
|
+
"description": "entity prop",
|
|
12700
|
+
"required": true
|
|
12701
|
+
},
|
|
12702
|
+
"completeEvent": {
|
|
12703
|
+
"types": [
|
|
12704
|
+
"string"
|
|
12705
|
+
],
|
|
12706
|
+
"description": "completeEvent prop"
|
|
12707
|
+
}
|
|
12708
|
+
}
|
|
12709
|
+
},
|
|
12710
|
+
"debugger-board": {
|
|
12711
|
+
"type": "debugger-board",
|
|
12712
|
+
"category": "game",
|
|
12713
|
+
"description": "DebuggerBoard Error-finding game board. The player reviews a code/system listing and identifies lines or elements that contain bugs. Good for: programming, logic, troubleshooting stories. Events emitted via completeEvent (default UI:PUZZLE_COMPLETE).",
|
|
12714
|
+
"suggestedFor": [
|
|
12715
|
+
"debugger",
|
|
12716
|
+
"board",
|
|
12717
|
+
"debugger board"
|
|
12718
|
+
],
|
|
12719
|
+
"typicalSize": "large",
|
|
12720
|
+
"propsSchema": {
|
|
12721
|
+
"entity": {
|
|
12722
|
+
"types": [
|
|
12723
|
+
"debuggerpuzzleentity"
|
|
12724
|
+
],
|
|
12725
|
+
"description": "entity prop",
|
|
12726
|
+
"required": true
|
|
12727
|
+
},
|
|
12728
|
+
"completeEvent": {
|
|
12729
|
+
"types": [
|
|
12730
|
+
"string"
|
|
12731
|
+
],
|
|
12732
|
+
"description": "completeEvent prop"
|
|
12733
|
+
}
|
|
12734
|
+
}
|
|
12735
|
+
},
|
|
12736
|
+
"event-handler-board": {
|
|
12737
|
+
"type": "event-handler-board",
|
|
12738
|
+
"category": "game",
|
|
12739
|
+
"description": "EventHandlerBoard Organism Contains ALL game logic for the Event Handler tier (ages 9-12). Kids click on world objects, set WHEN/THEN rules, and watch event chains cascade during playback. Encourages experimentation: on failure, resets to editing so the kid can try different rules. After 3 failures, shows a progressive hint.",
|
|
12740
|
+
"suggestedFor": [
|
|
12741
|
+
"event",
|
|
12742
|
+
"handler",
|
|
12743
|
+
"board",
|
|
12744
|
+
"event handler board"
|
|
12745
|
+
],
|
|
12746
|
+
"typicalSize": "large",
|
|
12747
|
+
"propsSchema": {
|
|
12748
|
+
"entity": {
|
|
12749
|
+
"types": [
|
|
12750
|
+
"eventhandlerpuzzleentity"
|
|
12751
|
+
],
|
|
12752
|
+
"description": "Puzzle data",
|
|
12753
|
+
"required": true
|
|
12754
|
+
},
|
|
12755
|
+
"stepDurationMs": {
|
|
12756
|
+
"types": [
|
|
12757
|
+
"number"
|
|
12758
|
+
],
|
|
12759
|
+
"description": "Playback speed in ms per event"
|
|
12760
|
+
},
|
|
12761
|
+
"playEvent": {
|
|
12762
|
+
"types": [
|
|
12763
|
+
"string"
|
|
12764
|
+
],
|
|
12765
|
+
"description": "Emits UI:{playEvent}"
|
|
12766
|
+
},
|
|
12767
|
+
"completeEvent": {
|
|
12768
|
+
"types": [
|
|
12769
|
+
"string"
|
|
12770
|
+
],
|
|
12771
|
+
"description": "Emits UI:{completeEvent} with { success }"
|
|
12772
|
+
}
|
|
12773
|
+
}
|
|
12774
|
+
},
|
|
12775
|
+
"event-log": {
|
|
12776
|
+
"type": "event-log",
|
|
12777
|
+
"category": "display",
|
|
12778
|
+
"description": "EventLog Component Scrolling log of events during playback in the Event Handler tier. Shows the chain reaction as events cascade through objects.",
|
|
12779
|
+
"suggestedFor": [
|
|
12780
|
+
"event",
|
|
12781
|
+
"log",
|
|
12782
|
+
"event log"
|
|
12783
|
+
],
|
|
12784
|
+
"typicalSize": "large",
|
|
12785
|
+
"propsSchema": {
|
|
12786
|
+
"entries": {
|
|
12787
|
+
"types": [
|
|
12788
|
+
"array"
|
|
12789
|
+
],
|
|
12790
|
+
"description": "Log entries",
|
|
12791
|
+
"required": true
|
|
12792
|
+
},
|
|
12793
|
+
"maxHeight": {
|
|
12794
|
+
"types": [
|
|
12795
|
+
"number"
|
|
12796
|
+
],
|
|
12797
|
+
"description": "Max visible height before scroll"
|
|
12798
|
+
},
|
|
12799
|
+
"label": {
|
|
12800
|
+
"types": [
|
|
12801
|
+
"string"
|
|
12802
|
+
],
|
|
12803
|
+
"description": "Title label"
|
|
12804
|
+
},
|
|
12805
|
+
"className": {
|
|
12806
|
+
"types": [
|
|
12807
|
+
"string"
|
|
12808
|
+
],
|
|
12809
|
+
"description": "Additional CSS classes"
|
|
12810
|
+
}
|
|
12811
|
+
}
|
|
12812
|
+
},
|
|
12813
|
+
"object-rule-panel": {
|
|
12814
|
+
"type": "object-rule-panel",
|
|
12815
|
+
"category": "display",
|
|
12816
|
+
"description": "ObjectRulePanel Component Shows the rules panel for a selected world object in the Event Handler tier. Displays object info, its current state (via TraitStateViewer), and a list of WHEN/THEN rules the kid has set.",
|
|
12817
|
+
"suggestedFor": [
|
|
12818
|
+
"object",
|
|
12819
|
+
"rule",
|
|
12820
|
+
"panel",
|
|
12821
|
+
"object rule panel"
|
|
12822
|
+
],
|
|
12823
|
+
"typicalSize": "large",
|
|
12824
|
+
"propsSchema": {
|
|
12825
|
+
"object": {
|
|
12826
|
+
"types": [
|
|
12827
|
+
"puzzleobjectdef"
|
|
12828
|
+
],
|
|
12829
|
+
"description": "The selected object",
|
|
12830
|
+
"required": true
|
|
12831
|
+
},
|
|
12832
|
+
"onRulesChange": {
|
|
12833
|
+
"types": [
|
|
12834
|
+
"function"
|
|
12835
|
+
],
|
|
12836
|
+
"description": "Called when rules change",
|
|
12837
|
+
"required": true
|
|
12838
|
+
},
|
|
12839
|
+
"disabled": {
|
|
12840
|
+
"types": [
|
|
12841
|
+
"boolean"
|
|
12842
|
+
],
|
|
12843
|
+
"description": "Whether editing is disabled"
|
|
12844
|
+
},
|
|
12845
|
+
"className": {
|
|
12846
|
+
"types": [
|
|
12847
|
+
"string"
|
|
12848
|
+
],
|
|
12849
|
+
"description": "Additional CSS classes"
|
|
12850
|
+
}
|
|
12851
|
+
}
|
|
12852
|
+
},
|
|
12853
|
+
"rule-editor": {
|
|
12854
|
+
"type": "rule-editor",
|
|
12855
|
+
"category": "display",
|
|
12856
|
+
"description": "RuleEditor Component A single WHEN/THEN rule row for the Event Handler tier (ages 9-12). Kid picks an event trigger and an action from dropdowns.",
|
|
12857
|
+
"suggestedFor": [
|
|
12858
|
+
"rule",
|
|
12859
|
+
"editor",
|
|
12860
|
+
"rule editor"
|
|
12861
|
+
],
|
|
12862
|
+
"typicalSize": "large",
|
|
12863
|
+
"propsSchema": {
|
|
12864
|
+
"rule": {
|
|
12865
|
+
"types": [
|
|
12866
|
+
"ruledefinition"
|
|
12867
|
+
],
|
|
12868
|
+
"description": "The current rule",
|
|
12869
|
+
"required": true
|
|
12870
|
+
},
|
|
12871
|
+
"availableEvents": {
|
|
12872
|
+
"types": [
|
|
12873
|
+
"array"
|
|
12874
|
+
],
|
|
12875
|
+
"description": "Available event triggers to listen for",
|
|
12876
|
+
"required": true
|
|
12877
|
+
},
|
|
12878
|
+
"availableActions": {
|
|
12879
|
+
"types": [
|
|
12880
|
+
"array"
|
|
12881
|
+
],
|
|
12882
|
+
"description": "Available actions to perform",
|
|
12883
|
+
"required": true
|
|
12884
|
+
},
|
|
12885
|
+
"onChange": {
|
|
12886
|
+
"types": [
|
|
12887
|
+
"function"
|
|
12888
|
+
],
|
|
12889
|
+
"description": "Called when rule changes",
|
|
12890
|
+
"required": true
|
|
12891
|
+
},
|
|
12892
|
+
"onRemove": {
|
|
12893
|
+
"types": [
|
|
12894
|
+
"function"
|
|
12895
|
+
],
|
|
12896
|
+
"description": "Called when rule is removed"
|
|
12897
|
+
},
|
|
12898
|
+
"disabled": {
|
|
12899
|
+
"types": [
|
|
12900
|
+
"boolean"
|
|
12901
|
+
],
|
|
12902
|
+
"description": "Whether editing is disabled (during playback)"
|
|
12903
|
+
},
|
|
12904
|
+
"className": {
|
|
12905
|
+
"types": [
|
|
12906
|
+
"string"
|
|
12907
|
+
],
|
|
12908
|
+
"description": "Additional CSS classes"
|
|
12909
|
+
}
|
|
12910
|
+
}
|
|
12911
|
+
},
|
|
12912
|
+
"negotiator-board": {
|
|
12913
|
+
"type": "negotiator-board",
|
|
12914
|
+
"category": "game",
|
|
12915
|
+
"description": "NegotiatorBoard Turn-based decision matrix game. The player makes choices over multiple rounds against an AI opponent. Each round both sides pick an action, and payoffs are determined by the combination. Good for: ethics, business, game theory, economics stories. Events emitted via completeEvent (default UI:PUZZLE_COMPLETE).",
|
|
12916
|
+
"suggestedFor": [
|
|
12917
|
+
"negotiator",
|
|
12918
|
+
"board",
|
|
12919
|
+
"negotiator board"
|
|
12920
|
+
],
|
|
12921
|
+
"typicalSize": "large",
|
|
12922
|
+
"propsSchema": {
|
|
12923
|
+
"entity": {
|
|
12924
|
+
"types": [
|
|
12925
|
+
"negotiatorpuzzleentity"
|
|
12926
|
+
],
|
|
12927
|
+
"description": "entity prop",
|
|
12928
|
+
"required": true
|
|
12929
|
+
},
|
|
12930
|
+
"completeEvent": {
|
|
12931
|
+
"types": [
|
|
12932
|
+
"string"
|
|
12933
|
+
],
|
|
12934
|
+
"description": "completeEvent prop"
|
|
12935
|
+
}
|
|
12936
|
+
}
|
|
12937
|
+
},
|
|
12938
|
+
"action-palette": {
|
|
12939
|
+
"type": "action-palette",
|
|
12940
|
+
"category": "display",
|
|
12941
|
+
"description": "ActionPalette Component Grid of draggable ActionTile components for the Sequencer tier. Kids pick from these to build their sequence.",
|
|
12942
|
+
"suggestedFor": [
|
|
12943
|
+
"action",
|
|
12944
|
+
"palette",
|
|
12945
|
+
"action palette"
|
|
12946
|
+
],
|
|
12947
|
+
"typicalSize": "large",
|
|
12948
|
+
"propsSchema": {
|
|
12949
|
+
"actions": {
|
|
12950
|
+
"types": [
|
|
12951
|
+
"array"
|
|
12952
|
+
],
|
|
12953
|
+
"description": "Available actions",
|
|
12954
|
+
"required": true
|
|
12955
|
+
},
|
|
12956
|
+
"usedActionIds": {
|
|
12957
|
+
"types": [
|
|
12958
|
+
"array"
|
|
12959
|
+
],
|
|
12960
|
+
"description": "IDs of actions that are already used (shown as disabled)"
|
|
12961
|
+
},
|
|
12962
|
+
"allowDuplicates": {
|
|
12963
|
+
"types": [
|
|
12964
|
+
"boolean"
|
|
12965
|
+
],
|
|
12966
|
+
"description": "Whether each action can be used multiple times"
|
|
12967
|
+
},
|
|
12968
|
+
"categoryColors": {
|
|
12969
|
+
"types": [
|
|
12970
|
+
"object"
|
|
12971
|
+
],
|
|
12972
|
+
"description": "Category → color mapping"
|
|
12973
|
+
},
|
|
12974
|
+
"size": {
|
|
12975
|
+
"types": [
|
|
12976
|
+
"string"
|
|
12977
|
+
],
|
|
12978
|
+
"description": "Size variant"
|
|
12979
|
+
},
|
|
12980
|
+
"label": {
|
|
12981
|
+
"types": [
|
|
12982
|
+
"string"
|
|
12983
|
+
],
|
|
12984
|
+
"description": "Label above the palette"
|
|
12985
|
+
},
|
|
12986
|
+
"className": {
|
|
12987
|
+
"types": [
|
|
12988
|
+
"string"
|
|
12989
|
+
],
|
|
12990
|
+
"description": "Additional CSS classes"
|
|
12991
|
+
}
|
|
12992
|
+
}
|
|
12993
|
+
},
|
|
12994
|
+
"action-tile": {
|
|
12995
|
+
"type": "action-tile",
|
|
12996
|
+
"category": "game",
|
|
12997
|
+
"description": "ActionTile Component A draggable action tile for the Sequencer tier (ages 5-8). Kids drag these from the ActionPalette into SequenceBar slots. Sets SlotItemData on dataTransfer for TraitSlot compatibility.",
|
|
12998
|
+
"suggestedFor": [
|
|
12999
|
+
"action",
|
|
13000
|
+
"tile",
|
|
13001
|
+
"action tile"
|
|
13002
|
+
],
|
|
13003
|
+
"typicalSize": "large",
|
|
13004
|
+
"propsSchema": {
|
|
13005
|
+
"action": {
|
|
13006
|
+
"types": [
|
|
13007
|
+
"slotitemdata"
|
|
13008
|
+
],
|
|
13009
|
+
"description": "The action data",
|
|
13010
|
+
"required": true
|
|
13011
|
+
},
|
|
13012
|
+
"size": {
|
|
13013
|
+
"types": [
|
|
13014
|
+
"string"
|
|
13015
|
+
],
|
|
13016
|
+
"description": "Size variant"
|
|
13017
|
+
},
|
|
13018
|
+
"disabled": {
|
|
13019
|
+
"types": [
|
|
13020
|
+
"boolean"
|
|
13021
|
+
],
|
|
13022
|
+
"description": "Whether the tile is disabled / already used"
|
|
13023
|
+
},
|
|
13024
|
+
"categoryColors": {
|
|
13025
|
+
"types": [
|
|
13026
|
+
"object"
|
|
13027
|
+
],
|
|
13028
|
+
"description": "Category → color mapping"
|
|
13029
|
+
}
|
|
13030
|
+
}
|
|
13031
|
+
},
|
|
13032
|
+
"sequence-bar": {
|
|
13033
|
+
"type": "sequence-bar",
|
|
13034
|
+
"category": "display",
|
|
13035
|
+
"description": "SequenceBar Component A row of TraitSlot components forming the action sequence for the Sequencer tier (ages 5-8). Kids drag ActionTiles from the palette into these slots to build their sequence.",
|
|
13036
|
+
"suggestedFor": [
|
|
13037
|
+
"sequence",
|
|
13038
|
+
"bar",
|
|
13039
|
+
"sequence bar"
|
|
13040
|
+
],
|
|
13041
|
+
"typicalSize": "large",
|
|
13042
|
+
"propsSchema": {
|
|
13043
|
+
"slots": {
|
|
13044
|
+
"types": [
|
|
13045
|
+
"array"
|
|
13046
|
+
],
|
|
13047
|
+
"description": "The current sequence (sparse — undefined means empty slot)",
|
|
13048
|
+
"required": true
|
|
13049
|
+
},
|
|
13050
|
+
"maxSlots": {
|
|
13051
|
+
"types": [
|
|
13052
|
+
"number"
|
|
13053
|
+
],
|
|
13054
|
+
"description": "Max number of slots",
|
|
13055
|
+
"required": true
|
|
13056
|
+
},
|
|
13057
|
+
"onSlotDrop": {
|
|
13058
|
+
"types": [
|
|
13059
|
+
"function"
|
|
13060
|
+
],
|
|
13061
|
+
"description": "Called when an item is dropped into slot at index",
|
|
13062
|
+
"required": true
|
|
13063
|
+
},
|
|
13064
|
+
"onSlotRemove": {
|
|
13065
|
+
"types": [
|
|
13066
|
+
"function"
|
|
13067
|
+
],
|
|
13068
|
+
"description": "Called when a slot is cleared",
|
|
13069
|
+
"required": true
|
|
13070
|
+
},
|
|
13071
|
+
"playing": {
|
|
13072
|
+
"types": [
|
|
13073
|
+
"boolean"
|
|
13074
|
+
],
|
|
13075
|
+
"description": "Whether the sequence is currently playing (disable interaction)"
|
|
13076
|
+
},
|
|
13077
|
+
"currentStep": {
|
|
13078
|
+
"types": [
|
|
13079
|
+
"number"
|
|
13080
|
+
],
|
|
13081
|
+
"description": "Current step index during playback (-1 = not playing)"
|
|
13082
|
+
},
|
|
13083
|
+
"categoryColors": {
|
|
13084
|
+
"types": [
|
|
13085
|
+
"object"
|
|
13086
|
+
],
|
|
13087
|
+
"description": "Category → color mapping"
|
|
13088
|
+
},
|
|
13089
|
+
"slotFeedback": {
|
|
13090
|
+
"types": [
|
|
13091
|
+
"array"
|
|
13092
|
+
],
|
|
13093
|
+
"description": "Per-slot correctness feedback shown after a failed attempt"
|
|
13094
|
+
},
|
|
13095
|
+
"size": {
|
|
13096
|
+
"types": [
|
|
13097
|
+
"string"
|
|
13098
|
+
],
|
|
13099
|
+
"description": "Size variant"
|
|
13100
|
+
},
|
|
13101
|
+
"className": {
|
|
13102
|
+
"types": [
|
|
13103
|
+
"string"
|
|
13104
|
+
],
|
|
13105
|
+
"description": "Additional CSS classes"
|
|
13106
|
+
}
|
|
13107
|
+
}
|
|
13108
|
+
},
|
|
13109
|
+
"sequencer-board": {
|
|
13110
|
+
"type": "sequencer-board",
|
|
13111
|
+
"category": "game",
|
|
13112
|
+
"description": "SequencerBoard Organism Contains ALL game logic for the Sequencer tier (ages 5-8). Manages the action sequence, validates it, and animates Kekec executing each step on the puzzle scene. Feedback-first UX: - On failure: slots stay in place, each slot gets a green or red ring showing exactly which steps are correct and which need to change. - Modifying a slot clears its individual feedback so the kid can re-try. - After 3 failures a persistent hint appears above the sequence bar. - \"Reset\" clears everything including attempts / hint. TraitStateViewer states use indexed labels (\"1. Walk\", \"2. Jump\") so that repeated actions are correctly highlighted during playback.",
|
|
13113
|
+
"suggestedFor": [
|
|
13114
|
+
"sequencer",
|
|
13115
|
+
"board",
|
|
13116
|
+
"sequencer board"
|
|
13117
|
+
],
|
|
13118
|
+
"typicalSize": "large",
|
|
13119
|
+
"propsSchema": {
|
|
13120
|
+
"entity": {
|
|
13121
|
+
"types": [
|
|
13122
|
+
"sequencerpuzzleentity"
|
|
13123
|
+
],
|
|
13124
|
+
"description": "Puzzle data",
|
|
13125
|
+
"required": true
|
|
13126
|
+
},
|
|
13127
|
+
"categoryColors": {
|
|
13128
|
+
"types": [
|
|
13129
|
+
"object"
|
|
13130
|
+
],
|
|
13131
|
+
"description": "Category → color mapping"
|
|
13132
|
+
},
|
|
13133
|
+
"stepDurationMs": {
|
|
13134
|
+
"types": [
|
|
13135
|
+
"number"
|
|
13136
|
+
],
|
|
13137
|
+
"description": "Playback speed in ms per step"
|
|
13138
|
+
},
|
|
13139
|
+
"playEvent": {
|
|
13140
|
+
"types": [
|
|
13141
|
+
"string"
|
|
13142
|
+
],
|
|
13143
|
+
"description": "Emits UI:{playEvent} with { sequence: string[] }"
|
|
13144
|
+
},
|
|
13145
|
+
"completeEvent": {
|
|
13146
|
+
"types": [
|
|
13147
|
+
"string"
|
|
13148
|
+
],
|
|
13149
|
+
"description": "Emits UI:{completeEvent} with { success: boolean }"
|
|
13150
|
+
}
|
|
13151
|
+
}
|
|
13152
|
+
},
|
|
13153
|
+
"simulator-board": {
|
|
13154
|
+
"type": "simulator-board",
|
|
13155
|
+
"category": "game",
|
|
13156
|
+
"description": "SimulatorBoard Parameter-slider game board. The player adjusts parameters and observes real-time output. Correct parameter values must bring the output within a target range to win. Good for: physics, economics, system design stories. Events emitted via completeEvent (default UI:PUZZLE_COMPLETE).",
|
|
13157
|
+
"suggestedFor": [
|
|
13158
|
+
"simulator",
|
|
13159
|
+
"board",
|
|
13160
|
+
"simulator board"
|
|
13161
|
+
],
|
|
13162
|
+
"typicalSize": "large",
|
|
13163
|
+
"propsSchema": {
|
|
13164
|
+
"entity": {
|
|
13165
|
+
"types": [
|
|
13166
|
+
"simulatorpuzzleentity"
|
|
13167
|
+
],
|
|
13168
|
+
"description": "entity prop",
|
|
13169
|
+
"required": true
|
|
13170
|
+
},
|
|
13171
|
+
"completeEvent": {
|
|
13172
|
+
"types": [
|
|
13173
|
+
"string"
|
|
13174
|
+
],
|
|
13175
|
+
"description": "completeEvent prop"
|
|
13176
|
+
}
|
|
13177
|
+
}
|
|
13178
|
+
},
|
|
13179
|
+
"code-view": {
|
|
13180
|
+
"type": "code-view",
|
|
13181
|
+
"category": "display",
|
|
13182
|
+
"description": "CodeView Component Shows the JSON code representation of a state machine. Toggle between visual and code view in State Architect tier.",
|
|
13183
|
+
"suggestedFor": [
|
|
13184
|
+
"code",
|
|
13185
|
+
"view",
|
|
13186
|
+
"code view"
|
|
13187
|
+
],
|
|
13188
|
+
"typicalSize": "large",
|
|
13189
|
+
"propsSchema": {
|
|
13190
|
+
"data": {
|
|
13191
|
+
"types": [
|
|
13192
|
+
"object"
|
|
13193
|
+
],
|
|
13194
|
+
"description": "JSON data to display",
|
|
13195
|
+
"required": true
|
|
13196
|
+
},
|
|
13197
|
+
"label": {
|
|
13198
|
+
"types": [
|
|
13199
|
+
"string"
|
|
13200
|
+
],
|
|
13201
|
+
"description": "Label"
|
|
13202
|
+
},
|
|
13203
|
+
"defaultExpanded": {
|
|
13204
|
+
"types": [
|
|
13205
|
+
"boolean"
|
|
13206
|
+
],
|
|
13207
|
+
"description": "Whether the code is expanded by default"
|
|
13208
|
+
},
|
|
13209
|
+
"className": {
|
|
13210
|
+
"types": [
|
|
13211
|
+
"string"
|
|
13212
|
+
],
|
|
13213
|
+
"description": "Additional CSS classes"
|
|
13214
|
+
}
|
|
13215
|
+
}
|
|
13216
|
+
},
|
|
13217
|
+
"state-architect-board": {
|
|
13218
|
+
"type": "state-architect-board",
|
|
13219
|
+
"category": "display",
|
|
13220
|
+
"description": "StateArchitectBoard Organism Contains ALL game logic for the State Architect tier (ages 13+). Kids design state machines via a visual graph editor, then run them to see if the behavior matches the puzzle goal.",
|
|
13221
|
+
"suggestedFor": [
|
|
13222
|
+
"state",
|
|
13223
|
+
"architect",
|
|
13224
|
+
"board",
|
|
13225
|
+
"state architect board"
|
|
13226
|
+
],
|
|
13227
|
+
"typicalSize": "large",
|
|
13228
|
+
"propsSchema": {
|
|
13229
|
+
"entity": {
|
|
13230
|
+
"types": [
|
|
13231
|
+
"statearchitectpuzzleentity"
|
|
13232
|
+
],
|
|
13233
|
+
"description": "Puzzle data",
|
|
13234
|
+
"required": true
|
|
13235
|
+
},
|
|
13236
|
+
"stepDurationMs": {
|
|
13237
|
+
"types": [
|
|
13238
|
+
"number"
|
|
13239
|
+
],
|
|
13240
|
+
"description": "Playback speed"
|
|
13241
|
+
},
|
|
13242
|
+
"testEvent": {
|
|
13243
|
+
"types": [
|
|
13244
|
+
"string"
|
|
13245
|
+
],
|
|
13246
|
+
"description": "Emits UI:{testEvent}"
|
|
13247
|
+
},
|
|
13248
|
+
"completeEvent": {
|
|
13249
|
+
"types": [
|
|
13250
|
+
"string"
|
|
13251
|
+
],
|
|
13252
|
+
"description": "Emits UI:{completeEvent} with { success, passedTests }"
|
|
13253
|
+
}
|
|
13254
|
+
}
|
|
13255
|
+
},
|
|
13256
|
+
"state-node": {
|
|
13257
|
+
"type": "state-node",
|
|
13258
|
+
"category": "display",
|
|
13259
|
+
"description": "StateNode Component A draggable state circle for the graph editor in the State Architect tier (ages 13+). Shows state name, highlights when current, and supports click to select.",
|
|
13260
|
+
"suggestedFor": [
|
|
13261
|
+
"state",
|
|
13262
|
+
"node",
|
|
13263
|
+
"state node"
|
|
13264
|
+
],
|
|
13265
|
+
"typicalSize": "large",
|
|
13266
|
+
"propsSchema": {
|
|
13267
|
+
"name": {
|
|
13268
|
+
"types": [
|
|
13269
|
+
"string"
|
|
13270
|
+
],
|
|
13271
|
+
"description": "State name",
|
|
13272
|
+
"required": true
|
|
13273
|
+
},
|
|
13274
|
+
"isCurrent": {
|
|
13275
|
+
"types": [
|
|
13276
|
+
"boolean"
|
|
13277
|
+
],
|
|
13278
|
+
"description": "Whether this is the current active state"
|
|
13279
|
+
},
|
|
13280
|
+
"isSelected": {
|
|
13281
|
+
"types": [
|
|
13282
|
+
"boolean"
|
|
13283
|
+
],
|
|
13284
|
+
"description": "Whether this node is selected for editing"
|
|
13285
|
+
},
|
|
13286
|
+
"isInitial": {
|
|
13287
|
+
"types": [
|
|
13288
|
+
"boolean"
|
|
13289
|
+
],
|
|
13290
|
+
"description": "Whether this is the initial state"
|
|
13291
|
+
},
|
|
13292
|
+
"position": {
|
|
13293
|
+
"types": [
|
|
13294
|
+
"object"
|
|
13295
|
+
],
|
|
13296
|
+
"description": "Position on the graph canvas",
|
|
13297
|
+
"required": true
|
|
13298
|
+
},
|
|
13299
|
+
"onClick": {
|
|
13300
|
+
"types": [
|
|
13301
|
+
"function"
|
|
13302
|
+
],
|
|
13303
|
+
"description": "Click handler"
|
|
13304
|
+
},
|
|
13305
|
+
"className": {
|
|
13306
|
+
"types": [
|
|
13307
|
+
"string"
|
|
13308
|
+
],
|
|
13309
|
+
"description": "Additional CSS classes"
|
|
13310
|
+
}
|
|
13311
|
+
}
|
|
13312
|
+
},
|
|
13313
|
+
"transition-arrow": {
|
|
13314
|
+
"type": "transition-arrow",
|
|
13315
|
+
"category": "display",
|
|
13316
|
+
"description": "TransitionArrow Component An SVG arrow connecting two state nodes in the graph editor. Shows the event name as a label on the arrow.",
|
|
13317
|
+
"suggestedFor": [
|
|
13318
|
+
"transition",
|
|
13319
|
+
"arrow",
|
|
13320
|
+
"transition arrow"
|
|
13321
|
+
],
|
|
13322
|
+
"typicalSize": "large",
|
|
13323
|
+
"propsSchema": {
|
|
13324
|
+
"from": {
|
|
13325
|
+
"types": [
|
|
13326
|
+
"object"
|
|
13327
|
+
],
|
|
13328
|
+
"description": "Start position (center of from-node)",
|
|
13329
|
+
"required": true
|
|
13330
|
+
},
|
|
13331
|
+
"to": {
|
|
13332
|
+
"types": [
|
|
13333
|
+
"object"
|
|
13334
|
+
],
|
|
13335
|
+
"description": "End position (center of to-node)",
|
|
13336
|
+
"required": true
|
|
13337
|
+
},
|
|
13338
|
+
"eventLabel": {
|
|
13339
|
+
"types": [
|
|
13340
|
+
"string"
|
|
13341
|
+
],
|
|
13342
|
+
"description": "Event label shown on the arrow",
|
|
13343
|
+
"required": true
|
|
13344
|
+
},
|
|
13345
|
+
"guardHint": {
|
|
13346
|
+
"types": [
|
|
13347
|
+
"string"
|
|
13348
|
+
],
|
|
13349
|
+
"description": "Guard hint shown below event"
|
|
13350
|
+
},
|
|
13351
|
+
"isActive": {
|
|
13352
|
+
"types": [
|
|
13353
|
+
"boolean"
|
|
13354
|
+
],
|
|
13355
|
+
"description": "Whether this transition is currently active"
|
|
13356
|
+
},
|
|
13357
|
+
"onClick": {
|
|
13358
|
+
"types": [
|
|
13359
|
+
"function"
|
|
13360
|
+
],
|
|
13361
|
+
"description": "Click handler"
|
|
13362
|
+
},
|
|
13363
|
+
"className": {
|
|
13364
|
+
"types": [
|
|
13365
|
+
"string"
|
|
13366
|
+
],
|
|
13367
|
+
"description": "Additional CSS classes for the SVG group"
|
|
13368
|
+
}
|
|
13369
|
+
}
|
|
13370
|
+
},
|
|
13371
|
+
"variable-panel": {
|
|
13372
|
+
"type": "variable-panel",
|
|
13373
|
+
"category": "display",
|
|
13374
|
+
"description": "VariablePanel Component Shows entity variables and their current values during State Architect playback.",
|
|
13375
|
+
"suggestedFor": [
|
|
13376
|
+
"variable",
|
|
13377
|
+
"panel",
|
|
13378
|
+
"variable panel"
|
|
13379
|
+
],
|
|
13380
|
+
"typicalSize": "large",
|
|
13381
|
+
"propsSchema": {
|
|
13382
|
+
"entityName": {
|
|
13383
|
+
"types": [
|
|
13384
|
+
"string"
|
|
13385
|
+
],
|
|
13386
|
+
"description": "Entity name",
|
|
13387
|
+
"required": true
|
|
13388
|
+
},
|
|
13389
|
+
"variables": {
|
|
13390
|
+
"types": [
|
|
13391
|
+
"array"
|
|
13392
|
+
],
|
|
13393
|
+
"description": "Variables to display",
|
|
13394
|
+
"required": true
|
|
13395
|
+
},
|
|
13396
|
+
"className": {
|
|
13397
|
+
"types": [
|
|
13398
|
+
"string"
|
|
13399
|
+
],
|
|
13400
|
+
"description": "Additional CSS classes"
|
|
13401
|
+
}
|
|
13402
|
+
}
|
|
13403
|
+
},
|
|
11870
13404
|
"heading": {
|
|
11871
13405
|
"type": "heading",
|
|
11872
13406
|
"category": "component",
|