@almadar/patterns 1.0.15 → 1.1.1

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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  var version$3 = "1.0.0";
2
- var exportedAt$3 = "2026-02-10T15:35:56.769Z";
2
+ var exportedAt$3 = "2026-02-12T06:50:46.522Z";
3
3
  var patterns = {
4
4
  "entity-table": {
5
5
  type: "entity-table",
@@ -1348,6 +1348,12 @@ var patterns = {
1348
1348
  "string"
1349
1349
  ],
1350
1350
  description: "Additional CSS classes"
1351
+ },
1352
+ stepClickEvent: {
1353
+ types: [
1354
+ "string"
1355
+ ],
1356
+ description: "Declarative step click event — emits UI:{stepClickEvent} with { stepIndex }"
1351
1357
  }
1352
1358
  }
1353
1359
  },
@@ -1620,6 +1626,18 @@ var patterns = {
1620
1626
  "string"
1621
1627
  ],
1622
1628
  description: "Additional CSS classes"
1629
+ },
1630
+ pageChangeEvent: {
1631
+ types: [
1632
+ "string"
1633
+ ],
1634
+ description: "Declarative page change event — emits UI:{pageChangeEvent} with { page }"
1635
+ },
1636
+ pageSizeChangeEvent: {
1637
+ types: [
1638
+ "string"
1639
+ ],
1640
+ description: "Declarative page size change event — emits UI:{pageSizeChangeEvent} with { pageSize }"
1623
1641
  }
1624
1642
  }
1625
1643
  },
@@ -1687,6 +1705,12 @@ var patterns = {
1687
1705
  "string"
1688
1706
  ],
1689
1707
  description: "Variant for color styling"
1708
+ },
1709
+ actionEvent: {
1710
+ types: [
1711
+ "string"
1712
+ ],
1713
+ description: "Declarative action event — emits UI:{actionEvent} via eventBus when action button is clicked"
1690
1714
  }
1691
1715
  }
1692
1716
  },
@@ -1758,6 +1782,12 @@ var patterns = {
1758
1782
  "string"
1759
1783
  ],
1760
1784
  description: "className prop"
1785
+ },
1786
+ retryEvent: {
1787
+ types: [
1788
+ "string"
1789
+ ],
1790
+ description: "Declarative retry event — emits UI:{retryEvent} via eventBus when retry button is clicked"
1761
1791
  }
1762
1792
  }
1763
1793
  },
@@ -1833,6 +1863,18 @@ var patterns = {
1833
1863
  "string"
1834
1864
  ],
1835
1865
  description: "Additional CSS classes"
1866
+ },
1867
+ dismissEvent: {
1868
+ types: [
1869
+ "string"
1870
+ ],
1871
+ description: "Declarative dismiss event — emits UI:{dismissEvent} via eventBus when toast is dismissed"
1872
+ },
1873
+ actionEvent: {
1874
+ types: [
1875
+ "string"
1876
+ ],
1877
+ description: "Declarative action event — emits UI:{actionEvent} via eventBus when action button is clicked"
1836
1878
  }
1837
1879
  }
1838
1880
  },
@@ -2073,6 +2115,12 @@ var patterns = {
2073
2115
  "string"
2074
2116
  ],
2075
2117
  description: "className prop"
2118
+ },
2119
+ closeEvent: {
2120
+ types: [
2121
+ "string"
2122
+ ],
2123
+ description: "Declarative close event — emits UI:{closeEvent} via eventBus when modal should close"
2076
2124
  }
2077
2125
  }
2078
2126
  },
@@ -2153,6 +2201,12 @@ var patterns = {
2153
2201
  "string"
2154
2202
  ],
2155
2203
  description: "Additional class name"
2204
+ },
2205
+ closeEvent: {
2206
+ types: [
2207
+ "string"
2208
+ ],
2209
+ description: "Declarative close event — emits UI:{closeEvent} via eventBus when drawer should close"
2156
2210
  }
2157
2211
  }
2158
2212
  },
@@ -2425,6 +2479,24 @@ var patterns = {
2425
2479
  "react.elementtype"
2426
2480
  ],
2427
2481
  description: "HTML element to render as"
2482
+ },
2483
+ action: {
2484
+ types: [
2485
+ "string"
2486
+ ],
2487
+ description: "Declarative event name — emits UI:{action} via eventBus on click"
2488
+ },
2489
+ actionPayload: {
2490
+ types: [
2491
+ "object"
2492
+ ],
2493
+ description: "Payload to include with the action event"
2494
+ },
2495
+ hoverEvent: {
2496
+ types: [
2497
+ "string"
2498
+ ],
2499
+ description: "Declarative hover event — emits UI:{hoverEvent} with { hovered: true/false } on mouseEnter/mouseLeave"
2428
2500
  }
2429
2501
  }
2430
2502
  },
@@ -2905,8 +2977,7 @@ var patterns = {
2905
2977
  types: [
2906
2978
  "function"
2907
2979
  ],
2908
- description: "Called when a slot is selected",
2909
- required: true
2980
+ description: "Called when a slot is selected"
2910
2981
  },
2911
2982
  onUseItem: {
2912
2983
  types: [
@@ -2920,6 +2991,24 @@ var patterns = {
2920
2991
  ],
2921
2992
  description: "Called when an item is dropped"
2922
2993
  },
2994
+ selectSlotEvent: {
2995
+ types: [
2996
+ "string"
2997
+ ],
2998
+ description: "Declarative event: emits UI:{selectSlotEvent} with { index } when a slot is selected"
2999
+ },
3000
+ useItemEvent: {
3001
+ types: [
3002
+ "string"
3003
+ ],
3004
+ description: "Declarative event: emits UI:{useItemEvent} with { item } when an item is used"
3005
+ },
3006
+ dropItemEvent: {
3007
+ types: [
3008
+ "string"
3009
+ ],
3010
+ description: "Declarative event: emits UI:{dropItemEvent} with { item } when an item is dropped"
3011
+ },
2923
3012
  showTooltips: {
2924
3013
  types: [
2925
3014
  "boolean"
@@ -2988,6 +3077,24 @@ var patterns = {
2988
3077
  ],
2989
3078
  description: "Called when dialogue is advanced (no choices)"
2990
3079
  },
3080
+ completeEvent: {
3081
+ types: [
3082
+ "string"
3083
+ ],
3084
+ description: "Declarative event: emits UI:{completeEvent} when text animation completes"
3085
+ },
3086
+ choiceEvent: {
3087
+ types: [
3088
+ "string"
3089
+ ],
3090
+ description: "Declarative event: emits UI:{choiceEvent} with { choice } when a choice is selected"
3091
+ },
3092
+ advanceEvent: {
3093
+ types: [
3094
+ "string"
3095
+ ],
3096
+ description: "Declarative event: emits UI:{advanceEvent} when dialogue is advanced"
3097
+ },
2991
3098
  className: {
2992
3099
  types: [
2993
3100
  "string"
@@ -3079,6 +3186,24 @@ var patterns = {
3079
3186
  "icon"
3080
3187
  ],
3081
3188
  description: "Right icon as Lucide icon component (convenience prop)"
3189
+ },
3190
+ action: {
3191
+ types: [
3192
+ "string"
3193
+ ],
3194
+ description: "Declarative event name — emits UI:{action} via eventBus on click"
3195
+ },
3196
+ actionPayload: {
3197
+ types: [
3198
+ "object"
3199
+ ],
3200
+ description: "Payload to include with the action event"
3201
+ },
3202
+ label: {
3203
+ types: [
3204
+ "string"
3205
+ ],
3206
+ description: "Button label text (alternative to children for schema-driven rendering)"
3082
3207
  }
3083
3208
  }
3084
3209
  },
@@ -3178,6 +3303,18 @@ var patterns = {
3178
3303
  "function"
3179
3304
  ],
3180
3305
  description: "Click handler"
3306
+ },
3307
+ action: {
3308
+ types: [
3309
+ "string"
3310
+ ],
3311
+ description: "Declarative event name — emits UI:{action} via eventBus on click"
3312
+ },
3313
+ actionPayload: {
3314
+ types: [
3315
+ "object"
3316
+ ],
3317
+ description: "Payload to include with the action event"
3181
3318
  }
