@almadar/core 10.30.0 → 10.31.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/index.js CHANGED
@@ -146,6 +146,20 @@ var IdentityLedgerSchema = z.object({
146
146
  schemaVersion: z.literal(1),
147
147
  entries: z.record(LedgerEntrySchema)
148
148
  });
149
+ var JsonValueSchema = z.lazy(
150
+ () => z.union([z.string(), z.number(), z.boolean(), z.null(), z.array(JsonValueSchema), z.record(JsonValueSchema)])
151
+ );
152
+ function isJsonPrimitive(value) {
153
+ return value === null || typeof value === "string" || typeof value === "number" || typeof value === "boolean";
154
+ }
155
+ function isJsonObject(value) {
156
+ return value !== null && typeof value === "object" && !Array.isArray(value);
157
+ }
158
+ function isJsonArray(value) {
159
+ return Array.isArray(value);
160
+ }
161
+
162
+ // src/types/field.ts
149
163
  var FieldTypeSchema = z.enum([
150
164
  "string",
151
165
  "number",
@@ -209,7 +223,7 @@ var EntityFieldSchema = z.lazy(() => {
209
223
  const baseFieldShape = {
210
224
  name: z.string().min(1, "Field name is required").optional(),
211
225
  required: z.boolean().optional(),
212
- default: z.unknown().optional(),
226
+ default: JsonValueSchema.optional(),
213
227
  format: FieldFormatSchema.optional(),
214
228
  min: z.number().optional(),
215
229
  max: z.number().optional(),
@@ -800,7 +814,7 @@ var TraitEntityFieldSchema = z.object({
800
814
  "enum"
801
815
  ]),
802
816
  required: z.boolean().optional(),
803
- default: z.unknown().optional(),
817
+ default: TraitConfigValueSchema.optional(),
804
818
  values: z.array(z.string()).optional(),
805
819
  items: ConfigFieldItemsDeclarationSchema.optional(),
806
820
  properties: z.lazy(() => z.record(TraitEntityFieldSchema)).optional()
@@ -950,12 +964,11 @@ var TraitReferenceSchema = z.object({
950
964
  listens: z.array(z.unknown()).optional(),
951
965
  emitsScope: z.enum(["internal", "external"]).optional(),
952
966
  // Phase F.8: per-transition effects override. The keys are event
953
- // names (the transition triggers AFTER renames). Values are arrays
954
- // of SExpression-shaped data; the inliner validates the SExpression
955
- // shape during application, so the schema accepts loose `unknown[]`.
967
+ // names (the transition triggers AFTER renames); values are SExpr
968
+ // effect tuples.
956
969
  effects: z.record(
957
970
  z.string().min(1, "effects override key (event name) must be non-empty"),
958
- z.array(z.unknown())
971
+ z.array(SExprSchema)
959
972
  ).optional()
960
973
  }).refine(
961
974
  (ref2) => {
@@ -1975,7 +1988,7 @@ function getInteractionModelForDomain(domain) {
1975
1988
  // src/patterns/patterns-registry.json
1976
1989
  var patterns_registry_default = {
1977
1990
  version: "1.0.0",
1978
- exportedAt: "2026-07-16T19:33:37.203Z",
1991
+ exportedAt: "2026-07-21T09:54:57.379Z",
1979
1992
  patterns: {
1980
1993
  "entity-table": {
1981
1994
  type: "entity-table",
@@ -5495,7 +5508,8 @@ var patterns_registry_default = {
5495
5508
  category: "filter",
5496
5509
  tier: "molecules",
5497
5510
  family: "core",
5498
- description: "Multiple filter controls",
5511
+ description: "FilterGroup \u2014 a panel of filter controls that narrows a collection by field values.",
5512
+ capabilities: "search refinement panel, facet filters, admin list filters, records filter sidebar, filter chips panel",
5499
5513
  suggestedFor: [
5500
5514
  "list pages with filterable data"
5501
5515
  ],
@@ -5696,18 +5710,6 @@ var patterns_registry_default = {
5696
5710
  role: {
5697
5711
  types: [
5698
5712
  "string"
5699
- ],
5700
- enumValues: [
5701
- "player",
5702
- "enemy",
5703
- "npc",
5704
- "item",
5705
- "tile",
5706
- "projectile",
5707
- "effect",
5708
- "ui",
5709
- "decoration",
5710
- "vehicle"
5711
5713
  ]
5712
5714
  },
5713
5715
  category: {
@@ -5737,6 +5739,11 @@ var patterns_registry_default = {
5737
5739
  "isometric"
5738
5740
  ]
5739
5741
  },
5742
+ variant: {
5743
+ types: [
5744
+ "string"
5745
+ ]
5746
+ },
5740
5747
  dimension: {
5741
5748
  types: [
5742
5749
  "string"
@@ -5757,6 +5764,16 @@ var patterns_registry_default = {
5757
5764
  "8:1"
5758
5765
  ]
5759
5766
  },
5767
+ atlas: {
5768
+ types: [
5769
+ "asset"
5770
+ ]
5771
+ },
5772
+ sprite: {
5773
+ types: [
5774
+ "string"
5775
+ ]
5776
+ },
5760
5777
  name: {
5761
5778
  types: [
5762
5779
  "string"
@@ -5769,7 +5786,9 @@ var patterns_registry_default = {
5769
5786
  }
5770
5787
  },
5771
5788
  required: [
5772
- "url"
5789
+ "url",
5790
+ "role",
5791
+ "category"
5773
5792
  ]
5774
5793
  },
5775
5794
  badge: {
@@ -5848,18 +5867,6 @@ var patterns_registry_default = {
5848
5867
  role: {
5849
5868
  types: [
5850
5869
  "string"
5851
- ],
5852
- enumValues: [
5853
- "player",
5854
- "enemy",
5855
- "npc",
5856
- "item",
5857
- "tile",
5858
- "projectile",
5859
- "effect",
5860
- "ui",
5861
- "decoration",
5862
- "vehicle"
5863
5870
  ]
5864
5871
  },
5865
5872
  category: {
@@ -5889,6 +5896,11 @@ var patterns_registry_default = {
5889
5896
  "isometric"
5890
5897
  ]
5891
5898
  },
5899
+ variant: {
5900
+ types: [
5901
+ "string"
5902
+ ]
5903
+ },
5892
5904
  dimension: {
5893
5905
  types: [
5894
5906
  "string"
@@ -5909,6 +5921,16 @@ var patterns_registry_default = {
5909
5921
  "8:1"
5910
5922
  ]
5911
5923
  },
5924
+ atlas: {
5925
+ types: [
5926
+ "asset"
5927
+ ]
5928
+ },
5929
+ sprite: {
5930
+ types: [
5931
+ "string"
5932
+ ]
5933
+ },
5912
5934
  name: {
5913
5935
  types: [
5914
5936
  "string"
@@ -5921,7 +5943,9 @@ var patterns_registry_default = {
5921
5943
  }
5922
5944
  },
5923
5945
  required: [
5924
- "url"
5946
+ "url",
5947
+ "role",
5948
+ "category"
5925
5949
  ]
5926
5950
  },
5927
5951
  badge: {
@@ -7359,6 +7383,13 @@ var patterns_registry_default = {
7359
7383
  "string"
7360
7384
  ],
7361
7385
  description: "className prop"
7386
+ },
7387
+ fullPage: {
7388
+ types: [
7389
+ "boolean"
7390
+ ],
7391
+ description: "Center over the whole viewport (fix: inset-0 overlay) instead of inline.",
7392
+ default: false
7362
7393
  }
7363
7394
  }
7364
7395
  },
@@ -7550,6 +7581,14 @@ var patterns_registry_default = {
7550
7581
  kind: "callback",
7551
7582
  callbackArgs: []
7552
7583
  },
7584
+ onExited: {
7585
+ types: [
7586
+ "function"
7587
+ ],
7588
+ description: "Fires after the exit animation completes (the modal is about to unmount).",
7589
+ kind: "callback",
7590
+ callbackArgs: []
7591
+ },
7553
7592
  title: {
7554
7593
  types: [
7555
7594
  "string"
@@ -8859,18 +8898,6 @@ var patterns_registry_default = {
8859
8898
  role: {
8860
8899
  types: [
8861
8900
  "string"
8862
- ],
8863
- enumValues: [
8864
- "player",
8865
- "enemy",
8866
- "npc",
8867
- "item",
8868
- "tile",
8869
- "projectile",
8870
- "effect",
8871
- "ui",
8872
- "decoration",
8873
- "vehicle"
8874
8901
  ]
8875
8902
  },
8876
8903
  category: {
@@ -8900,6 +8927,11 @@ var patterns_registry_default = {
8900
8927
  "isometric"
8901
8928
  ]
8902
8929
  },
8930
+ variant: {
8931
+ types: [
8932
+ "string"
8933
+ ]
8934
+ },
8903
8935
  dimension: {
8904
8936
  types: [
8905
8937
  "string"
@@ -8920,6 +8952,16 @@ var patterns_registry_default = {
8920
8952
  "8:1"
8921
8953
  ]
8922
8954
  },
8955
+ atlas: {
8956
+ types: [
8957
+ "asset"
8958
+ ]
8959
+ },
8960
+ sprite: {
8961
+ types: [
8962
+ "string"
8963
+ ]
8964
+ },
8923
8965
  name: {
8924
8966
  types: [
8925
8967
  "string"
@@ -8932,7 +8974,9 @@ var patterns_registry_default = {
8932
8974
  }
8933
8975
  },
8934
8976
  propertyRequired: [
8935
- "url"
8977
+ "url",
8978
+ "role",
8979
+ "category"
8936
8980
  ]
8937
8981
  },
8938
8982
  action: {
@@ -9052,18 +9096,6 @@ var patterns_registry_default = {
9052
9096
  role: {
9053
9097
  types: [
9054
9098
  "string"
9055
- ],
9056
- enumValues: [
9057
- "player",
9058
- "enemy",
9059
- "npc",
9060
- "item",
9061
- "tile",
9062
- "projectile",
9063
- "effect",
9064
- "ui",
9065
- "decoration",
9066
- "vehicle"
9067
9099
  ]
9068
9100
  },
9069
9101
  category: {
@@ -9093,6 +9125,11 @@ var patterns_registry_default = {
9093
9125
  "isometric"
9094
9126
  ]
9095
9127
  },
9128
+ variant: {
9129
+ types: [
9130
+ "string"
9131
+ ]
9132
+ },
9096
9133
  dimension: {
9097
9134
  types: [
9098
9135
  "string"
@@ -9113,6 +9150,16 @@ var patterns_registry_default = {
9113
9150
  "8:1"
9114
9151
  ]
9115
9152
  },
9153
+ atlas: {
9154
+ types: [
9155
+ "asset"
9156
+ ]
9157
+ },
9158
+ sprite: {
9159
+ types: [
9160
+ "string"
9161
+ ]
9162
+ },
9116
9163
  name: {
9117
9164
  types: [
9118
9165
  "string"
@@ -9125,7 +9172,9 @@ var patterns_registry_default = {
9125
9172
  }
9126
9173
  },
9127
9174
  propertyRequired: [
9128
- "url"
9175
+ "url",
9176
+ "role",
9177
+ "category"
9129
9178
  ]
9130
9179
  },
9131
9180
  onRemove: {
@@ -10866,7 +10915,8 @@ var patterns_registry_default = {
10866
10915
  category: "form",
10867
10916
  tier: "molecules",
10868
10917
  family: "core",
10869
- description: "Repeatable form section for multiple entries",
10918
+ description: "RepeatableFormSection \u2014 a form section that repeats a fixed group of fields, letting the user add or remove entries.",
10919
+ capabilities: "dynamic line items, repeatable field group, add/remove entry rows, multi-entry form block",
10870
10920
  suggestedFor: [
10871
10921
  "repeating fields",
10872
10922
  "dynamic forms",
@@ -11766,133 +11816,184 @@ var patterns_registry_default = {
11766
11816
  ],
11767
11817
  typicalSize: "medium",
11768
11818
  propsSchema: {
11769
- className: {
11770
- types: [
11771
- "string"
11772
- ],
11773
- description: "Additional CSS classes"
11774
- },
11775
- isLoading: {
11819
+ children: {
11776
11820
  types: [
11777
- "boolean"
11821
+ "node"
11778
11822
  ],
11779
- description: "Loading state indicator"
11823
+ description: "Button group content (Button components) - use this OR primary/secondary"
11780
11824
  },
11781
- error: {
11825
+ primary: {
11782
11826
  types: [
11783
11827
  "object"
11784
11828
  ],
11785
- description: "Error state (UiError)",
11829
+ description: "Primary action button config (for form-actions pattern) Accepts Readonly for compatibility with generated const objects",
11786
11830
  properties: {
11787
- message: {
11831
+ label: {
11788
11832
  types: [
11789
11833
  "string"
11790
11834
  ]
11791
11835
  },
11792
- name: {
11836
+ actionType: {
11793
11837
  types: [
11794
11838
  "string"
11795
11839
  ]
11796
11840
  },
11797
- code: {
11841
+ event: {
11798
11842
  types: [
11799
11843
  "string"
11800
11844
  ]
11801
11845
  },
11802
- stack: {
11846
+ navigatesTo: {
11847
+ types: [
11848
+ "string"
11849
+ ]
11850
+ },
11851
+ variant: {
11803
11852
  types: [
11804
11853
  "string"
11805
11854
  ]
11806
11855
  }
11807
11856
  },
11808
11857
  propertyRequired: [
11809
- "message"
11858
+ "label"
11810
11859
  ]
11811
11860
  },
11812
- sortBy: {
11861
+ secondary: {
11813
11862
  types: [
11814
- "string"
11863
+ "array"
11815
11864
  ],
11816
- description: "Current sort field"
11865
+ description: "Secondary action buttons config (for form-actions pattern) Accepts readonly array for compatibility with generated const arrays",
11866
+ items: {
11867
+ types: [
11868
+ "object"
11869
+ ],
11870
+ properties: {
11871
+ label: {
11872
+ types: [
11873
+ "string"
11874
+ ]
11875
+ },
11876
+ actionType: {
11877
+ types: [
11878
+ "string"
11879
+ ]
11880
+ },
11881
+ event: {
11882
+ types: [
11883
+ "string"
11884
+ ]
11885
+ },
11886
+ navigatesTo: {
11887
+ types: [
11888
+ "string"
11889
+ ]
11890
+ },
11891
+ variant: {
11892
+ types: [
11893
+ "string"
11894
+ ]
11895
+ }
11896
+ },
11897
+ required: [
11898
+ "label"
11899
+ ]
11900
+ }
11817
11901
  },
11818
- sortDirection: {
11902
+ variant: {
11819
11903
  types: [
11820
11904
  "string"
11821
11905
  ],
11822
- description: "Current sort direction",
11906
+ description: "Visual variant",
11823
11907
  enumValues: [
11824
- "asc",
11825
- "desc"
11826
- ]
11827
- },
11828
- searchValue: {
11829
- types: [
11830
- "string"
11908
+ "default",
11909
+ "segmented",
11910
+ "toggle"
11831
11911
  ],
11832
- description: "Current search query value"
11912
+ default: "default"
11833
11913
  },
11834
- page: {
11914
+ orientation: {
11835
11915
  types: [
11836
- "number"
11916
+ "string"
11837
11917
  ],
11838
- description: "Current page number"
11839
- },
11840
- pageSize: {
11841
- types: [
11842
- "number"
11918
+ description: "Orientation",
11919
+ enumValues: [
11920
+ "horizontal",
11921
+ "vertical"
11843
11922
  ],
11844
- description: "Number of items per page"
11923
+ default: "horizontal"
11845
11924
  },
11846
- totalCount: {
11925
+ className: {
11847
11926
  types: [
11848
- "number"
11927
+ "string"
11849
11928
  ],
11850
- description: "Total number of items"
11929
+ description: "Additional CSS classes"
11851
11930
  },
11852
- activeFilters: {
11931
+ entity: {
11853
11932
  types: [
11854
- "object"
11933
+ "string"
11855
11934
  ],
11856
- description: "Active filters"
11935
+ description: "Entity type for filter-group pattern (schema metadata)"
11857
11936
  },
11858
- selectedIds: {
11937
+ filters: {
11859
11938
  types: [
11860
11939
  "array"
11861
11940
  ],
11862
- description: "Currently selected item IDs",
11941
+ description: "Filter definitions for filter-group pattern",
11863
11942
  items: {
11864
11943
  types: [
11865
- "string",
11866
- "number"
11944
+ "object"
11945
+ ],
11946
+ properties: {
11947
+ field: {
11948
+ types: [
11949
+ "string"
11950
+ ]
11951
+ },
11952
+ label: {
11953
+ types: [
11954
+ "string"
11955
+ ]
11956
+ },
11957
+ type: {
11958
+ types: [
11959
+ "string"
11960
+ ],
11961
+ enumValues: [
11962
+ "checkbox",
11963
+ "select",
11964
+ "toggle"
11965
+ ]
11966
+ },
11967
+ options: {
11968
+ types: [
11969
+ "array"
11970
+ ],
11971
+ items: {
11972
+ types: [
11973
+ "string"
11974
+ ]
11975
+ }
11976
+ }
11977
+ },
11978
+ required: [
11979
+ "field",
11980
+ "label"
11867
11981
  ]
11868
11982
  }
11869
11983
  },
11870
- children: {
11871
- types: [
11872
- "node"
11873
- ],
11874
- description: "children prop",
11875
- required: true
11876
- },
11877
- sticky: {
11878
- types: [
11879
- "boolean"
11880
- ],
11881
- description: "Sticky at bottom",
11882
- default: false
11883
- },
11884
- align: {
11984
+ look: {
11885
11985
  types: [
11886
11986
  "string"
11887
11987
  ],
11888
- description: "Alignment",
11988
+ description: "Layer 2 visual treatment for the action-cluster (form-actions) pattern.",
11889
11989
  enumValues: [
11890
- "left",
11891
- "right",
11892
- "between",
11893
- "center"
11990
+ "right-aligned-buttons",
11991
+ "floating-bar",
11992
+ "inline-row",
11993
+ "dropdown-menu",
11994
+ "command-palette-trigger"
11894
11995
  ],
11895
- default: "right"
11996
+ default: "right-aligned-buttons"
11896
11997
  }
11897
11998
  }
11898
11999
  },
@@ -14833,18 +14934,6 @@ var patterns_registry_default = {
14833
14934
  role: {
14834
14935
  types: [
14835
14936
  "string"
14836
- ],
14837
- enumValues: [
14838
- "player",
14839
- "enemy",
14840
- "npc",
14841
- "item",
14842
- "tile",
14843
- "projectile",
14844
- "effect",
14845
- "ui",
14846
- "decoration",
14847
- "vehicle"
14848
14937
  ]
14849
14938
  },
14850
14939
  category: {
@@ -14874,6 +14963,11 @@ var patterns_registry_default = {
14874
14963
  "isometric"
14875
14964
  ]
14876
14965
  },
14966
+ variant: {
14967
+ types: [
14968
+ "string"
14969
+ ]
14970
+ },
14877
14971
  dimension: {
14878
14972
  types: [
14879
14973
  "string"
@@ -14894,6 +14988,16 @@ var patterns_registry_default = {
14894
14988
  "8:1"
14895
14989
  ]
14896
14990
  },
14991
+ atlas: {
14992
+ types: [
14993
+ "asset"
14994
+ ]
14995
+ },
14996
+ sprite: {
14997
+ types: [
14998
+ "string"
14999
+ ]
15000
+ },
14897
15001
  name: {
14898
15002
  types: [
14899
15003
  "string"
@@ -14906,14 +15010,16 @@ var patterns_registry_default = {
14906
15010
  }
14907
15011
  },
14908
15012
  propertyRequired: [
14909
- "url"
15013
+ "url",
15014
+ "role",
15015
+ "category"
14910
15016
  ]
14911
15017
  },
14912
15018
  hudBackgroundAsset: {
14913
15019
  types: [
14914
15020
  "object"
14915
15021
  ],
14916
- description: "9-sliced panel skin for the HUD chips row + title chip.",
15022
+ description: "Per-call-site 9-sliced panel override. Chrome normally comes from the active theme; most callers leave this unset.",
14917
15023
  properties: {
14918
15024
  url: {
14919
15025
  types: [
@@ -14923,18 +15029,6 @@ var patterns_registry_default = {
14923
15029
  role: {
14924
15030
  types: [
14925
15031
  "string"
14926
- ],
14927
- enumValues: [
14928
- "player",
14929
- "enemy",
14930
- "npc",
14931
- "item",
14932
- "tile",
14933
- "projectile",
14934
- "effect",
14935
- "ui",
14936
- "decoration",
14937
- "vehicle"
14938
15032
  ]
14939
15033
  },
14940
15034
  category: {
@@ -14964,6 +15058,11 @@ var patterns_registry_default = {
14964
15058
  "isometric"
14965
15059
  ]
14966
15060
  },
15061
+ variant: {
15062
+ types: [
15063
+ "string"
15064
+ ]
15065
+ },
14967
15066
  dimension: {
14968
15067
  types: [
14969
15068
  "string"
@@ -14984,6 +15083,16 @@ var patterns_registry_default = {
14984
15083
  "8:1"
14985
15084
  ]
14986
15085
  },
15086
+ atlas: {
15087
+ types: [
15088
+ "asset"
15089
+ ]
15090
+ },
15091
+ sprite: {
15092
+ types: [
15093
+ "string"
15094
+ ]
15095
+ },
14987
15096
  name: {
14988
15097
  types: [
14989
15098
  "string"
@@ -14996,7 +15105,9 @@ var patterns_registry_default = {
14996
15105
  }
14997
15106
  },
14998
15107
  propertyRequired: [
14999
- "url"
15108
+ "url",
15109
+ "role",
15110
+ "category"
15000
15111
  ]
15001
15112
  },
15002
15113
  fontFamily: {
@@ -15005,6 +15116,12 @@ var patterns_registry_default = {
15005
15116
  ],
15006
15117
  description: "Game font key (future | future-narrow | pixel | blocks | mini) or a CSS font-family.",
15007
15118
  default: "future"
15119
+ },
15120
+ "data-theme": {
15121
+ types: [
15122
+ "string"
15123
+ ],
15124
+ description: 'Scopes an `@almadar/ui` theme (e.g. "game-sci-fi-dark") to this shell\'s subtree.'
15008
15125
  }
15009
15126
  }
15010
15127
  },
@@ -16058,7 +16175,8 @@ var patterns_registry_default = {
16058
16175
  category: "form",
16059
16176
  tier: "molecules",
16060
16177
  family: "core",
16061
- description: "Canvas-based signature capture pad with draw, clear, and confirm actions",
16178
+ description: "SignaturePad \u2014 a draw-to-sign canvas that captures a handwritten signature or initials.",
16179
+ capabilities: "e-signature capture, sign-here field, consent signature, initial-here field, wet-signature substitute",
16062
16180
  suggestedFor: [
16063
16181
  "form signing",
16064
16182
  "approval workflows",
@@ -17035,7 +17153,8 @@ var patterns_registry_default = {
17035
17153
  category: "component",
17036
17154
  tier: "molecules",
17037
17155
  family: "core",
17038
- description: "QuizBlock Molecule Component A collapsible Q&A block for embedded quiz questions in content. Shows the question with a reveal button for the answer. Event Contract: - No events emitted (self-contained interaction) - entityAware: false",
17156
+ description: "QuizBlock \u2014 a single quiz question with answer choices and submit/reveal feedback.",
17157
+ capabilities: "multiple-choice quiz, test question, exam item, assessment question, knowledge check, trivia question",
17039
17158
  suggestedFor: [
17040
17159
  "quiz",
17041
17160
  "block",
@@ -18287,7 +18406,8 @@ var patterns_registry_default = {
18287
18406
  category: "display",
18288
18407
  tier: "molecules",
18289
18408
  family: "core",
18290
- description: "FlipCard component",
18409
+ description: "FlipCard \u2014 flip card that reveals a hidden back face on tap or click, toggling between a front and back content slot.",
18410
+ capabilities: "flashcard, study deck, spaced-repetition review card, memorization drill, quiz reveal card, question/answer card, before/after reveal, term-and-definition card",
18291
18411
  suggestedFor: [
18292
18412
  "flip",
18293
18413
  "card",
@@ -18744,7 +18864,8 @@ var patterns_registry_default = {
18744
18864
  category: "display",
18745
18865
  tier: "molecules",
18746
18866
  family: "core",
18747
- description: "DataGrid component",
18867
+ description: "DataGrid \u2014 structured records grid rendering rows over configurable columns, with sort, select, and drag-reorder.",
18868
+ capabilities: "admin table, records grid, user list, CRUD list, manage-records view, spreadsheet-style data grid, sortable columns",
18748
18869
  suggestedFor: [
18749
18870
  "data",
18750
18871
  "grid",
@@ -21036,7 +21157,8 @@ var patterns_registry_default = {
21036
21157
  category: "display",
21037
21158
  tier: "molecules",
21038
21159
  family: "core",
21039
- description: "SortableList component",
21160
+ description: "SortableList \u2014 a drag-and-drop reorderable list of items.",
21161
+ capabilities: "checklist, task list, to-do list, priority list, ranked list, drag-to-reorder queue",
21040
21162
  suggestedFor: [
21041
21163
  "sortable",
21042
21164
  "list",
@@ -21643,7 +21765,8 @@ var patterns_registry_default = {
21643
21765
  category: "display",
21644
21766
  tier: "molecules",
21645
21767
  family: "marketing",
21646
- description: "CaseStudyCard component",
21768
+ description: "CaseStudyCard \u2014 a card summarizing a customer case study with logo, headline result, and link.",
21769
+ capabilities: "customer story, success story, client story card, results showcase, proof-point card",
21647
21770
  suggestedFor: [
21648
21771
  "case",
21649
21772
  "study",
@@ -21802,7 +21925,8 @@ var patterns_registry_default = {
21802
21925
  category: "display",
21803
21926
  tier: "molecules",
21804
21927
  family: "marketing",
21805
- description: "FeatureCard component",
21928
+ description: "FeatureCard \u2014 an icon-led card pairing a title and description to call out a single product feature.",
21929
+ capabilities: "feature highlight, benefit callout, product capability card, feature-grid tile",
21806
21930
  suggestedFor: [
21807
21931
  "feature",
21808
21932
  "card",
@@ -22210,7 +22334,8 @@ var patterns_registry_default = {
22210
22334
  category: "display",
22211
22335
  tier: "molecules",
22212
22336
  family: "marketing",
22213
- description: "PricingCard component",
22337
+ description: "PricingCard \u2014 a single pricing-tier card with price, billing period, feature list, and call-to-action.",
22338
+ capabilities: "pricing tier, plan card, subscription tier, plan comparison card, price plan",
22214
22339
  suggestedFor: [
22215
22340
  "pricing",
22216
22341
  "card",
@@ -27942,18 +28067,6 @@ var patterns_registry_default = {
27942
28067
  role: {
27943
28068
  types: [
27944
28069
  "string"
27945
- ],
27946
- enumValues: [
27947
- "player",
27948
- "enemy",
27949
- "npc",
27950
- "item",
27951
- "tile",
27952
- "projectile",
27953
- "effect",
27954
- "ui",
27955
- "decoration",
27956
- "vehicle"
27957
28070
  ]
27958
28071
  },
27959
28072
  category: {
@@ -27983,6 +28096,11 @@ var patterns_registry_default = {
27983
28096
  "isometric"
27984
28097
  ]
27985
28098
  },
28099
+ variant: {
28100
+ types: [
28101
+ "string"
28102
+ ]
28103
+ },
27986
28104
  dimension: {
27987
28105
  types: [
27988
28106
  "string"
@@ -28003,6 +28121,16 @@ var patterns_registry_default = {
28003
28121
  "8:1"
28004
28122
  ]
28005
28123
  },
28124
+ atlas: {
28125
+ types: [
28126
+ "asset"
28127
+ ]
28128
+ },
28129
+ sprite: {
28130
+ types: [
28131
+ "string"
28132
+ ]
28133
+ },
28006
28134
  name: {
28007
28135
  types: [
28008
28136
  "string"
@@ -28015,7 +28143,9 @@ var patterns_registry_default = {
28015
28143
  }
28016
28144
  },
28017
28145
  propertyRequired: [
28018
- "url"
28146
+ "url",
28147
+ "role",
28148
+ "category"
28019
28149
  ]
28020
28150
  },
28021
28151
  icon: {
@@ -28102,18 +28232,6 @@ var patterns_registry_default = {
28102
28232
  role: {
28103
28233
  types: [
28104
28234
  "string"
28105
- ],
28106
- enumValues: [
28107
- "player",
28108
- "enemy",
28109
- "npc",
28110
- "item",
28111
- "tile",
28112
- "projectile",
28113
- "effect",
28114
- "ui",
28115
- "decoration",
28116
- "vehicle"
28117
28235
  ]
28118
28236
  },
28119
28237
  category: {
@@ -28143,6 +28261,11 @@ var patterns_registry_default = {
28143
28261
  "isometric"
28144
28262
  ]
28145
28263
  },
28264
+ variant: {
28265
+ types: [
28266
+ "string"
28267
+ ]
28268
+ },
28146
28269
  dimension: {
28147
28270
  types: [
28148
28271
  "string"
@@ -28163,6 +28286,16 @@ var patterns_registry_default = {
28163
28286
  "8:1"
28164
28287
  ]
28165
28288
  },
28289
+ atlas: {
28290
+ types: [
28291
+ "asset"
28292
+ ]
28293
+ },
28294
+ sprite: {
28295
+ types: [
28296
+ "string"
28297
+ ]
28298
+ },
28166
28299
  name: {
28167
28300
  types: [
28168
28301
  "string"
@@ -28175,7 +28308,9 @@ var patterns_registry_default = {
28175
28308
  }
28176
28309
  },
28177
28310
  propertyRequired: [
28178
- "url"
28311
+ "url",
28312
+ "role",
28313
+ "category"
28179
28314
  ]
28180
28315
  },
28181
28316
  label: {
@@ -28320,18 +28455,6 @@ var patterns_registry_default = {
28320
28455
  role: {
28321
28456
  types: [
28322
28457
  "string"
28323
- ],
28324
- enumValues: [
28325
- "player",
28326
- "enemy",
28327
- "npc",
28328
- "item",
28329
- "tile",
28330
- "projectile",
28331
- "effect",
28332
- "ui",
28333
- "decoration",
28334
- "vehicle"
28335
28458
  ]
28336
28459
  },
28337
28460
  category: {
@@ -28361,6 +28484,11 @@ var patterns_registry_default = {
28361
28484
  "isometric"
28362
28485
  ]
28363
28486
  },
28487
+ variant: {
28488
+ types: [
28489
+ "string"
28490
+ ]
28491
+ },
28364
28492
  dimension: {
28365
28493
  types: [
28366
28494
  "string"
@@ -28381,6 +28509,16 @@ var patterns_registry_default = {
28381
28509
  "8:1"
28382
28510
  ]
28383
28511
  },
28512
+ atlas: {
28513
+ types: [
28514
+ "asset"
28515
+ ]
28516
+ },
28517
+ sprite: {
28518
+ types: [
28519
+ "string"
28520
+ ]
28521
+ },
28384
28522
  name: {
28385
28523
  types: [
28386
28524
  "string"
@@ -28393,7 +28531,9 @@ var patterns_registry_default = {
28393
28531
  }
28394
28532
  },
28395
28533
  propertyRequired: [
28396
- "url"
28534
+ "url",
28535
+ "role",
28536
+ "category"
28397
28537
  ]
28398
28538
  },
28399
28539
  position: {
@@ -28534,18 +28674,6 @@ var patterns_registry_default = {
28534
28674
  role: {
28535
28675
  types: [
28536
28676
  "string"
28537
- ],
28538
- enumValues: [
28539
- "player",
28540
- "enemy",
28541
- "npc",
28542
- "item",
28543
- "tile",
28544
- "projectile",
28545
- "effect",
28546
- "ui",
28547
- "decoration",
28548
- "vehicle"
28549
28677
  ]
28550
28678
  },
28551
28679
  category: {
@@ -28575,6 +28703,11 @@ var patterns_registry_default = {
28575
28703
  "isometric"
28576
28704
  ]
28577
28705
  },
28706
+ variant: {
28707
+ types: [
28708
+ "string"
28709
+ ]
28710
+ },
28578
28711
  dimension: {
28579
28712
  types: [
28580
28713
  "string"
@@ -28595,6 +28728,16 @@ var patterns_registry_default = {
28595
28728
  "8:1"
28596
28729
  ]
28597
28730
  },
28731
+ atlas: {
28732
+ types: [
28733
+ "asset"
28734
+ ]
28735
+ },
28736
+ sprite: {
28737
+ types: [
28738
+ "string"
28739
+ ]
28740
+ },
28598
28741
  name: {
28599
28742
  types: [
28600
28743
  "string"
@@ -28607,7 +28750,9 @@ var patterns_registry_default = {
28607
28750
  }
28608
28751
  },
28609
28752
  propertyRequired: [
28610
- "url"
28753
+ "url",
28754
+ "role",
28755
+ "category"
28611
28756
  ]
28612
28757
  },
28613
28758
  fillAsset: {
@@ -28624,18 +28769,6 @@ var patterns_registry_default = {
28624
28769
  role: {
28625
28770
  types: [
28626
28771
  "string"
28627
- ],
28628
- enumValues: [
28629
- "player",
28630
- "enemy",
28631
- "npc",
28632
- "item",
28633
- "tile",
28634
- "projectile",
28635
- "effect",
28636
- "ui",
28637
- "decoration",
28638
- "vehicle"
28639
28772
  ]
28640
28773
  },
28641
28774
  category: {
@@ -28665,6 +28798,11 @@ var patterns_registry_default = {
28665
28798
  "isometric"
28666
28799
  ]
28667
28800
  },
28801
+ variant: {
28802
+ types: [
28803
+ "string"
28804
+ ]
28805
+ },
28668
28806
  dimension: {
28669
28807
  types: [
28670
28808
  "string"
@@ -28685,6 +28823,16 @@ var patterns_registry_default = {
28685
28823
  "8:1"
28686
28824
  ]
28687
28825
  },
28826
+ atlas: {
28827
+ types: [
28828
+ "asset"
28829
+ ]
28830
+ },
28831
+ sprite: {
28832
+ types: [
28833
+ "string"
28834
+ ]
28835
+ },
28688
28836
  name: {
28689
28837
  types: [
28690
28838
  "string"
@@ -28697,7 +28845,9 @@ var patterns_registry_default = {
28697
28845
  }
28698
28846
  },
28699
28847
  propertyRequired: [
28700
- "url"
28848
+ "url",
28849
+ "role",
28850
+ "category"
28701
28851
  ]
28702
28852
  }
28703
28853
  }
@@ -28729,18 +28879,6 @@ var patterns_registry_default = {
28729
28879
  role: {
28730
28880
  types: [
28731
28881
  "string"
28732
- ],
28733
- enumValues: [
28734
- "player",
28735
- "enemy",
28736
- "npc",
28737
- "item",
28738
- "tile",
28739
- "projectile",
28740
- "effect",
28741
- "ui",
28742
- "decoration",
28743
- "vehicle"
28744
28882
  ]
28745
28883
  },
28746
28884
  category: {
@@ -28770,6 +28908,11 @@ var patterns_registry_default = {
28770
28908
  "isometric"
28771
28909
  ]
28772
28910
  },
28911
+ variant: {
28912
+ types: [
28913
+ "string"
28914
+ ]
28915
+ },
28773
28916
  dimension: {
28774
28917
  types: [
28775
28918
  "string"
@@ -28790,6 +28933,16 @@ var patterns_registry_default = {
28790
28933
  "8:1"
28791
28934
  ]
28792
28935
  },
28936
+ atlas: {
28937
+ types: [
28938
+ "asset"
28939
+ ]
28940
+ },
28941
+ sprite: {
28942
+ types: [
28943
+ "string"
28944
+ ]
28945
+ },
28793
28946
  name: {
28794
28947
  types: [
28795
28948
  "string"
@@ -28802,7 +28955,9 @@ var patterns_registry_default = {
28802
28955
  }
28803
28956
  },
28804
28957
  propertyRequired: [
28805
- "url"
28958
+ "url",
28959
+ "role",
28960
+ "category"
28806
28961
  ]
28807
28962
  },
28808
28963
  value: {
@@ -28937,18 +29092,6 @@ var patterns_registry_default = {
28937
29092
  role: {
28938
29093
  types: [
28939
29094
  "string"
28940
- ],
28941
- enumValues: [
28942
- "player",
28943
- "enemy",
28944
- "npc",
28945
- "item",
28946
- "tile",
28947
- "projectile",
28948
- "effect",
28949
- "ui",
28950
- "decoration",
28951
- "vehicle"
28952
29095
  ]
28953
29096
  },
28954
29097
  category: {
@@ -28978,6 +29121,11 @@ var patterns_registry_default = {
28978
29121
  "isometric"
28979
29122
  ]
28980
29123
  },
29124
+ variant: {
29125
+ types: [
29126
+ "string"
29127
+ ]
29128
+ },
28981
29129
  dimension: {
28982
29130
  types: [
28983
29131
  "string"
@@ -28998,6 +29146,16 @@ var patterns_registry_default = {
28998
29146
  "8:1"
28999
29147
  ]
29000
29148
  },
29149
+ atlas: {
29150
+ types: [
29151
+ "asset"
29152
+ ]
29153
+ },
29154
+ sprite: {
29155
+ types: [
29156
+ "string"
29157
+ ]
29158
+ },
29001
29159
  name: {
29002
29160
  types: [
29003
29161
  "string"
@@ -29010,7 +29168,9 @@ var patterns_registry_default = {
29010
29168
  }
29011
29169
  },
29012
29170
  propertyRequired: [
29013
- "url"
29171
+ "url",
29172
+ "role",
29173
+ "category"
29014
29174
  ]
29015
29175
  }
29016
29176
  }
@@ -30544,7 +30704,8 @@ var patterns_registry_default = {
30544
30704
  category: "display",
30545
30705
  tier: "molecules",
30546
30706
  family: "avl",
30547
- description: "ModuleCard component",
30707
+ description: "ModuleCard \u2014 a card summarizing one course module or lesson with progress and entry point.",
30708
+ capabilities: "course module card, lesson card, curriculum unit card, learning-path step card",
30548
30709
  suggestedFor: [
30549
30710
  "module",
30550
30711
  "card",
@@ -30686,18 +30847,6 @@ var patterns_registry_default = {
30686
30847
  role: {
30687
30848
  types: [
30688
30849
  "string"
30689
- ],
30690
- enumValues: [
30691
- "player",
30692
- "enemy",
30693
- "npc",
30694
- "item",
30695
- "tile",
30696
- "projectile",
30697
- "effect",
30698
- "ui",
30699
- "decoration",
30700
- "vehicle"
30701
30850
  ]
30702
30851
  },
30703
30852
  category: {
@@ -30727,6 +30876,11 @@ var patterns_registry_default = {
30727
30876
  "isometric"
30728
30877
  ]
30729
30878
  },
30879
+ variant: {
30880
+ types: [
30881
+ "string"
30882
+ ]
30883
+ },
30730
30884
  dimension: {
30731
30885
  types: [
30732
30886
  "string"
@@ -30747,6 +30901,16 @@ var patterns_registry_default = {
30747
30901
  "8:1"
30748
30902
  ]
30749
30903
  },
30904
+ atlas: {
30905
+ types: [
30906
+ "asset"
30907
+ ]
30908
+ },
30909
+ sprite: {
30910
+ types: [
30911
+ "string"
30912
+ ]
30913
+ },
30750
30914
  name: {
30751
30915
  types: [
30752
30916
  "string"
@@ -30759,7 +30923,9 @@ var patterns_registry_default = {
30759
30923
  }
30760
30924
  },
30761
30925
  required: [
30762
- "url"
30926
+ "url",
30927
+ "role",
30928
+ "category"
30763
30929
  ]
30764
30930
  },
30765
30931
  format: {
@@ -31039,18 +31205,6 @@ var patterns_registry_default = {
31039
31205
  role: {
31040
31206
  types: [
31041
31207
  "string"
31042
- ],
31043
- enumValues: [
31044
- "player",
31045
- "enemy",
31046
- "npc",
31047
- "item",
31048
- "tile",
31049
- "projectile",
31050
- "effect",
31051
- "ui",
31052
- "decoration",
31053
- "vehicle"
31054
31208
  ]
31055
31209
  },
31056
31210
  category: {
@@ -31080,6 +31234,11 @@ var patterns_registry_default = {
31080
31234
  "isometric"
31081
31235
  ]
31082
31236
  },
31237
+ variant: {
31238
+ types: [
31239
+ "string"
31240
+ ]
31241
+ },
31083
31242
  dimension: {
31084
31243
  types: [
31085
31244
  "string"
@@ -31100,6 +31259,16 @@ var patterns_registry_default = {
31100
31259
  "8:1"
31101
31260
  ]
31102
31261
  },
31262
+ atlas: {
31263
+ types: [
31264
+ "asset"
31265
+ ]
31266
+ },
31267
+ sprite: {
31268
+ types: [
31269
+ "string"
31270
+ ]
31271
+ },
31103
31272
  name: {
31104
31273
  types: [
31105
31274
  "string"
@@ -31112,7 +31281,9 @@ var patterns_registry_default = {
31112
31281
  }
31113
31282
  },
31114
31283
  propertyRequired: [
31115
- "url"
31284
+ "url",
31285
+ "role",
31286
+ "category"
31116
31287
  ]
31117
31288
  },
31118
31289
  className: {
@@ -31150,18 +31321,6 @@ var patterns_registry_default = {
31150
31321
  role: {
31151
31322
  types: [
31152
31323
  "string"
31153
- ],
31154
- enumValues: [
31155
- "player",
31156
- "enemy",
31157
- "npc",
31158
- "item",
31159
- "tile",
31160
- "projectile",
31161
- "effect",
31162
- "ui",
31163
- "decoration",
31164
- "vehicle"
31165
31324
  ]
31166
31325
  },
31167
31326
  category: {
@@ -31191,6 +31350,11 @@ var patterns_registry_default = {
31191
31350
  "isometric"
31192
31351
  ]
31193
31352
  },
31353
+ variant: {
31354
+ types: [
31355
+ "string"
31356
+ ]
31357
+ },
31194
31358
  dimension: {
31195
31359
  types: [
31196
31360
  "string"
@@ -31211,6 +31375,16 @@ var patterns_registry_default = {
31211
31375
  "8:1"
31212
31376
  ]
31213
31377
  },
31378
+ atlas: {
31379
+ types: [
31380
+ "asset"
31381
+ ]
31382
+ },
31383
+ sprite: {
31384
+ types: [
31385
+ "string"
31386
+ ]
31387
+ },
31214
31388
  name: {
31215
31389
  types: [
31216
31390
  "string"
@@ -31223,7 +31397,9 @@ var patterns_registry_default = {
31223
31397
  }
31224
31398
  },
31225
31399
  propertyRequired: [
31226
- "url"
31400
+ "url",
31401
+ "role",
31402
+ "category"
31227
31403
  ]
31228
31404
  },
31229
31405
  iconUrl: {
@@ -31240,18 +31416,6 @@ var patterns_registry_default = {
31240
31416
  role: {
31241
31417
  types: [
31242
31418
  "string"
31243
- ],
31244
- enumValues: [
31245
- "player",
31246
- "enemy",
31247
- "npc",
31248
- "item",
31249
- "tile",
31250
- "projectile",
31251
- "effect",
31252
- "ui",
31253
- "decoration",
31254
- "vehicle"
31255
31419
  ]
31256
31420
  },
31257
31421
  category: {
@@ -31281,6 +31445,11 @@ var patterns_registry_default = {
31281
31445
  "isometric"
31282
31446
  ]
31283
31447
  },
31448
+ variant: {
31449
+ types: [
31450
+ "string"
31451
+ ]
31452
+ },
31284
31453
  dimension: {
31285
31454
  types: [
31286
31455
  "string"
@@ -31301,6 +31470,16 @@ var patterns_registry_default = {
31301
31470
  "8:1"
31302
31471
  ]
31303
31472
  },
31473
+ atlas: {
31474
+ types: [
31475
+ "asset"
31476
+ ]
31477
+ },
31478
+ sprite: {
31479
+ types: [
31480
+ "string"
31481
+ ]
31482
+ },
31304
31483
  name: {
31305
31484
  types: [
31306
31485
  "string"
@@ -31313,7 +31492,9 @@ var patterns_registry_default = {
31313
31492
  }
31314
31493
  },
31315
31494
  propertyRequired: [
31316
- "url"
31495
+ "url",
31496
+ "role",
31497
+ "category"
31317
31498
  ]
31318
31499
  },
31319
31500
  label: {
@@ -31906,18 +32087,6 @@ var patterns_registry_default = {
31906
32087
  role: {
31907
32088
  types: [
31908
32089
  "string"
31909
- ],
31910
- enumValues: [
31911
- "player",
31912
- "enemy",
31913
- "npc",
31914
- "item",
31915
- "tile",
31916
- "projectile",
31917
- "effect",
31918
- "ui",
31919
- "decoration",
31920
- "vehicle"
31921
32090
  ]
31922
32091
  },
31923
32092
  category: {
@@ -31947,6 +32116,11 @@ var patterns_registry_default = {
31947
32116
  "isometric"
31948
32117
  ]
31949
32118
  },
32119
+ variant: {
32120
+ types: [
32121
+ "string"
32122
+ ]
32123
+ },
31950
32124
  dimension: {
31951
32125
  types: [
31952
32126
  "string"
@@ -31967,6 +32141,16 @@ var patterns_registry_default = {
31967
32141
  "8:1"
31968
32142
  ]
31969
32143
  },
32144
+ atlas: {
32145
+ types: [
32146
+ "asset"
32147
+ ]
32148
+ },
32149
+ sprite: {
32150
+ types: [
32151
+ "string"
32152
+ ]
32153
+ },
31970
32154
  name: {
31971
32155
  types: [
31972
32156
  "string"
@@ -31979,7 +32163,9 @@ var patterns_registry_default = {
31979
32163
  }
31980
32164
  },
31981
32165
  propertyRequired: [
31982
- "url"
32166
+ "url",
32167
+ "role",
32168
+ "category"
31983
32169
  ]
31984
32170
  },
31985
32171
  offAsset: {
@@ -31996,18 +32182,6 @@ var patterns_registry_default = {
31996
32182
  role: {
31997
32183
  types: [
31998
32184
  "string"
31999
- ],
32000
- enumValues: [
32001
- "player",
32002
- "enemy",
32003
- "npc",
32004
- "item",
32005
- "tile",
32006
- "projectile",
32007
- "effect",
32008
- "ui",
32009
- "decoration",
32010
- "vehicle"
32011
32185
  ]
32012
32186
  },
32013
32187
  category: {
@@ -32037,6 +32211,11 @@ var patterns_registry_default = {
32037
32211
  "isometric"
32038
32212
  ]
32039
32213
  },
32214
+ variant: {
32215
+ types: [
32216
+ "string"
32217
+ ]
32218
+ },
32040
32219
  dimension: {
32041
32220
  types: [
32042
32221
  "string"
@@ -32057,6 +32236,16 @@ var patterns_registry_default = {
32057
32236
  "8:1"
32058
32237
  ]
32059
32238
  },
32239
+ atlas: {
32240
+ types: [
32241
+ "asset"
32242
+ ]
32243
+ },
32244
+ sprite: {
32245
+ types: [
32246
+ "string"
32247
+ ]
32248
+ },
32060
32249
  name: {
32061
32250
  types: [
32062
32251
  "string"
@@ -32069,7 +32258,9 @@ var patterns_registry_default = {
32069
32258
  }
32070
32259
  },
32071
32260
  propertyRequired: [
32072
- "url"
32261
+ "url",
32262
+ "role",
32263
+ "category"
32073
32264
  ]
32074
32265
  }
32075
32266
  }
@@ -32138,18 +32329,6 @@ var patterns_registry_default = {
32138
32329
  role: {
32139
32330
  types: [
32140
32331
  "string"
32141
- ],
32142
- enumValues: [
32143
- "player",
32144
- "enemy",
32145
- "npc",
32146
- "item",
32147
- "tile",
32148
- "projectile",
32149
- "effect",
32150
- "ui",
32151
- "decoration",
32152
- "vehicle"
32153
32332
  ]
32154
32333
  },
32155
32334
  category: {
@@ -32179,6 +32358,11 @@ var patterns_registry_default = {
32179
32358
  "isometric"
32180
32359
  ]
32181
32360
  },
32361
+ variant: {
32362
+ types: [
32363
+ "string"
32364
+ ]
32365
+ },
32182
32366
  dimension: {
32183
32367
  types: [
32184
32368
  "string"
@@ -32199,6 +32383,16 @@ var patterns_registry_default = {
32199
32383
  "8:1"
32200
32384
  ]
32201
32385
  },
32386
+ atlas: {
32387
+ types: [
32388
+ "asset"
32389
+ ]
32390
+ },
32391
+ sprite: {
32392
+ types: [
32393
+ "string"
32394
+ ]
32395
+ },
32202
32396
  name: {
32203
32397
  types: [
32204
32398
  "string"
@@ -32211,7 +32405,9 @@ var patterns_registry_default = {
32211
32405
  }
32212
32406
  },
32213
32407
  required: [
32214
- "url"
32408
+ "url",
32409
+ "role",
32410
+ "category"
32215
32411
  ]
32216
32412
  },
32217
32413
  stateMachine: {
@@ -32306,18 +32502,6 @@ var patterns_registry_default = {
32306
32502
  role: {
32307
32503
  types: [
32308
32504
  "string"
32309
- ],
32310
- enumValues: [
32311
- "player",
32312
- "enemy",
32313
- "npc",
32314
- "item",
32315
- "tile",
32316
- "projectile",
32317
- "effect",
32318
- "ui",
32319
- "decoration",
32320
- "vehicle"
32321
32505
  ]
32322
32506
  },
32323
32507
  category: {
@@ -32347,6 +32531,11 @@ var patterns_registry_default = {
32347
32531
  "isometric"
32348
32532
  ]
32349
32533
  },
32534
+ variant: {
32535
+ types: [
32536
+ "string"
32537
+ ]
32538
+ },
32350
32539
  dimension: {
32351
32540
  types: [
32352
32541
  "string"
@@ -32367,6 +32556,16 @@ var patterns_registry_default = {
32367
32556
  "8:1"
32368
32557
  ]
32369
32558
  },
32559
+ atlas: {
32560
+ types: [
32561
+ "asset"
32562
+ ]
32563
+ },
32564
+ sprite: {
32565
+ types: [
32566
+ "string"
32567
+ ]
32568
+ },
32370
32569
  name: {
32371
32570
  types: [
32372
32571
  "string"
@@ -32379,7 +32578,9 @@ var patterns_registry_default = {
32379
32578
  }
32380
32579
  },
32381
32580
  propertyRequired: [
32382
- "url"
32581
+ "url",
32582
+ "role",
32583
+ "category"
32383
32584
  ]
32384
32585
  },
32385
32586
  className: {
@@ -32478,18 +32679,6 @@ var patterns_registry_default = {
32478
32679
  role: {
32479
32680
  types: [
32480
32681
  "string"
32481
- ],
32482
- enumValues: [
32483
- "player",
32484
- "enemy",
32485
- "npc",
32486
- "item",
32487
- "tile",
32488
- "projectile",
32489
- "effect",
32490
- "ui",
32491
- "decoration",
32492
- "vehicle"
32493
32682
  ]
32494
32683
  },
32495
32684
  category: {
@@ -32519,6 +32708,11 @@ var patterns_registry_default = {
32519
32708
  "isometric"
32520
32709
  ]
32521
32710
  },
32711
+ variant: {
32712
+ types: [
32713
+ "string"
32714
+ ]
32715
+ },
32522
32716
  dimension: {
32523
32717
  types: [
32524
32718
  "string"
@@ -32539,6 +32733,16 @@ var patterns_registry_default = {
32539
32733
  "8:1"
32540
32734
  ]
32541
32735
  },
32736
+ atlas: {
32737
+ types: [
32738
+ "asset"
32739
+ ]
32740
+ },
32741
+ sprite: {
32742
+ types: [
32743
+ "string"
32744
+ ]
32745
+ },
32542
32746
  name: {
32543
32747
  types: [
32544
32748
  "string"
@@ -32551,7 +32755,9 @@ var patterns_registry_default = {
32551
32755
  }
32552
32756
  },
32553
32757
  required: [
32554
- "url"
32758
+ "url",
32759
+ "role",
32760
+ "category"
32555
32761
  ]
32556
32762
  },
32557
32763
  stateMachine: {
@@ -32629,18 +32835,6 @@ var patterns_registry_default = {
32629
32835
  role: {
32630
32836
  types: [
32631
32837
  "string"
32632
- ],
32633
- enumValues: [
32634
- "player",
32635
- "enemy",
32636
- "npc",
32637
- "item",
32638
- "tile",
32639
- "projectile",
32640
- "effect",
32641
- "ui",
32642
- "decoration",
32643
- "vehicle"
32644
32838
  ]
32645
32839
  },
32646
32840
  category: {
@@ -32670,6 +32864,11 @@ var patterns_registry_default = {
32670
32864
  "isometric"
32671
32865
  ]
32672
32866
  },
32867
+ variant: {
32868
+ types: [
32869
+ "string"
32870
+ ]
32871
+ },
32673
32872
  dimension: {
32674
32873
  types: [
32675
32874
  "string"
@@ -32690,6 +32889,16 @@ var patterns_registry_default = {
32690
32889
  "8:1"
32691
32890
  ]
32692
32891
  },
32892
+ atlas: {
32893
+ types: [
32894
+ "asset"
32895
+ ]
32896
+ },
32897
+ sprite: {
32898
+ types: [
32899
+ "string"
32900
+ ]
32901
+ },
32693
32902
  name: {
32694
32903
  types: [
32695
32904
  "string"
@@ -32702,7 +32911,9 @@ var patterns_registry_default = {
32702
32911
  }
32703
32912
  },
32704
32913
  required: [
32705
- "url"
32914
+ "url",
32915
+ "role",
32916
+ "category"
32706
32917
  ]
32707
32918
  },
32708
32919
  stateMachine: {
@@ -32857,18 +33068,6 @@ var patterns_registry_default = {
32857
33068
  role: {
32858
33069
  types: [
32859
33070
  "string"
32860
- ],
32861
- enumValues: [
32862
- "player",
32863
- "enemy",
32864
- "npc",
32865
- "item",
32866
- "tile",
32867
- "projectile",
32868
- "effect",
32869
- "ui",
32870
- "decoration",
32871
- "vehicle"
32872
33071
  ]
32873
33072
  },
32874
33073
  category: {
@@ -32898,6 +33097,11 @@ var patterns_registry_default = {
32898
33097
  "isometric"
32899
33098
  ]
32900
33099
  },
33100
+ variant: {
33101
+ types: [
33102
+ "string"
33103
+ ]
33104
+ },
32901
33105
  dimension: {
32902
33106
  types: [
32903
33107
  "string"
@@ -32918,6 +33122,16 @@ var patterns_registry_default = {
32918
33122
  "8:1"
32919
33123
  ]
32920
33124
  },
33125
+ atlas: {
33126
+ types: [
33127
+ "asset"
33128
+ ]
33129
+ },
33130
+ sprite: {
33131
+ types: [
33132
+ "string"
33133
+ ]
33134
+ },
32921
33135
  name: {
32922
33136
  types: [
32923
33137
  "string"
@@ -32930,7 +33144,9 @@ var patterns_registry_default = {
32930
33144
  }
32931
33145
  },
32932
33146
  required: [
32933
- "url"
33147
+ "url",
33148
+ "role",
33149
+ "category"
32934
33150
  ]
32935
33151
  },
32936
33152
  stateMachine: {
@@ -33177,18 +33393,6 @@ var patterns_registry_default = {
33177
33393
  role: {
33178
33394
  types: [
33179
33395
  "string"
33180
- ],
33181
- enumValues: [
33182
- "player",
33183
- "enemy",
33184
- "npc",
33185
- "item",
33186
- "tile",
33187
- "projectile",
33188
- "effect",
33189
- "ui",
33190
- "decoration",
33191
- "vehicle"
33192
33396
  ]
33193
33397
  },
33194
33398
  category: {
@@ -33218,6 +33422,11 @@ var patterns_registry_default = {
33218
33422
  "isometric"
33219
33423
  ]
33220
33424
  },
33425
+ variant: {
33426
+ types: [
33427
+ "string"
33428
+ ]
33429
+ },
33221
33430
  dimension: {
33222
33431
  types: [
33223
33432
  "string"
@@ -33238,6 +33447,16 @@ var patterns_registry_default = {
33238
33447
  "8:1"
33239
33448
  ]
33240
33449
  },
33450
+ atlas: {
33451
+ types: [
33452
+ "asset"
33453
+ ]
33454
+ },
33455
+ sprite: {
33456
+ types: [
33457
+ "string"
33458
+ ]
33459
+ },
33241
33460
  name: {
33242
33461
  types: [
33243
33462
  "string"
@@ -33250,7 +33469,9 @@ var patterns_registry_default = {
33250
33469
  }
33251
33470
  },
33252
33471
  required: [
33253
- "url"
33472
+ "url",
33473
+ "role",
33474
+ "category"
33254
33475
  ]
33255
33476
  },
33256
33477
  stateMachine: {
@@ -33375,18 +33596,6 @@ var patterns_registry_default = {
33375
33596
  role: {
33376
33597
  types: [
33377
33598
  "string"
33378
- ],
33379
- enumValues: [
33380
- "player",
33381
- "enemy",
33382
- "npc",
33383
- "item",
33384
- "tile",
33385
- "projectile",
33386
- "effect",
33387
- "ui",
33388
- "decoration",
33389
- "vehicle"
33390
33599
  ]
33391
33600
  },
33392
33601
  category: {
@@ -33416,6 +33625,11 @@ var patterns_registry_default = {
33416
33625
  "isometric"
33417
33626
  ]
33418
33627
  },
33628
+ variant: {
33629
+ types: [
33630
+ "string"
33631
+ ]
33632
+ },
33419
33633
  dimension: {
33420
33634
  types: [
33421
33635
  "string"
@@ -33436,6 +33650,16 @@ var patterns_registry_default = {
33436
33650
  "8:1"
33437
33651
  ]
33438
33652
  },
33653
+ atlas: {
33654
+ types: [
33655
+ "asset"
33656
+ ]
33657
+ },
33658
+ sprite: {
33659
+ types: [
33660
+ "string"
33661
+ ]
33662
+ },
33439
33663
  name: {
33440
33664
  types: [
33441
33665
  "string"
@@ -33448,7 +33672,9 @@ var patterns_registry_default = {
33448
33672
  }
33449
33673
  },
33450
33674
  required: [
33451
- "url"
33675
+ "url",
33676
+ "role",
33677
+ "category"
33452
33678
  ]
33453
33679
  },
33454
33680
  stateMachine: {
@@ -33528,18 +33754,6 @@ var patterns_registry_default = {
33528
33754
  role: {
33529
33755
  types: [
33530
33756
  "string"
33531
- ],
33532
- enumValues: [
33533
- "player",
33534
- "enemy",
33535
- "npc",
33536
- "item",
33537
- "tile",
33538
- "projectile",
33539
- "effect",
33540
- "ui",
33541
- "decoration",
33542
- "vehicle"
33543
33757
  ]
33544
33758
  },
33545
33759
  category: {
@@ -33569,6 +33783,11 @@ var patterns_registry_default = {
33569
33783
  "isometric"
33570
33784
  ]
33571
33785
  },
33786
+ variant: {
33787
+ types: [
33788
+ "string"
33789
+ ]
33790
+ },
33572
33791
  dimension: {
33573
33792
  types: [
33574
33793
  "string"
@@ -33589,6 +33808,16 @@ var patterns_registry_default = {
33589
33808
  "8:1"
33590
33809
  ]
33591
33810
  },
33811
+ atlas: {
33812
+ types: [
33813
+ "asset"
33814
+ ]
33815
+ },
33816
+ sprite: {
33817
+ types: [
33818
+ "string"
33819
+ ]
33820
+ },
33592
33821
  name: {
33593
33822
  types: [
33594
33823
  "string"
@@ -33601,7 +33830,9 @@ var patterns_registry_default = {
33601
33830
  }
33602
33831
  },
33603
33832
  required: [
33604
- "url"
33833
+ "url",
33834
+ "role",
33835
+ "category"
33605
33836
  ]
33606
33837
  },
33607
33838
  stateMachine: {
@@ -34391,7 +34622,8 @@ var patterns_registry_default = {
34391
34622
  category: "component",
34392
34623
  tier: "atoms",
34393
34624
  family: "core",
34394
- description: "Aside Atom Component Semantic wrapper for the native `<aside>` landmark. Owns raw HTML so molecules (SidePanel, navigation rails, callouts) can compose the semantic-aside primitive without falling back to a raw element.",
34625
+ description: "Aside \u2014 a secondary side panel that hosts navigation links or supplementary content alongside a main content area.",
34626
+ capabilities: "settings navigation sidebar, preferences menu panel, account settings nav, secondary panel, side navigation rail",
34395
34627
  suggestedFor: [
34396
34628
  "aside"
34397
34629
  ],
@@ -34648,7 +34880,8 @@ var patterns_registry_default = {
34648
34880
  category: "display",
34649
34881
  tier: "molecules",
34650
34882
  family: "core",
34651
- description: "TableView component",
34883
+ description: "TableView \u2014 sortable, selectable data table rendering rows over configurable columns, with inline row actions and grouping.",
34884
+ capabilities: "admin console table, records list, CRUD data table, user list, manage-users grid, sortable columns, row selection with bulk actions, grouped list view",
34652
34885
  suggestedFor: [
34653
34886
  "table",
34654
34887
  "view",
@@ -36328,18 +36561,6 @@ var patterns_registry_default = {
36328
36561
  role: {
36329
36562
  types: [
36330
36563
  "string"
36331
- ],
36332
- enumValues: [
36333
- "player",
36334
- "enemy",
36335
- "npc",
36336
- "item",
36337
- "tile",
36338
- "projectile",
36339
- "effect",
36340
- "ui",
36341
- "decoration",
36342
- "vehicle"
36343
36564
  ]
36344
36565
  },
36345
36566
  category: {
@@ -36369,6 +36590,11 @@ var patterns_registry_default = {
36369
36590
  "isometric"
36370
36591
  ]
36371
36592
  },
36593
+ variant: {
36594
+ types: [
36595
+ "string"
36596
+ ]
36597
+ },
36372
36598
  dimension: {
36373
36599
  types: [
36374
36600
  "string"
@@ -36389,6 +36615,16 @@ var patterns_registry_default = {
36389
36615
  "8:1"
36390
36616
  ]
36391
36617
  },
36618
+ atlas: {
36619
+ types: [
36620
+ "asset"
36621
+ ]
36622
+ },
36623
+ sprite: {
36624
+ types: [
36625
+ "string"
36626
+ ]
36627
+ },
36392
36628
  name: {
36393
36629
  types: [
36394
36630
  "string"
@@ -36401,7 +36637,9 @@ var patterns_registry_default = {
36401
36637
  }
36402
36638
  },
36403
36639
  propertyRequired: [
36404
- "url"
36640
+ "url",
36641
+ "role",
36642
+ "category"
36405
36643
  ]
36406
36644
  },
36407
36645
  tileClickEvent: {
@@ -36641,18 +36879,6 @@ var patterns_registry_default = {
36641
36879
  role: {
36642
36880
  types: [
36643
36881
  "string"
36644
- ],
36645
- enumValues: [
36646
- "player",
36647
- "enemy",
36648
- "npc",
36649
- "item",
36650
- "tile",
36651
- "projectile",
36652
- "effect",
36653
- "ui",
36654
- "decoration",
36655
- "vehicle"
36656
36882
  ]
36657
36883
  },
36658
36884
  category: {
@@ -36682,6 +36908,11 @@ var patterns_registry_default = {
36682
36908
  "isometric"
36683
36909
  ]
36684
36910
  },
36911
+ variant: {
36912
+ types: [
36913
+ "string"
36914
+ ]
36915
+ },
36685
36916
  dimension: {
36686
36917
  types: [
36687
36918
  "string"
@@ -36702,6 +36933,16 @@ var patterns_registry_default = {
36702
36933
  "8:1"
36703
36934
  ]
36704
36935
  },
36936
+ atlas: {
36937
+ types: [
36938
+ "asset"
36939
+ ]
36940
+ },
36941
+ sprite: {
36942
+ types: [
36943
+ "string"
36944
+ ]
36945
+ },
36705
36946
  name: {
36706
36947
  types: [
36707
36948
  "string"
@@ -36714,7 +36955,9 @@ var patterns_registry_default = {
36714
36955
  }
36715
36956
  },
36716
36957
  required: [
36717
- "url"
36958
+ "url",
36959
+ "role",
36960
+ "category"
36718
36961
  ]
36719
36962
  },
36720
36963
  variant: {
@@ -36864,18 +37107,6 @@ var patterns_registry_default = {
36864
37107
  role: {
36865
37108
  types: [
36866
37109
  "string"
36867
- ],
36868
- enumValues: [
36869
- "player",
36870
- "enemy",
36871
- "npc",
36872
- "item",
36873
- "tile",
36874
- "projectile",
36875
- "effect",
36876
- "ui",
36877
- "decoration",
36878
- "vehicle"
36879
37110
  ]
36880
37111
  },
36881
37112
  category: {
@@ -36905,6 +37136,11 @@ var patterns_registry_default = {
36905
37136
  "isometric"
36906
37137
  ]
36907
37138
  },
37139
+ variant: {
37140
+ types: [
37141
+ "string"
37142
+ ]
37143
+ },
36908
37144
  dimension: {
36909
37145
  types: [
36910
37146
  "string"
@@ -36925,6 +37161,16 @@ var patterns_registry_default = {
36925
37161
  "8:1"
36926
37162
  ]
36927
37163
  },
37164
+ atlas: {
37165
+ types: [
37166
+ "asset"
37167
+ ]
37168
+ },
37169
+ sprite: {
37170
+ types: [
37171
+ "string"
37172
+ ]
37173
+ },
36928
37174
  name: {
36929
37175
  types: [
36930
37176
  "string"
@@ -36937,7 +37183,9 @@ var patterns_registry_default = {
36937
37183
  }
36938
37184
  },
36939
37185
  required: [
36940
- "url"
37186
+ "url",
37187
+ "role",
37188
+ "category"
36941
37189
  ]
36942
37190
  }
36943
37191
  },
@@ -36994,18 +37242,6 @@ var patterns_registry_default = {
36994
37242
  role: {
36995
37243
  types: [
36996
37244
  "string"
36997
- ],
36998
- enumValues: [
36999
- "player",
37000
- "enemy",
37001
- "npc",
37002
- "item",
37003
- "tile",
37004
- "projectile",
37005
- "effect",
37006
- "ui",
37007
- "decoration",
37008
- "vehicle"
37009
37245
  ]
37010
37246
  },
37011
37247
  category: {
@@ -37035,6 +37271,11 @@ var patterns_registry_default = {
37035
37271
  "isometric"
37036
37272
  ]
37037
37273
  },
37274
+ variant: {
37275
+ types: [
37276
+ "string"
37277
+ ]
37278
+ },
37038
37279
  dimension: {
37039
37280
  types: [
37040
37281
  "string"
@@ -37055,6 +37296,16 @@ var patterns_registry_default = {
37055
37296
  "8:1"
37056
37297
  ]
37057
37298
  },
37299
+ atlas: {
37300
+ types: [
37301
+ "asset"
37302
+ ]
37303
+ },
37304
+ sprite: {
37305
+ types: [
37306
+ "string"
37307
+ ]
37308
+ },
37058
37309
  name: {
37059
37310
  types: [
37060
37311
  "string"
@@ -37067,7 +37318,9 @@ var patterns_registry_default = {
37067
37318
  }
37068
37319
  },
37069
37320
  propertyRequired: [
37070
- "url"
37321
+ "url",
37322
+ "role",
37323
+ "category"
37071
37324
  ]
37072
37325
  },
37073
37326
  icon: {
@@ -39751,7 +40004,8 @@ var patterns_registry_default = {
39751
40004
  category: "display",
39752
40005
  tier: "atoms",
39753
40006
  family: "marketing",
39754
- description: "MarketingStatCard component",
40007
+ description: "MarketingStatCard \u2014 a single number-highlight card pairing a large value with a label and trend delta.",
40008
+ capabilities: "KPI card, metric tile, dashboard stat card, number card, big-number widget, stat highlight, key metric callout",
39755
40009
  suggestedFor: [
39756
40010
  "marketing",
39757
40011
  "stat",
@@ -40826,18 +41080,6 @@ var patterns_registry_default = {
40826
41080
  role: {
40827
41081
  types: [
40828
41082
  "string"
40829
- ],
40830
- enumValues: [
40831
- "player",
40832
- "enemy",
40833
- "npc",
40834
- "item",
40835
- "tile",
40836
- "projectile",
40837
- "effect",
40838
- "ui",
40839
- "decoration",
40840
- "vehicle"
40841
41083
  ]
40842
41084
  },
40843
41085
  category: {
@@ -40867,6 +41109,11 @@ var patterns_registry_default = {
40867
41109
  "isometric"
40868
41110
  ]
40869
41111
  },
41112
+ variant: {
41113
+ types: [
41114
+ "string"
41115
+ ]
41116
+ },
40870
41117
  dimension: {
40871
41118
  types: [
40872
41119
  "string"
@@ -40887,6 +41134,16 @@ var patterns_registry_default = {
40887
41134
  "8:1"
40888
41135
  ]
40889
41136
  },
41137
+ atlas: {
41138
+ types: [
41139
+ "asset"
41140
+ ]
41141
+ },
41142
+ sprite: {
41143
+ types: [
41144
+ "string"
41145
+ ]
41146
+ },
40890
41147
  name: {
40891
41148
  types: [
40892
41149
  "string"
@@ -40899,7 +41156,9 @@ var patterns_registry_default = {
40899
41156
  }
40900
41157
  },
40901
41158
  propertyRequired: [
40902
- "url"
41159
+ "url",
41160
+ "role",
41161
+ "category"
40903
41162
  ]
40904
41163
  },
40905
41164
  anchor: {
@@ -41313,18 +41572,6 @@ var patterns_registry_default = {
41313
41572
  role: {
41314
41573
  types: [
41315
41574
  "string"
41316
- ],
41317
- enumValues: [
41318
- "player",
41319
- "enemy",
41320
- "npc",
41321
- "item",
41322
- "tile",
41323
- "projectile",
41324
- "effect",
41325
- "ui",
41326
- "decoration",
41327
- "vehicle"
41328
41575
  ]
41329
41576
  },
41330
41577
  category: {
@@ -41354,6 +41601,11 @@ var patterns_registry_default = {
41354
41601
  "isometric"
41355
41602
  ]
41356
41603
  },
41604
+ variant: {
41605
+ types: [
41606
+ "string"
41607
+ ]
41608
+ },
41357
41609
  dimension: {
41358
41610
  types: [
41359
41611
  "string"
@@ -41374,6 +41626,16 @@ var patterns_registry_default = {
41374
41626
  "8:1"
41375
41627
  ]
41376
41628
  },
41629
+ atlas: {
41630
+ types: [
41631
+ "asset"
41632
+ ]
41633
+ },
41634
+ sprite: {
41635
+ types: [
41636
+ "string"
41637
+ ]
41638
+ },
41377
41639
  name: {
41378
41640
  types: [
41379
41641
  "string"
@@ -41386,7 +41648,9 @@ var patterns_registry_default = {
41386
41648
  }
41387
41649
  },
41388
41650
  required: [
41389
- "url"
41651
+ "url",
41652
+ "role",
41653
+ "category"
41390
41654
  ]
41391
41655
  },
41392
41656
  anchor: {
@@ -41665,18 +41929,6 @@ var patterns_registry_default = {
41665
41929
  role: {
41666
41930
  types: [
41667
41931
  "string"
41668
- ],
41669
- enumValues: [
41670
- "player",
41671
- "enemy",
41672
- "npc",
41673
- "item",
41674
- "tile",
41675
- "projectile",
41676
- "effect",
41677
- "ui",
41678
- "decoration",
41679
- "vehicle"
41680
41932
  ]
41681
41933
  },
41682
41934
  category: {
@@ -41706,6 +41958,11 @@ var patterns_registry_default = {
41706
41958
  "isometric"
41707
41959
  ]
41708
41960
  },
41961
+ variant: {
41962
+ types: [
41963
+ "string"
41964
+ ]
41965
+ },
41709
41966
  dimension: {
41710
41967
  types: [
41711
41968
  "string"
@@ -41726,6 +41983,16 @@ var patterns_registry_default = {
41726
41983
  "8:1"
41727
41984
  ]
41728
41985
  },
41986
+ atlas: {
41987
+ types: [
41988
+ "asset"
41989
+ ]
41990
+ },
41991
+ sprite: {
41992
+ types: [
41993
+ "string"
41994
+ ]
41995
+ },
41729
41996
  name: {
41730
41997
  types: [
41731
41998
  "string"
@@ -41738,7 +42005,9 @@ var patterns_registry_default = {
41738
42005
  }
41739
42006
  },
41740
42007
  propertyRequired: [
41741
- "url"
42008
+ "url",
42009
+ "role",
42010
+ "category"
41742
42011
  ]
41743
42012
  },
41744
42013
  backgroundColor: {
@@ -41913,6 +42182,74 @@ var patterns_registry_default = {
41913
42182
  }
41914
42183
  },
41915
42184
  drawHost: true
42185
+ },
42186
+ presence: {
42187
+ type: "presence",
42188
+ category: "component",
42189
+ tier: "atoms",
42190
+ family: "core",
42191
+ description: "Presence component",
42192
+ suggestedFor: [
42193
+ "presence"
42194
+ ],
42195
+ typicalSize: "small",
42196
+ propsSchema: {
42197
+ show: {
42198
+ types: [
42199
+ "boolean"
42200
+ ],
42201
+ description: "When false, the exit animation runs, then children unmount.",
42202
+ required: true
42203
+ },
42204
+ className: {
42205
+ types: [
42206
+ "string"
42207
+ ],
42208
+ description: "className prop"
42209
+ },
42210
+ children: {
42211
+ types: [
42212
+ "node"
42213
+ ],
42214
+ description: "children prop",
42215
+ required: true
42216
+ }
42217
+ }
42218
+ },
42219
+ "page-transition": {
42220
+ type: "page-transition",
42221
+ category: "component",
42222
+ tier: "molecules",
42223
+ family: "core",
42224
+ description: "PageTransition component",
42225
+ suggestedFor: [
42226
+ "page",
42227
+ "transition",
42228
+ "page transition"
42229
+ ],
42230
+ typicalSize: "medium",
42231
+ propsSchema: {
42232
+ locationKey: {
42233
+ types: [
42234
+ "string"
42235
+ ],
42236
+ description: "Value that changes on navigation (e.g. `location.pathname`).",
42237
+ required: true
42238
+ },
42239
+ children: {
42240
+ types: [
42241
+ "node"
42242
+ ],
42243
+ description: "children prop",
42244
+ required: true
42245
+ },
42246
+ className: {
42247
+ types: [
42248
+ "string"
42249
+ ],
42250
+ description: "className prop"
42251
+ }
42252
+ }
41916
42253
  }
41917
42254
  },
41918
42255
  categories: [
@@ -42540,7 +42877,7 @@ var integrators_registry_default = {
42540
42877
  // src/patterns/component-mapping.json
42541
42878
  var component_mapping_default = {
42542
42879
  version: "1.0.0",
42543
- exportedAt: "2026-07-16T19:33:37.203Z",
42880
+ exportedAt: "2026-07-21T09:54:57.379Z",
42544
42881
  mappings: {
42545
42882
  "page-header": {
42546
42883
  component: "PageHeader",
@@ -42578,8 +42915,8 @@ var component_mapping_default = {
42578
42915
  category: "form"
42579
42916
  },
42580
42917
  "form-actions": {
42581
- component: "FormActions",
42582
- importPath: "@/components/core/molecules/FormSection",
42918
+ component: "ButtonGroup",
42919
+ importPath: "@/components/core/molecules/ButtonGroup",
42583
42920
  category: "form"
42584
42921
  },
42585
42922
  "filter-group": {
@@ -43888,6 +44225,16 @@ var component_mapping_default = {
43888
44225
  component: "Canvas",
43889
44226
  importPath: "@/components/game/molecules/Canvas",
43890
44227
  category: "game"
44228
+ },
44229
+ presence: {
44230
+ component: "Presence",
44231
+ importPath: "@/components/core/atoms/Presence",
44232
+ category: "component"
44233
+ },
44234
+ "page-transition": {
44235
+ component: "PageTransition",
44236
+ importPath: "@/components/core/molecules/PageTransition",
44237
+ category: "component"
43891
44238
  }
43892
44239
  }
43893
44240
  };
@@ -43895,7 +44242,7 @@ var component_mapping_default = {
43895
44242
  // src/patterns/event-contracts.json
43896
44243
  var event_contracts_default = {
43897
44244
  version: "1.0.0",
43898
- exportedAt: "2026-07-16T19:33:37.203Z",
44245
+ exportedAt: "2026-07-21T09:54:57.379Z",
43899
44246
  contracts: {
43900
44247
  form: {
43901
44248
  emits: [
@@ -43988,7 +44335,14 @@ var event_contracts_default = {
43988
44335
  "form-actions": {
43989
44336
  emits: [
43990
44337
  {
43991
- event: "TOGGLE_COLLAPSE",
44338
+ event: "DISPATCH",
44339
+ trigger: "action",
44340
+ payload: {
44341
+ type: "object"
44342
+ }
44343
+ },
44344
+ {
44345
+ event: "NAVIGATE",
43992
44346
  trigger: "action",
43993
44347
  payload: {
43994
44348
  type: "object"
@@ -43996,7 +44350,7 @@ var event_contracts_default = {
43996
44350
  }
43997
44351
  ],
43998
44352
  requires: [],
43999
- entityAware: false,
44353
+ entityAware: true,
44000
44354
  configDriven: true
44001
44355
  },
44002
44356
  "entity-table": {
@@ -45188,11 +45542,13 @@ var PATTERN_TYPES = [
45188
45542
  "orbital-visualization",
45189
45543
  "overlay",
45190
45544
  "page-header",
45545
+ "page-transition",
45191
45546
  "pagination",
45192
45547
  "pattern-tile",
45193
45548
  "physics-canvas",
45194
45549
  "popover",
45195
45550
  "positioned-canvas",
45551
+ "presence",
45196
45552
  "pricing-card",
45197
45553
  "pricing-grid",
45198
45554
  "pricing-organism",
@@ -45469,17 +45825,6 @@ function getOrbAllowedPatternsFiltered(patternNames) {
45469
45825
  return lines.join("\n");
45470
45826
  }
45471
45827
 
45472
- // src/types/json.ts
45473
- function isJsonPrimitive(value) {
45474
- return value === null || typeof value === "string" || typeof value === "number" || typeof value === "boolean";
45475
- }
45476
- function isJsonObject(value) {
45477
- return value !== null && typeof value === "object" && !Array.isArray(value);
45478
- }
45479
- function isJsonArray(value) {
45480
- return Array.isArray(value);
45481
- }
45482
-
45483
45828
  // src/patterns/helpers/render-ui-pattern-types.ts
45484
45829
  function collectPatternTypeTokens(node, out) {
45485
45830
  if (!isJsonObject(node)) return;