@almadar/patterns 2.0.1 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/component-mapping.json +1 -1
- package/dist/event-contracts.json +137 -24
- package/dist/index.d.ts +1162 -112
- package/dist/index.js +548 -67
- package/dist/index.js.map +1 -1
- package/dist/patterns-registry.json +406 -38
- package/dist/registry.json +406 -38
- package/package.json +4 -1
package/dist/registry.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-03-
|
|
3
|
+
"exportedAt": "2026-03-06T07:07:47.853Z",
|
|
4
4
|
"patterns": {
|
|
5
5
|
"entity-table": {
|
|
6
6
|
"type": "entity-table",
|
|
@@ -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
|
},
|
|
@@ -2153,6 +2165,12 @@
|
|
|
2153
2165
|
"unknown"
|
|
2154
2166
|
],
|
|
2155
2167
|
"description": "Metrics to display (schema format) - accepts readonly for compatibility with generated const arrays"
|
|
2168
|
+
},
|
|
2169
|
+
"compact": {
|
|
2170
|
+
"types": [
|
|
2171
|
+
"boolean"
|
|
2172
|
+
],
|
|
2173
|
+
"description": "Compact display mode"
|
|
2156
2174
|
}
|
|
2157
2175
|
}
|
|
2158
2176
|
},
|
|
@@ -2167,6 +2185,84 @@
|
|
|
2167
2185
|
],
|
|
2168
2186
|
"typicalSize": "large",
|
|
2169
2187
|
"propsSchema": {
|
|
2188
|
+
"entity": {
|
|
2189
|
+
"types": [
|
|
2190
|
+
"string"
|
|
2191
|
+
],
|
|
2192
|
+
"description": "Entity name for schema-driven integration"
|
|
2193
|
+
},
|
|
2194
|
+
"data": {
|
|
2195
|
+
"types": [
|
|
2196
|
+
"array"
|
|
2197
|
+
],
|
|
2198
|
+
"description": "Data array provided by the trait via render-ui"
|
|
2199
|
+
},
|
|
2200
|
+
"className": {
|
|
2201
|
+
"types": [
|
|
2202
|
+
"string"
|
|
2203
|
+
],
|
|
2204
|
+
"description": "Additional CSS classes"
|
|
2205
|
+
},
|
|
2206
|
+
"isLoading": {
|
|
2207
|
+
"types": [
|
|
2208
|
+
"boolean"
|
|
2209
|
+
],
|
|
2210
|
+
"description": "Loading state indicator"
|
|
2211
|
+
},
|
|
2212
|
+
"error": {
|
|
2213
|
+
"types": [
|
|
2214
|
+
"object"
|
|
2215
|
+
],
|
|
2216
|
+
"description": "Error state"
|
|
2217
|
+
},
|
|
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
|
+
},
|
|
2170
2266
|
"columns": {
|
|
2171
2267
|
"types": [
|
|
2172
2268
|
"number"
|
|
@@ -2185,12 +2281,6 @@
|
|
|
2185
2281
|
],
|
|
2186
2282
|
"description": "Cell definitions",
|
|
2187
2283
|
"required": true
|
|
2188
|
-
},
|
|
2189
|
-
"className": {
|
|
2190
|
-
"types": [
|
|
2191
|
-
"string"
|
|
2192
|
-
],
|
|
2193
|
-
"description": "Additional CSS classes"
|
|
2194
2284
|
}
|
|
2195
2285
|
}
|
|
2196
2286
|
},
|
|
@@ -3390,6 +3480,12 @@
|
|
|
3390
3480
|
"badgesize"
|
|
3391
3481
|
],
|
|
3392
3482
|
"description": "size prop"
|
|
3483
|
+
},
|
|
3484
|
+
"amount": {
|
|
3485
|
+
"types": [
|
|
3486
|
+
"number"
|
|
3487
|
+
],
|
|
3488
|
+
"description": "Numeric count or amount to display in badge"
|
|
3393
3489
|
}
|
|
3394
3490
|
}
|
|
3395
3491
|
},
|
|
@@ -3598,6 +3694,30 @@
|
|
|
3598
3694
|
"string"
|
|
3599
3695
|
],
|
|
3600
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"
|
|
3601
3721
|
}
|
|
3602
3722
|
}
|
|
3603
3723
|
},
|
|
@@ -7372,6 +7492,19 @@
|
|
|
7372
7492
|
],
|
|
7373
7493
|
"typicalSize": "full",
|
|
7374
7494
|
"propsSchema": {
|
|
7495
|
+
"entity": {
|
|
7496
|
+
"types": [
|
|
7497
|
+
"object"
|
|
7498
|
+
],
|
|
7499
|
+
"description": "Entity data, the sole source of runtime state",
|
|
7500
|
+
"required": true
|
|
7501
|
+
},
|
|
7502
|
+
"className": {
|
|
7503
|
+
"types": [
|
|
7504
|
+
"string"
|
|
7505
|
+
],
|
|
7506
|
+
"description": "External styling override"
|
|
7507
|
+
},
|
|
7375
7508
|
"onIncrement": {
|
|
7376
7509
|
"types": [
|
|
7377
7510
|
"function"
|
|
@@ -7474,6 +7607,12 @@
|
|
|
7474
7607
|
"function"
|
|
7475
7608
|
],
|
|
7476
7609
|
"description": "Callback when user clicks sign out (optional - uses auth context signOut if not provided)"
|
|
7610
|
+
},
|
|
7611
|
+
"children": {
|
|
7612
|
+
"types": [
|
|
7613
|
+
"node"
|
|
7614
|
+
],
|
|
7615
|
+
"description": "Page content rendered inside the main area"
|
|
7477
7616
|
}
|
|
7478
7617
|
}
|
|
7479
7618
|
},
|
|
@@ -7488,6 +7627,19 @@
|
|
|
7488
7627
|
],
|
|
7489
7628
|
"typicalSize": "full",
|
|
7490
7629
|
"propsSchema": {
|
|
7630
|
+
"entity": {
|
|
7631
|
+
"types": [
|
|
7632
|
+
"object"
|
|
7633
|
+
],
|
|
7634
|
+
"description": "Entity data, the sole source of runtime state",
|
|
7635
|
+
"required": true
|
|
7636
|
+
},
|
|
7637
|
+
"className": {
|
|
7638
|
+
"types": [
|
|
7639
|
+
"string"
|
|
7640
|
+
],
|
|
7641
|
+
"description": "Additional class name"
|
|
7642
|
+
},
|
|
7491
7643
|
"title": {
|
|
7492
7644
|
"types": [
|
|
7493
7645
|
"string"
|
|
@@ -7524,12 +7676,6 @@
|
|
|
7524
7676
|
"object"
|
|
7525
7677
|
],
|
|
7526
7678
|
"description": "Game controls"
|
|
7527
|
-
},
|
|
7528
|
-
"className": {
|
|
7529
|
-
"types": [
|
|
7530
|
-
"string"
|
|
7531
|
-
],
|
|
7532
|
-
"description": "Additional class name"
|
|
7533
7679
|
}
|
|
7534
7680
|
}
|
|
7535
7681
|
},
|
|
@@ -7545,6 +7691,19 @@
|
|
|
7545
7691
|
],
|
|
7546
7692
|
"typicalSize": "full",
|
|
7547
7693
|
"propsSchema": {
|
|
7694
|
+
"entity": {
|
|
7695
|
+
"types": [
|
|
7696
|
+
"object"
|
|
7697
|
+
],
|
|
7698
|
+
"description": "Entity data, the sole source of runtime state",
|
|
7699
|
+
"required": true
|
|
7700
|
+
},
|
|
7701
|
+
"className": {
|
|
7702
|
+
"types": [
|
|
7703
|
+
"string"
|
|
7704
|
+
],
|
|
7705
|
+
"description": "Additional class name"
|
|
7706
|
+
},
|
|
7548
7707
|
"title": {
|
|
7549
7708
|
"types": [
|
|
7550
7709
|
"string"
|
|
@@ -7576,12 +7735,6 @@
|
|
|
7576
7735
|
"node"
|
|
7577
7736
|
],
|
|
7578
7737
|
"description": "Footer content"
|
|
7579
|
-
},
|
|
7580
|
-
"className": {
|
|
7581
|
-
"types": [
|
|
7582
|
-
"string"
|
|
7583
|
-
],
|
|
7584
|
-
"description": "Additional class name"
|
|
7585
7738
|
}
|
|
7586
7739
|
}
|
|
7587
7740
|
},
|
|
@@ -7619,6 +7772,12 @@
|
|
|
7619
7772
|
"boolean"
|
|
7620
7773
|
],
|
|
7621
7774
|
"description": "Whether to show the minimal top bar (default: true)"
|
|
7775
|
+
},
|
|
7776
|
+
"children": {
|
|
7777
|
+
"types": [
|
|
7778
|
+
"node"
|
|
7779
|
+
],
|
|
7780
|
+
"description": "Game content rendered inside the full-screen area"
|
|
7622
7781
|
}
|
|
7623
7782
|
}
|
|
7624
7783
|
},
|
|
@@ -8628,11 +8787,23 @@
|
|
|
8628
8787
|
],
|
|
8629
8788
|
"typicalSize": "large",
|
|
8630
8789
|
"propsSchema": {
|
|
8790
|
+
"entity": {
|
|
8791
|
+
"types": [
|
|
8792
|
+
"string"
|
|
8793
|
+
],
|
|
8794
|
+
"description": "Entity name for schema-driven integration"
|
|
8795
|
+
},
|
|
8796
|
+
"data": {
|
|
8797
|
+
"types": [
|
|
8798
|
+
"array"
|
|
8799
|
+
],
|
|
8800
|
+
"description": "Data array provided by the trait via render-ui"
|
|
8801
|
+
},
|
|
8631
8802
|
"className": {
|
|
8632
8803
|
"types": [
|
|
8633
8804
|
"string"
|
|
8634
8805
|
],
|
|
8635
|
-
"description": "
|
|
8806
|
+
"description": "Additional CSS classes"
|
|
8636
8807
|
},
|
|
8637
8808
|
"isLoading": {
|
|
8638
8809
|
"types": [
|
|
@@ -8642,21 +8813,63 @@
|
|
|
8642
8813
|
},
|
|
8643
8814
|
"error": {
|
|
8644
8815
|
"types": [
|
|
8645
|
-
"
|
|
8816
|
+
"object"
|
|
8646
8817
|
],
|
|
8647
8818
|
"description": "Error state"
|
|
8648
8819
|
},
|
|
8649
|
-
"
|
|
8820
|
+
"sortBy": {
|
|
8650
8821
|
"types": [
|
|
8651
8822
|
"string"
|
|
8652
8823
|
],
|
|
8653
|
-
"description": "
|
|
8824
|
+
"description": "Current sort field"
|
|
8825
|
+
},
|
|
8826
|
+
"sortDirection": {
|
|
8827
|
+
"types": [
|
|
8828
|
+
"string"
|
|
8829
|
+
],
|
|
8830
|
+
"description": "Current sort direction"
|
|
8831
|
+
},
|
|
8832
|
+
"searchValue": {
|
|
8833
|
+
"types": [
|
|
8834
|
+
"string"
|
|
8835
|
+
],
|
|
8836
|
+
"description": "Current search query value"
|
|
8837
|
+
},
|
|
8838
|
+
"page": {
|
|
8839
|
+
"types": [
|
|
8840
|
+
"number"
|
|
8841
|
+
],
|
|
8842
|
+
"description": "Current page number"
|
|
8843
|
+
},
|
|
8844
|
+
"pageSize": {
|
|
8845
|
+
"types": [
|
|
8846
|
+
"number"
|
|
8847
|
+
],
|
|
8848
|
+
"description": "Number of items per page"
|
|
8849
|
+
},
|
|
8850
|
+
"totalCount": {
|
|
8851
|
+
"types": [
|
|
8852
|
+
"number"
|
|
8853
|
+
],
|
|
8854
|
+
"description": "Total number of items"
|
|
8855
|
+
},
|
|
8856
|
+
"activeFilters": {
|
|
8857
|
+
"types": [
|
|
8858
|
+
"object"
|
|
8859
|
+
],
|
|
8860
|
+
"description": "Active filters"
|
|
8861
|
+
},
|
|
8862
|
+
"selectedIds": {
|
|
8863
|
+
"types": [
|
|
8864
|
+
"array"
|
|
8865
|
+
],
|
|
8866
|
+
"description": "Currently selected item IDs"
|
|
8654
8867
|
},
|
|
8655
8868
|
"tiles": {
|
|
8656
8869
|
"types": [
|
|
8657
8870
|
"array"
|
|
8658
8871
|
],
|
|
8659
|
-
"description": "
|
|
8872
|
+
"description": "EntityDisplayProps provides: className, isLoading, error, entity,"
|
|
8660
8873
|
},
|
|
8661
8874
|
"units": {
|
|
8662
8875
|
"types": [
|
|
@@ -8698,25 +8911,25 @@
|
|
|
8698
8911
|
"types": [
|
|
8699
8912
|
"function"
|
|
8700
8913
|
],
|
|
8701
|
-
"description": "--- Event handlers ---"
|
|
8914
|
+
"description": "--- Event handlers (legacy callbacks — prefer declarative event string props below) ---"
|
|
8702
8915
|
},
|
|
8703
8916
|
"onUnitClick": {
|
|
8704
8917
|
"types": [
|
|
8705
8918
|
"function"
|
|
8706
8919
|
],
|
|
8707
|
-
"description": "
|
|
8920
|
+
"description": "eslint-disable-next-line almadar/organism-no-callback-props"
|
|
8708
8921
|
},
|
|
8709
8922
|
"onTileHover": {
|
|
8710
8923
|
"types": [
|
|
8711
8924
|
"function"
|
|
8712
8925
|
],
|
|
8713
|
-
"description": "
|
|
8926
|
+
"description": "eslint-disable-next-line almadar/organism-no-callback-props"
|
|
8714
8927
|
},
|
|
8715
8928
|
"onTileLeave": {
|
|
8716
8929
|
"types": [
|
|
8717
8930
|
"function"
|
|
8718
8931
|
],
|
|
8719
|
-
"description": "
|
|
8932
|
+
"description": "eslint-disable-next-line almadar/organism-no-callback-props"
|
|
8720
8933
|
},
|
|
8721
8934
|
"tileClickEvent": {
|
|
8722
8935
|
"types": [
|
|
@@ -8778,6 +8991,18 @@
|
|
|
8778
8991
|
],
|
|
8779
8992
|
"description": "Extra scale multiplier for unit draw size. 1 = default."
|
|
8780
8993
|
},
|
|
8994
|
+
"boardWidth": {
|
|
8995
|
+
"types": [
|
|
8996
|
+
"number"
|
|
8997
|
+
],
|
|
8998
|
+
"description": "Board width in tiles (overrides tile-derived size)"
|
|
8999
|
+
},
|
|
9000
|
+
"boardHeight": {
|
|
9001
|
+
"types": [
|
|
9002
|
+
"number"
|
|
9003
|
+
],
|
|
9004
|
+
"description": "Board height in tiles (overrides tile-derived size)"
|
|
9005
|
+
},
|
|
8781
9006
|
"diamondTopY": {
|
|
8782
9007
|
"types": [
|
|
8783
9008
|
"number"
|
|
@@ -8818,7 +9043,7 @@
|
|
|
8818
9043
|
"types": [
|
|
8819
9044
|
"function"
|
|
8820
9045
|
],
|
|
8821
|
-
"description": "Callback to draw canvas effects after units"
|
|
9046
|
+
"description": "Callback to draw canvas effects after units (canvas-specific: cannot be declarative)"
|
|
8822
9047
|
},
|
|
8823
9048
|
"hasActiveEffects": {
|
|
8824
9049
|
"types": [
|
|
@@ -8851,6 +9076,19 @@
|
|
|
8851
9076
|
],
|
|
8852
9077
|
"typicalSize": "full",
|
|
8853
9078
|
"propsSchema": {
|
|
9079
|
+
"entity": {
|
|
9080
|
+
"types": [
|
|
9081
|
+
"object"
|
|
9082
|
+
],
|
|
9083
|
+
"description": "Entity data, the sole source of runtime state",
|
|
9084
|
+
"required": true
|
|
9085
|
+
},
|
|
9086
|
+
"className": {
|
|
9087
|
+
"types": [
|
|
9088
|
+
"string"
|
|
9089
|
+
],
|
|
9090
|
+
"description": "External styling override"
|
|
9091
|
+
},
|
|
8854
9092
|
"scale": {
|
|
8855
9093
|
"types": [
|
|
8856
9094
|
"number"
|
|
@@ -8876,6 +9114,19 @@
|
|
|
8876
9114
|
],
|
|
8877
9115
|
"typicalSize": "full",
|
|
8878
9116
|
"propsSchema": {
|
|
9117
|
+
"entity": {
|
|
9118
|
+
"types": [
|
|
9119
|
+
"object"
|
|
9120
|
+
],
|
|
9121
|
+
"description": "Entity data, the sole source of runtime state",
|
|
9122
|
+
"required": true
|
|
9123
|
+
},
|
|
9124
|
+
"className": {
|
|
9125
|
+
"types": [
|
|
9126
|
+
"string"
|
|
9127
|
+
],
|
|
9128
|
+
"description": "External styling override"
|
|
9129
|
+
},
|
|
8879
9130
|
"scale": {
|
|
8880
9131
|
"types": [
|
|
8881
9132
|
"number"
|
|
@@ -8896,6 +9147,19 @@
|
|
|
8896
9147
|
],
|
|
8897
9148
|
"typicalSize": "full",
|
|
8898
9149
|
"propsSchema": {
|
|
9150
|
+
"entity": {
|
|
9151
|
+
"types": [
|
|
9152
|
+
"object"
|
|
9153
|
+
],
|
|
9154
|
+
"description": "Entity data, the sole source of runtime state",
|
|
9155
|
+
"required": true
|
|
9156
|
+
},
|
|
9157
|
+
"className": {
|
|
9158
|
+
"types": [
|
|
9159
|
+
"string"
|
|
9160
|
+
],
|
|
9161
|
+
"description": "External styling override"
|
|
9162
|
+
},
|
|
8899
9163
|
"scale": {
|
|
8900
9164
|
"types": [
|
|
8901
9165
|
"number"
|
|
@@ -9457,10 +9721,81 @@
|
|
|
9457
9721
|
"propsSchema": {
|
|
9458
9722
|
"entity": {
|
|
9459
9723
|
"types": [
|
|
9460
|
-
"
|
|
9724
|
+
"string"
|
|
9461
9725
|
],
|
|
9462
|
-
"description": "
|
|
9463
|
-
|
|
9726
|
+
"description": "Entity name for schema-driven integration"
|
|
9727
|
+
},
|
|
9728
|
+
"data": {
|
|
9729
|
+
"types": [
|
|
9730
|
+
"array"
|
|
9731
|
+
],
|
|
9732
|
+
"description": "Data array provided by the trait via render-ui"
|
|
9733
|
+
},
|
|
9734
|
+
"className": {
|
|
9735
|
+
"types": [
|
|
9736
|
+
"string"
|
|
9737
|
+
],
|
|
9738
|
+
"description": "className prop"
|
|
9739
|
+
},
|
|
9740
|
+
"isLoading": {
|
|
9741
|
+
"types": [
|
|
9742
|
+
"boolean"
|
|
9743
|
+
],
|
|
9744
|
+
"description": "Loading state indicator"
|
|
9745
|
+
},
|
|
9746
|
+
"error": {
|
|
9747
|
+
"types": [
|
|
9748
|
+
"object"
|
|
9749
|
+
],
|
|
9750
|
+
"description": "Error state"
|
|
9751
|
+
},
|
|
9752
|
+
"sortBy": {
|
|
9753
|
+
"types": [
|
|
9754
|
+
"string"
|
|
9755
|
+
],
|
|
9756
|
+
"description": "Current sort field"
|
|
9757
|
+
},
|
|
9758
|
+
"sortDirection": {
|
|
9759
|
+
"types": [
|
|
9760
|
+
"string"
|
|
9761
|
+
],
|
|
9762
|
+
"description": "Current sort direction"
|
|
9763
|
+
},
|
|
9764
|
+
"searchValue": {
|
|
9765
|
+
"types": [
|
|
9766
|
+
"string"
|
|
9767
|
+
],
|
|
9768
|
+
"description": "Current search query value"
|
|
9769
|
+
},
|
|
9770
|
+
"page": {
|
|
9771
|
+
"types": [
|
|
9772
|
+
"number"
|
|
9773
|
+
],
|
|
9774
|
+
"description": "Current page number"
|
|
9775
|
+
},
|
|
9776
|
+
"pageSize": {
|
|
9777
|
+
"types": [
|
|
9778
|
+
"number"
|
|
9779
|
+
],
|
|
9780
|
+
"description": "Number of items per page"
|
|
9781
|
+
},
|
|
9782
|
+
"totalCount": {
|
|
9783
|
+
"types": [
|
|
9784
|
+
"number"
|
|
9785
|
+
],
|
|
9786
|
+
"description": "Total number of items"
|
|
9787
|
+
},
|
|
9788
|
+
"activeFilters": {
|
|
9789
|
+
"types": [
|
|
9790
|
+
"object"
|
|
9791
|
+
],
|
|
9792
|
+
"description": "Active filters"
|
|
9793
|
+
},
|
|
9794
|
+
"selectedIds": {
|
|
9795
|
+
"types": [
|
|
9796
|
+
"array"
|
|
9797
|
+
],
|
|
9798
|
+
"description": "Currently selected item IDs"
|
|
9464
9799
|
},
|
|
9465
9800
|
"scale": {
|
|
9466
9801
|
"types": [
|
|
@@ -9587,12 +9922,6 @@
|
|
|
9587
9922
|
"function"
|
|
9588
9923
|
],
|
|
9589
9924
|
"description": "resolveUnitFrame prop"
|
|
9590
|
-
},
|
|
9591
|
-
"className": {
|
|
9592
|
-
"types": [
|
|
9593
|
-
"string"
|
|
9594
|
-
],
|
|
9595
|
-
"description": "className prop"
|
|
9596
9925
|
}
|
|
9597
9926
|
}
|
|
9598
9927
|
},
|
|
@@ -10342,6 +10671,19 @@
|
|
|
10342
10671
|
],
|
|
10343
10672
|
"typicalSize": "full",
|
|
10344
10673
|
"propsSchema": {
|
|
10674
|
+
"entity": {
|
|
10675
|
+
"types": [
|
|
10676
|
+
"object"
|
|
10677
|
+
],
|
|
10678
|
+
"description": "Entity data, the sole source of runtime state",
|
|
10679
|
+
"required": true
|
|
10680
|
+
},
|
|
10681
|
+
"className": {
|
|
10682
|
+
"types": [
|
|
10683
|
+
"string"
|
|
10684
|
+
],
|
|
10685
|
+
"description": "External styling override"
|
|
10686
|
+
},
|
|
10345
10687
|
"cameraMode": {
|
|
10346
10688
|
"types": [
|
|
10347
10689
|
"string"
|
|
@@ -10441,6 +10783,19 @@
|
|
|
10441
10783
|
],
|
|
10442
10784
|
"typicalSize": "full",
|
|
10443
10785
|
"propsSchema": {
|
|
10786
|
+
"entity": {
|
|
10787
|
+
"types": [
|
|
10788
|
+
"object"
|
|
10789
|
+
],
|
|
10790
|
+
"description": "Entity data, the sole source of runtime state",
|
|
10791
|
+
"required": true
|
|
10792
|
+
},
|
|
10793
|
+
"className": {
|
|
10794
|
+
"types": [
|
|
10795
|
+
"string"
|
|
10796
|
+
],
|
|
10797
|
+
"description": "External styling override"
|
|
10798
|
+
},
|
|
10444
10799
|
"cameraMode": {
|
|
10445
10800
|
"types": [
|
|
10446
10801
|
"string"
|
|
@@ -10535,6 +10890,19 @@
|
|
|
10535
10890
|
],
|
|
10536
10891
|
"typicalSize": "full",
|
|
10537
10892
|
"propsSchema": {
|
|
10893
|
+
"entity": {
|
|
10894
|
+
"types": [
|
|
10895
|
+
"object"
|
|
10896
|
+
],
|
|
10897
|
+
"description": "Entity data, the sole source of runtime state",
|
|
10898
|
+
"required": true
|
|
10899
|
+
},
|
|
10900
|
+
"className": {
|
|
10901
|
+
"types": [
|
|
10902
|
+
"string"
|
|
10903
|
+
],
|
|
10904
|
+
"description": "External styling override"
|
|
10905
|
+
},
|
|
10538
10906
|
"cameraMode": {
|
|
10539
10907
|
"types": [
|
|
10540
10908
|
"string"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/patterns",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "Pattern registry and component mappings for Almadar",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -24,6 +24,9 @@
|
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
+
"eslint": "10.0.0",
|
|
28
|
+
"@typescript-eslint/parser": "8.56.0",
|
|
29
|
+
"@almadar/eslint-plugin": ">=2.3.0",
|
|
27
30
|
"tsup": "^8.0.0",
|
|
28
31
|
"typescript": "^5.4.0",
|
|
29
32
|
"vitest": "^1.4.0"
|