3182
3319
  }
3183
3320
  },
@@ -3294,6 +3431,12 @@ var patterns = {
3294
3431
  "string"
3295
3432
  ],
3296
3433
  description: "Additional CSS classes"
3434
+ },
3435
+ action: {
3436
+ types: [
3437
+ "string"
3438
+ ],
3439
+ description: "Declarative event name — emits UI:{action} via eventBus on card click"
3297
3440
  }
3298
3441
  }
3299
3442
  },
@@ -3718,6 +3861,12 @@ var patterns = {
3718
3861
  "string"
3719
3862
  ],
3720
3863
  description: "className prop"
3864
+ },
3865
+ dismissEvent: {
3866
+ types: [
3867
+ "string"
3868
+ ],
3869
+ description: "Declarative dismiss event — emits UI:{dismissEvent} via eventBus when alert is dismissed"
3721
3870
  }
3722
3871
  }
3723
3872
  },
@@ -3921,6 +4070,12 @@ var patterns = {
3921
4070
  "string"
3922
4071
  ],
3923
4072
  description: "Additional CSS classes"
4073
+ },
4074
+ toggleEvent: {
4075
+ types: [
4076
+ "string"
4077
+ ],
4078
+ description: "Declarative toggle event — emits UI:{toggleEvent} with { itemId, isOpen }"
3924
4079
  }
3925
4080
  }
3926
4081
  },
@@ -4265,6 +4420,12 @@ var patterns = {
4265
4420
  "boolean"
4266
4421
  ],
4267
4422
  description: "blur prop"
4423
+ },
4424
+ action: {
4425
+ types: [
4426
+ "string"
4427
+ ],
4428
+ description: "Declarative event name — emits UI:{action} via eventBus on click"
4268
4429
  }
4269
4430
  }
4270
4431
  },
@@ -4366,6 +4527,18 @@ var patterns = {
4366
4527
  "number"
4367
4528
  ],
4368
4529
  description: "Tab index for focus management"
4530
+ },
4531
+ action: {
4532
+ types: [
4533
+ "string"
4534
+ ],
4535
+ description: "Declarative event name — emits UI:{action} via eventBus on click"
4536
+ },
4537
+ actionPayload: {
4538
+ types: [
4539
+ "object"
4540
+ ],
4541
+ description: "Payload to include with the action event"
4369
4542
  }
4370
4543
  }
4371
4544
  },
@@ -4380,6 +4553,13 @@ var patterns = {
4380
4553
  ],
4381
4554
  typicalSize: "small",
4382
4555
  propsSchema: {
4556
+ highlightType: {
4557
+ types: [
4558
+ "highlighttype"
4559
+ ],
4560
+ description: "Type of highlight (determines color)",
4561
+ required: true
4562
+ },
4383
4563
  isActive: {
4384
4564
  types: [
4385
4565
  "boolean"
@@ -4423,12 +4603,17 @@ var patterns = {
4423
4603
  description: "Highlighted text content",
4424
4604
  required: true
4425
4605
  },
4426
- highlightType: {
4606
+ action: {
4427
4607
  types: [
4428
- "highlighttype"
4608
+ "string"
4429
4609
  ],
4430
- description: "Type of highlight (determines color)",
4431
- required: true
4610
+ description: "Declarative event name emits UI:{action} via eventBus on click"
4611
+ },
4612
+ hoverEvent: {
4613
+ types: [
4614
+ "string"
4615
+ ],
4616
+ description: "Declarative hover event — emits UI:{hoverEvent} with { hovered: true/false }"
4432
4617
  }
4433
4618
  }
4434
4619
  },
@@ -4611,6 +4796,18 @@ var patterns = {
4611
4796
  ],
4612
4797
  description: "Called when button is released"
4613
4798
  },
4799
+ pressEvent: {
4800
+ types: [
4801
+ "string"
4802
+ ],
4803
+ description: "Declarative event name emitted on press via useEventBus"
4804
+ },
4805
+ releaseEvent: {
4806
+ types: [
4807
+ "string"
4808
+ ],
4809
+ description: "Declarative event name emitted on release via useEventBus"
4810
+ },
4614
4811
  pressed: {
4615
4812
  types: [
4616
4813
  "boolean"
@@ -4842,6 +5039,12 @@ var patterns = {
4842
5039
  "function"
4843
5040
  ],
4844
5041
  description: "Optional onClick handler"
5042
+ },
5043
+ action: {
5044
+ types: [
5045
+ "string"
5046
+ ],
5047
+ description: "Declarative event name emitted on click via useEventBus"
4845
5048
  }
4846
5049
  }
4847
5050
  },
@@ -5362,6 +5565,12 @@ var patterns = {
5362
5565
  "string"
5363
5566
  ],
5364
5567
  description: "Additional CSS classes"
5568
+ },
5569
+ closeEvent: {
5570
+ types: [
5571
+ "string"
5572
+ ],
5573
+ description: "Declarative close event — emits UI:{closeEvent} via eventBus when panel should close"
5365
5574
  }
5366
5575
  }
5367
5576
  },
@@ -5443,8 +5652,13 @@ var patterns = {
5443
5652
  types: [
5444
5653
  "function"
5445
5654
  ],
5446
- description: "Called when a button is pressed/released",
5447
- required: true
5655
+ description: "Called when a button is pressed/released"
5656
+ },
5657
+ actionEvent: {
5658
+ types: [
5659
+ "string"
5660
+ ],
5661
+ description: "Declarative event name emitted on action via useEventBus"
5448
5662
  },
5449
5663
  layout: {
5450
5664
  types: [
@@ -5486,8 +5700,13 @@ var patterns = {
5486
5700
  types: [
5487
5701
  "function"
5488
5702
  ],
5489
- description: "Called when a direction is pressed/released",
5490
- required: true
5703
+ description: "Called when a direction is pressed/released"
5704
+ },
5705
+ directionEvent: {
5706
+ types: [
5707
+ "string"
5708
+ ],
5709
+ description: "Declarative event name emitted on direction press/release via useEventBus"
5491
5710
  },
5492
5711
  size: {
5493
5712
  types: [
@@ -8321,6 +8540,12 @@ var patterns = {
8321
8540
  ],
8322
8541
  description: "Callback when the effect animation completes"
8323
8542
  },
8543
+ completeEvent: {
8544
+ types: [
8545
+ "string"
8546
+ ],
8547
+ description: "Declarative event: emits UI:{completeEvent} when the effect animation completes"
8548
+ },
8324
8549
  className: {
8325
8550
  types: [
8326
8551
  "string"
@@ -8472,6 +8697,30 @@ var patterns = {
8472
8697
  ],
8473
8698
  description: "Tile leave handler"
8474
8699
  },
8700
+ tileClickEvent: {
8701
+ types: [
8702
+ "string"
8703
+ ],
8704
+ description: "--- Declarative event props ---"
8705
+ },
8706
+ unitClickEvent: {
8707
+ types: [
8708
+ "string"
8709
+ ],
8710
+ description: "Declarative event: emits UI:{unitClickEvent} with { unitId } on unit click"
8711
+ },
8712
+ tileHoverEvent: {
8713
+ types: [
8714
+ "string"
8715
+ ],
8716
+ description: "Declarative event: emits UI:{tileHoverEvent} with { x, y } on tile hover"
8717
+ },
8718
+ tileLeaveEvent: {
8719
+ types: [
8720
+ "string"
8721
+ ],
8722
+ description: "Declarative event: emits UI:{tileLeaveEvent} with {} on tile leave"
8723
+ },
8475
8724
  scale: {
8476
8725
  types: [
8477
8726
  "number"
@@ -9668,77 +9917,289 @@ var integrators = {
9668
9917
  }
9669
9918
  }
9670
9919
  ]
9671
- }
9672
- };
9673
- var categories = [
9674
- "media",
9675
- "payment",
9676
- "messaging",
9677
- "ai"
9678
- ];
9679
- var integratorsRegistry = {
9680
- version: version$2,
9681
- exportedAt: exportedAt$2,
9682
- integrators: integrators,
9683
- categories: categories
9684
- };
9685
-
9686
- var version$1 = "1.0.0";
9687
- var exportedAt$1 = "2026-02-10T15:35:56.769Z";
9688
- var mappings = {
9689
- "page-header": {
9690
- component: "PageHeader",
9691
- importPath: "@/components/organisms/PageHeader",
9692
- category: "header"
9693
- },
9694
- "entity-list": {
9695
- component: "List",
9696
- importPath: "@/components/organisms/List",
9697
- category: "display"
9698
- },
9699
- "entity-table": {
9700
- component: "DataTable",
9701
- importPath: "@/components/organisms/DataTable",
9702
- category: "display"
9703
- },
9704
- "entity-cards": {
9705
- component: "CardGrid",
9706
- importPath: "@/components/organisms/CardGrid",
9707
- category: "display"
9708
- },
9709
- stats: {
9710
- component: "StatCard",
9711
- importPath: "@/components/organisms/StatCard",
9712
- category: "display"
9713
- },
9714
- "detail-panel": {
9715
- component: "DetailPanel",
9716
- importPath: "@/components/organisms/DetailPanel",
9717
- category: "display"
9718
- },
9719
- form: {
9720
- component: "Form",
9721
- importPath: "@/components/organisms/Form",
9722
- category: "form"
9723
- },
9724
- "form-section": {
9725
- component: "Form",
9726
- importPath: "@/components/organisms/Form",
9727
- category: "form"
9728
- },
9729
- "form-actions": {
9730
- component: "ButtonGroup",
9731
- importPath: "@/components/molecules/ButtonGroup",
9732
- category: "form"
9733
9920
  },
9734
- "filter-group": {
9735
- component: "FilterGroup",
9736
- importPath: "@/components/molecules/FilterGroup",
9737
- category: "filter"
9738
- },
9739
- "search-input": {
9740
- component: "SearchInput",
9741
- importPath: "@/components/molecules/SearchInput",
9921
+ github: {
9922
+ name: "github",
9923
+ description: "GitHub integration - Git operations and GitHub REST API",
9924
+ category: "devtools",
9925
+ actions: [
9926
+ {
9927
+ name: "cloneRepo",
9928
+ description: "Clone a repository",
9929
+ params: [
9930
+ {
9931
+ name: "repo",
9932
+ type: "string",
9933
+ required: true,
9934
+ description: "Repository URL or owner/repo"
9935
+ },
9936
+ {
9937
+ name: "branch",
9938
+ type: "string",
9939
+ required: false,
9940
+ description: "Branch to clone"
9941
+ }
9942
+ ],
9943
+ responseShape: {
9944
+ path: "string",
9945
+ branch: "string"
9946
+ }
9947
+ },
9948
+ {
9949
+ name: "createBranch",
9950
+ description: "Create a new branch",
9951
+ params: [
9952
+ {
9953
+ name: "repo",
9954
+ type: "string",
9955
+ required: true,
9956
+ description: "Local repo path"
9957
+ },
9958
+ {
9959
+ name: "branch",
9960
+ type: "string",
9961
+ required: true,
9962
+ description: "Branch name"
9963
+ }
9964
+ ],
9965
+ responseShape: {
9966
+ branch: "string"
9967
+ }
9968
+ },
9969
+ {
9970
+ name: "commit",
9971
+ description: "Commit changes",
9972
+ params: [
9973
+ {
9974
+ name: "repo",
9975
+ type: "string",
9976
+ required: true,
9977
+ description: "Local repo path"
9978
+ },
9979
+ {
9980
+ name: "message",
9981
+ type: "string",
9982
+ required: true,
9983
+ description: "Commit message"
9984
+ },
9985
+ {
9986
+ name: "files",
9987
+ type: "array",
9988
+ required: false,
9989
+ description: "Files to stage"
9990
+ }
9991
+ ],
9992
+ responseShape: {
9993
+ hash: "string",
9994
+ message: "string"
9995
+ }
9996
+ },
9997
+ {
9998
+ name: "push",
9999
+ description: "Push commits to remote",
10000
+ params: [
10001
+ {
10002
+ name: "repo",
10003
+ type: "string",
10004
+ required: true,
10005
+ description: "Local repo path"
10006
+ },
10007
+ {
10008
+ name: "branch",
10009
+ type: "string",
10010
+ required: false,
10011
+ description: "Branch to push"
10012
+ }
10013
+ ],
10014
+ responseShape: {
10015
+ success: "boolean"
10016
+ }
10017
+ },
10018
+ {
10019
+ name: "createPR",
10020
+ description: "Create a pull request",
10021
+ params: [
10022
+ {
10023
+ name: "title",
10024
+ type: "string",
10025
+ required: true,
10026
+ description: "PR title"
10027
+ },
10028
+ {
10029
+ name: "body",
10030
+ type: "string",
10031
+ required: false,
10032
+ description: "PR description"
10033
+ },
10034
+ {
10035
+ name: "head",
10036
+ type: "string",
10037
+ required: true,
10038
+ description: "Head branch"
10039
+ },
10040
+ {
10041
+ name: "base",
10042
+ type: "string",
10043
+ required: false,
10044
+ description: "Base branch (default: main)"
10045
+ }
10046
+ ],
10047
+ responseShape: {
10048
+ number: "number",
10049
+ url: "string"
10050
+ }
10051
+ },
10052
+ {
10053
+ name: "getPRComments",
10054
+ description: "Fetch pull request comments",
10055
+ params: [
10056
+ {
10057
+ name: "prNumber",
10058
+ type: "number",
10059
+ required: true,
10060
+ description: "PR number"
10061
+ }
10062
+ ],
10063
+ responseShape: {
10064
+ comments: "array"
10065
+ }
10066
+ },
10067
+ {
10068
+ name: "listIssues",
10069
+ description: "List issues with optional filters",
10070
+ params: [
10071
+ {
10072
+ name: "state",
10073
+ type: "string",
10074
+ required: false,
10075
+ description: "Issue state: open, closed, all"
10076
+ },
10077
+ {
10078
+ name: "labels",
10079
+ type: "string",
10080
+ required: false,
10081
+ description: "Comma-separated label names"
10082
+ }
10083
+ ],
10084
+ responseShape: {
10085
+ issues: "array"
10086
+ }
10087
+ },
10088
+ {
10089
+ name: "getIssue",
10090
+ description: "Get a single issue",
10091
+ params: [
10092
+ {
10093
+ name: "issueNumber",
10094
+ type: "number",
10095
+ required: true,
10096
+ description: "Issue number"
10097
+ }
10098
+ ],
10099
+ responseShape: {
10100
+ title: "string",
10101
+ body: "string",
10102
+ state: "string"
10103
+ }
10104
+ }
10105
+ ]
10106
+ },
10107
+ cli: {
10108
+ name: "cli",
10109
+ description: "Almadar CLI integration - schema validation and compilation",
10110
+ category: "devtools",
10111
+ actions: [
10112
+ {
10113
+ name: "validate",
10114
+ description: "Validate an orbital schema",
10115
+ params: [
10116
+ {
10117
+ name: "schema",
10118
+ type: "string",
10119
+ required: true,
10120
+ description: "Schema content to validate"
10121
+ }
10122
+ ],
10123
+ responseShape: {
10124
+ valid: "boolean",
10125
+ errors: "array",
10126
+ warnings: "array",
10127
+ summary: "string"
10128
+ }
10129
+ }
10130
+ ]
10131
+ }
10132
+ };
10133
+ var categories = [
10134
+ "media",
10135
+ "payment",
10136
+ "messaging",
10137
+ "ai",
10138
+ "devtools"
10139
+ ];
10140
+ var integratorsRegistry = {
10141
+ version: version$2,
10142
+ exportedAt: exportedAt$2,
10143
+ integrators: integrators,
10144
+ categories: categories
10145
+ };
10146
+
10147
+ var version$1 = "1.0.0";
10148
+ var exportedAt$1 = "2026-02-12T06:50:46.522Z";
10149
+ var mappings = {
10150
+ "page-header": {
10151
+ component: "PageHeader",
10152
+ importPath: "@/components/organisms/PageHeader",
10153
+ category: "header"
10154
+ },
10155
+ "entity-list": {
10156
+ component: "List",
10157
+ importPath: "@/components/organisms/List",
10158
+ category: "display"
10159
+ },
10160
+ "entity-table": {
10161
+ component: "DataTable",
10162
+ importPath: "@/components/organisms/DataTable",
10163
+ category: "display"
10164
+ },
10165
+ "entity-cards": {
10166
+ component: "CardGrid",
10167
+ importPath: "@/components/organisms/CardGrid",
10168
+ category: "display"
10169
+ },
10170
+ stats: {
10171
+ component: "StatCard",
10172
+ importPath: "@/components/organisms/StatCard",
10173
+ category: "display"
10174
+ },
10175
+ "detail-panel": {
10176
+ component: "DetailPanel",
10177
+ importPath: "@/components/organisms/DetailPanel",
10178
+ category: "display"
10179
+ },
10180
+ form: {
10181
+ component: "Form",
10182
+ importPath: "@/components/organisms/Form",
10183
+ category: "form"
10184
+ },
10185
+ "form-section": {
10186
+ component: "Form",
10187
+ importPath: "@/components/organisms/Form",
10188
+ category: "form"
10189
+ },
10190
+ "form-actions": {
10191
+ component: "ButtonGroup",
10192
+ importPath: "@/components/molecules/ButtonGroup",
10193
+ category: "form"
10194
+ },
10195
+ "filter-group": {
10196
+ component: "FilterGroup",
10197
+ importPath: "@/components/molecules/FilterGroup",
10198
+ category: "filter"
10199
+ },
10200
+ "search-input": {
10201
+ component: "SearchInput",
10202
+ importPath: "@/components/molecules/SearchInput",
9742
10203
  category: "filter"
9743
10204
  },
9744
10205
  "empty-state": {
@@ -10357,7 +10818,7 @@ var componentMapping = {
10357
10818
  };
10358
10819
 
10359
10820
  var version = "1.0.0";
10360
- var exportedAt = "2026-02-10T15:35:56.769Z";
10821
+ var exportedAt = "2026-02-12T06:50:46.522Z";
10361
10822
  var contracts = {
10362
10823
  form: {
10363
10824
  emits: [
@@ -14213,6 +14674,96 @@ declare function getAllPatternTypes(): PatternType[];
14213
14674
  */
14214
14675
  declare function getPatternMetadata(patternType: string): any;
14215
14676
 
14677
+ /**
14678
+ * Pattern Recommender
14679
+ *
14680
+ * Maps transition context (entity fields, domain category, UI state) to
14681
+ * ranked pattern suggestions using the registry's `suggestedFor` metadata,
14682
+ * category matching, and entity field type heuristics.
14683
+ *
14684
+ * Used by the design-transition tool to include top-N recommendations
14685
+ * in the LLM prompt context.
14686
+ *
14687
+ * @packageDocumentation
14688
+ */
14689
+
14690
+ /**
14691
+ * Context for pattern recommendation.
14692
+ */
14693
+ interface RecommendationContext {
14694
+ /** Current state name (e.g., "Browsing", "Creating") */
14695
+ state?: string;
14696
+ /** Triggering event (e.g., "INIT", "CREATE", "VIEW") */
14697
+ event?: string;
14698
+ /** Target UI slot */
14699
+ slot?: 'main' | 'modal' | 'drawer' | 'sidebar' | 'overlay';
14700
+ /** Domain category */
14701
+ domainCategory?: string;
14702
+ /** Entity field types present */
14703
+ entityFieldTypes?: string[];
14704
+ /** Entity has enum fields */
14705
+ hasEnumFields?: boolean;
14706
+ /** Entity has date/timestamp fields */
14707
+ hasDateFields?: boolean;
14708
+ /** Entity has numeric fields */
14709
+ hasNumericFields?: boolean;
14710
+ /** Entity has relation fields */
14711
+ hasRelationFields?: boolean;
14712
+ /** Entity has image/url fields */
14713
+ hasMediaFields?: boolean;
14714
+ }
14715
+ /**
14716
+ * A pattern recommendation with score and reasoning.
14717
+ */
14718
+ interface PatternRecommendation {
14719
+ /** Pattern type name */
14720
+ pattern: PatternType;
14721
+ /** Relevance score (0-100) */
14722
+ score: number;
14723
+ /** Why this pattern was recommended */
14724
+ reason: string;
14725
+ /** Pattern category */
14726
+ category: string;
14727
+ /** Pattern description */
14728
+ description: string;
14729
+ /** Key props to use */
14730
+ keyProps: string[];
14731
+ }
14732
+ /**
14733
+ * Recommend patterns for a given context.
14734
+ *
14735
+ * Scoring algorithm:
14736
+ * 1. suggestedFor match with domain keywords (+30)
14737
+ * 2. suggestedFor match with event keywords (+25)
14738
+ * 3. Category affinity with slot (+20)
14739
+ * 4. Category affinity with state (+15)
14740
+ * 5. Entity field type bonus (+10 per matching heuristic)
14741
+ * 6. Entity-aware bonus for display patterns (+5)
14742
+ *
14743
+ * @returns Ranked pattern recommendations, highest score first
14744
+ */
14745
+ declare function recommendPatterns(context: RecommendationContext, maxResults?: number): PatternRecommendation[];
14746
+ /**
14747
+ * Build recommendation context from entity field information.
14748
+ * Analyzes field types to set the boolean flags used by the recommender.
14749
+ */
14750
+ declare function buildRecommendationContext(options: {
14751
+ state?: string;
14752
+ event?: string;
14753
+ slot?: 'main' | 'modal' | 'drawer' | 'sidebar' | 'overlay';
14754
+ domainCategory?: string;
14755
+ entityFields?: Array<{
14756
+ name: string;
14757
+ type: string;
14758
+ values?: string[];
14759
+ }>;
14760
+ }): RecommendationContext;
14761
+ /**
14762
+ * Format recommendations as a concise prompt section.
14763
+ * Used to inject into the design-transition tool's user prompt.
14764
+ */
14765
+ declare function formatRecommendationsForPrompt(recommendations: PatternRecommendation[]): string;
14766
+
14216
14767
  declare const registry: {
14217
14768
  version: string;
14218
14769
  exportedAt: string;
@@ -15108,6 +15659,10 @@ declare const registry: {
15108
15659
  types: string[];
15109
15660
  description: string;
15110
15661
  };
15662
+ stepClickEvent: {
15663
+ types: string[];
15664
+ description: string;
15665
+ };
15111
15666
  };
15112
15667
  };
15113
15668
  "wizard-navigation": {
@@ -15292,6 +15847,14 @@ declare const registry: {
15292
15847
  types: string[];
15293
15848
  description: string;
15294
15849
  };
15850
+ pageChangeEvent: {
15851
+ types: string[];
15852
+ description: string;
15853
+ };
15854
+ pageSizeChangeEvent: {
15855
+ types: string[];
15856
+ description: string;
15857
+ };
15295
15858
  };
15296
15859
  };
15297
15860
  "empty-state": {
@@ -15337,6 +15900,10 @@ declare const registry: {
15337
15900
  types: string[];
15338
15901
  description: string;
15339
15902
  };
15903
+ actionEvent: {
15904
+ types: string[];
15905
+ description: string;
15906
+ };
15340
15907
  };
15341
15908
  };
15342
15909
  "loading-state": {
@@ -15387,6 +15954,10 @@ declare const registry: {
15387
15954
  types: string[];
15388
15955
  description: string;
15389
15956
  };
15957
+ retryEvent: {
15958
+ types: string[];
15959
+ description: string;
15960
+ };
15390
15961
  };
15391
15962
  };
15392
15963
  notification: {
@@ -15437,6 +16008,14 @@ declare const registry: {
15437
16008
  types: string[];
15438
16009
  description: string;
15439
16010
  };
16011
+ dismissEvent: {
16012
+ types: string[];
16013
+ description: string;
16014
+ };
16015
+ actionEvent: {
16016
+ types: string[];
16017
+ description: string;
16018
+ };
15440
16019
  };
15441
16020
  };
15442
16021
  stats: {
@@ -15597,6 +16176,10 @@ declare const registry: {
15597
16176
  types: string[];
15598
16177
  description: string;
15599
16178
  };
16179
+ closeEvent: {
16180
+ types: string[];
16181
+ description: string;
16182
+ };
15600
16183
  };
15601
16184
  };
15602
16185
  drawer: {
@@ -15650,7 +16233,11 @@ declare const registry: {
15650
16233
  types: string[];
15651
16234
  description: string;
15652
16235
  };
15653
- };
16236
+ closeEvent: {
16237
+ types: string[];
16238
+ description: string;
16239
+ };
16240
+ };
15654
16241
  };
15655
16242
  "confirm-dialog": {
15656
16243
  type: string;
@@ -15832,6 +16419,18 @@ declare const registry: {
15832
16419
  types: string[];
15833
16420
  description: string;
15834
16421
  };
16422
+ action: {
16423
+ types: string[];
16424
+ description: string;
16425
+ };
16426
+ actionPayload: {
16427
+ types: string[];
16428
+ description: string;
16429
+ };
16430
+ hoverEvent: {
16431
+ types: string[];
16432
+ description: string;
16433
+ };
15835
16434
  };
15836
16435
  };
15837
16436
  grid: {
@@ -16154,7 +16753,6 @@ declare const registry: {
16154
16753
  onSelectSlot: {
16155
16754
  types: string[];
16156
16755
  description: string;
16157
- required: boolean;
16158
16756
  };
16159
16757
  onUseItem: {
16160
16758
  types: string[];
@@ -16164,6 +16762,18 @@ declare const registry: {
16164
16762
  types: string[];
16165
16763
  description: string;
16166
16764
  };
16765
+ selectSlotEvent: {
16766
+ types: string[];
16767
+ description: string;
16768
+ };
16769
+ useItemEvent: {
16770
+ types: string[];
16771
+ description: string;
16772
+ };
16773
+ dropItemEvent: {
16774
+ types: string[];
16775
+ description: string;
16776
+ };
16167
16777
  showTooltips: {
16168
16778
  types: string[];
16169
16779
  description: string;
@@ -16210,6 +16820,18 @@ declare const registry: {
16210
16820
  types: string[];
16211
16821
  description: string;
16212
16822
  };
16823
+ completeEvent: {
16824
+ types: string[];
16825
+ description: string;
16826
+ };
16827
+ choiceEvent: {
16828
+ types: string[];
16829
+ description: string;
16830
+ };
16831
+ advanceEvent: {
16832
+ types: string[];
16833
+ description: string;
16834
+ };
16213
16835
  className: {
16214
16836
  types: string[];
16215
16837
  description: string;
@@ -16272,6 +16894,18 @@ declare const registry: {
16272
16894
  types: string[];
16273
16895
  description: string;
16274
16896
  };
16897
+ action: {
16898
+ types: string[];
16899
+ description: string;
16900
+ };
16901
+ actionPayload: {
16902
+ types: string[];
16903
+ description: string;
16904
+ };
16905
+ label: {
16906
+ types: string[];
16907
+ description: string;
16908
+ };
16275
16909
  };
16276
16910
  };
16277
16911
  badge: {
@@ -16338,6 +16972,14 @@ declare const registry: {
16338
16972
  types: string[];
16339
16973
  description: string;
16340
16974
  };
16975
+ action: {
16976
+ types: string[];
16977
+ description: string;
16978
+ };
16979
+ actionPayload: {
16980
+ types: string[];
16981
+ description: string;
16982
+ };
16341
16983
  };
16342
16984
  };
16343
16985
  icon: {
@@ -16416,6 +17058,10 @@ declare const registry: {
16416
17058
  types: string[];
16417
17059
  description: string;
16418
17060
  };
17061
+ action: {
17062
+ types: string[];
17063
+ description: string;
17064
+ };
16419
17065
  };
16420
17066
  };
16421
17067
  "progress-bar": {
@@ -16704,6 +17350,10 @@ declare const registry: {
16704
17350
  types: string[];
16705
17351
  description: string;
16706
17352
  };
17353
+ dismissEvent: {
17354
+ types: string[];
17355
+ description: string;
17356
+ };
16707
17357
  };
16708
17358
  };
16709
17359
  tooltip: {
@@ -16843,6 +17493,10 @@ declare const registry: {
16843
17493
  types: string[];
16844
17494
  description: string;
16845
17495
  };
17496
+ toggleEvent: {
17497
+ types: string[];
17498
+ description: string;
17499
+ };
16846
17500
  };
16847
17501
  };
16848
17502
  container: {
@@ -17078,6 +17732,10 @@ declare const registry: {
17078
17732
  types: string[];
17079
17733
  description: string;
17080
17734
  };
17735
+ action: {
17736
+ types: string[];
17737
+ description: string;
17738
+ };
17081
17739
  };
17082
17740
  };
17083
17741
  stack: {
@@ -17147,6 +17805,14 @@ declare const registry: {
17147
17805
  types: string[];
17148
17806
  description: string;
17149
17807
  };
17808
+ action: {
17809
+ types: string[];
17810
+ description: string;
17811
+ };
17812
+ actionPayload: {
17813
+ types: string[];
17814
+ description: string;
17815
+ };
17150
17816
  };
17151
17817
  };
17152
17818
  "text-highlight": {
@@ -17156,6 +17822,11 @@ declare const registry: {
17156
17822
  suggestedFor: string[];
17157
17823
  typicalSize: string;
17158
17824
  propsSchema: {
17825
+ highlightType: {
17826
+ types: string[];
17827
+ description: string;
17828
+ required: boolean;
17829
+ };
17159
17830
  isActive: {
17160
17831
  types: string[];
17161
17832
  description: string;
@@ -17185,10 +17856,13 @@ declare const registry: {
17185
17856
  description: string;
17186
17857
  required: boolean;
17187
17858
  };
17188
- highlightType: {
17859
+ action: {
17860
+ types: string[];
17861
+ description: string;
17862
+ };
17863
+ hoverEvent: {
17189
17864
  types: string[];
17190
17865
  description: string;
17191
- required: boolean;
17192
17866
  };
17193
17867
  };
17194
17868
  };
@@ -17313,6 +17987,14 @@ declare const registry: {
17313
17987
  types: string[];
17314
17988
  description: string;
17315
17989
  };
17990
+ pressEvent: {
17991
+ types: string[];
17992
+ description: string;
17993
+ };
17994
+ releaseEvent: {
17995
+ types: string[];
17996
+ description: string;
17997
+ };
17316
17998
  pressed: {
17317
17999
  types: string[];
17318
18000
  description: string;
@@ -17473,6 +18155,10 @@ declare const registry: {
17473
18155
  types: string[];
17474
18156
  description: string;
17475
18157
  };
18158
+ action: {
18159
+ types: string[];
18160
+ description: string;
18161
+ };
17476
18162
  };
17477
18163
  };
17478
18164
  "form-actions": {
@@ -17822,6 +18508,10 @@ declare const registry: {
17822
18508
  types: string[];
17823
18509
  description: string;
17824
18510
  };
18511
+ closeEvent: {
18512
+ types: string[];
18513
+ description: string;
18514
+ };
17825
18515
  };
17826
18516
  };
17827
18517
  "violation-alert": {
@@ -17877,7 +18567,10 @@ declare const registry: {
17877
18567
  onAction: {
17878
18568
  types: string[];
17879
18569
  description: string;
17880
- required: boolean;
18570
+ };
18571
+ actionEvent: {
18572
+ types: string[];
18573
+ description: string;
17881
18574
  };
17882
18575
  layout: {
17883
18576
  types: string[];
@@ -17907,7 +18600,10 @@ declare const registry: {
17907
18600
  onDirection: {
17908
18601
  types: string[];
17909
18602
  description: string;
17910
- required: boolean;
18603
+ };
18604
+ directionEvent: {
18605
+ types: string[];
18606
+ description: string;
17911
18607
  };
17912
18608
  size: {
17913
18609
  types: string[];
@@ -19814,6 +20510,10 @@ declare const registry: {
19814
20510
  types: string[];
19815
20511
  description: string;
19816
20512
  };
20513
+ completeEvent: {
20514
+ types: string[];
20515
+ description: string;
20516
+ };
19817
20517
  className: {
19818
20518
  types: string[];
19819
20519
  description: string;
@@ -19915,6 +20615,22 @@ declare const registry: {
19915
20615
  types: string[];
19916
20616
  description: string;
19917
20617
  };
20618
+ tileClickEvent: {
20619
+ types: string[];
20620
+ description: string;
20621
+ };
20622
+ unitClickEvent: {
20623
+ types: string[];
20624
+ description: string;
20625
+ };
20626
+ tileHoverEvent: {
20627
+ types: string[];
20628
+ description: string;
20629
+ };
20630
+ tileLeaveEvent: {
20631
+ types: string[];
20632
+ description: string;
20633
+ };
19918
20634
  scale: {
19919
20635
  types: string[];
19920
20636
  description: string;
@@ -21269,6 +21985,10 @@ declare const PATTERN_REGISTRY: {
21269
21985
  types: string[];
21270
21986
  description: string;
21271
21987
  };
21988
+ stepClickEvent: {
21989
+ types: string[];
21990
+ description: string;
21991
+ };
21272
21992
  };
21273
21993
  };
21274
21994
  "wizard-navigation": {
@@ -21453,6 +22173,14 @@ declare const PATTERN_REGISTRY: {
21453
22173
  types: string[];
21454
22174
  description: string;
21455
22175
  };
22176
+ pageChangeEvent: {
22177
+ types: string[];
22178
+ description: string;
22179
+ };
22180
+ pageSizeChangeEvent: {
22181
+ types: string[];
22182
+ description: string;
22183
+ };
21456
22184
  };
21457
22185
  };
21458
22186
  "empty-state": {
@@ -21498,6 +22226,10 @@ declare const PATTERN_REGISTRY: {
21498
22226
  types: string[];
21499
22227
  description: string;
21500
22228
  };
22229
+ actionEvent: {
22230
+ types: string[];
22231
+ description: string;
22232
+ };
21501
22233
  };
21502
22234
  };
21503
22235
  "loading-state": {
@@ -21548,6 +22280,10 @@ declare const PATTERN_REGISTRY: {
21548
22280
  types: string[];
21549
22281
  description: string;
21550
22282
  };
22283
+ retryEvent: {
22284
+ types: string[];
22285
+ description: string;
22286
+ };
21551
22287
  };
21552
22288
  };
21553
22289
  notification: {
@@ -21598,6 +22334,14 @@ declare const PATTERN_REGISTRY: {
21598
22334
  types: string[];
21599
22335
  description: string;
21600
22336
  };
22337
+ dismissEvent: {
22338
+ types: string[];
22339
+ description: string;
22340
+ };
22341
+ actionEvent: {
22342
+ types: string[];
22343
+ description: string;
22344
+ };
21601
22345
  };
21602
22346
  };
21603
22347
  stats: {
@@ -21758,6 +22502,10 @@ declare const PATTERN_REGISTRY: {
21758
22502
  types: string[];
21759
22503
  description: string;
21760
22504
  };
22505
+ closeEvent: {
22506
+ types: string[];
22507
+ description: string;
22508
+ };
21761
22509
  };
21762
22510
  };
21763
22511
  drawer: {
@@ -21811,6 +22559,10 @@ declare const PATTERN_REGISTRY: {
21811
22559
  types: string[];
21812
22560
  description: string;
21813
22561
  };
22562
+ closeEvent: {
22563
+ types: string[];
22564
+ description: string;
22565
+ };
21814
22566
  };
21815
22567
  };
21816
22568
  "confirm-dialog": {
@@ -21993,6 +22745,18 @@ declare const PATTERN_REGISTRY: {
21993
22745
  types: string[];
21994
22746
  description: string;
21995
22747
  };
22748
+ action: {
22749
+ types: string[];
22750
+ description: string;
22751
+ };
22752
+ actionPayload: {
22753
+ types: string[];
22754
+ description: string;
22755
+ };
22756
+ hoverEvent: {
22757
+ types: string[];
22758
+ description: string;
22759
+ };
21996
22760
  };
21997
22761
  };
21998
22762
  grid: {
@@ -22315,7 +23079,6 @@ declare const PATTERN_REGISTRY: {
22315
23079
  onSelectSlot: {
22316
23080
  types: string[];
22317
23081
  description: string;
22318
- required: boolean;
22319
23082
  };
22320
23083
  onUseItem: {
22321
23084
  types: string[];
@@ -22325,6 +23088,18 @@ declare const PATTERN_REGISTRY: {
22325
23088
  types: string[];
22326
23089
  description: string;
22327
23090
  };
23091
+ selectSlotEvent: {
23092
+ types: string[];
23093
+ description: string;
23094
+ };
23095
+ useItemEvent: {
23096
+ types: string[];
23097
+ description: string;
23098
+ };
23099
+ dropItemEvent: {
23100
+ types: string[];
23101
+ description: string;
23102
+ };
22328
23103
  showTooltips: {
22329
23104
  types: string[];
22330
23105
  description: string;
@@ -22371,6 +23146,18 @@ declare const PATTERN_REGISTRY: {
22371
23146
  types: string[];
22372
23147
  description: string;
22373
23148
  };
23149
+ completeEvent: {
23150
+ types: string[];
23151
+ description: string;
23152
+ };
23153
+ choiceEvent: {
23154
+ types: string[];
23155
+ description: string;
23156
+ };
23157
+ advanceEvent: {
23158
+ types: string[];
23159
+ description: string;
23160
+ };
22374
23161
  className: {
22375
23162
  types: string[];
22376
23163
  description: string;
@@ -22433,6 +23220,18 @@ declare const PATTERN_REGISTRY: {
22433
23220
  types: string[];
22434
23221
  description: string;
22435
23222
  };
23223
+ action: {
23224
+ types: string[];
23225
+ description: string;
23226
+ };
23227
+ actionPayload: {
23228
+ types: string[];
23229
+ description: string;
23230
+ };
23231
+ label: {
23232
+ types: string[];
23233
+ description: string;
23234
+ };
22436
23235
  };
22437
23236
  };
22438
23237
  badge: {
@@ -22499,6 +23298,14 @@ declare const PATTERN_REGISTRY: {
22499
23298
  types: string[];
22500
23299
  description: string;
22501
23300
  };
23301
+ action: {
23302
+ types: string[];
23303
+ description: string;
23304
+ };
23305
+ actionPayload: {
23306
+ types: string[];
23307
+ description: string;
23308
+ };
22502
23309
  };
22503
23310
  };
22504
23311
  icon: {
@@ -22577,6 +23384,10 @@ declare const PATTERN_REGISTRY: {
22577
23384
  types: string[];
22578
23385
  description: string;
22579
23386
  };
23387
+ action: {
23388
+ types: string[];
23389
+ description: string;
23390
+ };
22580
23391
  };
22581
23392
  };
22582
23393
  "progress-bar": {
@@ -22865,6 +23676,10 @@ declare const PATTERN_REGISTRY: {
22865
23676
  types: string[];
22866
23677
  description: string;
22867
23678
  };
23679
+ dismissEvent: {
23680
+ types: string[];
23681
+ description: string;
23682
+ };
22868
23683
  };
22869
23684
  };
22870
23685
  tooltip: {
@@ -23004,6 +23819,10 @@ declare const PATTERN_REGISTRY: {
23004
23819
  types: string[];
23005
23820
  description: string;
23006
23821
  };
23822
+ toggleEvent: {
23823
+ types: string[];
23824
+ description: string;
23825
+ };
23007
23826
  };
23008
23827
  };
23009
23828
  container: {
@@ -23239,6 +24058,10 @@ declare const PATTERN_REGISTRY: {
23239
24058
  types: string[];
23240
24059
  description: string;
23241
24060
  };
24061
+ action: {
24062
+ types: string[];
24063
+ description: string;
24064
+ };
23242
24065
  };
23243
24066
  };
23244
24067
  stack: {
@@ -23308,6 +24131,14 @@ declare const PATTERN_REGISTRY: {
23308
24131
  types: string[];
23309
24132
  description: string;
23310
24133
  };
24134
+ action: {
24135
+ types: string[];
24136
+ description: string;
24137
+ };
24138
+ actionPayload: {
24139
+ types: string[];
24140
+ description: string;
24141
+ };
23311
24142
  };
23312
24143
  };
23313
24144
  "text-highlight": {
@@ -23317,6 +24148,11 @@ declare const PATTERN_REGISTRY: {
23317
24148
  suggestedFor: string[];
23318
24149
  typicalSize: string;
23319
24150
  propsSchema: {
24151
+ highlightType: {
24152
+ types: string[];
24153
+ description: string;
24154
+ required: boolean;
24155
+ };
23320
24156
  isActive: {
23321
24157
  types: string[];
23322
24158
  description: string;
@@ -23346,10 +24182,13 @@ declare const PATTERN_REGISTRY: {
23346
24182
  description: string;
23347
24183
  required: boolean;
23348
24184
  };
23349
- highlightType: {
24185
+ action: {
24186
+ types: string[];
24187
+ description: string;
24188
+ };
24189
+ hoverEvent: {
23350
24190
  types: string[];
23351
24191
  description: string;
23352
- required: boolean;
23353
24192
  };
23354
24193
  };
23355
24194
  };
@@ -23474,6 +24313,14 @@ declare const PATTERN_REGISTRY: {
23474
24313
  types: string[];
23475
24314
  description: string;
23476
24315
  };
24316
+ pressEvent: {
24317
+ types: string[];
24318
+ description: string;
24319
+ };
24320
+ releaseEvent: {
24321
+ types: string[];
24322
+ description: string;
24323
+ };
23477
24324
  pressed: {
23478
24325
  types: string[];
23479
24326
  description: string;
@@ -23634,6 +24481,10 @@ declare const PATTERN_REGISTRY: {
23634
24481
  types: string[];
23635
24482
  description: string;
23636
24483
  };
24484
+ action: {
24485
+ types: string[];
24486
+ description: string;
24487
+ };
23637
24488
  };
23638
24489
  };
23639
24490
  "form-actions": {
@@ -23983,6 +24834,10 @@ declare const PATTERN_REGISTRY: {
23983
24834
  types: string[];
23984
24835
  description: string;
23985
24836
  };
24837
+ closeEvent: {
24838
+ types: string[];
24839
+ description: string;
24840
+ };
23986
24841
  };
23987
24842
  };
23988
24843
  "violation-alert": {
@@ -24038,7 +24893,10 @@ declare const PATTERN_REGISTRY: {
24038
24893
  onAction: {
24039
24894
  types: string[];
24040
24895
  description: string;
24041
- required: boolean;
24896
+ };
24897
+ actionEvent: {
24898
+ types: string[];
24899
+ description: string;
24042
24900
  };
24043
24901
  layout: {
24044
24902
  types: string[];
@@ -24068,7 +24926,10 @@ declare const PATTERN_REGISTRY: {
24068
24926
  onDirection: {
24069
24927
  types: string[];
24070
24928
  description: string;
24071
- required: boolean;
24929
+ };
24930
+ directionEvent: {
24931
+ types: string[];
24932
+ description: string;
24072
24933
  };
24073
24934
  size: {
24074
24935
  types: string[];
@@ -25975,6 +26836,10 @@ declare const PATTERN_REGISTRY: {
25975
26836
  types: string[];
25976
26837
  description: string;
25977
26838
  };
26839
+ completeEvent: {
26840
+ types: string[];
26841
+ description: string;
26842
+ };
25978
26843
  className: {
25979
26844
  types: string[];
25980
26845
  description: string;
@@ -26076,6 +26941,22 @@ declare const PATTERN_REGISTRY: {
26076
26941
  types: string[];
26077
26942
  description: string;
26078
26943
  };
26944
+ tileClickEvent: {
26945
+ types: string[];
26946
+ description: string;
26947
+ };
26948
+ unitClickEvent: {
26949
+ types: string[];
26950
+ description: string;
26951
+ };
26952
+ tileHoverEvent: {
26953
+ types: string[];
26954
+ description: string;
26955
+ };
26956
+ tileLeaveEvent: {
26957
+ types: string[];
26958
+ description: string;
26959
+ };
26079
26960
  scale: {
26080
26961
  types: string[];
26081
26962
  description: string;
@@ -26889,6 +27770,217 @@ declare const INTEGRATORS_REGISTRY: {
26889
27770
  };
26890
27771
  })[];
26891
27772
  };
27773
+ github: {
27774
+ name: string;
27775
+ description: string;
27776
+ category: string;
27777
+ actions: ({
27778
+ name: string;
27779
+ description: string;
27780
+ params: {
27781
+ name: string;
27782
+ type: string;
27783
+ required: boolean;
27784
+ description: string;
27785
+ }[];
27786
+ responseShape: {
27787
+ path: string;
27788
+ branch: string;
27789
+ hash?: undefined;
27790
+ message?: undefined;
27791
+ success?: undefined;
27792
+ number?: undefined;
27793
+ url?: undefined;
27794
+ comments?: undefined;
27795
+ issues?: undefined;
27796
+ title?: undefined;
27797
+ body?: undefined;
27798
+ state?: undefined;
27799
+ };
27800
+ } | {
27801
+ name: string;
27802
+ description: string;
27803
+ params: {
27804
+ name: string;
27805
+ type: string;
27806
+ required: boolean;
27807
+ description: string;
27808
+ }[];
27809
+ responseShape: {
27810
+ branch: string;
27811
+ path?: undefined;
27812
+ hash?: undefined;
27813
+ message?: undefined;
27814
+ success?: undefined;
27815
+ number?: undefined;
27816
+ url?: undefined;
27817
+ comments?: undefined;
27818
+ issues?: undefined;
27819
+ title?: undefined;
27820
+ body?: undefined;
27821
+ state?: undefined;
27822
+ };
27823
+ } | {
27824
+ name: string;
27825
+ description: string;
27826
+ params: {
27827
+ name: string;
27828
+ type: string;
27829
+ required: boolean;
27830
+ description: string;
27831
+ }[];
27832
+ responseShape: {
27833
+ hash: string;
27834
+ message: string;
27835
+ path?: undefined;
27836
+ branch?: undefined;
27837
+ success?: undefined;
27838
+ number?: undefined;
27839
+ url?: undefined;
27840
+ comments?: undefined;
27841
+ issues?: undefined;
27842
+ title?: undefined;
27843
+ body?: undefined;
27844
+ state?: undefined;
27845
+ };
27846
+ } | {
27847
+ name: string;
27848
+ description: string;
27849
+ params: {
27850
+ name: string;
27851
+ type: string;
27852
+ required: boolean;
27853
+ description: string;
27854
+ }[];
27855
+ responseShape: {
27856
+ success: string;
27857
+ path?: undefined;
27858
+ branch?: undefined;
27859
+ hash?: undefined;
27860
+ message?: undefined;
27861
+ number?: undefined;
27862
+ url?: undefined;
27863
+ comments?: undefined;
27864
+ issues?: undefined;
27865
+ title?: undefined;
27866
+ body?: undefined;
27867
+ state?: undefined;
27868
+ };
27869
+ } | {
27870
+ name: string;
27871
+ description: string;
27872
+ params: {
27873
+ name: string;
27874
+ type: string;
27875
+ required: boolean;
27876
+ description: string;
27877
+ }[];
27878
+ responseShape: {
27879
+ number: string;
27880
+ url: string;
27881
+ path?: undefined;
27882
+ branch?: undefined;
27883
+ hash?: undefined;
27884
+ message?: undefined;
27885
+ success?: undefined;
27886
+ comments?: undefined;
27887
+ issues?: undefined;
27888
+ title?: undefined;
27889
+ body?: undefined;
27890
+ state?: undefined;
27891
+ };
27892
+ } | {
27893
+ name: string;
27894
+ description: string;
27895
+ params: {
27896
+ name: string;
27897
+ type: string;
27898
+ required: boolean;
27899
+ description: string;
27900
+ }[];
27901
+ responseShape: {
27902
+ comments: string;
27903
+ path?: undefined;
27904
+ branch?: undefined;
27905
+ hash?: undefined;
27906
+ message?: undefined;
27907
+ success?: undefined;
27908
+ number?: undefined;
27909
+ url?: undefined;
27910
+ issues?: undefined;
27911
+ title?: undefined;
27912
+ body?: undefined;
27913
+ state?: undefined;
27914
+ };
27915
+ } | {
27916
+ name: string;
27917
+ description: string;
27918
+ params: {
27919
+ name: string;
27920
+ type: string;
27921
+ required: boolean;
27922
+ description: string;
27923
+ }[];
27924
+ responseShape: {
27925
+ issues: string;
27926
+ path?: undefined;
27927
+ branch?: undefined;
27928
+ hash?: undefined;
27929
+ message?: undefined;
27930
+ success?: undefined;
27931
+ number?: undefined;
27932
+ url?: undefined;
27933
+ comments?: undefined;
27934
+ title?: undefined;
27935
+ body?: undefined;
27936
+ state?: undefined;
27937
+ };
27938
+ } | {
27939
+ name: string;
27940
+ description: string;
27941
+ params: {
27942
+ name: string;
27943
+ type: string;
27944
+ required: boolean;
27945
+ description: string;
27946
+ }[];
27947
+ responseShape: {
27948
+ title: string;
27949
+ body: string;
27950
+ state: string;
27951
+ path?: undefined;
27952
+ branch?: undefined;
27953
+ hash?: undefined;
27954
+ message?: undefined;
27955
+ success?: undefined;
27956
+ number?: undefined;
27957
+ url?: undefined;
27958
+ comments?: undefined;
27959
+ issues?: undefined;
27960
+ };
27961
+ })[];
27962
+ };
27963
+ cli: {
27964
+ name: string;
27965
+ description: string;
27966
+ category: string;
27967
+ actions: {
27968
+ name: string;
27969
+ description: string;
27970
+ params: {
27971
+ name: string;
27972
+ type: string;
27973
+ required: boolean;
27974
+ description: string;
27975
+ }[];
27976
+ responseShape: {
27977
+ valid: string;
27978
+ errors: string;
27979
+ warnings: string;
27980
+ summary: string;
27981
+ };
27982
+ }[];
27983
+ };
26892
27984
  };
26893
27985
  categories: string[];
26894
27986
  };
@@ -28148,4 +29240,4 @@ declare function getComponentForPattern(patternType: string): any;
28148
29240
  */
28149
29241
  declare function isEntityAwarePattern(patternType: string): boolean;
28150
29242
 
28151
- export { type AnyPatternConfig, COMPONENT_MAPPING, EVENT_CONTRACTS, INTEGRATORS_REGISTRY, PATTERN_REGISTRY, PATTERN_TYPES, type PatternConfig, type PatternProps, type PatternPropsMap, type PatternType, componentMapping, eventContracts, generatePatternDescription, getAllPatternTypes, getComponentForPattern, getPatternActionsRef, getPatternDefinition, getPatternMetadata, getPatternPropsCompact, getPatternsGroupedByCategory, integratorsRegistry, isEntityAwarePattern, isValidPatternType, patternsRegistry, registry };
29243
+ export { type AnyPatternConfig, COMPONENT_MAPPING, EVENT_CONTRACTS, INTEGRATORS_REGISTRY, PATTERN_REGISTRY, PATTERN_TYPES, type PatternConfig, type PatternProps, type PatternPropsMap, type PatternRecommendation, type PatternType, type RecommendationContext, buildRecommendationContext, componentMapping, eventContracts, formatRecommendationsForPrompt, generatePatternDescription, getAllPatternTypes, getComponentForPattern, getPatternActionsRef, getPatternDefinition, getPatternMetadata, getPatternPropsCompact, getPatternsGroupedByCategory, integratorsRegistry, isEntityAwarePattern, isValidPatternType, patternsRegistry, recommendPatterns, registry };