@almadar/core 10.30.0 → 10.32.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/{builders-C458pIMW.d.ts → builders-CnPRr1cq.d.ts} +688 -688
- package/dist/builders.d.ts +4 -4
- package/dist/builders.js +10 -6
- package/dist/builders.js.map +1 -1
- package/dist/{pattern-types-CLcOXOmW.d.ts → effect-8eas3tpU.d.ts} +1559 -39
- package/dist/{expression-CB9R3KWk.d.ts → expression-BlFrxmNB.d.ts} +1 -1
- package/dist/factory/index.d.ts +6 -6
- package/dist/factory-runtime/index.d.ts +4 -4
- package/dist/factory-runtime/index.js +10 -6
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/index.d.ts +30 -12
- package/dist/index.js +1490 -1029
- package/dist/index.js.map +1 -1
- package/dist/patterns/component-mapping.json +13 -3
- package/dist/patterns/event-contracts.json +23 -3
- package/dist/patterns/index.d.ts +2189 -1056
- package/dist/patterns/index.js +992 -616
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +1102 -777
- package/dist/patterns/registry.json +1102 -777
- package/dist/state-machine/index.d.ts +13 -2
- package/dist/state-machine/index.js +48 -23
- package/dist/state-machine/index.js.map +1 -1
- package/dist/{trait-CwWjkU-1.d.ts → trait-CMGaEccZ.d.ts} +53 -1503
- package/dist/types/index.d.ts +11 -11
- package/dist/types/index.js +21 -17
- package/dist/types/index.js.map +1 -1
- package/dist/{types-yW22YNNt.d.ts → types-B6IYPXZM.d.ts} +2 -3
- package/package.json +1 -1
- package/dist/json-DOTchoRS.d.ts +0 -57
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:
|
|
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:
|
|
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)
|
|
954
|
-
//
|
|
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(
|
|
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-
|
|
1991
|
+
exportedAt: "2026-07-23T14:32:35.644Z",
|
|
1979
1992
|
patterns: {
|
|
1980
1993
|
"entity-table": {
|
|
1981
1994
|
type: "entity-table",
|
|
@@ -5474,7 +5487,8 @@ var patterns_registry_default = {
|
|
|
5474
5487
|
types: [
|
|
5475
5488
|
"string"
|
|
5476
5489
|
],
|
|
5477
|
-
description: "
|
|
5490
|
+
description: "Declarative search event \u2014 emits UI:{event} via eventBus on query submit (alongside canonical UI:SEARCH)",
|
|
5491
|
+
kind: "event"
|
|
5478
5492
|
},
|
|
5479
5493
|
entity: {
|
|
5480
5494
|
types: [
|
|
@@ -5495,7 +5509,8 @@ var patterns_registry_default = {
|
|
|
5495
5509
|
category: "filter",
|
|
5496
5510
|
tier: "molecules",
|
|
5497
5511
|
family: "core",
|
|
5498
|
-
description: "
|
|
5512
|
+
description: "FilterGroup \u2014 a panel of filter controls that narrows a collection by field values.",
|
|
5513
|
+
capabilities: "search refinement panel, facet filters, admin list filters, records filter sidebar, filter chips panel",
|
|
5499
5514
|
suggestedFor: [
|
|
5500
5515
|
"list pages with filterable data"
|
|
5501
5516
|
],
|
|
@@ -5632,6 +5647,20 @@ var patterns_registry_default = {
|
|
|
5632
5647
|
"inline-column-header"
|
|
5633
5648
|
],
|
|
5634
5649
|
default: "toolbar"
|
|
5650
|
+
},
|
|
5651
|
+
event: {
|
|
5652
|
+
types: [
|
|
5653
|
+
"string"
|
|
5654
|
+
],
|
|
5655
|
+
description: "Declarative filter event \u2014 emits UI:{event} via eventBus on filter change (alongside canonical UI:FILTER)",
|
|
5656
|
+
kind: "event"
|
|
5657
|
+
},
|
|
5658
|
+
clearEvent: {
|
|
5659
|
+
types: [
|
|
5660
|
+
"string"
|
|
5661
|
+
],
|
|
5662
|
+
description: "Declarative clear event \u2014 emits UI:{clearEvent} via eventBus on clear-all (alongside canonical UI:CLEAR_FILTERS)",
|
|
5663
|
+
kind: "event"
|
|
5635
5664
|
}
|
|
5636
5665
|
}
|
|
5637
5666
|
},
|
|
@@ -5696,18 +5725,6 @@ var patterns_registry_default = {
|
|
|
5696
5725
|
role: {
|
|
5697
5726
|
types: [
|
|
5698
5727
|
"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
5728
|
]
|
|
5712
5729
|
},
|
|
5713
5730
|
category: {
|
|
@@ -5737,6 +5754,11 @@ var patterns_registry_default = {
|
|
|
5737
5754
|
"isometric"
|
|
5738
5755
|
]
|
|
5739
5756
|
},
|
|
5757
|
+
variant: {
|
|
5758
|
+
types: [
|
|
5759
|
+
"string"
|
|
5760
|
+
]
|
|
5761
|
+
},
|
|
5740
5762
|
dimension: {
|
|
5741
5763
|
types: [
|
|
5742
5764
|
"string"
|
|
@@ -5757,6 +5779,16 @@ var patterns_registry_default = {
|
|
|
5757
5779
|
"8:1"
|
|
5758
5780
|
]
|
|
5759
5781
|
},
|
|
5782
|
+
atlas: {
|
|
5783
|
+
types: [
|
|
5784
|
+
"asset"
|
|
5785
|
+
]
|
|
5786
|
+
},
|
|
5787
|
+
sprite: {
|
|
5788
|
+
types: [
|
|
5789
|
+
"string"
|
|
5790
|
+
]
|
|
5791
|
+
},
|
|
5760
5792
|
name: {
|
|
5761
5793
|
types: [
|
|
5762
5794
|
"string"
|
|
@@ -5769,7 +5801,9 @@ var patterns_registry_default = {
|
|
|
5769
5801
|
}
|
|
5770
5802
|
},
|
|
5771
5803
|
required: [
|
|
5772
|
-
"url"
|
|
5804
|
+
"url",
|
|
5805
|
+
"role",
|
|
5806
|
+
"category"
|
|
5773
5807
|
]
|
|
5774
5808
|
},
|
|
5775
5809
|
badge: {
|
|
@@ -5848,18 +5882,6 @@ var patterns_registry_default = {
|
|
|
5848
5882
|
role: {
|
|
5849
5883
|
types: [
|
|
5850
5884
|
"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
5885
|
]
|
|
5864
5886
|
},
|
|
5865
5887
|
category: {
|
|
@@ -5889,6 +5911,11 @@ var patterns_registry_default = {
|
|
|
5889
5911
|
"isometric"
|
|
5890
5912
|
]
|
|
5891
5913
|
},
|
|
5914
|
+
variant: {
|
|
5915
|
+
types: [
|
|
5916
|
+
"string"
|
|
5917
|
+
]
|
|
5918
|
+
},
|
|
5892
5919
|
dimension: {
|
|
5893
5920
|
types: [
|
|
5894
5921
|
"string"
|
|
@@ -5909,6 +5936,16 @@ var patterns_registry_default = {
|
|
|
5909
5936
|
"8:1"
|
|
5910
5937
|
]
|
|
5911
5938
|
},
|
|
5939
|
+
atlas: {
|
|
5940
|
+
types: [
|
|
5941
|
+
"asset"
|
|
5942
|
+
]
|
|
5943
|
+
},
|
|
5944
|
+
sprite: {
|
|
5945
|
+
types: [
|
|
5946
|
+
"string"
|
|
5947
|
+
]
|
|
5948
|
+
},
|
|
5912
5949
|
name: {
|
|
5913
5950
|
types: [
|
|
5914
5951
|
"string"
|
|
@@ -5921,7 +5958,9 @@ var patterns_registry_default = {
|
|
|
5921
5958
|
}
|
|
5922
5959
|
},
|
|
5923
5960
|
required: [
|
|
5924
|
-
"url"
|
|
5961
|
+
"url",
|
|
5962
|
+
"role",
|
|
5963
|
+
"category"
|
|
5925
5964
|
]
|
|
5926
5965
|
},
|
|
5927
5966
|
badge: {
|
|
@@ -7359,6 +7398,13 @@ var patterns_registry_default = {
|
|
|
7359
7398
|
"string"
|
|
7360
7399
|
],
|
|
7361
7400
|
description: "className prop"
|
|
7401
|
+
},
|
|
7402
|
+
fullPage: {
|
|
7403
|
+
types: [
|
|
7404
|
+
"boolean"
|
|
7405
|
+
],
|
|
7406
|
+
description: "Center over the whole viewport (fix: inset-0 overlay) instead of inline.",
|
|
7407
|
+
default: false
|
|
7362
7408
|
}
|
|
7363
7409
|
}
|
|
7364
7410
|
},
|
|
@@ -7550,6 +7596,14 @@ var patterns_registry_default = {
|
|
|
7550
7596
|
kind: "callback",
|
|
7551
7597
|
callbackArgs: []
|
|
7552
7598
|
},
|
|
7599
|
+
onExited: {
|
|
7600
|
+
types: [
|
|
7601
|
+
"function"
|
|
7602
|
+
],
|
|
7603
|
+
description: "Fires after the exit animation completes (the modal is about to unmount).",
|
|
7604
|
+
kind: "callback",
|
|
7605
|
+
callbackArgs: []
|
|
7606
|
+
},
|
|
7553
7607
|
title: {
|
|
7554
7608
|
types: [
|
|
7555
7609
|
"string"
|
|
@@ -7670,9 +7724,9 @@ var patterns_registry_default = {
|
|
|
7670
7724
|
},
|
|
7671
7725
|
title: {
|
|
7672
7726
|
types: [
|
|
7673
|
-
"
|
|
7727
|
+
"node"
|
|
7674
7728
|
],
|
|
7675
|
-
description: "Drawer title"
|
|
7729
|
+
description: "Drawer title (text or any node, e.g. a brand logo + name)."
|
|
7676
7730
|
},
|
|
7677
7731
|
children: {
|
|
7678
7732
|
types: [
|
|
@@ -8859,211 +8913,6 @@ var patterns_registry_default = {
|
|
|
8859
8913
|
role: {
|
|
8860
8914
|
types: [
|
|
8861
8915
|
"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
|
-
]
|
|
8875
|
-
},
|
|
8876
|
-
category: {
|
|
8877
|
-
types: [
|
|
8878
|
-
"string"
|
|
8879
|
-
]
|
|
8880
|
-
},
|
|
8881
|
-
animations: {
|
|
8882
|
-
types: [
|
|
8883
|
-
"array"
|
|
8884
|
-
],
|
|
8885
|
-
items: {
|
|
8886
|
-
types: [
|
|
8887
|
-
"string"
|
|
8888
|
-
]
|
|
8889
|
-
}
|
|
8890
|
-
},
|
|
8891
|
-
style: {
|
|
8892
|
-
types: [
|
|
8893
|
-
"string"
|
|
8894
|
-
],
|
|
8895
|
-
enumValues: [
|
|
8896
|
-
"pixel",
|
|
8897
|
-
"vector",
|
|
8898
|
-
"hd",
|
|
8899
|
-
"1-bit",
|
|
8900
|
-
"isometric"
|
|
8901
|
-
]
|
|
8902
|
-
},
|
|
8903
|
-
dimension: {
|
|
8904
|
-
types: [
|
|
8905
|
-
"string"
|
|
8906
|
-
],
|
|
8907
|
-
enumValues: [
|
|
8908
|
-
"2d",
|
|
8909
|
-
"3d"
|
|
8910
|
-
]
|
|
8911
|
-
},
|
|
8912
|
-
aspect: {
|
|
8913
|
-
types: [
|
|
8914
|
-
"string"
|
|
8915
|
-
],
|
|
8916
|
-
enumValues: [
|
|
8917
|
-
"1:1",
|
|
8918
|
-
"16:9",
|
|
8919
|
-
"5:7",
|
|
8920
|
-
"8:1"
|
|
8921
|
-
]
|
|
8922
|
-
},
|
|
8923
|
-
name: {
|
|
8924
|
-
types: [
|
|
8925
|
-
"string"
|
|
8926
|
-
]
|
|
8927
|
-
},
|
|
8928
|
-
thumbnailUrl: {
|
|
8929
|
-
types: [
|
|
8930
|
-
"string"
|
|
8931
|
-
]
|
|
8932
|
-
}
|
|
8933
|
-
},
|
|
8934
|
-
propertyRequired: [
|
|
8935
|
-
"url"
|
|
8936
|
-
]
|
|
8937
|
-
},
|
|
8938
|
-
action: {
|
|
8939
|
-
types: [
|
|
8940
|
-
"string"
|
|
8941
|
-
],
|
|
8942
|
-
description: "Declarative event name \u2014 emits UI:{action} via eventBus on click",
|
|
8943
|
-
kind: "event"
|
|
8944
|
-
},
|
|
8945
|
-
actionPayload: {
|
|
8946
|
-
types: [
|
|
8947
|
-
"object"
|
|
8948
|
-
],
|
|
8949
|
-
description: "Payload to include with the action event",
|
|
8950
|
-
freeform: true
|
|
8951
|
-
},
|
|
8952
|
-
label: {
|
|
8953
|
-
types: [
|
|
8954
|
-
"string"
|
|
8955
|
-
],
|
|
8956
|
-
description: "Button label text (alternative to children for schema-driven rendering)"
|
|
8957
|
-
},
|
|
8958
|
-
disabled: {
|
|
8959
|
-
types: [
|
|
8960
|
-
"boolean"
|
|
8961
|
-
],
|
|
8962
|
-
description: "Disable the button (greys out, blocks click events)"
|
|
8963
|
-
},
|
|
8964
|
-
"data-testid": {
|
|
8965
|
-
types: [
|
|
8966
|
-
"string"
|
|
8967
|
-
],
|
|
8968
|
-
description: "Test identifier for automated tests"
|
|
8969
|
-
}
|
|
8970
|
-
}
|
|
8971
|
-
},
|
|
8972
|
-
badge: {
|
|
8973
|
-
type: "badge",
|
|
8974
|
-
category: "component",
|
|
8975
|
-
tier: "atoms",
|
|
8976
|
-
family: "core",
|
|
8977
|
-
description: "Small label for status or count",
|
|
8978
|
-
suggestedFor: [
|
|
8979
|
-
"status indicators",
|
|
8980
|
-
"counts",
|
|
8981
|
-
"tags"
|
|
8982
|
-
],
|
|
8983
|
-
typicalSize: "tiny",
|
|
8984
|
-
propsSchema: {
|
|
8985
|
-
className: {
|
|
8986
|
-
types: [
|
|
8987
|
-
"string"
|
|
8988
|
-
],
|
|
8989
|
-
description: "Additional CSS classes applied to the root element."
|
|
8990
|
-
},
|
|
8991
|
-
variant: {
|
|
8992
|
-
types: [
|
|
8993
|
-
"string"
|
|
8994
|
-
],
|
|
8995
|
-
description: "variant prop",
|
|
8996
|
-
enumValues: [
|
|
8997
|
-
"default",
|
|
8998
|
-
"primary",
|
|
8999
|
-
"secondary",
|
|
9000
|
-
"success",
|
|
9001
|
-
"warning",
|
|
9002
|
-
"danger",
|
|
9003
|
-
"error",
|
|
9004
|
-
"info",
|
|
9005
|
-
"neutral"
|
|
9006
|
-
],
|
|
9007
|
-
default: "default"
|
|
9008
|
-
},
|
|
9009
|
-
size: {
|
|
9010
|
-
types: [
|
|
9011
|
-
"string"
|
|
9012
|
-
],
|
|
9013
|
-
description: "size prop",
|
|
9014
|
-
enumValues: [
|
|
9015
|
-
"sm",
|
|
9016
|
-
"md",
|
|
9017
|
-
"lg"
|
|
9018
|
-
],
|
|
9019
|
-
default: "sm"
|
|
9020
|
-
},
|
|
9021
|
-
amount: {
|
|
9022
|
-
types: [
|
|
9023
|
-
"number"
|
|
9024
|
-
],
|
|
9025
|
-
description: "Numeric count or amount to display in badge"
|
|
9026
|
-
},
|
|
9027
|
-
label: {
|
|
9028
|
-
types: [
|
|
9029
|
-
"string",
|
|
9030
|
-
"number"
|
|
9031
|
-
],
|
|
9032
|
-
description: "Badge label text (alternative to children for schema-driven rendering). Numeric values are auto-coerced to string for rendering \u2014 common case is unread counts, error counts, status codes, etc."
|
|
9033
|
-
},
|
|
9034
|
-
icon: {
|
|
9035
|
-
types: [
|
|
9036
|
-
"icon",
|
|
9037
|
-
"string"
|
|
9038
|
-
],
|
|
9039
|
-
description: "Lucide icon component or canonical kebab-case icon name string"
|
|
9040
|
-
},
|
|
9041
|
-
iconAsset: {
|
|
9042
|
-
types: [
|
|
9043
|
-
"object"
|
|
9044
|
-
],
|
|
9045
|
-
description: "Asset image rendered as the badge icon; takes precedence over icon when provided.",
|
|
9046
|
-
properties: {
|
|
9047
|
-
url: {
|
|
9048
|
-
types: [
|
|
9049
|
-
"asset"
|
|
9050
|
-
]
|
|
9051
|
-
},
|
|
9052
|
-
role: {
|
|
9053
|
-
types: [
|
|
9054
|
-
"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
8916
|
]
|
|
9068
8917
|
},
|
|
9069
8918
|
category: {
|
|
@@ -9093,6 +8942,11 @@ var patterns_registry_default = {
|
|
|
9093
8942
|
"isometric"
|
|
9094
8943
|
]
|
|
9095
8944
|
},
|
|
8945
|
+
variant: {
|
|
8946
|
+
types: [
|
|
8947
|
+
"string"
|
|
8948
|
+
]
|
|
8949
|
+
},
|
|
9096
8950
|
dimension: {
|
|
9097
8951
|
types: [
|
|
9098
8952
|
"string"
|
|
@@ -9113,6 +8967,16 @@ var patterns_registry_default = {
|
|
|
9113
8967
|
"8:1"
|
|
9114
8968
|
]
|
|
9115
8969
|
},
|
|
8970
|
+
atlas: {
|
|
8971
|
+
types: [
|
|
8972
|
+
"asset"
|
|
8973
|
+
]
|
|
8974
|
+
},
|
|
8975
|
+
sprite: {
|
|
8976
|
+
types: [
|
|
8977
|
+
"string"
|
|
8978
|
+
]
|
|
8979
|
+
},
|
|
9116
8980
|
name: {
|
|
9117
8981
|
types: [
|
|
9118
8982
|
"string"
|
|
@@ -9125,7 +8989,207 @@ var patterns_registry_default = {
|
|
|
9125
8989
|
}
|
|
9126
8990
|
},
|
|
9127
8991
|
propertyRequired: [
|
|
9128
|
-
"url"
|
|
8992
|
+
"url",
|
|
8993
|
+
"role",
|
|
8994
|
+
"category"
|
|
8995
|
+
]
|
|
8996
|
+
},
|
|
8997
|
+
action: {
|
|
8998
|
+
types: [
|
|
8999
|
+
"string"
|
|
9000
|
+
],
|
|
9001
|
+
description: "Declarative event name \u2014 emits UI:{action} via eventBus on click",
|
|
9002
|
+
kind: "event"
|
|
9003
|
+
},
|
|
9004
|
+
actionPayload: {
|
|
9005
|
+
types: [
|
|
9006
|
+
"object"
|
|
9007
|
+
],
|
|
9008
|
+
description: "Payload to include with the action event",
|
|
9009
|
+
freeform: true
|
|
9010
|
+
},
|
|
9011
|
+
label: {
|
|
9012
|
+
types: [
|
|
9013
|
+
"string"
|
|
9014
|
+
],
|
|
9015
|
+
description: "Button label text (alternative to children for schema-driven rendering)"
|
|
9016
|
+
},
|
|
9017
|
+
disabled: {
|
|
9018
|
+
types: [
|
|
9019
|
+
"boolean"
|
|
9020
|
+
],
|
|
9021
|
+
description: "Disable the button (greys out, blocks click events)"
|
|
9022
|
+
},
|
|
9023
|
+
"data-testid": {
|
|
9024
|
+
types: [
|
|
9025
|
+
"string"
|
|
9026
|
+
],
|
|
9027
|
+
description: "Test identifier for automated tests"
|
|
9028
|
+
}
|
|
9029
|
+
}
|
|
9030
|
+
},
|
|
9031
|
+
badge: {
|
|
9032
|
+
type: "badge",
|
|
9033
|
+
category: "component",
|
|
9034
|
+
tier: "atoms",
|
|
9035
|
+
family: "core",
|
|
9036
|
+
description: "Small label for status or count",
|
|
9037
|
+
suggestedFor: [
|
|
9038
|
+
"status indicators",
|
|
9039
|
+
"counts",
|
|
9040
|
+
"tags"
|
|
9041
|
+
],
|
|
9042
|
+
typicalSize: "tiny",
|
|
9043
|
+
propsSchema: {
|
|
9044
|
+
className: {
|
|
9045
|
+
types: [
|
|
9046
|
+
"string"
|
|
9047
|
+
],
|
|
9048
|
+
description: "Additional CSS classes applied to the root element."
|
|
9049
|
+
},
|
|
9050
|
+
variant: {
|
|
9051
|
+
types: [
|
|
9052
|
+
"string"
|
|
9053
|
+
],
|
|
9054
|
+
description: "variant prop",
|
|
9055
|
+
enumValues: [
|
|
9056
|
+
"default",
|
|
9057
|
+
"primary",
|
|
9058
|
+
"secondary",
|
|
9059
|
+
"success",
|
|
9060
|
+
"warning",
|
|
9061
|
+
"danger",
|
|
9062
|
+
"error",
|
|
9063
|
+
"info",
|
|
9064
|
+
"neutral"
|
|
9065
|
+
],
|
|
9066
|
+
default: "default"
|
|
9067
|
+
},
|
|
9068
|
+
size: {
|
|
9069
|
+
types: [
|
|
9070
|
+
"string"
|
|
9071
|
+
],
|
|
9072
|
+
description: "size prop",
|
|
9073
|
+
enumValues: [
|
|
9074
|
+
"sm",
|
|
9075
|
+
"md",
|
|
9076
|
+
"lg"
|
|
9077
|
+
],
|
|
9078
|
+
default: "sm"
|
|
9079
|
+
},
|
|
9080
|
+
amount: {
|
|
9081
|
+
types: [
|
|
9082
|
+
"number"
|
|
9083
|
+
],
|
|
9084
|
+
description: "Numeric count or amount to display in badge"
|
|
9085
|
+
},
|
|
9086
|
+
label: {
|
|
9087
|
+
types: [
|
|
9088
|
+
"string",
|
|
9089
|
+
"number"
|
|
9090
|
+
],
|
|
9091
|
+
description: "Badge label text (alternative to children for schema-driven rendering). Numeric values are auto-coerced to string for rendering \u2014 common case is unread counts, error counts, status codes, etc."
|
|
9092
|
+
},
|
|
9093
|
+
icon: {
|
|
9094
|
+
types: [
|
|
9095
|
+
"icon",
|
|
9096
|
+
"string"
|
|
9097
|
+
],
|
|
9098
|
+
description: "Lucide icon component or canonical kebab-case icon name string"
|
|
9099
|
+
},
|
|
9100
|
+
iconAsset: {
|
|
9101
|
+
types: [
|
|
9102
|
+
"object"
|
|
9103
|
+
],
|
|
9104
|
+
description: "Asset image rendered as the badge icon; takes precedence over icon when provided.",
|
|
9105
|
+
properties: {
|
|
9106
|
+
url: {
|
|
9107
|
+
types: [
|
|
9108
|
+
"asset"
|
|
9109
|
+
]
|
|
9110
|
+
},
|
|
9111
|
+
role: {
|
|
9112
|
+
types: [
|
|
9113
|
+
"string"
|
|
9114
|
+
]
|
|
9115
|
+
},
|
|
9116
|
+
category: {
|
|
9117
|
+
types: [
|
|
9118
|
+
"string"
|
|
9119
|
+
]
|
|
9120
|
+
},
|
|
9121
|
+
animations: {
|
|
9122
|
+
types: [
|
|
9123
|
+
"array"
|
|
9124
|
+
],
|
|
9125
|
+
items: {
|
|
9126
|
+
types: [
|
|
9127
|
+
"string"
|
|
9128
|
+
]
|
|
9129
|
+
}
|
|
9130
|
+
},
|
|
9131
|
+
style: {
|
|
9132
|
+
types: [
|
|
9133
|
+
"string"
|
|
9134
|
+
],
|
|
9135
|
+
enumValues: [
|
|
9136
|
+
"pixel",
|
|
9137
|
+
"vector",
|
|
9138
|
+
"hd",
|
|
9139
|
+
"1-bit",
|
|
9140
|
+
"isometric"
|
|
9141
|
+
]
|
|
9142
|
+
},
|
|
9143
|
+
variant: {
|
|
9144
|
+
types: [
|
|
9145
|
+
"string"
|
|
9146
|
+
]
|
|
9147
|
+
},
|
|
9148
|
+
dimension: {
|
|
9149
|
+
types: [
|
|
9150
|
+
"string"
|
|
9151
|
+
],
|
|
9152
|
+
enumValues: [
|
|
9153
|
+
"2d",
|
|
9154
|
+
"3d"
|
|
9155
|
+
]
|
|
9156
|
+
},
|
|
9157
|
+
aspect: {
|
|
9158
|
+
types: [
|
|
9159
|
+
"string"
|
|
9160
|
+
],
|
|
9161
|
+
enumValues: [
|
|
9162
|
+
"1:1",
|
|
9163
|
+
"16:9",
|
|
9164
|
+
"5:7",
|
|
9165
|
+
"8:1"
|
|
9166
|
+
]
|
|
9167
|
+
},
|
|
9168
|
+
atlas: {
|
|
9169
|
+
types: [
|
|
9170
|
+
"asset"
|
|
9171
|
+
]
|
|
9172
|
+
},
|
|
9173
|
+
sprite: {
|
|
9174
|
+
types: [
|
|
9175
|
+
"string"
|
|
9176
|
+
]
|
|
9177
|
+
},
|
|
9178
|
+
name: {
|
|
9179
|
+
types: [
|
|
9180
|
+
"string"
|
|
9181
|
+
]
|
|
9182
|
+
},
|
|
9183
|
+
thumbnailUrl: {
|
|
9184
|
+
types: [
|
|
9185
|
+
"string"
|
|
9186
|
+
]
|
|
9187
|
+
}
|
|
9188
|
+
},
|
|
9189
|
+
propertyRequired: [
|
|
9190
|
+
"url",
|
|
9191
|
+
"role",
|
|
9192
|
+
"category"
|
|
9129
9193
|
]
|
|
9130
9194
|
},
|
|
9131
9195
|
onRemove: {
|
|
@@ -10866,7 +10930,8 @@ var patterns_registry_default = {
|
|
|
10866
10930
|
category: "form",
|
|
10867
10931
|
tier: "molecules",
|
|
10868
10932
|
family: "core",
|
|
10869
|
-
description: "
|
|
10933
|
+
description: "RepeatableFormSection \u2014 a form section that repeats a fixed group of fields, letting the user add or remove entries.",
|
|
10934
|
+
capabilities: "dynamic line items, repeatable field group, add/remove entry rows, multi-entry form block",
|
|
10870
10935
|
suggestedFor: [
|
|
10871
10936
|
"repeating fields",
|
|
10872
10937
|
"dynamic forms",
|
|
@@ -11671,8 +11736,9 @@ var patterns_registry_default = {
|
|
|
11671
11736
|
types: [
|
|
11672
11737
|
"string"
|
|
11673
11738
|
],
|
|
11674
|
-
description: "Font weight override",
|
|
11739
|
+
description: "Font weight override \u2014 `none` = no override, the variant's baked weight applies",
|
|
11675
11740
|
enumValues: [
|
|
11741
|
+
"none",
|
|
11676
11742
|
"light",
|
|
11677
11743
|
"normal",
|
|
11678
11744
|
"medium",
|
|
@@ -11686,6 +11752,7 @@ var patterns_registry_default = {
|
|
|
11686
11752
|
],
|
|
11687
11753
|
description: "Font size override",
|
|
11688
11754
|
enumValues: [
|
|
11755
|
+
"none",
|
|
11689
11756
|
"xs",
|
|
11690
11757
|
"sm",
|
|
11691
11758
|
"md",
|
|
@@ -11766,133 +11833,184 @@ var patterns_registry_default = {
|
|
|
11766
11833
|
],
|
|
11767
11834
|
typicalSize: "medium",
|
|
11768
11835
|
propsSchema: {
|
|
11769
|
-
|
|
11836
|
+
children: {
|
|
11770
11837
|
types: [
|
|
11771
|
-
"
|
|
11838
|
+
"node"
|
|
11772
11839
|
],
|
|
11773
|
-
description: "
|
|
11840
|
+
description: "Button group content (Button components) - use this OR primary/secondary"
|
|
11774
11841
|
},
|
|
11775
|
-
|
|
11776
|
-
types: [
|
|
11777
|
-
"boolean"
|
|
11778
|
-
],
|
|
11779
|
-
description: "Loading state indicator"
|
|
11780
|
-
},
|
|
11781
|
-
error: {
|
|
11842
|
+
primary: {
|
|
11782
11843
|
types: [
|
|
11783
11844
|
"object"
|
|
11784
11845
|
],
|
|
11785
|
-
description: "
|
|
11846
|
+
description: "Primary action button config (for form-actions pattern) Accepts Readonly for compatibility with generated const objects",
|
|
11786
11847
|
properties: {
|
|
11787
|
-
|
|
11848
|
+
label: {
|
|
11788
11849
|
types: [
|
|
11789
11850
|
"string"
|
|
11790
11851
|
]
|
|
11791
11852
|
},
|
|
11792
|
-
|
|
11853
|
+
actionType: {
|
|
11793
11854
|
types: [
|
|
11794
11855
|
"string"
|
|
11795
11856
|
]
|
|
11796
11857
|
},
|
|
11797
|
-
|
|
11858
|
+
event: {
|
|
11798
11859
|
types: [
|
|
11799
11860
|
"string"
|
|
11800
11861
|
]
|
|
11801
11862
|
},
|
|
11802
|
-
|
|
11863
|
+
navigatesTo: {
|
|
11864
|
+
types: [
|
|
11865
|
+
"string"
|
|
11866
|
+
]
|
|
11867
|
+
},
|
|
11868
|
+
variant: {
|
|
11803
11869
|
types: [
|
|
11804
11870
|
"string"
|
|
11805
11871
|
]
|
|
11806
11872
|
}
|
|
11807
11873
|
},
|
|
11808
11874
|
propertyRequired: [
|
|
11809
|
-
"
|
|
11875
|
+
"label"
|
|
11810
11876
|
]
|
|
11811
11877
|
},
|
|
11812
|
-
|
|
11878
|
+
secondary: {
|
|
11813
11879
|
types: [
|
|
11814
|
-
"
|
|
11880
|
+
"array"
|
|
11815
11881
|
],
|
|
11816
|
-
description: "
|
|
11882
|
+
description: "Secondary action buttons config (for form-actions pattern) Accepts readonly array for compatibility with generated const arrays",
|
|
11883
|
+
items: {
|
|
11884
|
+
types: [
|
|
11885
|
+
"object"
|
|
11886
|
+
],
|
|
11887
|
+
properties: {
|
|
11888
|
+
label: {
|
|
11889
|
+
types: [
|
|
11890
|
+
"string"
|
|
11891
|
+
]
|
|
11892
|
+
},
|
|
11893
|
+
actionType: {
|
|
11894
|
+
types: [
|
|
11895
|
+
"string"
|
|
11896
|
+
]
|
|
11897
|
+
},
|
|
11898
|
+
event: {
|
|
11899
|
+
types: [
|
|
11900
|
+
"string"
|
|
11901
|
+
]
|
|
11902
|
+
},
|
|
11903
|
+
navigatesTo: {
|
|
11904
|
+
types: [
|
|
11905
|
+
"string"
|
|
11906
|
+
]
|
|
11907
|
+
},
|
|
11908
|
+
variant: {
|
|
11909
|
+
types: [
|
|
11910
|
+
"string"
|
|
11911
|
+
]
|
|
11912
|
+
}
|
|
11913
|
+
},
|
|
11914
|
+
required: [
|
|
11915
|
+
"label"
|
|
11916
|
+
]
|
|
11917
|
+
}
|
|
11817
11918
|
},
|
|
11818
|
-
|
|
11919
|
+
variant: {
|
|
11819
11920
|
types: [
|
|
11820
11921
|
"string"
|
|
11821
11922
|
],
|
|
11822
|
-
description: "
|
|
11923
|
+
description: "Visual variant",
|
|
11823
11924
|
enumValues: [
|
|
11824
|
-
"
|
|
11825
|
-
"
|
|
11826
|
-
|
|
11827
|
-
},
|
|
11828
|
-
searchValue: {
|
|
11829
|
-
types: [
|
|
11830
|
-
"string"
|
|
11925
|
+
"default",
|
|
11926
|
+
"segmented",
|
|
11927
|
+
"toggle"
|
|
11831
11928
|
],
|
|
11832
|
-
|
|
11929
|
+
default: "default"
|
|
11833
11930
|
},
|
|
11834
|
-
|
|
11931
|
+
orientation: {
|
|
11835
11932
|
types: [
|
|
11836
|
-
"
|
|
11933
|
+
"string"
|
|
11837
11934
|
],
|
|
11838
|
-
description: "
|
|
11839
|
-
|
|
11840
|
-
|
|
11841
|
-
|
|
11842
|
-
"number"
|
|
11935
|
+
description: "Orientation",
|
|
11936
|
+
enumValues: [
|
|
11937
|
+
"horizontal",
|
|
11938
|
+
"vertical"
|
|
11843
11939
|
],
|
|
11844
|
-
|
|
11940
|
+
default: "horizontal"
|
|
11845
11941
|
},
|
|
11846
|
-
|
|
11942
|
+
className: {
|
|
11847
11943
|
types: [
|
|
11848
|
-
"
|
|
11944
|
+
"string"
|
|
11849
11945
|
],
|
|
11850
|
-
description: "
|
|
11946
|
+
description: "Additional CSS classes"
|
|
11851
11947
|
},
|
|
11852
|
-
|
|
11948
|
+
entity: {
|
|
11853
11949
|
types: [
|
|
11854
|
-
"
|
|
11950
|
+
"string"
|
|
11855
11951
|
],
|
|
11856
|
-
description: "
|
|
11952
|
+
description: "Entity type for filter-group pattern (schema metadata)"
|
|
11857
11953
|
},
|
|
11858
|
-
|
|
11954
|
+
filters: {
|
|
11859
11955
|
types: [
|
|
11860
11956
|
"array"
|
|
11861
11957
|
],
|
|
11862
|
-
description: "
|
|
11958
|
+
description: "Filter definitions for filter-group pattern",
|
|
11863
11959
|
items: {
|
|
11864
11960
|
types: [
|
|
11865
|
-
"
|
|
11866
|
-
|
|
11961
|
+
"object"
|
|
11962
|
+
],
|
|
11963
|
+
properties: {
|
|
11964
|
+
field: {
|
|
11965
|
+
types: [
|
|
11966
|
+
"string"
|
|
11967
|
+
]
|
|
11968
|
+
},
|
|
11969
|
+
label: {
|
|
11970
|
+
types: [
|
|
11971
|
+
"string"
|
|
11972
|
+
]
|
|
11973
|
+
},
|
|
11974
|
+
type: {
|
|
11975
|
+
types: [
|
|
11976
|
+
"string"
|
|
11977
|
+
],
|
|
11978
|
+
enumValues: [
|
|
11979
|
+
"checkbox",
|
|
11980
|
+
"select",
|
|
11981
|
+
"toggle"
|
|
11982
|
+
]
|
|
11983
|
+
},
|
|
11984
|
+
options: {
|
|
11985
|
+
types: [
|
|
11986
|
+
"array"
|
|
11987
|
+
],
|
|
11988
|
+
items: {
|
|
11989
|
+
types: [
|
|
11990
|
+
"string"
|
|
11991
|
+
]
|
|
11992
|
+
}
|
|
11993
|
+
}
|
|
11994
|
+
},
|
|
11995
|
+
required: [
|
|
11996
|
+
"field",
|
|
11997
|
+
"label"
|
|
11867
11998
|
]
|
|
11868
11999
|
}
|
|
11869
12000
|
},
|
|
11870
|
-
|
|
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: {
|
|
12001
|
+
look: {
|
|
11885
12002
|
types: [
|
|
11886
12003
|
"string"
|
|
11887
12004
|
],
|
|
11888
|
-
description: "
|
|
12005
|
+
description: "Layer 2 visual treatment for the action-cluster (form-actions) pattern.",
|
|
11889
12006
|
enumValues: [
|
|
11890
|
-
"
|
|
11891
|
-
"
|
|
11892
|
-
"
|
|
11893
|
-
"
|
|
12007
|
+
"right-aligned-buttons",
|
|
12008
|
+
"floating-bar",
|
|
12009
|
+
"inline-row",
|
|
12010
|
+
"dropdown-menu",
|
|
12011
|
+
"command-palette-trigger"
|
|
11894
12012
|
],
|
|
11895
|
-
default: "right"
|
|
12013
|
+
default: "right-aligned-buttons"
|
|
11896
12014
|
}
|
|
11897
12015
|
}
|
|
11898
12016
|
},
|
|
@@ -14833,18 +14951,6 @@ var patterns_registry_default = {
|
|
|
14833
14951
|
role: {
|
|
14834
14952
|
types: [
|
|
14835
14953
|
"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
14954
|
]
|
|
14849
14955
|
},
|
|
14850
14956
|
category: {
|
|
@@ -14874,6 +14980,11 @@ var patterns_registry_default = {
|
|
|
14874
14980
|
"isometric"
|
|
14875
14981
|
]
|
|
14876
14982
|
},
|
|
14983
|
+
variant: {
|
|
14984
|
+
types: [
|
|
14985
|
+
"string"
|
|
14986
|
+
]
|
|
14987
|
+
},
|
|
14877
14988
|
dimension: {
|
|
14878
14989
|
types: [
|
|
14879
14990
|
"string"
|
|
@@ -14894,6 +15005,16 @@ var patterns_registry_default = {
|
|
|
14894
15005
|
"8:1"
|
|
14895
15006
|
]
|
|
14896
15007
|
},
|
|
15008
|
+
atlas: {
|
|
15009
|
+
types: [
|
|
15010
|
+
"asset"
|
|
15011
|
+
]
|
|
15012
|
+
},
|
|
15013
|
+
sprite: {
|
|
15014
|
+
types: [
|
|
15015
|
+
"string"
|
|
15016
|
+
]
|
|
15017
|
+
},
|
|
14897
15018
|
name: {
|
|
14898
15019
|
types: [
|
|
14899
15020
|
"string"
|
|
@@ -14906,14 +15027,16 @@ var patterns_registry_default = {
|
|
|
14906
15027
|
}
|
|
14907
15028
|
},
|
|
14908
15029
|
propertyRequired: [
|
|
14909
|
-
"url"
|
|
15030
|
+
"url",
|
|
15031
|
+
"role",
|
|
15032
|
+
"category"
|
|
14910
15033
|
]
|
|
14911
15034
|
},
|
|
14912
15035
|
hudBackgroundAsset: {
|
|
14913
15036
|
types: [
|
|
14914
15037
|
"object"
|
|
14915
15038
|
],
|
|
14916
|
-
description: "9-sliced panel
|
|
15039
|
+
description: "Per-call-site 9-sliced panel override. Chrome normally comes from the active theme; most callers leave this unset.",
|
|
14917
15040
|
properties: {
|
|
14918
15041
|
url: {
|
|
14919
15042
|
types: [
|
|
@@ -14923,18 +15046,6 @@ var patterns_registry_default = {
|
|
|
14923
15046
|
role: {
|
|
14924
15047
|
types: [
|
|
14925
15048
|
"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
15049
|
]
|
|
14939
15050
|
},
|
|
14940
15051
|
category: {
|
|
@@ -14964,6 +15075,11 @@ var patterns_registry_default = {
|
|
|
14964
15075
|
"isometric"
|
|
14965
15076
|
]
|
|
14966
15077
|
},
|
|
15078
|
+
variant: {
|
|
15079
|
+
types: [
|
|
15080
|
+
"string"
|
|
15081
|
+
]
|
|
15082
|
+
},
|
|
14967
15083
|
dimension: {
|
|
14968
15084
|
types: [
|
|
14969
15085
|
"string"
|
|
@@ -14984,6 +15100,16 @@ var patterns_registry_default = {
|
|
|
14984
15100
|
"8:1"
|
|
14985
15101
|
]
|
|
14986
15102
|
},
|
|
15103
|
+
atlas: {
|
|
15104
|
+
types: [
|
|
15105
|
+
"asset"
|
|
15106
|
+
]
|
|
15107
|
+
},
|
|
15108
|
+
sprite: {
|
|
15109
|
+
types: [
|
|
15110
|
+
"string"
|
|
15111
|
+
]
|
|
15112
|
+
},
|
|
14987
15113
|
name: {
|
|
14988
15114
|
types: [
|
|
14989
15115
|
"string"
|
|
@@ -14996,7 +15122,9 @@ var patterns_registry_default = {
|
|
|
14996
15122
|
}
|
|
14997
15123
|
},
|
|
14998
15124
|
propertyRequired: [
|
|
14999
|
-
"url"
|
|
15125
|
+
"url",
|
|
15126
|
+
"role",
|
|
15127
|
+
"category"
|
|
15000
15128
|
]
|
|
15001
15129
|
},
|
|
15002
15130
|
fontFamily: {
|
|
@@ -15005,6 +15133,12 @@ var patterns_registry_default = {
|
|
|
15005
15133
|
],
|
|
15006
15134
|
description: "Game font key (future | future-narrow | pixel | blocks | mini) or a CSS font-family.",
|
|
15007
15135
|
default: "future"
|
|
15136
|
+
},
|
|
15137
|
+
"data-theme": {
|
|
15138
|
+
types: [
|
|
15139
|
+
"string"
|
|
15140
|
+
],
|
|
15141
|
+
description: 'Scopes an `@almadar/ui` theme (e.g. "game-sci-fi-dark") to this shell\'s subtree.'
|
|
15008
15142
|
}
|
|
15009
15143
|
}
|
|
15010
15144
|
},
|
|
@@ -16058,7 +16192,8 @@ var patterns_registry_default = {
|
|
|
16058
16192
|
category: "form",
|
|
16059
16193
|
tier: "molecules",
|
|
16060
16194
|
family: "core",
|
|
16061
|
-
description: "
|
|
16195
|
+
description: "SignaturePad \u2014 a draw-to-sign canvas that captures a handwritten signature or initials.",
|
|
16196
|
+
capabilities: "e-signature capture, sign-here field, consent signature, initial-here field, wet-signature substitute",
|
|
16062
16197
|
suggestedFor: [
|
|
16063
16198
|
"form signing",
|
|
16064
16199
|
"approval workflows",
|
|
@@ -17035,7 +17170,8 @@ var patterns_registry_default = {
|
|
|
17035
17170
|
category: "component",
|
|
17036
17171
|
tier: "molecules",
|
|
17037
17172
|
family: "core",
|
|
17038
|
-
description: "QuizBlock
|
|
17173
|
+
description: "QuizBlock \u2014 a single quiz question with answer choices and submit/reveal feedback.",
|
|
17174
|
+
capabilities: "multiple-choice quiz, test question, exam item, assessment question, knowledge check, trivia question",
|
|
17039
17175
|
suggestedFor: [
|
|
17040
17176
|
"quiz",
|
|
17041
17177
|
"block",
|
|
@@ -17088,37 +17224,7 @@ var patterns_registry_default = {
|
|
|
17088
17224
|
types: [
|
|
17089
17225
|
"string"
|
|
17090
17226
|
],
|
|
17091
|
-
description: "Programming language for syntax highlighting",
|
|
17092
|
-
enumValues: [
|
|
17093
|
-
"text",
|
|
17094
|
-
"json",
|
|
17095
|
-
"javascript",
|
|
17096
|
-
"js",
|
|
17097
|
-
"typescript",
|
|
17098
|
-
"ts",
|
|
17099
|
-
"jsx",
|
|
17100
|
-
"tsx",
|
|
17101
|
-
"css",
|
|
17102
|
-
"markdown",
|
|
17103
|
-
"md",
|
|
17104
|
-
"bash",
|
|
17105
|
-
"shell",
|
|
17106
|
-
"sh",
|
|
17107
|
-
"yaml",
|
|
17108
|
-
"yml",
|
|
17109
|
-
"rust",
|
|
17110
|
-
"python",
|
|
17111
|
-
"py",
|
|
17112
|
-
"sql",
|
|
17113
|
-
"diff",
|
|
17114
|
-
"toml",
|
|
17115
|
-
"go",
|
|
17116
|
-
"graphql",
|
|
17117
|
-
"html",
|
|
17118
|
-
"xml",
|
|
17119
|
-
"orb",
|
|
17120
|
-
"lolo"
|
|
17121
|
-
],
|
|
17227
|
+
description: "Programming language for syntax highlighting (any Prism id; loaded on demand if not pre-registered)",
|
|
17122
17228
|
default: "text"
|
|
17123
17229
|
},
|
|
17124
17230
|
showCopyButton: {
|
|
@@ -17319,6 +17425,58 @@ var patterns_registry_default = {
|
|
|
17319
17425
|
"graphql",
|
|
17320
17426
|
"html",
|
|
17321
17427
|
"xml",
|
|
17428
|
+
"clojure",
|
|
17429
|
+
"clj",
|
|
17430
|
+
"edn",
|
|
17431
|
+
"haskell",
|
|
17432
|
+
"hs",
|
|
17433
|
+
"lisp",
|
|
17434
|
+
"scheme",
|
|
17435
|
+
"scala",
|
|
17436
|
+
"elixir",
|
|
17437
|
+
"ex",
|
|
17438
|
+
"exs",
|
|
17439
|
+
"erlang",
|
|
17440
|
+
"erl",
|
|
17441
|
+
"elm",
|
|
17442
|
+
"fsharp",
|
|
17443
|
+
"fs",
|
|
17444
|
+
"fsx",
|
|
17445
|
+
"ocaml",
|
|
17446
|
+
"ml",
|
|
17447
|
+
"java",
|
|
17448
|
+
"c",
|
|
17449
|
+
"cpp",
|
|
17450
|
+
"c++",
|
|
17451
|
+
"cc",
|
|
17452
|
+
"cxx",
|
|
17453
|
+
"hpp",
|
|
17454
|
+
"h",
|
|
17455
|
+
"csharp",
|
|
17456
|
+
"cs",
|
|
17457
|
+
"objectivec",
|
|
17458
|
+
"objc",
|
|
17459
|
+
"php",
|
|
17460
|
+
"ruby",
|
|
17461
|
+
"rb",
|
|
17462
|
+
"swift",
|
|
17463
|
+
"kotlin",
|
|
17464
|
+
"kt",
|
|
17465
|
+
"lua",
|
|
17466
|
+
"r",
|
|
17467
|
+
"dart",
|
|
17468
|
+
"julia",
|
|
17469
|
+
"fortran",
|
|
17470
|
+
"f90",
|
|
17471
|
+
"f95",
|
|
17472
|
+
"perl",
|
|
17473
|
+
"pl",
|
|
17474
|
+
"powershell",
|
|
17475
|
+
"ps1",
|
|
17476
|
+
"makefile",
|
|
17477
|
+
"make",
|
|
17478
|
+
"nginx",
|
|
17479
|
+
"ini",
|
|
17322
17480
|
"orb",
|
|
17323
17481
|
"lolo"
|
|
17324
17482
|
]
|
|
@@ -18287,7 +18445,8 @@ var patterns_registry_default = {
|
|
|
18287
18445
|
category: "display",
|
|
18288
18446
|
tier: "molecules",
|
|
18289
18447
|
family: "core",
|
|
18290
|
-
description: "FlipCard
|
|
18448
|
+
description: "FlipCard \u2014 flip card that reveals a hidden back face on tap or click, toggling between a front and back content slot.",
|
|
18449
|
+
capabilities: "flashcard, study deck, spaced-repetition review card, memorization drill, quiz reveal card, question/answer card, before/after reveal, term-and-definition card",
|
|
18291
18450
|
suggestedFor: [
|
|
18292
18451
|
"flip",
|
|
18293
18452
|
"card",
|
|
@@ -18744,7 +18903,8 @@ var patterns_registry_default = {
|
|
|
18744
18903
|
category: "display",
|
|
18745
18904
|
tier: "molecules",
|
|
18746
18905
|
family: "core",
|
|
18747
|
-
description: "DataGrid
|
|
18906
|
+
description: "DataGrid \u2014 structured records grid rendering rows over configurable columns, with sort, select, and drag-reorder.",
|
|
18907
|
+
capabilities: "admin table, records grid, user list, CRUD list, manage-records view, spreadsheet-style data grid, sortable columns",
|
|
18748
18908
|
suggestedFor: [
|
|
18749
18909
|
"data",
|
|
18750
18910
|
"grid",
|
|
@@ -18968,6 +19128,11 @@ var patterns_registry_default = {
|
|
|
18968
19128
|
"string"
|
|
18969
19129
|
]
|
|
18970
19130
|
},
|
|
19131
|
+
navigatesTo: {
|
|
19132
|
+
types: [
|
|
19133
|
+
"string"
|
|
19134
|
+
]
|
|
19135
|
+
},
|
|
18971
19136
|
icon: {
|
|
18972
19137
|
types: [
|
|
18973
19138
|
"icon",
|
|
@@ -19128,7 +19293,7 @@ var patterns_registry_default = {
|
|
|
19128
19293
|
types: [
|
|
19129
19294
|
"function"
|
|
19130
19295
|
],
|
|
19131
|
-
description: "Render prop for custom per-card content. When provided, `fields`
|
|
19296
|
+
description: "Render prop for custom per-card content. When provided, `fields` are ignored; `itemActions` render as a footer beneath the custom content.",
|
|
19132
19297
|
kind: "callback",
|
|
19133
19298
|
callbackArgs: [
|
|
19134
19299
|
{
|
|
@@ -21036,7 +21201,8 @@ var patterns_registry_default = {
|
|
|
21036
21201
|
category: "display",
|
|
21037
21202
|
tier: "molecules",
|
|
21038
21203
|
family: "core",
|
|
21039
|
-
description: "SortableList
|
|
21204
|
+
description: "SortableList \u2014 a drag-and-drop reorderable list of items.",
|
|
21205
|
+
capabilities: "checklist, task list, to-do list, priority list, ranked list, drag-to-reorder queue",
|
|
21040
21206
|
suggestedFor: [
|
|
21041
21207
|
"sortable",
|
|
21042
21208
|
"list",
|
|
@@ -21643,7 +21809,8 @@ var patterns_registry_default = {
|
|
|
21643
21809
|
category: "display",
|
|
21644
21810
|
tier: "molecules",
|
|
21645
21811
|
family: "marketing",
|
|
21646
|
-
description: "CaseStudyCard
|
|
21812
|
+
description: "CaseStudyCard \u2014 a card summarizing a customer case study with logo, headline result, and link.",
|
|
21813
|
+
capabilities: "customer story, success story, client story card, results showcase, proof-point card",
|
|
21647
21814
|
suggestedFor: [
|
|
21648
21815
|
"case",
|
|
21649
21816
|
"study",
|
|
@@ -21802,7 +21969,8 @@ var patterns_registry_default = {
|
|
|
21802
21969
|
category: "display",
|
|
21803
21970
|
tier: "molecules",
|
|
21804
21971
|
family: "marketing",
|
|
21805
|
-
description: "FeatureCard
|
|
21972
|
+
description: "FeatureCard \u2014 an icon-led card pairing a title and description to call out a single product feature.",
|
|
21973
|
+
capabilities: "feature highlight, benefit callout, product capability card, feature-grid tile",
|
|
21806
21974
|
suggestedFor: [
|
|
21807
21975
|
"feature",
|
|
21808
21976
|
"card",
|
|
@@ -22210,7 +22378,8 @@ var patterns_registry_default = {
|
|
|
22210
22378
|
category: "display",
|
|
22211
22379
|
tier: "molecules",
|
|
22212
22380
|
family: "marketing",
|
|
22213
|
-
description: "PricingCard
|
|
22381
|
+
description: "PricingCard \u2014 a single pricing-tier card with price, billing period, feature list, and call-to-action.",
|
|
22382
|
+
capabilities: "pricing tier, plan card, subscription tier, plan comparison card, price plan",
|
|
22214
22383
|
suggestedFor: [
|
|
22215
22384
|
"pricing",
|
|
22216
22385
|
"card",
|
|
@@ -27942,18 +28111,6 @@ var patterns_registry_default = {
|
|
|
27942
28111
|
role: {
|
|
27943
28112
|
types: [
|
|
27944
28113
|
"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
28114
|
]
|
|
27958
28115
|
},
|
|
27959
28116
|
category: {
|
|
@@ -27983,6 +28140,11 @@ var patterns_registry_default = {
|
|
|
27983
28140
|
"isometric"
|
|
27984
28141
|
]
|
|
27985
28142
|
},
|
|
28143
|
+
variant: {
|
|
28144
|
+
types: [
|
|
28145
|
+
"string"
|
|
28146
|
+
]
|
|
28147
|
+
},
|
|
27986
28148
|
dimension: {
|
|
27987
28149
|
types: [
|
|
27988
28150
|
"string"
|
|
@@ -28003,6 +28165,16 @@ var patterns_registry_default = {
|
|
|
28003
28165
|
"8:1"
|
|
28004
28166
|
]
|
|
28005
28167
|
},
|
|
28168
|
+
atlas: {
|
|
28169
|
+
types: [
|
|
28170
|
+
"asset"
|
|
28171
|
+
]
|
|
28172
|
+
},
|
|
28173
|
+
sprite: {
|
|
28174
|
+
types: [
|
|
28175
|
+
"string"
|
|
28176
|
+
]
|
|
28177
|
+
},
|
|
28006
28178
|
name: {
|
|
28007
28179
|
types: [
|
|
28008
28180
|
"string"
|
|
@@ -28015,7 +28187,9 @@ var patterns_registry_default = {
|
|
|
28015
28187
|
}
|
|
28016
28188
|
},
|
|
28017
28189
|
propertyRequired: [
|
|
28018
|
-
"url"
|
|
28190
|
+
"url",
|
|
28191
|
+
"role",
|
|
28192
|
+
"category"
|
|
28019
28193
|
]
|
|
28020
28194
|
},
|
|
28021
28195
|
icon: {
|
|
@@ -28102,18 +28276,6 @@ var patterns_registry_default = {
|
|
|
28102
28276
|
role: {
|
|
28103
28277
|
types: [
|
|
28104
28278
|
"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
28279
|
]
|
|
28118
28280
|
},
|
|
28119
28281
|
category: {
|
|
@@ -28143,6 +28305,11 @@ var patterns_registry_default = {
|
|
|
28143
28305
|
"isometric"
|
|
28144
28306
|
]
|
|
28145
28307
|
},
|
|
28308
|
+
variant: {
|
|
28309
|
+
types: [
|
|
28310
|
+
"string"
|
|
28311
|
+
]
|
|
28312
|
+
},
|
|
28146
28313
|
dimension: {
|
|
28147
28314
|
types: [
|
|
28148
28315
|
"string"
|
|
@@ -28163,6 +28330,16 @@ var patterns_registry_default = {
|
|
|
28163
28330
|
"8:1"
|
|
28164
28331
|
]
|
|
28165
28332
|
},
|
|
28333
|
+
atlas: {
|
|
28334
|
+
types: [
|
|
28335
|
+
"asset"
|
|
28336
|
+
]
|
|
28337
|
+
},
|
|
28338
|
+
sprite: {
|
|
28339
|
+
types: [
|
|
28340
|
+
"string"
|
|
28341
|
+
]
|
|
28342
|
+
},
|
|
28166
28343
|
name: {
|
|
28167
28344
|
types: [
|
|
28168
28345
|
"string"
|
|
@@ -28175,7 +28352,9 @@ var patterns_registry_default = {
|
|
|
28175
28352
|
}
|
|
28176
28353
|
},
|
|
28177
28354
|
propertyRequired: [
|
|
28178
|
-
"url"
|
|
28355
|
+
"url",
|
|
28356
|
+
"role",
|
|
28357
|
+
"category"
|
|
28179
28358
|
]
|
|
28180
28359
|
},
|
|
28181
28360
|
label: {
|
|
@@ -28318,20 +28497,227 @@ var patterns_registry_default = {
|
|
|
28318
28497
|
]
|
|
28319
28498
|
},
|
|
28320
28499
|
role: {
|
|
28500
|
+
types: [
|
|
28501
|
+
"string"
|
|
28502
|
+
]
|
|
28503
|
+
},
|
|
28504
|
+
category: {
|
|
28505
|
+
types: [
|
|
28506
|
+
"string"
|
|
28507
|
+
]
|
|
28508
|
+
},
|
|
28509
|
+
animations: {
|
|
28510
|
+
types: [
|
|
28511
|
+
"array"
|
|
28512
|
+
],
|
|
28513
|
+
items: {
|
|
28514
|
+
types: [
|
|
28515
|
+
"string"
|
|
28516
|
+
]
|
|
28517
|
+
}
|
|
28518
|
+
},
|
|
28519
|
+
style: {
|
|
28321
28520
|
types: [
|
|
28322
28521
|
"string"
|
|
28323
28522
|
],
|
|
28324
28523
|
enumValues: [
|
|
28325
|
-
"
|
|
28326
|
-
"
|
|
28327
|
-
"
|
|
28328
|
-
"
|
|
28329
|
-
"
|
|
28330
|
-
|
|
28331
|
-
|
|
28332
|
-
|
|
28333
|
-
|
|
28334
|
-
"
|
|
28524
|
+
"pixel",
|
|
28525
|
+
"vector",
|
|
28526
|
+
"hd",
|
|
28527
|
+
"1-bit",
|
|
28528
|
+
"isometric"
|
|
28529
|
+
]
|
|
28530
|
+
},
|
|
28531
|
+
variant: {
|
|
28532
|
+
types: [
|
|
28533
|
+
"string"
|
|
28534
|
+
]
|
|
28535
|
+
},
|
|
28536
|
+
dimension: {
|
|
28537
|
+
types: [
|
|
28538
|
+
"string"
|
|
28539
|
+
],
|
|
28540
|
+
enumValues: [
|
|
28541
|
+
"2d",
|
|
28542
|
+
"3d"
|
|
28543
|
+
]
|
|
28544
|
+
},
|
|
28545
|
+
aspect: {
|
|
28546
|
+
types: [
|
|
28547
|
+
"string"
|
|
28548
|
+
],
|
|
28549
|
+
enumValues: [
|
|
28550
|
+
"1:1",
|
|
28551
|
+
"16:9",
|
|
28552
|
+
"5:7",
|
|
28553
|
+
"8:1"
|
|
28554
|
+
]
|
|
28555
|
+
},
|
|
28556
|
+
atlas: {
|
|
28557
|
+
types: [
|
|
28558
|
+
"asset"
|
|
28559
|
+
]
|
|
28560
|
+
},
|
|
28561
|
+
sprite: {
|
|
28562
|
+
types: [
|
|
28563
|
+
"string"
|
|
28564
|
+
]
|
|
28565
|
+
},
|
|
28566
|
+
name: {
|
|
28567
|
+
types: [
|
|
28568
|
+
"string"
|
|
28569
|
+
]
|
|
28570
|
+
},
|
|
28571
|
+
thumbnailUrl: {
|
|
28572
|
+
types: [
|
|
28573
|
+
"string"
|
|
28574
|
+
]
|
|
28575
|
+
}
|
|
28576
|
+
},
|
|
28577
|
+
propertyRequired: [
|
|
28578
|
+
"url",
|
|
28579
|
+
"role",
|
|
28580
|
+
"category"
|
|
28581
|
+
]
|
|
28582
|
+
},
|
|
28583
|
+
position: {
|
|
28584
|
+
types: [
|
|
28585
|
+
"string"
|
|
28586
|
+
],
|
|
28587
|
+
description: "Position of the bubble on screen",
|
|
28588
|
+
enumValues: [
|
|
28589
|
+
"top",
|
|
28590
|
+
"bottom"
|
|
28591
|
+
],
|
|
28592
|
+
default: "bottom"
|
|
28593
|
+
},
|
|
28594
|
+
mood: {
|
|
28595
|
+
types: [
|
|
28596
|
+
"string"
|
|
28597
|
+
],
|
|
28598
|
+
description: "Speaker mood \u2014 drives a portrait-ring accent; LOLO sets this per dialogue node/transition.",
|
|
28599
|
+
enumValues: [
|
|
28600
|
+
"neutral",
|
|
28601
|
+
"happy",
|
|
28602
|
+
"concerned",
|
|
28603
|
+
"angry"
|
|
28604
|
+
],
|
|
28605
|
+
default: "neutral"
|
|
28606
|
+
},
|
|
28607
|
+
revealedChars: {
|
|
28608
|
+
types: [
|
|
28609
|
+
"number"
|
|
28610
|
+
],
|
|
28611
|
+
description: "Number of `text` characters to reveal (typewriter effect). Omit to show the full string \u2014 LOLO drives this from `@entity.revealedChars` via a tick, incrementing it until it reaches `text.length`."
|
|
28612
|
+
},
|
|
28613
|
+
className: {
|
|
28614
|
+
types: [
|
|
28615
|
+
"string"
|
|
28616
|
+
],
|
|
28617
|
+
description: "Additional CSS classes"
|
|
28618
|
+
}
|
|
28619
|
+
}
|
|
28620
|
+
},
|
|
28621
|
+
"health-bar": {
|
|
28622
|
+
type: "health-bar",
|
|
28623
|
+
category: "game",
|
|
28624
|
+
tier: "atoms",
|
|
28625
|
+
family: "game",
|
|
28626
|
+
description: "HealthBar component",
|
|
28627
|
+
suggestedFor: [
|
|
28628
|
+
"health",
|
|
28629
|
+
"bar",
|
|
28630
|
+
"health bar"
|
|
28631
|
+
],
|
|
28632
|
+
typicalSize: "small",
|
|
28633
|
+
propsSchema: {
|
|
28634
|
+
current: {
|
|
28635
|
+
types: [
|
|
28636
|
+
"number"
|
|
28637
|
+
],
|
|
28638
|
+
description: "Current value",
|
|
28639
|
+
required: true,
|
|
28640
|
+
default: 3
|
|
28641
|
+
},
|
|
28642
|
+
max: {
|
|
28643
|
+
types: [
|
|
28644
|
+
"number"
|
|
28645
|
+
],
|
|
28646
|
+
description: "Maximum value",
|
|
28647
|
+
required: true,
|
|
28648
|
+
default: 5
|
|
28649
|
+
},
|
|
28650
|
+
format: {
|
|
28651
|
+
types: [
|
|
28652
|
+
"string"
|
|
28653
|
+
],
|
|
28654
|
+
description: "Display format. - `hearts` / `bar` / `numeric` \u2014 health display - `progress` \u2014 XP / generic progress bar with optional level badge and value label",
|
|
28655
|
+
enumValues: [
|
|
28656
|
+
"hearts",
|
|
28657
|
+
"bar",
|
|
28658
|
+
"numeric",
|
|
28659
|
+
"progress"
|
|
28660
|
+
],
|
|
28661
|
+
default: "hearts"
|
|
28662
|
+
},
|
|
28663
|
+
level: {
|
|
28664
|
+
types: [
|
|
28665
|
+
"number"
|
|
28666
|
+
],
|
|
28667
|
+
description: 'Current level \u2014 shown as "Lv.N" badge when format="progress"'
|
|
28668
|
+
},
|
|
28669
|
+
showLabel: {
|
|
28670
|
+
types: [
|
|
28671
|
+
"boolean"
|
|
28672
|
+
],
|
|
28673
|
+
description: 'Show value label below bar when format="progress"',
|
|
28674
|
+
default: true
|
|
28675
|
+
},
|
|
28676
|
+
labelSuffix: {
|
|
28677
|
+
types: [
|
|
28678
|
+
"string"
|
|
28679
|
+
],
|
|
28680
|
+
description: 'Label suffix shown next to the value (e.g. "XP") when showLabel=true'
|
|
28681
|
+
},
|
|
28682
|
+
size: {
|
|
28683
|
+
types: [
|
|
28684
|
+
"string"
|
|
28685
|
+
],
|
|
28686
|
+
description: "Size variant",
|
|
28687
|
+
enumValues: [
|
|
28688
|
+
"sm",
|
|
28689
|
+
"md",
|
|
28690
|
+
"lg"
|
|
28691
|
+
],
|
|
28692
|
+
default: "md"
|
|
28693
|
+
},
|
|
28694
|
+
className: {
|
|
28695
|
+
types: [
|
|
28696
|
+
"string"
|
|
28697
|
+
],
|
|
28698
|
+
description: "Additional CSS classes"
|
|
28699
|
+
},
|
|
28700
|
+
animated: {
|
|
28701
|
+
types: [
|
|
28702
|
+
"boolean"
|
|
28703
|
+
],
|
|
28704
|
+
description: "Animation on change",
|
|
28705
|
+
default: true
|
|
28706
|
+
},
|
|
28707
|
+
frameAsset: {
|
|
28708
|
+
types: [
|
|
28709
|
+
"object"
|
|
28710
|
+
],
|
|
28711
|
+
description: "Sprite image used as the bar track/frame border for bar/progress formats. Falls back to CSS rounded bg-muted.",
|
|
28712
|
+
properties: {
|
|
28713
|
+
url: {
|
|
28714
|
+
types: [
|
|
28715
|
+
"asset"
|
|
28716
|
+
]
|
|
28717
|
+
},
|
|
28718
|
+
role: {
|
|
28719
|
+
types: [
|
|
28720
|
+
"string"
|
|
28335
28721
|
]
|
|
28336
28722
|
},
|
|
28337
28723
|
category: {
|
|
@@ -28361,6 +28747,11 @@ var patterns_registry_default = {
|
|
|
28361
28747
|
"isometric"
|
|
28362
28748
|
]
|
|
28363
28749
|
},
|
|
28750
|
+
variant: {
|
|
28751
|
+
types: [
|
|
28752
|
+
"string"
|
|
28753
|
+
]
|
|
28754
|
+
},
|
|
28364
28755
|
dimension: {
|
|
28365
28756
|
types: [
|
|
28366
28757
|
"string"
|
|
@@ -28381,218 +28772,14 @@ var patterns_registry_default = {
|
|
|
28381
28772
|
"8:1"
|
|
28382
28773
|
]
|
|
28383
28774
|
},
|
|
28384
|
-
|
|
28385
|
-
types: [
|
|
28386
|
-
"string"
|
|
28387
|
-
]
|
|
28388
|
-
},
|
|
28389
|
-
thumbnailUrl: {
|
|
28390
|
-
types: [
|
|
28391
|
-
"string"
|
|
28392
|
-
]
|
|
28393
|
-
}
|
|
28394
|
-
},
|
|
28395
|
-
propertyRequired: [
|
|
28396
|
-
"url"
|
|
28397
|
-
]
|
|
28398
|
-
},
|
|
28399
|
-
position: {
|
|
28400
|
-
types: [
|
|
28401
|
-
"string"
|
|
28402
|
-
],
|
|
28403
|
-
description: "Position of the bubble on screen",
|
|
28404
|
-
enumValues: [
|
|
28405
|
-
"top",
|
|
28406
|
-
"bottom"
|
|
28407
|
-
],
|
|
28408
|
-
default: "bottom"
|
|
28409
|
-
},
|
|
28410
|
-
mood: {
|
|
28411
|
-
types: [
|
|
28412
|
-
"string"
|
|
28413
|
-
],
|
|
28414
|
-
description: "Speaker mood \u2014 drives a portrait-ring accent; LOLO sets this per dialogue node/transition.",
|
|
28415
|
-
enumValues: [
|
|
28416
|
-
"neutral",
|
|
28417
|
-
"happy",
|
|
28418
|
-
"concerned",
|
|
28419
|
-
"angry"
|
|
28420
|
-
],
|
|
28421
|
-
default: "neutral"
|
|
28422
|
-
},
|
|
28423
|
-
revealedChars: {
|
|
28424
|
-
types: [
|
|
28425
|
-
"number"
|
|
28426
|
-
],
|
|
28427
|
-
description: "Number of `text` characters to reveal (typewriter effect). Omit to show the full string \u2014 LOLO drives this from `@entity.revealedChars` via a tick, incrementing it until it reaches `text.length`."
|
|
28428
|
-
},
|
|
28429
|
-
className: {
|
|
28430
|
-
types: [
|
|
28431
|
-
"string"
|
|
28432
|
-
],
|
|
28433
|
-
description: "Additional CSS classes"
|
|
28434
|
-
}
|
|
28435
|
-
}
|
|
28436
|
-
},
|
|
28437
|
-
"health-bar": {
|
|
28438
|
-
type: "health-bar",
|
|
28439
|
-
category: "game",
|
|
28440
|
-
tier: "atoms",
|
|
28441
|
-
family: "game",
|
|
28442
|
-
description: "HealthBar component",
|
|
28443
|
-
suggestedFor: [
|
|
28444
|
-
"health",
|
|
28445
|
-
"bar",
|
|
28446
|
-
"health bar"
|
|
28447
|
-
],
|
|
28448
|
-
typicalSize: "small",
|
|
28449
|
-
propsSchema: {
|
|
28450
|
-
current: {
|
|
28451
|
-
types: [
|
|
28452
|
-
"number"
|
|
28453
|
-
],
|
|
28454
|
-
description: "Current value",
|
|
28455
|
-
required: true,
|
|
28456
|
-
default: 3
|
|
28457
|
-
},
|
|
28458
|
-
max: {
|
|
28459
|
-
types: [
|
|
28460
|
-
"number"
|
|
28461
|
-
],
|
|
28462
|
-
description: "Maximum value",
|
|
28463
|
-
required: true,
|
|
28464
|
-
default: 5
|
|
28465
|
-
},
|
|
28466
|
-
format: {
|
|
28467
|
-
types: [
|
|
28468
|
-
"string"
|
|
28469
|
-
],
|
|
28470
|
-
description: "Display format. - `hearts` / `bar` / `numeric` \u2014 health display - `progress` \u2014 XP / generic progress bar with optional level badge and value label",
|
|
28471
|
-
enumValues: [
|
|
28472
|
-
"hearts",
|
|
28473
|
-
"bar",
|
|
28474
|
-
"numeric",
|
|
28475
|
-
"progress"
|
|
28476
|
-
],
|
|
28477
|
-
default: "hearts"
|
|
28478
|
-
},
|
|
28479
|
-
level: {
|
|
28480
|
-
types: [
|
|
28481
|
-
"number"
|
|
28482
|
-
],
|
|
28483
|
-
description: 'Current level \u2014 shown as "Lv.N" badge when format="progress"'
|
|
28484
|
-
},
|
|
28485
|
-
showLabel: {
|
|
28486
|
-
types: [
|
|
28487
|
-
"boolean"
|
|
28488
|
-
],
|
|
28489
|
-
description: 'Show value label below bar when format="progress"',
|
|
28490
|
-
default: true
|
|
28491
|
-
},
|
|
28492
|
-
labelSuffix: {
|
|
28493
|
-
types: [
|
|
28494
|
-
"string"
|
|
28495
|
-
],
|
|
28496
|
-
description: 'Label suffix shown next to the value (e.g. "XP") when showLabel=true'
|
|
28497
|
-
},
|
|
28498
|
-
size: {
|
|
28499
|
-
types: [
|
|
28500
|
-
"string"
|
|
28501
|
-
],
|
|
28502
|
-
description: "Size variant",
|
|
28503
|
-
enumValues: [
|
|
28504
|
-
"sm",
|
|
28505
|
-
"md",
|
|
28506
|
-
"lg"
|
|
28507
|
-
],
|
|
28508
|
-
default: "md"
|
|
28509
|
-
},
|
|
28510
|
-
className: {
|
|
28511
|
-
types: [
|
|
28512
|
-
"string"
|
|
28513
|
-
],
|
|
28514
|
-
description: "Additional CSS classes"
|
|
28515
|
-
},
|
|
28516
|
-
animated: {
|
|
28517
|
-
types: [
|
|
28518
|
-
"boolean"
|
|
28519
|
-
],
|
|
28520
|
-
description: "Animation on change",
|
|
28521
|
-
default: true
|
|
28522
|
-
},
|
|
28523
|
-
frameAsset: {
|
|
28524
|
-
types: [
|
|
28525
|
-
"object"
|
|
28526
|
-
],
|
|
28527
|
-
description: "Sprite image used as the bar track/frame border for bar/progress formats. Falls back to CSS rounded bg-muted.",
|
|
28528
|
-
properties: {
|
|
28529
|
-
url: {
|
|
28775
|
+
atlas: {
|
|
28530
28776
|
types: [
|
|
28531
28777
|
"asset"
|
|
28532
28778
|
]
|
|
28533
28779
|
},
|
|
28534
|
-
|
|
28535
|
-
types: [
|
|
28536
|
-
"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
|
-
]
|
|
28550
|
-
},
|
|
28551
|
-
category: {
|
|
28552
|
-
types: [
|
|
28553
|
-
"string"
|
|
28554
|
-
]
|
|
28555
|
-
},
|
|
28556
|
-
animations: {
|
|
28557
|
-
types: [
|
|
28558
|
-
"array"
|
|
28559
|
-
],
|
|
28560
|
-
items: {
|
|
28561
|
-
types: [
|
|
28562
|
-
"string"
|
|
28563
|
-
]
|
|
28564
|
-
}
|
|
28565
|
-
},
|
|
28566
|
-
style: {
|
|
28567
|
-
types: [
|
|
28568
|
-
"string"
|
|
28569
|
-
],
|
|
28570
|
-
enumValues: [
|
|
28571
|
-
"pixel",
|
|
28572
|
-
"vector",
|
|
28573
|
-
"hd",
|
|
28574
|
-
"1-bit",
|
|
28575
|
-
"isometric"
|
|
28576
|
-
]
|
|
28577
|
-
},
|
|
28578
|
-
dimension: {
|
|
28579
|
-
types: [
|
|
28580
|
-
"string"
|
|
28581
|
-
],
|
|
28582
|
-
enumValues: [
|
|
28583
|
-
"2d",
|
|
28584
|
-
"3d"
|
|
28585
|
-
]
|
|
28586
|
-
},
|
|
28587
|
-
aspect: {
|
|
28780
|
+
sprite: {
|
|
28588
28781
|
types: [
|
|
28589
28782
|
"string"
|
|
28590
|
-
],
|
|
28591
|
-
enumValues: [
|
|
28592
|
-
"1:1",
|
|
28593
|
-
"16:9",
|
|
28594
|
-
"5:7",
|
|
28595
|
-
"8:1"
|
|
28596
28783
|
]
|
|
28597
28784
|
},
|
|
28598
28785
|
name: {
|
|
@@ -28607,7 +28794,9 @@ var patterns_registry_default = {
|
|
|
28607
28794
|
}
|
|
28608
28795
|
},
|
|
28609
28796
|
propertyRequired: [
|
|
28610
|
-
"url"
|
|
28797
|
+
"url",
|
|
28798
|
+
"role",
|
|
28799
|
+
"category"
|
|
28611
28800
|
]
|
|
28612
28801
|
},
|
|
28613
28802
|
fillAsset: {
|
|
@@ -28624,18 +28813,6 @@ var patterns_registry_default = {
|
|
|
28624
28813
|
role: {
|
|
28625
28814
|
types: [
|
|
28626
28815
|
"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
28816
|
]
|
|
28640
28817
|
},
|
|
28641
28818
|
category: {
|
|
@@ -28665,6 +28842,11 @@ var patterns_registry_default = {
|
|
|
28665
28842
|
"isometric"
|
|
28666
28843
|
]
|
|
28667
28844
|
},
|
|
28845
|
+
variant: {
|
|
28846
|
+
types: [
|
|
28847
|
+
"string"
|
|
28848
|
+
]
|
|
28849
|
+
},
|
|
28668
28850
|
dimension: {
|
|
28669
28851
|
types: [
|
|
28670
28852
|
"string"
|
|
@@ -28685,6 +28867,16 @@ var patterns_registry_default = {
|
|
|
28685
28867
|
"8:1"
|
|
28686
28868
|
]
|
|
28687
28869
|
},
|
|
28870
|
+
atlas: {
|
|
28871
|
+
types: [
|
|
28872
|
+
"asset"
|
|
28873
|
+
]
|
|
28874
|
+
},
|
|
28875
|
+
sprite: {
|
|
28876
|
+
types: [
|
|
28877
|
+
"string"
|
|
28878
|
+
]
|
|
28879
|
+
},
|
|
28688
28880
|
name: {
|
|
28689
28881
|
types: [
|
|
28690
28882
|
"string"
|
|
@@ -28697,7 +28889,9 @@ var patterns_registry_default = {
|
|
|
28697
28889
|
}
|
|
28698
28890
|
},
|
|
28699
28891
|
propertyRequired: [
|
|
28700
|
-
"url"
|
|
28892
|
+
"url",
|
|
28893
|
+
"role",
|
|
28894
|
+
"category"
|
|
28701
28895
|
]
|
|
28702
28896
|
}
|
|
28703
28897
|
}
|
|
@@ -28729,18 +28923,6 @@ var patterns_registry_default = {
|
|
|
28729
28923
|
role: {
|
|
28730
28924
|
types: [
|
|
28731
28925
|
"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
28926
|
]
|
|
28745
28927
|
},
|
|
28746
28928
|
category: {
|
|
@@ -28770,6 +28952,11 @@ var patterns_registry_default = {
|
|
|
28770
28952
|
"isometric"
|
|
28771
28953
|
]
|
|
28772
28954
|
},
|
|
28955
|
+
variant: {
|
|
28956
|
+
types: [
|
|
28957
|
+
"string"
|
|
28958
|
+
]
|
|
28959
|
+
},
|
|
28773
28960
|
dimension: {
|
|
28774
28961
|
types: [
|
|
28775
28962
|
"string"
|
|
@@ -28790,6 +28977,16 @@ var patterns_registry_default = {
|
|
|
28790
28977
|
"8:1"
|
|
28791
28978
|
]
|
|
28792
28979
|
},
|
|
28980
|
+
atlas: {
|
|
28981
|
+
types: [
|
|
28982
|
+
"asset"
|
|
28983
|
+
]
|
|
28984
|
+
},
|
|
28985
|
+
sprite: {
|
|
28986
|
+
types: [
|
|
28987
|
+
"string"
|
|
28988
|
+
]
|
|
28989
|
+
},
|
|
28793
28990
|
name: {
|
|
28794
28991
|
types: [
|
|
28795
28992
|
"string"
|
|
@@ -28802,7 +28999,9 @@ var patterns_registry_default = {
|
|
|
28802
28999
|
}
|
|
28803
29000
|
},
|
|
28804
29001
|
propertyRequired: [
|
|
28805
|
-
"url"
|
|
29002
|
+
"url",
|
|
29003
|
+
"role",
|
|
29004
|
+
"category"
|
|
28806
29005
|
]
|
|
28807
29006
|
},
|
|
28808
29007
|
value: {
|
|
@@ -28937,18 +29136,6 @@ var patterns_registry_default = {
|
|
|
28937
29136
|
role: {
|
|
28938
29137
|
types: [
|
|
28939
29138
|
"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
29139
|
]
|
|
28953
29140
|
},
|
|
28954
29141
|
category: {
|
|
@@ -28978,6 +29165,11 @@ var patterns_registry_default = {
|
|
|
28978
29165
|
"isometric"
|
|
28979
29166
|
]
|
|
28980
29167
|
},
|
|
29168
|
+
variant: {
|
|
29169
|
+
types: [
|
|
29170
|
+
"string"
|
|
29171
|
+
]
|
|
29172
|
+
},
|
|
28981
29173
|
dimension: {
|
|
28982
29174
|
types: [
|
|
28983
29175
|
"string"
|
|
@@ -28998,6 +29190,16 @@ var patterns_registry_default = {
|
|
|
28998
29190
|
"8:1"
|
|
28999
29191
|
]
|
|
29000
29192
|
},
|
|
29193
|
+
atlas: {
|
|
29194
|
+
types: [
|
|
29195
|
+
"asset"
|
|
29196
|
+
]
|
|
29197
|
+
},
|
|
29198
|
+
sprite: {
|
|
29199
|
+
types: [
|
|
29200
|
+
"string"
|
|
29201
|
+
]
|
|
29202
|
+
},
|
|
29001
29203
|
name: {
|
|
29002
29204
|
types: [
|
|
29003
29205
|
"string"
|
|
@@ -29010,7 +29212,9 @@ var patterns_registry_default = {
|
|
|
29010
29212
|
}
|
|
29011
29213
|
},
|
|
29012
29214
|
propertyRequired: [
|
|
29013
|
-
"url"
|
|
29215
|
+
"url",
|
|
29216
|
+
"role",
|
|
29217
|
+
"category"
|
|
29014
29218
|
]
|
|
29015
29219
|
}
|
|
29016
29220
|
}
|
|
@@ -30544,7 +30748,8 @@ var patterns_registry_default = {
|
|
|
30544
30748
|
category: "display",
|
|
30545
30749
|
tier: "molecules",
|
|
30546
30750
|
family: "avl",
|
|
30547
|
-
description: "ModuleCard
|
|
30751
|
+
description: "ModuleCard \u2014 a card summarizing one course module or lesson with progress and entry point.",
|
|
30752
|
+
capabilities: "course module card, lesson card, curriculum unit card, learning-path step card",
|
|
30548
30753
|
suggestedFor: [
|
|
30549
30754
|
"module",
|
|
30550
30755
|
"card",
|
|
@@ -30686,18 +30891,6 @@ var patterns_registry_default = {
|
|
|
30686
30891
|
role: {
|
|
30687
30892
|
types: [
|
|
30688
30893
|
"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
30894
|
]
|
|
30702
30895
|
},
|
|
30703
30896
|
category: {
|
|
@@ -30727,6 +30920,11 @@ var patterns_registry_default = {
|
|
|
30727
30920
|
"isometric"
|
|
30728
30921
|
]
|
|
30729
30922
|
},
|
|
30923
|
+
variant: {
|
|
30924
|
+
types: [
|
|
30925
|
+
"string"
|
|
30926
|
+
]
|
|
30927
|
+
},
|
|
30730
30928
|
dimension: {
|
|
30731
30929
|
types: [
|
|
30732
30930
|
"string"
|
|
@@ -30747,6 +30945,16 @@ var patterns_registry_default = {
|
|
|
30747
30945
|
"8:1"
|
|
30748
30946
|
]
|
|
30749
30947
|
},
|
|
30948
|
+
atlas: {
|
|
30949
|
+
types: [
|
|
30950
|
+
"asset"
|
|
30951
|
+
]
|
|
30952
|
+
},
|
|
30953
|
+
sprite: {
|
|
30954
|
+
types: [
|
|
30955
|
+
"string"
|
|
30956
|
+
]
|
|
30957
|
+
},
|
|
30750
30958
|
name: {
|
|
30751
30959
|
types: [
|
|
30752
30960
|
"string"
|
|
@@ -30759,7 +30967,9 @@ var patterns_registry_default = {
|
|
|
30759
30967
|
}
|
|
30760
30968
|
},
|
|
30761
30969
|
required: [
|
|
30762
|
-
"url"
|
|
30970
|
+
"url",
|
|
30971
|
+
"role",
|
|
30972
|
+
"category"
|
|
30763
30973
|
]
|
|
30764
30974
|
},
|
|
30765
30975
|
format: {
|
|
@@ -31039,18 +31249,6 @@ var patterns_registry_default = {
|
|
|
31039
31249
|
role: {
|
|
31040
31250
|
types: [
|
|
31041
31251
|
"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
31252
|
]
|
|
31055
31253
|
},
|
|
31056
31254
|
category: {
|
|
@@ -31080,6 +31278,11 @@ var patterns_registry_default = {
|
|
|
31080
31278
|
"isometric"
|
|
31081
31279
|
]
|
|
31082
31280
|
},
|
|
31281
|
+
variant: {
|
|
31282
|
+
types: [
|
|
31283
|
+
"string"
|
|
31284
|
+
]
|
|
31285
|
+
},
|
|
31083
31286
|
dimension: {
|
|
31084
31287
|
types: [
|
|
31085
31288
|
"string"
|
|
@@ -31100,6 +31303,16 @@ var patterns_registry_default = {
|
|
|
31100
31303
|
"8:1"
|
|
31101
31304
|
]
|
|
31102
31305
|
},
|
|
31306
|
+
atlas: {
|
|
31307
|
+
types: [
|
|
31308
|
+
"asset"
|
|
31309
|
+
]
|
|
31310
|
+
},
|
|
31311
|
+
sprite: {
|
|
31312
|
+
types: [
|
|
31313
|
+
"string"
|
|
31314
|
+
]
|
|
31315
|
+
},
|
|
31103
31316
|
name: {
|
|
31104
31317
|
types: [
|
|
31105
31318
|
"string"
|
|
@@ -31112,7 +31325,9 @@ var patterns_registry_default = {
|
|
|
31112
31325
|
}
|
|
31113
31326
|
},
|
|
31114
31327
|
propertyRequired: [
|
|
31115
|
-
"url"
|
|
31328
|
+
"url",
|
|
31329
|
+
"role",
|
|
31330
|
+
"category"
|
|
31116
31331
|
]
|
|
31117
31332
|
},
|
|
31118
31333
|
className: {
|
|
@@ -31150,18 +31365,6 @@ var patterns_registry_default = {
|
|
|
31150
31365
|
role: {
|
|
31151
31366
|
types: [
|
|
31152
31367
|
"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
31368
|
]
|
|
31166
31369
|
},
|
|
31167
31370
|
category: {
|
|
@@ -31191,6 +31394,11 @@ var patterns_registry_default = {
|
|
|
31191
31394
|
"isometric"
|
|
31192
31395
|
]
|
|
31193
31396
|
},
|
|
31397
|
+
variant: {
|
|
31398
|
+
types: [
|
|
31399
|
+
"string"
|
|
31400
|
+
]
|
|
31401
|
+
},
|
|
31194
31402
|
dimension: {
|
|
31195
31403
|
types: [
|
|
31196
31404
|
"string"
|
|
@@ -31211,6 +31419,16 @@ var patterns_registry_default = {
|
|
|
31211
31419
|
"8:1"
|
|
31212
31420
|
]
|
|
31213
31421
|
},
|
|
31422
|
+
atlas: {
|
|
31423
|
+
types: [
|
|
31424
|
+
"asset"
|
|
31425
|
+
]
|
|
31426
|
+
},
|
|
31427
|
+
sprite: {
|
|
31428
|
+
types: [
|
|
31429
|
+
"string"
|
|
31430
|
+
]
|
|
31431
|
+
},
|
|
31214
31432
|
name: {
|
|
31215
31433
|
types: [
|
|
31216
31434
|
"string"
|
|
@@ -31223,7 +31441,9 @@ var patterns_registry_default = {
|
|
|
31223
31441
|
}
|
|
31224
31442
|
},
|
|
31225
31443
|
propertyRequired: [
|
|
31226
|
-
"url"
|
|
31444
|
+
"url",
|
|
31445
|
+
"role",
|
|
31446
|
+
"category"
|
|
31227
31447
|
]
|
|
31228
31448
|
},
|
|
31229
31449
|
iconUrl: {
|
|
@@ -31240,18 +31460,6 @@ var patterns_registry_default = {
|
|
|
31240
31460
|
role: {
|
|
31241
31461
|
types: [
|
|
31242
31462
|
"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
31463
|
]
|
|
31256
31464
|
},
|
|
31257
31465
|
category: {
|
|
@@ -31281,6 +31489,11 @@ var patterns_registry_default = {
|
|
|
31281
31489
|
"isometric"
|
|
31282
31490
|
]
|
|
31283
31491
|
},
|
|
31492
|
+
variant: {
|
|
31493
|
+
types: [
|
|
31494
|
+
"string"
|
|
31495
|
+
]
|
|
31496
|
+
},
|
|
31284
31497
|
dimension: {
|
|
31285
31498
|
types: [
|
|
31286
31499
|
"string"
|
|
@@ -31301,6 +31514,16 @@ var patterns_registry_default = {
|
|
|
31301
31514
|
"8:1"
|
|
31302
31515
|
]
|
|
31303
31516
|
},
|
|
31517
|
+
atlas: {
|
|
31518
|
+
types: [
|
|
31519
|
+
"asset"
|
|
31520
|
+
]
|
|
31521
|
+
},
|
|
31522
|
+
sprite: {
|
|
31523
|
+
types: [
|
|
31524
|
+
"string"
|
|
31525
|
+
]
|
|
31526
|
+
},
|
|
31304
31527
|
name: {
|
|
31305
31528
|
types: [
|
|
31306
31529
|
"string"
|
|
@@ -31313,7 +31536,9 @@ var patterns_registry_default = {
|
|
|
31313
31536
|
}
|
|
31314
31537
|
},
|
|
31315
31538
|
propertyRequired: [
|
|
31316
|
-
"url"
|
|
31539
|
+
"url",
|
|
31540
|
+
"role",
|
|
31541
|
+
"category"
|
|
31317
31542
|
]
|
|
31318
31543
|
},
|
|
31319
31544
|
label: {
|
|
@@ -31906,18 +32131,6 @@ var patterns_registry_default = {
|
|
|
31906
32131
|
role: {
|
|
31907
32132
|
types: [
|
|
31908
32133
|
"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
32134
|
]
|
|
31922
32135
|
},
|
|
31923
32136
|
category: {
|
|
@@ -31947,6 +32160,11 @@ var patterns_registry_default = {
|
|
|
31947
32160
|
"isometric"
|
|
31948
32161
|
]
|
|
31949
32162
|
},
|
|
32163
|
+
variant: {
|
|
32164
|
+
types: [
|
|
32165
|
+
"string"
|
|
32166
|
+
]
|
|
32167
|
+
},
|
|
31950
32168
|
dimension: {
|
|
31951
32169
|
types: [
|
|
31952
32170
|
"string"
|
|
@@ -31967,6 +32185,16 @@ var patterns_registry_default = {
|
|
|
31967
32185
|
"8:1"
|
|
31968
32186
|
]
|
|
31969
32187
|
},
|
|
32188
|
+
atlas: {
|
|
32189
|
+
types: [
|
|
32190
|
+
"asset"
|
|
32191
|
+
]
|
|
32192
|
+
},
|
|
32193
|
+
sprite: {
|
|
32194
|
+
types: [
|
|
32195
|
+
"string"
|
|
32196
|
+
]
|
|
32197
|
+
},
|
|
31970
32198
|
name: {
|
|
31971
32199
|
types: [
|
|
31972
32200
|
"string"
|
|
@@ -31979,7 +32207,9 @@ var patterns_registry_default = {
|
|
|
31979
32207
|
}
|
|
31980
32208
|
},
|
|
31981
32209
|
propertyRequired: [
|
|
31982
|
-
"url"
|
|
32210
|
+
"url",
|
|
32211
|
+
"role",
|
|
32212
|
+
"category"
|
|
31983
32213
|
]
|
|
31984
32214
|
},
|
|
31985
32215
|
offAsset: {
|
|
@@ -31996,18 +32226,6 @@ var patterns_registry_default = {
|
|
|
31996
32226
|
role: {
|
|
31997
32227
|
types: [
|
|
31998
32228
|
"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
32229
|
]
|
|
32012
32230
|
},
|
|
32013
32231
|
category: {
|
|
@@ -32037,6 +32255,11 @@ var patterns_registry_default = {
|
|
|
32037
32255
|
"isometric"
|
|
32038
32256
|
]
|
|
32039
32257
|
},
|
|
32258
|
+
variant: {
|
|
32259
|
+
types: [
|
|
32260
|
+
"string"
|
|
32261
|
+
]
|
|
32262
|
+
},
|
|
32040
32263
|
dimension: {
|
|
32041
32264
|
types: [
|
|
32042
32265
|
"string"
|
|
@@ -32057,6 +32280,16 @@ var patterns_registry_default = {
|
|
|
32057
32280
|
"8:1"
|
|
32058
32281
|
]
|
|
32059
32282
|
},
|
|
32283
|
+
atlas: {
|
|
32284
|
+
types: [
|
|
32285
|
+
"asset"
|
|
32286
|
+
]
|
|
32287
|
+
},
|
|
32288
|
+
sprite: {
|
|
32289
|
+
types: [
|
|
32290
|
+
"string"
|
|
32291
|
+
]
|
|
32292
|
+
},
|
|
32060
32293
|
name: {
|
|
32061
32294
|
types: [
|
|
32062
32295
|
"string"
|
|
@@ -32069,7 +32302,9 @@ var patterns_registry_default = {
|
|
|
32069
32302
|
}
|
|
32070
32303
|
},
|
|
32071
32304
|
propertyRequired: [
|
|
32072
|
-
"url"
|
|
32305
|
+
"url",
|
|
32306
|
+
"role",
|
|
32307
|
+
"category"
|
|
32073
32308
|
]
|
|
32074
32309
|
}
|
|
32075
32310
|
}
|
|
@@ -32138,18 +32373,6 @@ var patterns_registry_default = {
|
|
|
32138
32373
|
role: {
|
|
32139
32374
|
types: [
|
|
32140
32375
|
"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
32376
|
]
|
|
32154
32377
|
},
|
|
32155
32378
|
category: {
|
|
@@ -32179,6 +32402,11 @@ var patterns_registry_default = {
|
|
|
32179
32402
|
"isometric"
|
|
32180
32403
|
]
|
|
32181
32404
|
},
|
|
32405
|
+
variant: {
|
|
32406
|
+
types: [
|
|
32407
|
+
"string"
|
|
32408
|
+
]
|
|
32409
|
+
},
|
|
32182
32410
|
dimension: {
|
|
32183
32411
|
types: [
|
|
32184
32412
|
"string"
|
|
@@ -32199,6 +32427,16 @@ var patterns_registry_default = {
|
|
|
32199
32427
|
"8:1"
|
|
32200
32428
|
]
|
|
32201
32429
|
},
|
|
32430
|
+
atlas: {
|
|
32431
|
+
types: [
|
|
32432
|
+
"asset"
|
|
32433
|
+
]
|
|
32434
|
+
},
|
|
32435
|
+
sprite: {
|
|
32436
|
+
types: [
|
|
32437
|
+
"string"
|
|
32438
|
+
]
|
|
32439
|
+
},
|
|
32202
32440
|
name: {
|
|
32203
32441
|
types: [
|
|
32204
32442
|
"string"
|
|
@@ -32211,7 +32449,9 @@ var patterns_registry_default = {
|
|
|
32211
32449
|
}
|
|
32212
32450
|
},
|
|
32213
32451
|
required: [
|
|
32214
|
-
"url"
|
|
32452
|
+
"url",
|
|
32453
|
+
"role",
|
|
32454
|
+
"category"
|
|
32215
32455
|
]
|
|
32216
32456
|
},
|
|
32217
32457
|
stateMachine: {
|
|
@@ -32306,18 +32546,6 @@ var patterns_registry_default = {
|
|
|
32306
32546
|
role: {
|
|
32307
32547
|
types: [
|
|
32308
32548
|
"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
32549
|
]
|
|
32322
32550
|
},
|
|
32323
32551
|
category: {
|
|
@@ -32347,6 +32575,11 @@ var patterns_registry_default = {
|
|
|
32347
32575
|
"isometric"
|
|
32348
32576
|
]
|
|
32349
32577
|
},
|
|
32578
|
+
variant: {
|
|
32579
|
+
types: [
|
|
32580
|
+
"string"
|
|
32581
|
+
]
|
|
32582
|
+
},
|
|
32350
32583
|
dimension: {
|
|
32351
32584
|
types: [
|
|
32352
32585
|
"string"
|
|
@@ -32367,6 +32600,16 @@ var patterns_registry_default = {
|
|
|
32367
32600
|
"8:1"
|
|
32368
32601
|
]
|
|
32369
32602
|
},
|
|
32603
|
+
atlas: {
|
|
32604
|
+
types: [
|
|
32605
|
+
"asset"
|
|
32606
|
+
]
|
|
32607
|
+
},
|
|
32608
|
+
sprite: {
|
|
32609
|
+
types: [
|
|
32610
|
+
"string"
|
|
32611
|
+
]
|
|
32612
|
+
},
|
|
32370
32613
|
name: {
|
|
32371
32614
|
types: [
|
|
32372
32615
|
"string"
|
|
@@ -32379,7 +32622,9 @@ var patterns_registry_default = {
|
|
|
32379
32622
|
}
|
|
32380
32623
|
},
|
|
32381
32624
|
propertyRequired: [
|
|
32382
|
-
"url"
|
|
32625
|
+
"url",
|
|
32626
|
+
"role",
|
|
32627
|
+
"category"
|
|
32383
32628
|
]
|
|
32384
32629
|
},
|
|
32385
32630
|
className: {
|
|
@@ -32478,18 +32723,6 @@ var patterns_registry_default = {
|
|
|
32478
32723
|
role: {
|
|
32479
32724
|
types: [
|
|
32480
32725
|
"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
32726
|
]
|
|
32494
32727
|
},
|
|
32495
32728
|
category: {
|
|
@@ -32519,6 +32752,11 @@ var patterns_registry_default = {
|
|
|
32519
32752
|
"isometric"
|
|
32520
32753
|
]
|
|
32521
32754
|
},
|
|
32755
|
+
variant: {
|
|
32756
|
+
types: [
|
|
32757
|
+
"string"
|
|
32758
|
+
]
|
|
32759
|
+
},
|
|
32522
32760
|
dimension: {
|
|
32523
32761
|
types: [
|
|
32524
32762
|
"string"
|
|
@@ -32539,6 +32777,16 @@ var patterns_registry_default = {
|
|
|
32539
32777
|
"8:1"
|
|
32540
32778
|
]
|
|
32541
32779
|
},
|
|
32780
|
+
atlas: {
|
|
32781
|
+
types: [
|
|
32782
|
+
"asset"
|
|
32783
|
+
]
|
|
32784
|
+
},
|
|
32785
|
+
sprite: {
|
|
32786
|
+
types: [
|
|
32787
|
+
"string"
|
|
32788
|
+
]
|
|
32789
|
+
},
|
|
32542
32790
|
name: {
|
|
32543
32791
|
types: [
|
|
32544
32792
|
"string"
|
|
@@ -32551,7 +32799,9 @@ var patterns_registry_default = {
|
|
|
32551
32799
|
}
|
|
32552
32800
|
},
|
|
32553
32801
|
required: [
|
|
32554
|
-
"url"
|
|
32802
|
+
"url",
|
|
32803
|
+
"role",
|
|
32804
|
+
"category"
|
|
32555
32805
|
]
|
|
32556
32806
|
},
|
|
32557
32807
|
stateMachine: {
|
|
@@ -32629,18 +32879,6 @@ var patterns_registry_default = {
|
|
|
32629
32879
|
role: {
|
|
32630
32880
|
types: [
|
|
32631
32881
|
"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
32882
|
]
|
|
32645
32883
|
},
|
|
32646
32884
|
category: {
|
|
@@ -32670,6 +32908,11 @@ var patterns_registry_default = {
|
|
|
32670
32908
|
"isometric"
|
|
32671
32909
|
]
|
|
32672
32910
|
},
|
|
32911
|
+
variant: {
|
|
32912
|
+
types: [
|
|
32913
|
+
"string"
|
|
32914
|
+
]
|
|
32915
|
+
},
|
|
32673
32916
|
dimension: {
|
|
32674
32917
|
types: [
|
|
32675
32918
|
"string"
|
|
@@ -32690,6 +32933,16 @@ var patterns_registry_default = {
|
|
|
32690
32933
|
"8:1"
|
|
32691
32934
|
]
|
|
32692
32935
|
},
|
|
32936
|
+
atlas: {
|
|
32937
|
+
types: [
|
|
32938
|
+
"asset"
|
|
32939
|
+
]
|
|
32940
|
+
},
|
|
32941
|
+
sprite: {
|
|
32942
|
+
types: [
|
|
32943
|
+
"string"
|
|
32944
|
+
]
|
|
32945
|
+
},
|
|
32693
32946
|
name: {
|
|
32694
32947
|
types: [
|
|
32695
32948
|
"string"
|
|
@@ -32702,7 +32955,9 @@ var patterns_registry_default = {
|
|
|
32702
32955
|
}
|
|
32703
32956
|
},
|
|
32704
32957
|
required: [
|
|
32705
|
-
"url"
|
|
32958
|
+
"url",
|
|
32959
|
+
"role",
|
|
32960
|
+
"category"
|
|
32706
32961
|
]
|
|
32707
32962
|
},
|
|
32708
32963
|
stateMachine: {
|
|
@@ -32857,18 +33112,6 @@ var patterns_registry_default = {
|
|
|
32857
33112
|
role: {
|
|
32858
33113
|
types: [
|
|
32859
33114
|
"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
33115
|
]
|
|
32873
33116
|
},
|
|
32874
33117
|
category: {
|
|
@@ -32898,6 +33141,11 @@ var patterns_registry_default = {
|
|
|
32898
33141
|
"isometric"
|
|
32899
33142
|
]
|
|
32900
33143
|
},
|
|
33144
|
+
variant: {
|
|
33145
|
+
types: [
|
|
33146
|
+
"string"
|
|
33147
|
+
]
|
|
33148
|
+
},
|
|
32901
33149
|
dimension: {
|
|
32902
33150
|
types: [
|
|
32903
33151
|
"string"
|
|
@@ -32918,6 +33166,16 @@ var patterns_registry_default = {
|
|
|
32918
33166
|
"8:1"
|
|
32919
33167
|
]
|
|
32920
33168
|
},
|
|
33169
|
+
atlas: {
|
|
33170
|
+
types: [
|
|
33171
|
+
"asset"
|
|
33172
|
+
]
|
|
33173
|
+
},
|
|
33174
|
+
sprite: {
|
|
33175
|
+
types: [
|
|
33176
|
+
"string"
|
|
33177
|
+
]
|
|
33178
|
+
},
|
|
32921
33179
|
name: {
|
|
32922
33180
|
types: [
|
|
32923
33181
|
"string"
|
|
@@ -32930,7 +33188,9 @@ var patterns_registry_default = {
|
|
|
32930
33188
|
}
|
|
32931
33189
|
},
|
|
32932
33190
|
required: [
|
|
32933
|
-
"url"
|
|
33191
|
+
"url",
|
|
33192
|
+
"role",
|
|
33193
|
+
"category"
|
|
32934
33194
|
]
|
|
32935
33195
|
},
|
|
32936
33196
|
stateMachine: {
|
|
@@ -33177,18 +33437,6 @@ var patterns_registry_default = {
|
|
|
33177
33437
|
role: {
|
|
33178
33438
|
types: [
|
|
33179
33439
|
"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
33440
|
]
|
|
33193
33441
|
},
|
|
33194
33442
|
category: {
|
|
@@ -33218,6 +33466,11 @@ var patterns_registry_default = {
|
|
|
33218
33466
|
"isometric"
|
|
33219
33467
|
]
|
|
33220
33468
|
},
|
|
33469
|
+
variant: {
|
|
33470
|
+
types: [
|
|
33471
|
+
"string"
|
|
33472
|
+
]
|
|
33473
|
+
},
|
|
33221
33474
|
dimension: {
|
|
33222
33475
|
types: [
|
|
33223
33476
|
"string"
|
|
@@ -33238,6 +33491,16 @@ var patterns_registry_default = {
|
|
|
33238
33491
|
"8:1"
|
|
33239
33492
|
]
|
|
33240
33493
|
},
|
|
33494
|
+
atlas: {
|
|
33495
|
+
types: [
|
|
33496
|
+
"asset"
|
|
33497
|
+
]
|
|
33498
|
+
},
|
|
33499
|
+
sprite: {
|
|
33500
|
+
types: [
|
|
33501
|
+
"string"
|
|
33502
|
+
]
|
|
33503
|
+
},
|
|
33241
33504
|
name: {
|
|
33242
33505
|
types: [
|
|
33243
33506
|
"string"
|
|
@@ -33250,7 +33513,9 @@ var patterns_registry_default = {
|
|
|
33250
33513
|
}
|
|
33251
33514
|
},
|
|
33252
33515
|
required: [
|
|
33253
|
-
"url"
|
|
33516
|
+
"url",
|
|
33517
|
+
"role",
|
|
33518
|
+
"category"
|
|
33254
33519
|
]
|
|
33255
33520
|
},
|
|
33256
33521
|
stateMachine: {
|
|
@@ -33375,18 +33640,6 @@ var patterns_registry_default = {
|
|
|
33375
33640
|
role: {
|
|
33376
33641
|
types: [
|
|
33377
33642
|
"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
33643
|
]
|
|
33391
33644
|
},
|
|
33392
33645
|
category: {
|
|
@@ -33416,6 +33669,11 @@ var patterns_registry_default = {
|
|
|
33416
33669
|
"isometric"
|
|
33417
33670
|
]
|
|
33418
33671
|
},
|
|
33672
|
+
variant: {
|
|
33673
|
+
types: [
|
|
33674
|
+
"string"
|
|
33675
|
+
]
|
|
33676
|
+
},
|
|
33419
33677
|
dimension: {
|
|
33420
33678
|
types: [
|
|
33421
33679
|
"string"
|
|
@@ -33436,6 +33694,16 @@ var patterns_registry_default = {
|
|
|
33436
33694
|
"8:1"
|
|
33437
33695
|
]
|
|
33438
33696
|
},
|
|
33697
|
+
atlas: {
|
|
33698
|
+
types: [
|
|
33699
|
+
"asset"
|
|
33700
|
+
]
|
|
33701
|
+
},
|
|
33702
|
+
sprite: {
|
|
33703
|
+
types: [
|
|
33704
|
+
"string"
|
|
33705
|
+
]
|
|
33706
|
+
},
|
|
33439
33707
|
name: {
|
|
33440
33708
|
types: [
|
|
33441
33709
|
"string"
|
|
@@ -33448,7 +33716,9 @@ var patterns_registry_default = {
|
|
|
33448
33716
|
}
|
|
33449
33717
|
},
|
|
33450
33718
|
required: [
|
|
33451
|
-
"url"
|
|
33719
|
+
"url",
|
|
33720
|
+
"role",
|
|
33721
|
+
"category"
|
|
33452
33722
|
]
|
|
33453
33723
|
},
|
|
33454
33724
|
stateMachine: {
|
|
@@ -33528,18 +33798,6 @@ var patterns_registry_default = {
|
|
|
33528
33798
|
role: {
|
|
33529
33799
|
types: [
|
|
33530
33800
|
"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
33801
|
]
|
|
33544
33802
|
},
|
|
33545
33803
|
category: {
|
|
@@ -33569,6 +33827,11 @@ var patterns_registry_default = {
|
|
|
33569
33827
|
"isometric"
|
|
33570
33828
|
]
|
|
33571
33829
|
},
|
|
33830
|
+
variant: {
|
|
33831
|
+
types: [
|
|
33832
|
+
"string"
|
|
33833
|
+
]
|
|
33834
|
+
},
|
|
33572
33835
|
dimension: {
|
|
33573
33836
|
types: [
|
|
33574
33837
|
"string"
|
|
@@ -33589,6 +33852,16 @@ var patterns_registry_default = {
|
|
|
33589
33852
|
"8:1"
|
|
33590
33853
|
]
|
|
33591
33854
|
},
|
|
33855
|
+
atlas: {
|
|
33856
|
+
types: [
|
|
33857
|
+
"asset"
|
|
33858
|
+
]
|
|
33859
|
+
},
|
|
33860
|
+
sprite: {
|
|
33861
|
+
types: [
|
|
33862
|
+
"string"
|
|
33863
|
+
]
|
|
33864
|
+
},
|
|
33592
33865
|
name: {
|
|
33593
33866
|
types: [
|
|
33594
33867
|
"string"
|
|
@@ -33601,7 +33874,9 @@ var patterns_registry_default = {
|
|
|
33601
33874
|
}
|
|
33602
33875
|
},
|
|
33603
33876
|
required: [
|
|
33604
|
-
"url"
|
|
33877
|
+
"url",
|
|
33878
|
+
"role",
|
|
33879
|
+
"category"
|
|
33605
33880
|
]
|
|
33606
33881
|
},
|
|
33607
33882
|
stateMachine: {
|
|
@@ -34391,7 +34666,8 @@ var patterns_registry_default = {
|
|
|
34391
34666
|
category: "component",
|
|
34392
34667
|
tier: "atoms",
|
|
34393
34668
|
family: "core",
|
|
34394
|
-
description: "Aside
|
|
34669
|
+
description: "Aside \u2014 a secondary side panel that hosts navigation links or supplementary content alongside a main content area.",
|
|
34670
|
+
capabilities: "settings navigation sidebar, preferences menu panel, account settings nav, secondary panel, side navigation rail",
|
|
34395
34671
|
suggestedFor: [
|
|
34396
34672
|
"aside"
|
|
34397
34673
|
],
|
|
@@ -34648,7 +34924,8 @@ var patterns_registry_default = {
|
|
|
34648
34924
|
category: "display",
|
|
34649
34925
|
tier: "molecules",
|
|
34650
34926
|
family: "core",
|
|
34651
|
-
description: "TableView
|
|
34927
|
+
description: "TableView \u2014 sortable, selectable data table rendering rows over configurable columns, with inline row actions and grouping.",
|
|
34928
|
+
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
34929
|
suggestedFor: [
|
|
34653
34930
|
"table",
|
|
34654
34931
|
"view",
|
|
@@ -35771,22 +36048,6 @@ var patterns_registry_default = {
|
|
|
35771
36048
|
items: {
|
|
35772
36049
|
types: [
|
|
35773
36050
|
"object"
|
|
35774
|
-
],
|
|
35775
|
-
properties: {
|
|
35776
|
-
type: {
|
|
35777
|
-
types: [
|
|
35778
|
-
"unknown"
|
|
35779
|
-
]
|
|
35780
|
-
},
|
|
35781
|
-
content: {
|
|
35782
|
-
types: [
|
|
35783
|
-
"string"
|
|
35784
|
-
]
|
|
35785
|
-
}
|
|
35786
|
-
},
|
|
35787
|
-
required: [
|
|
35788
|
-
"type",
|
|
35789
|
-
"content"
|
|
35790
36051
|
]
|
|
35791
36052
|
}
|
|
35792
36053
|
},
|
|
@@ -35806,34 +36067,7 @@ var patterns_registry_default = {
|
|
|
35806
36067
|
types: [
|
|
35807
36068
|
"object"
|
|
35808
36069
|
],
|
|
35809
|
-
description: "User progress for restoring activation/reflection state"
|
|
35810
|
-
properties: {
|
|
35811
|
-
activationResponse: {
|
|
35812
|
-
types: [
|
|
35813
|
-
"string"
|
|
35814
|
-
]
|
|
35815
|
-
},
|
|
35816
|
-
reflectionNotes: {
|
|
35817
|
-
types: [
|
|
35818
|
-
"array"
|
|
35819
|
-
],
|
|
35820
|
-
items: {
|
|
35821
|
-
types: [
|
|
35822
|
-
"string"
|
|
35823
|
-
]
|
|
35824
|
-
}
|
|
35825
|
-
},
|
|
35826
|
-
bloomAnswered: {
|
|
35827
|
-
types: [
|
|
35828
|
-
"object"
|
|
35829
|
-
],
|
|
35830
|
-
mapValue: {
|
|
35831
|
-
types: [
|
|
35832
|
-
"boolean"
|
|
35833
|
-
]
|
|
35834
|
-
}
|
|
35835
|
-
}
|
|
35836
|
-
}
|
|
36070
|
+
description: "User progress for restoring activation/reflection state"
|
|
35837
36071
|
},
|
|
35838
36072
|
onRunCodeSimulation: {
|
|
35839
36073
|
types: [
|
|
@@ -35862,7 +36096,7 @@ var patterns_registry_default = {
|
|
|
35862
36096
|
callbackArgs: [
|
|
35863
36097
|
{
|
|
35864
36098
|
name: "type",
|
|
35865
|
-
type: "
|
|
36099
|
+
type: "object"
|
|
35866
36100
|
},
|
|
35867
36101
|
{
|
|
35868
36102
|
name: "description",
|
|
@@ -36328,18 +36562,6 @@ var patterns_registry_default = {
|
|
|
36328
36562
|
role: {
|
|
36329
36563
|
types: [
|
|
36330
36564
|
"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
36565
|
]
|
|
36344
36566
|
},
|
|
36345
36567
|
category: {
|
|
@@ -36369,6 +36591,11 @@ var patterns_registry_default = {
|
|
|
36369
36591
|
"isometric"
|
|
36370
36592
|
]
|
|
36371
36593
|
},
|
|
36594
|
+
variant: {
|
|
36595
|
+
types: [
|
|
36596
|
+
"string"
|
|
36597
|
+
]
|
|
36598
|
+
},
|
|
36372
36599
|
dimension: {
|
|
36373
36600
|
types: [
|
|
36374
36601
|
"string"
|
|
@@ -36389,6 +36616,16 @@ var patterns_registry_default = {
|
|
|
36389
36616
|
"8:1"
|
|
36390
36617
|
]
|
|
36391
36618
|
},
|
|
36619
|
+
atlas: {
|
|
36620
|
+
types: [
|
|
36621
|
+
"asset"
|
|
36622
|
+
]
|
|
36623
|
+
},
|
|
36624
|
+
sprite: {
|
|
36625
|
+
types: [
|
|
36626
|
+
"string"
|
|
36627
|
+
]
|
|
36628
|
+
},
|
|
36392
36629
|
name: {
|
|
36393
36630
|
types: [
|
|
36394
36631
|
"string"
|
|
@@ -36401,7 +36638,9 @@ var patterns_registry_default = {
|
|
|
36401
36638
|
}
|
|
36402
36639
|
},
|
|
36403
36640
|
propertyRequired: [
|
|
36404
|
-
"url"
|
|
36641
|
+
"url",
|
|
36642
|
+
"role",
|
|
36643
|
+
"category"
|
|
36405
36644
|
]
|
|
36406
36645
|
},
|
|
36407
36646
|
tileClickEvent: {
|
|
@@ -36641,18 +36880,6 @@ var patterns_registry_default = {
|
|
|
36641
36880
|
role: {
|
|
36642
36881
|
types: [
|
|
36643
36882
|
"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
36883
|
]
|
|
36657
36884
|
},
|
|
36658
36885
|
category: {
|
|
@@ -36682,6 +36909,11 @@ var patterns_registry_default = {
|
|
|
36682
36909
|
"isometric"
|
|
36683
36910
|
]
|
|
36684
36911
|
},
|
|
36912
|
+
variant: {
|
|
36913
|
+
types: [
|
|
36914
|
+
"string"
|
|
36915
|
+
]
|
|
36916
|
+
},
|
|
36685
36917
|
dimension: {
|
|
36686
36918
|
types: [
|
|
36687
36919
|
"string"
|
|
@@ -36702,6 +36934,16 @@ var patterns_registry_default = {
|
|
|
36702
36934
|
"8:1"
|
|
36703
36935
|
]
|
|
36704
36936
|
},
|
|
36937
|
+
atlas: {
|
|
36938
|
+
types: [
|
|
36939
|
+
"asset"
|
|
36940
|
+
]
|
|
36941
|
+
},
|
|
36942
|
+
sprite: {
|
|
36943
|
+
types: [
|
|
36944
|
+
"string"
|
|
36945
|
+
]
|
|
36946
|
+
},
|
|
36705
36947
|
name: {
|
|
36706
36948
|
types: [
|
|
36707
36949
|
"string"
|
|
@@ -36714,7 +36956,9 @@ var patterns_registry_default = {
|
|
|
36714
36956
|
}
|
|
36715
36957
|
},
|
|
36716
36958
|
required: [
|
|
36717
|
-
"url"
|
|
36959
|
+
"url",
|
|
36960
|
+
"role",
|
|
36961
|
+
"category"
|
|
36718
36962
|
]
|
|
36719
36963
|
},
|
|
36720
36964
|
variant: {
|
|
@@ -36864,18 +37108,6 @@ var patterns_registry_default = {
|
|
|
36864
37108
|
role: {
|
|
36865
37109
|
types: [
|
|
36866
37110
|
"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
37111
|
]
|
|
36880
37112
|
},
|
|
36881
37113
|
category: {
|
|
@@ -36905,6 +37137,11 @@ var patterns_registry_default = {
|
|
|
36905
37137
|
"isometric"
|
|
36906
37138
|
]
|
|
36907
37139
|
},
|
|
37140
|
+
variant: {
|
|
37141
|
+
types: [
|
|
37142
|
+
"string"
|
|
37143
|
+
]
|
|
37144
|
+
},
|
|
36908
37145
|
dimension: {
|
|
36909
37146
|
types: [
|
|
36910
37147
|
"string"
|
|
@@ -36925,6 +37162,16 @@ var patterns_registry_default = {
|
|
|
36925
37162
|
"8:1"
|
|
36926
37163
|
]
|
|
36927
37164
|
},
|
|
37165
|
+
atlas: {
|
|
37166
|
+
types: [
|
|
37167
|
+
"asset"
|
|
37168
|
+
]
|
|
37169
|
+
},
|
|
37170
|
+
sprite: {
|
|
37171
|
+
types: [
|
|
37172
|
+
"string"
|
|
37173
|
+
]
|
|
37174
|
+
},
|
|
36928
37175
|
name: {
|
|
36929
37176
|
types: [
|
|
36930
37177
|
"string"
|
|
@@ -36937,7 +37184,9 @@ var patterns_registry_default = {
|
|
|
36937
37184
|
}
|
|
36938
37185
|
},
|
|
36939
37186
|
required: [
|
|
36940
|
-
"url"
|
|
37187
|
+
"url",
|
|
37188
|
+
"role",
|
|
37189
|
+
"category"
|
|
36941
37190
|
]
|
|
36942
37191
|
}
|
|
36943
37192
|
},
|
|
@@ -36994,18 +37243,6 @@ var patterns_registry_default = {
|
|
|
36994
37243
|
role: {
|
|
36995
37244
|
types: [
|
|
36996
37245
|
"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
37246
|
]
|
|
37010
37247
|
},
|
|
37011
37248
|
category: {
|
|
@@ -37035,6 +37272,11 @@ var patterns_registry_default = {
|
|
|
37035
37272
|
"isometric"
|
|
37036
37273
|
]
|
|
37037
37274
|
},
|
|
37275
|
+
variant: {
|
|
37276
|
+
types: [
|
|
37277
|
+
"string"
|
|
37278
|
+
]
|
|
37279
|
+
},
|
|
37038
37280
|
dimension: {
|
|
37039
37281
|
types: [
|
|
37040
37282
|
"string"
|
|
@@ -37055,6 +37297,16 @@ var patterns_registry_default = {
|
|
|
37055
37297
|
"8:1"
|
|
37056
37298
|
]
|
|
37057
37299
|
},
|
|
37300
|
+
atlas: {
|
|
37301
|
+
types: [
|
|
37302
|
+
"asset"
|
|
37303
|
+
]
|
|
37304
|
+
},
|
|
37305
|
+
sprite: {
|
|
37306
|
+
types: [
|
|
37307
|
+
"string"
|
|
37308
|
+
]
|
|
37309
|
+
},
|
|
37058
37310
|
name: {
|
|
37059
37311
|
types: [
|
|
37060
37312
|
"string"
|
|
@@ -37067,7 +37319,9 @@ var patterns_registry_default = {
|
|
|
37067
37319
|
}
|
|
37068
37320
|
},
|
|
37069
37321
|
propertyRequired: [
|
|
37070
|
-
"url"
|
|
37322
|
+
"url",
|
|
37323
|
+
"role",
|
|
37324
|
+
"category"
|
|
37071
37325
|
]
|
|
37072
37326
|
},
|
|
37073
37327
|
icon: {
|
|
@@ -39751,7 +40005,8 @@ var patterns_registry_default = {
|
|
|
39751
40005
|
category: "display",
|
|
39752
40006
|
tier: "atoms",
|
|
39753
40007
|
family: "marketing",
|
|
39754
|
-
description: "MarketingStatCard
|
|
40008
|
+
description: "MarketingStatCard \u2014 a single number-highlight card pairing a large value with a label and trend delta.",
|
|
40009
|
+
capabilities: "KPI card, metric tile, dashboard stat card, number card, big-number widget, stat highlight, key metric callout",
|
|
39755
40010
|
suggestedFor: [
|
|
39756
40011
|
"marketing",
|
|
39757
40012
|
"stat",
|
|
@@ -40826,18 +41081,6 @@ var patterns_registry_default = {
|
|
|
40826
41081
|
role: {
|
|
40827
41082
|
types: [
|
|
40828
41083
|
"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
41084
|
]
|
|
40842
41085
|
},
|
|
40843
41086
|
category: {
|
|
@@ -40867,6 +41110,11 @@ var patterns_registry_default = {
|
|
|
40867
41110
|
"isometric"
|
|
40868
41111
|
]
|
|
40869
41112
|
},
|
|
41113
|
+
variant: {
|
|
41114
|
+
types: [
|
|
41115
|
+
"string"
|
|
41116
|
+
]
|
|
41117
|
+
},
|
|
40870
41118
|
dimension: {
|
|
40871
41119
|
types: [
|
|
40872
41120
|
"string"
|
|
@@ -40887,6 +41135,16 @@ var patterns_registry_default = {
|
|
|
40887
41135
|
"8:1"
|
|
40888
41136
|
]
|
|
40889
41137
|
},
|
|
41138
|
+
atlas: {
|
|
41139
|
+
types: [
|
|
41140
|
+
"asset"
|
|
41141
|
+
]
|
|
41142
|
+
},
|
|
41143
|
+
sprite: {
|
|
41144
|
+
types: [
|
|
41145
|
+
"string"
|
|
41146
|
+
]
|
|
41147
|
+
},
|
|
40890
41148
|
name: {
|
|
40891
41149
|
types: [
|
|
40892
41150
|
"string"
|
|
@@ -40899,7 +41157,9 @@ var patterns_registry_default = {
|
|
|
40899
41157
|
}
|
|
40900
41158
|
},
|
|
40901
41159
|
propertyRequired: [
|
|
40902
|
-
"url"
|
|
41160
|
+
"url",
|
|
41161
|
+
"role",
|
|
41162
|
+
"category"
|
|
40903
41163
|
]
|
|
40904
41164
|
},
|
|
40905
41165
|
anchor: {
|
|
@@ -41313,18 +41573,6 @@ var patterns_registry_default = {
|
|
|
41313
41573
|
role: {
|
|
41314
41574
|
types: [
|
|
41315
41575
|
"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
41576
|
]
|
|
41329
41577
|
},
|
|
41330
41578
|
category: {
|
|
@@ -41354,6 +41602,11 @@ var patterns_registry_default = {
|
|
|
41354
41602
|
"isometric"
|
|
41355
41603
|
]
|
|
41356
41604
|
},
|
|
41605
|
+
variant: {
|
|
41606
|
+
types: [
|
|
41607
|
+
"string"
|
|
41608
|
+
]
|
|
41609
|
+
},
|
|
41357
41610
|
dimension: {
|
|
41358
41611
|
types: [
|
|
41359
41612
|
"string"
|
|
@@ -41374,6 +41627,16 @@ var patterns_registry_default = {
|
|
|
41374
41627
|
"8:1"
|
|
41375
41628
|
]
|
|
41376
41629
|
},
|
|
41630
|
+
atlas: {
|
|
41631
|
+
types: [
|
|
41632
|
+
"asset"
|
|
41633
|
+
]
|
|
41634
|
+
},
|
|
41635
|
+
sprite: {
|
|
41636
|
+
types: [
|
|
41637
|
+
"string"
|
|
41638
|
+
]
|
|
41639
|
+
},
|
|
41377
41640
|
name: {
|
|
41378
41641
|
types: [
|
|
41379
41642
|
"string"
|
|
@@ -41386,7 +41649,9 @@ var patterns_registry_default = {
|
|
|
41386
41649
|
}
|
|
41387
41650
|
},
|
|
41388
41651
|
required: [
|
|
41389
|
-
"url"
|
|
41652
|
+
"url",
|
|
41653
|
+
"role",
|
|
41654
|
+
"category"
|
|
41390
41655
|
]
|
|
41391
41656
|
},
|
|
41392
41657
|
anchor: {
|
|
@@ -41665,18 +41930,6 @@ var patterns_registry_default = {
|
|
|
41665
41930
|
role: {
|
|
41666
41931
|
types: [
|
|
41667
41932
|
"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
41933
|
]
|
|
41681
41934
|
},
|
|
41682
41935
|
category: {
|
|
@@ -41706,6 +41959,11 @@ var patterns_registry_default = {
|
|
|
41706
41959
|
"isometric"
|
|
41707
41960
|
]
|
|
41708
41961
|
},
|
|
41962
|
+
variant: {
|
|
41963
|
+
types: [
|
|
41964
|
+
"string"
|
|
41965
|
+
]
|
|
41966
|
+
},
|
|
41709
41967
|
dimension: {
|
|
41710
41968
|
types: [
|
|
41711
41969
|
"string"
|
|
@@ -41726,6 +41984,16 @@ var patterns_registry_default = {
|
|
|
41726
41984
|
"8:1"
|
|
41727
41985
|
]
|
|
41728
41986
|
},
|
|
41987
|
+
atlas: {
|
|
41988
|
+
types: [
|
|
41989
|
+
"asset"
|
|
41990
|
+
]
|
|
41991
|
+
},
|
|
41992
|
+
sprite: {
|
|
41993
|
+
types: [
|
|
41994
|
+
"string"
|
|
41995
|
+
]
|
|
41996
|
+
},
|
|
41729
41997
|
name: {
|
|
41730
41998
|
types: [
|
|
41731
41999
|
"string"
|
|
@@ -41738,7 +42006,9 @@ var patterns_registry_default = {
|
|
|
41738
42006
|
}
|
|
41739
42007
|
},
|
|
41740
42008
|
propertyRequired: [
|
|
41741
|
-
"url"
|
|
42009
|
+
"url",
|
|
42010
|
+
"role",
|
|
42011
|
+
"category"
|
|
41742
42012
|
]
|
|
41743
42013
|
},
|
|
41744
42014
|
backgroundColor: {
|
|
@@ -41913,6 +42183,74 @@ var patterns_registry_default = {
|
|
|
41913
42183
|
}
|
|
41914
42184
|
},
|
|
41915
42185
|
drawHost: true
|
|
42186
|
+
},
|
|
42187
|
+
presence: {
|
|
42188
|
+
type: "presence",
|
|
42189
|
+
category: "component",
|
|
42190
|
+
tier: "atoms",
|
|
42191
|
+
family: "core",
|
|
42192
|
+
description: "Presence component",
|
|
42193
|
+
suggestedFor: [
|
|
42194
|
+
"presence"
|
|
42195
|
+
],
|
|
42196
|
+
typicalSize: "small",
|
|
42197
|
+
propsSchema: {
|
|
42198
|
+
show: {
|
|
42199
|
+
types: [
|
|
42200
|
+
"boolean"
|
|
42201
|
+
],
|
|
42202
|
+
description: "When false, the exit animation runs, then children unmount.",
|
|
42203
|
+
required: true
|
|
42204
|
+
},
|
|
42205
|
+
className: {
|
|
42206
|
+
types: [
|
|
42207
|
+
"string"
|
|
42208
|
+
],
|
|
42209
|
+
description: "className prop"
|
|
42210
|
+
},
|
|
42211
|
+
children: {
|
|
42212
|
+
types: [
|
|
42213
|
+
"node"
|
|
42214
|
+
],
|
|
42215
|
+
description: "children prop",
|
|
42216
|
+
required: true
|
|
42217
|
+
}
|
|
42218
|
+
}
|
|
42219
|
+
},
|
|
42220
|
+
"page-transition": {
|
|
42221
|
+
type: "page-transition",
|
|
42222
|
+
category: "component",
|
|
42223
|
+
tier: "molecules",
|
|
42224
|
+
family: "core",
|
|
42225
|
+
description: "PageTransition component",
|
|
42226
|
+
suggestedFor: [
|
|
42227
|
+
"page",
|
|
42228
|
+
"transition",
|
|
42229
|
+
"page transition"
|
|
42230
|
+
],
|
|
42231
|
+
typicalSize: "medium",
|
|
42232
|
+
propsSchema: {
|
|
42233
|
+
locationKey: {
|
|
42234
|
+
types: [
|
|
42235
|
+
"string"
|
|
42236
|
+
],
|
|
42237
|
+
description: "Value that changes on navigation (e.g. `location.pathname`).",
|
|
42238
|
+
required: true
|
|
42239
|
+
},
|
|
42240
|
+
children: {
|
|
42241
|
+
types: [
|
|
42242
|
+
"node"
|
|
42243
|
+
],
|
|
42244
|
+
description: "children prop",
|
|
42245
|
+
required: true
|
|
42246
|
+
},
|
|
42247
|
+
className: {
|
|
42248
|
+
types: [
|
|
42249
|
+
"string"
|
|
42250
|
+
],
|
|
42251
|
+
description: "className prop"
|
|
42252
|
+
}
|
|
42253
|
+
}
|
|
41916
42254
|
}
|
|
41917
42255
|
},
|
|
41918
42256
|
categories: [
|
|
@@ -42540,7 +42878,7 @@ var integrators_registry_default = {
|
|
|
42540
42878
|
// src/patterns/component-mapping.json
|
|
42541
42879
|
var component_mapping_default = {
|
|
42542
42880
|
version: "1.0.0",
|
|
42543
|
-
exportedAt: "2026-07-
|
|
42881
|
+
exportedAt: "2026-07-23T14:32:35.644Z",
|
|
42544
42882
|
mappings: {
|
|
42545
42883
|
"page-header": {
|
|
42546
42884
|
component: "PageHeader",
|
|
@@ -42578,8 +42916,8 @@ var component_mapping_default = {
|
|
|
42578
42916
|
category: "form"
|
|
42579
42917
|
},
|
|
42580
42918
|
"form-actions": {
|
|
42581
|
-
component: "
|
|
42582
|
-
importPath: "@/components/core/molecules/
|
|
42919
|
+
component: "ButtonGroup",
|
|
42920
|
+
importPath: "@/components/core/molecules/ButtonGroup",
|
|
42583
42921
|
category: "form"
|
|
42584
42922
|
},
|
|
42585
42923
|
"filter-group": {
|
|
@@ -43888,6 +44226,16 @@ var component_mapping_default = {
|
|
|
43888
44226
|
component: "Canvas",
|
|
43889
44227
|
importPath: "@/components/game/molecules/Canvas",
|
|
43890
44228
|
category: "game"
|
|
44229
|
+
},
|
|
44230
|
+
presence: {
|
|
44231
|
+
component: "Presence",
|
|
44232
|
+
importPath: "@/components/core/atoms/Presence",
|
|
44233
|
+
category: "component"
|
|
44234
|
+
},
|
|
44235
|
+
"page-transition": {
|
|
44236
|
+
component: "PageTransition",
|
|
44237
|
+
importPath: "@/components/core/molecules/PageTransition",
|
|
44238
|
+
category: "component"
|
|
43891
44239
|
}
|
|
43892
44240
|
}
|
|
43893
44241
|
};
|
|
@@ -43895,7 +44243,7 @@ var component_mapping_default = {
|
|
|
43895
44243
|
// src/patterns/event-contracts.json
|
|
43896
44244
|
var event_contracts_default = {
|
|
43897
44245
|
version: "1.0.0",
|
|
43898
|
-
exportedAt: "2026-07-
|
|
44246
|
+
exportedAt: "2026-07-23T14:32:35.644Z",
|
|
43899
44247
|
contracts: {
|
|
43900
44248
|
form: {
|
|
43901
44249
|
emits: [
|
|
@@ -43988,7 +44336,14 @@ var event_contracts_default = {
|
|
|
43988
44336
|
"form-actions": {
|
|
43989
44337
|
emits: [
|
|
43990
44338
|
{
|
|
43991
|
-
event: "
|
|
44339
|
+
event: "DISPATCH",
|
|
44340
|
+
trigger: "action",
|
|
44341
|
+
payload: {
|
|
44342
|
+
type: "object"
|
|
44343
|
+
}
|
|
44344
|
+
},
|
|
44345
|
+
{
|
|
44346
|
+
event: "NAVIGATE",
|
|
43992
44347
|
trigger: "action",
|
|
43993
44348
|
payload: {
|
|
43994
44349
|
type: "object"
|
|
@@ -43996,7 +44351,7 @@ var event_contracts_default = {
|
|
|
43996
44351
|
}
|
|
43997
44352
|
],
|
|
43998
44353
|
requires: [],
|
|
43999
|
-
entityAware:
|
|
44354
|
+
entityAware: true,
|
|
44000
44355
|
configDriven: true
|
|
44001
44356
|
},
|
|
44002
44357
|
"entity-table": {
|
|
@@ -45025,6 +45380,19 @@ var event_contracts_default = {
|
|
|
45025
45380
|
],
|
|
45026
45381
|
requires: [],
|
|
45027
45382
|
entityAware: false
|
|
45383
|
+
},
|
|
45384
|
+
"data-grid": {
|
|
45385
|
+
emits: [
|
|
45386
|
+
{
|
|
45387
|
+
event: "NAVIGATE",
|
|
45388
|
+
trigger: "action",
|
|
45389
|
+
payload: {
|
|
45390
|
+
type: "object"
|
|
45391
|
+
}
|
|
45392
|
+
}
|
|
45393
|
+
],
|
|
45394
|
+
requires: [],
|
|
45395
|
+
entityAware: true
|
|
45028
45396
|
}
|
|
45029
45397
|
}
|
|
45030
45398
|
};
|
|
@@ -45188,11 +45556,13 @@ var PATTERN_TYPES = [
|
|
|
45188
45556
|
"orbital-visualization",
|
|
45189
45557
|
"overlay",
|
|
45190
45558
|
"page-header",
|
|
45559
|
+
"page-transition",
|
|
45191
45560
|
"pagination",
|
|
45192
45561
|
"pattern-tile",
|
|
45193
45562
|
"physics-canvas",
|
|
45194
45563
|
"popover",
|
|
45195
45564
|
"positioned-canvas",
|
|
45565
|
+
"presence",
|
|
45196
45566
|
"pricing-card",
|
|
45197
45567
|
"pricing-grid",
|
|
45198
45568
|
"pricing-organism",
|
|
@@ -45297,6 +45667,22 @@ function isValidPatternType(type) {
|
|
|
45297
45667
|
return PATTERN_TYPES.includes(type);
|
|
45298
45668
|
}
|
|
45299
45669
|
|
|
45670
|
+
// src/patterns/content-grade.ts
|
|
45671
|
+
function isContentBodyPatternType(patternType) {
|
|
45672
|
+
const entry = patterns_registry_default.patterns?.[patternType];
|
|
45673
|
+
if (!entry?.propsSchema) return false;
|
|
45674
|
+
return Object.values(entry.propsSchema).some((def) => def.kind === "entity");
|
|
45675
|
+
}
|
|
45676
|
+
function isContentBodyPattern(pattern) {
|
|
45677
|
+
if (pattern === null) return false;
|
|
45678
|
+
if (typeof pattern === "string") return true;
|
|
45679
|
+
if ("children" in pattern && Array.isArray(pattern.children) && pattern.children.length > 0) return true;
|
|
45680
|
+
return isContentBodyPatternType(pattern.type);
|
|
45681
|
+
}
|
|
45682
|
+
function isMainSlotRenderUi(effect) {
|
|
45683
|
+
return Array.isArray(effect) && effect[0] === "render-ui" && effect[1] === "main";
|
|
45684
|
+
}
|
|
45685
|
+
|
|
45300
45686
|
// src/patterns/helpers/prompt-helpers.ts
|
|
45301
45687
|
function getPatternsGroupedByCategory() {
|
|
45302
45688
|
const patterns = patterns_registry_default.patterns || {};
|
|
@@ -45469,17 +45855,6 @@ function getOrbAllowedPatternsFiltered(patternNames) {
|
|
|
45469
45855
|
return lines.join("\n");
|
|
45470
45856
|
}
|
|
45471
45857
|
|
|
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
45858
|
// src/patterns/helpers/render-ui-pattern-types.ts
|
|
45484
45859
|
function collectPatternTypeTokens(node, out) {
|
|
45485
45860
|
if (!isJsonObject(node)) return;
|
|
@@ -46484,6 +46859,65 @@ function collectEmbeddedTraitReferrers(schema) {
|
|
|
46484
46859
|
}
|
|
46485
46860
|
return out;
|
|
46486
46861
|
}
|
|
46862
|
+
function collectTraitEmbedAdjacency(orbital) {
|
|
46863
|
+
const out = /* @__PURE__ */ new Map();
|
|
46864
|
+
const traits = orbital.traits;
|
|
46865
|
+
if (!Array.isArray(traits)) return out;
|
|
46866
|
+
for (const traitRef of traits) {
|
|
46867
|
+
const target = targetTraitOf(traitRef);
|
|
46868
|
+
if (!target) continue;
|
|
46869
|
+
const referrerName = target.name;
|
|
46870
|
+
if (typeof referrerName !== "string" || referrerName.length === 0) continue;
|
|
46871
|
+
const refs = /* @__PURE__ */ new Set();
|
|
46872
|
+
if (target.config) collectTraitRefsFromValue(target.config, refs);
|
|
46873
|
+
const stateMachine = target.stateMachine;
|
|
46874
|
+
if (stateMachine) collectTraitRefsFromValue(stateMachine, refs);
|
|
46875
|
+
refs.delete(referrerName);
|
|
46876
|
+
if (refs.size > 0) out.set(referrerName, refs);
|
|
46877
|
+
}
|
|
46878
|
+
return out;
|
|
46879
|
+
}
|
|
46880
|
+
function collectTraitConfigRefAdjacency(orbital) {
|
|
46881
|
+
const out = /* @__PURE__ */ new Map();
|
|
46882
|
+
const traits = orbital.traits;
|
|
46883
|
+
if (!Array.isArray(traits)) return out;
|
|
46884
|
+
for (const traitRef of traits) {
|
|
46885
|
+
const target = targetTraitOf(traitRef);
|
|
46886
|
+
if (!target) continue;
|
|
46887
|
+
const referrerName = target.name;
|
|
46888
|
+
if (typeof referrerName !== "string" || referrerName.length === 0) continue;
|
|
46889
|
+
if (!target.config) continue;
|
|
46890
|
+
const refs = /* @__PURE__ */ new Set();
|
|
46891
|
+
collectTraitRefsFromValue(target.config, refs);
|
|
46892
|
+
refs.delete(referrerName);
|
|
46893
|
+
if (refs.size > 0) out.set(referrerName, refs);
|
|
46894
|
+
}
|
|
46895
|
+
return out;
|
|
46896
|
+
}
|
|
46897
|
+
function resolveForwardsDeep(value, referrerConfig, consumed) {
|
|
46898
|
+
if (typeof value === "string") {
|
|
46899
|
+
const match = CONFIG_FORWARD_RE.exec(value);
|
|
46900
|
+
if (match) {
|
|
46901
|
+
const forwarded = referrerConfig?.[match[1]];
|
|
46902
|
+
if (forwarded !== void 0) {
|
|
46903
|
+
consumed?.set(match[1], forwarded);
|
|
46904
|
+
return forwarded;
|
|
46905
|
+
}
|
|
46906
|
+
}
|
|
46907
|
+
return value;
|
|
46908
|
+
}
|
|
46909
|
+
if (Array.isArray(value)) {
|
|
46910
|
+
return value.map((item) => resolveForwardsDeep(item, referrerConfig, consumed));
|
|
46911
|
+
}
|
|
46912
|
+
if (value !== null && typeof value === "object") {
|
|
46913
|
+
const out = {};
|
|
46914
|
+
for (const [k, v] of Object.entries(value)) {
|
|
46915
|
+
out[k] = resolveForwardsDeep(v, referrerConfig, consumed);
|
|
46916
|
+
}
|
|
46917
|
+
return out;
|
|
46918
|
+
}
|
|
46919
|
+
return value;
|
|
46920
|
+
}
|
|
46487
46921
|
function buildResolvedTraitConfigs(schema) {
|
|
46488
46922
|
const rawByName = {};
|
|
46489
46923
|
if (!schema?.orbitals) return {};
|
|
@@ -46514,12 +46948,14 @@ function buildResolvedTraitConfigs(schema) {
|
|
|
46514
46948
|
const referrer = referrerByChild.get(name);
|
|
46515
46949
|
if (referrer && referrer !== name) {
|
|
46516
46950
|
const referrerConfig = resolveConfig(referrer);
|
|
46951
|
+
const consumed = /* @__PURE__ */ new Map();
|
|
46517
46952
|
for (const [key, value] of Object.entries(out)) {
|
|
46518
|
-
|
|
46519
|
-
|
|
46520
|
-
|
|
46521
|
-
|
|
46522
|
-
|
|
46953
|
+
out[key] = resolveForwardsDeep(value, referrerConfig, consumed);
|
|
46954
|
+
}
|
|
46955
|
+
for (const [key, value] of consumed) {
|
|
46956
|
+
if (!(key in out)) {
|
|
46957
|
+
out[key] = value;
|
|
46958
|
+
}
|
|
46523
46959
|
}
|
|
46524
46960
|
}
|
|
46525
46961
|
resolving.delete(name);
|
|
@@ -48339,6 +48775,29 @@ function extractPayloadFieldRef(ref2) {
|
|
|
48339
48775
|
const match = ref2.match(/^@payload\.([A-Za-z0-9_]+)/);
|
|
48340
48776
|
return match ? match[1] : null;
|
|
48341
48777
|
}
|
|
48778
|
+
function extractPayloadFieldPath(ref2) {
|
|
48779
|
+
if (typeof ref2 !== "string") return null;
|
|
48780
|
+
const match = ref2.match(/^@payload\.([A-Za-z0-9_]+(?:\.[A-Za-z0-9_]+)*)/);
|
|
48781
|
+
return match ? match[1].split(".") : null;
|
|
48782
|
+
}
|
|
48783
|
+
function nestedPayload(path, leaf) {
|
|
48784
|
+
let value = leaf;
|
|
48785
|
+
for (let i = path.length - 1; i >= 1; i--) {
|
|
48786
|
+
value = { [path[i]]: value };
|
|
48787
|
+
}
|
|
48788
|
+
return { [path[0]]: value };
|
|
48789
|
+
}
|
|
48790
|
+
function isPayloadObject(v) {
|
|
48791
|
+
return typeof v === "object" && v !== null && !Array.isArray(v) && !(v instanceof Date);
|
|
48792
|
+
}
|
|
48793
|
+
function mergePayloads(a, b) {
|
|
48794
|
+
const out = { ...a };
|
|
48795
|
+
for (const [k, v] of Object.entries(b)) {
|
|
48796
|
+
const prev = out[k];
|
|
48797
|
+
out[k] = prev !== void 0 && isPayloadObject(prev) && v !== void 0 && isPayloadObject(v) ? mergePayloads(prev, v) : v;
|
|
48798
|
+
}
|
|
48799
|
+
return out;
|
|
48800
|
+
}
|
|
48342
48801
|
function constTruth(guard) {
|
|
48343
48802
|
if (typeof guard === "boolean") return guard;
|
|
48344
48803
|
if (typeof guard === "string") {
|
|
@@ -48377,62 +48836,64 @@ function buildGuardPayloads(guard) {
|
|
|
48377
48836
|
return { pass: {}, fail: {} };
|
|
48378
48837
|
}
|
|
48379
48838
|
if (typeof guard === "string") {
|
|
48380
|
-
const
|
|
48381
|
-
if (
|
|
48839
|
+
const path = extractPayloadFieldPath(guard);
|
|
48840
|
+
if (path) {
|
|
48841
|
+
return path.length === 1 ? { pass: { [path[0]]: { id: "mock-test-id", name: "mock-test-name" } }, fail: { [path[0]]: null } } : { pass: nestedPayload(path, "mock-test-value"), fail: nestedPayload(path, null) };
|
|
48842
|
+
}
|
|
48382
48843
|
}
|
|
48383
48844
|
if (!Array.isArray(guard) || guard.length === 0) {
|
|
48384
48845
|
return { pass: {}, fail: {} };
|
|
48385
48846
|
}
|
|
48386
48847
|
const op = String(guard[0]);
|
|
48387
48848
|
if (op === "not-nil" || op === "not_nil") {
|
|
48388
|
-
const
|
|
48389
|
-
if (
|
|
48849
|
+
const path = extractPayloadFieldPath(guard[1]);
|
|
48850
|
+
if (path) return { pass: nestedPayload(path, "mock-test-value"), fail: nestedPayload(path, null) };
|
|
48390
48851
|
}
|
|
48391
48852
|
if (op === "nil") {
|
|
48392
|
-
const
|
|
48393
|
-
if (
|
|
48853
|
+
const path = extractPayloadFieldPath(guard[1]);
|
|
48854
|
+
if (path) return { pass: {}, fail: nestedPayload(path, "mock-test-value") };
|
|
48394
48855
|
}
|
|
48395
48856
|
if (op === "eq" || op === "==" || op === "=") {
|
|
48396
|
-
const
|
|
48857
|
+
const path = extractPayloadFieldPath(guard[1]);
|
|
48397
48858
|
const val = guard[2];
|
|
48398
|
-
if (
|
|
48859
|
+
if (path && val !== void 0) {
|
|
48399
48860
|
const failVal = typeof val === "number" ? val + 1 : typeof val === "string" ? `not-${val}` : null;
|
|
48400
|
-
return { pass:
|
|
48861
|
+
return { pass: nestedPayload(path, val), fail: nestedPayload(path, failVal) };
|
|
48401
48862
|
}
|
|
48402
48863
|
}
|
|
48403
48864
|
if (op === "not-eq" || op === "!=" || op === "neq") {
|
|
48404
|
-
const
|
|
48865
|
+
const path = extractPayloadFieldPath(guard[1]);
|
|
48405
48866
|
const val = guard[2];
|
|
48406
|
-
if (
|
|
48867
|
+
if (path && val !== void 0) {
|
|
48407
48868
|
const passVal = typeof val === "number" ? val + 1 : typeof val === "string" ? `not-${val}` : "other";
|
|
48408
|
-
return { pass:
|
|
48869
|
+
return { pass: nestedPayload(path, passVal), fail: nestedPayload(path, val) };
|
|
48409
48870
|
}
|
|
48410
48871
|
}
|
|
48411
48872
|
if (op === "gt" || op === ">") {
|
|
48412
|
-
const
|
|
48873
|
+
const path = extractPayloadFieldPath(guard[1]);
|
|
48413
48874
|
const n = typeof guard[2] === "number" ? guard[2] : 0;
|
|
48414
|
-
if (
|
|
48875
|
+
if (path) return { pass: nestedPayload(path, n + 1), fail: nestedPayload(path, n - 1) };
|
|
48415
48876
|
}
|
|
48416
48877
|
if (op === "gte" || op === ">=") {
|
|
48417
|
-
const
|
|
48878
|
+
const path = extractPayloadFieldPath(guard[1]);
|
|
48418
48879
|
const n = typeof guard[2] === "number" ? guard[2] : 0;
|
|
48419
|
-
if (
|
|
48880
|
+
if (path) return { pass: nestedPayload(path, n), fail: nestedPayload(path, n - 1) };
|
|
48420
48881
|
}
|
|
48421
48882
|
if (op === "lt" || op === "<") {
|
|
48422
|
-
const
|
|
48883
|
+
const path = extractPayloadFieldPath(guard[1]);
|
|
48423
48884
|
const n = typeof guard[2] === "number" ? guard[2] : 0;
|
|
48424
|
-
if (
|
|
48885
|
+
if (path) return { pass: nestedPayload(path, n - 1), fail: nestedPayload(path, n + 1) };
|
|
48425
48886
|
}
|
|
48426
48887
|
if (op === "lte" || op === "<=") {
|
|
48427
|
-
const
|
|
48888
|
+
const path = extractPayloadFieldPath(guard[1]);
|
|
48428
48889
|
const n = typeof guard[2] === "number" ? guard[2] : 0;
|
|
48429
|
-
if (
|
|
48890
|
+
if (path) return { pass: nestedPayload(path, n), fail: nestedPayload(path, n + 1) };
|
|
48430
48891
|
}
|
|
48431
48892
|
if (op === "and") {
|
|
48432
48893
|
const subs = guard.slice(1);
|
|
48433
48894
|
if (subs.length >= 2) {
|
|
48434
48895
|
const built = subs.map(buildGuardPayloads);
|
|
48435
|
-
const pass = built.reduce((acc, b) => (
|
|
48896
|
+
const pass = built.reduce((acc, b) => mergePayloads(acc, b.pass), {});
|
|
48436
48897
|
return { pass, fail: built[0].fail };
|
|
48437
48898
|
}
|
|
48438
48899
|
if (subs.length === 1) return buildGuardPayloads(subs[0]);
|
|
@@ -48443,7 +48904,7 @@ function buildGuardPayloads(guard) {
|
|
|
48443
48904
|
const s1 = buildGuardPayloads(subs[0]);
|
|
48444
48905
|
const s2 = buildGuardPayloads(subs[1]);
|
|
48445
48906
|
const combinedPass = Object.keys(s1.pass).length > 0 ? s1.pass : s2.pass;
|
|
48446
|
-
return { pass: combinedPass, fail:
|
|
48907
|
+
return { pass: combinedPass, fail: mergePayloads(s1.fail, s2.fail) };
|
|
48447
48908
|
}
|
|
48448
48909
|
if (subs.length === 1) return buildGuardPayloads(subs[0]);
|
|
48449
48910
|
}
|
|
@@ -48675,6 +49136,6 @@ function mergeEntityFrame(current, orderedWrites) {
|
|
|
48675
49136
|
return next;
|
|
48676
49137
|
}
|
|
48677
49138
|
|
|
48678
|
-
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, ANIMATION_NAMES, ASSET_ASPECTS, ASSET_DIMENSIONS, AgentDomainCategorySchema, AnimationDefSchema, AnimationNameSchema, AssetAspectSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetDimensionSchema, AssetSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CAMERA_MODES, COMPONENT_MAPPING, CONFIG_REF_EVENT_PATTERN, CORE_BINDINGS, CameraModeSchema, CameraSchema, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, ConfigProvenanceRecordSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EVENT_CONTRACTS, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldContractSchema, EntityFieldSchema, EntityIdSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventIdSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpressionSchema, FieldFormatSchema, FieldSchema, FieldTypeSchema, GameSubCategorySchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, INTEGRATORS_REGISTRY, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalIdSchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PATTERN_REGISTRY, PATTERN_TYPES, PageIdSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PaletteEntryIdSchema, PatternTypeSchema, PayloadFieldSchema, REFERENCE_CONFIG_TYPES, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, RestAuthConfigSchema, RestServiceDefSchema, SERVICE_TYPES, SExprAtomSchema, SExprSchema, SPRITE_DIRECTIONS, ScenePosSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceIdSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SpacingScaleSchema, SpriteDirectionSchema, SpriteSheetAtlasSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SubTextureSchema, SuggestedGuardSchema, TextureAtlasSchema, ThemeDefinitionSchema, ThemeIdSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TilesheetSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitIdSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, answerToMutations, answersToMutations, applyEventWiring, applyFactoryCallPlanMutation, applyRenderOverlay, asEntityId, asEventId, asOrbitalId, asPageId, asPaletteEntryId, asServiceId, asThemeId, asTraitId, atomic, buildEdgeCoveringWalk, buildGuardPayloads, buildRecommendationContext, buildReplayPaths, buildResolvedTraitConfigs, buildStateGraph, callService, categorizeRemovals, classifyWorkflow, clearSchemaCache, collectBindings, collectEmbeddedTraitReferrers, collectReachableStates, collectRenderUiPatternTypes, component_mapping_default as componentMapping, composeBehaviors, configRefEventKnob, constTruth, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, deref, deriveCollection, deriveInputType, despawn, detectLayoutStrategy, detectPageContentReduction, diffFactoryCalls, diffOrbitalSchemas, diffSchemaSemantics, diffSchemas, doEffects, emit, event_contracts_default as eventContracts, extractPayloadFieldRef, findCompatiblePatterns, findService, fingerprintNode, formatRecommendationsForPrompt, generatePatternDescription, generateQuestions, getAllPatternTypes, getArgs, getBindingExamples, getComponentForPattern, getDefaultAnimationsForRole, getEmittedEvents, getEntity, getEntityCardinality, getInteractionModelForDomain, getOperator, getOrbAllowedPatterns, getOrbAllowedPatternsCompact, getOrbAllowedPatternsFiltered, getOrbAllowedPatternsSlim, getPage, getPages, getPatternActionsRef, getPatternDefinition, getPatternMetadata, getPatternPropsCompact, getPatternsGroupedByCategory, getRemovals, getSchemaCacheStats, getServiceNames, getTrait, getTraitConfig, getTraitName, hasService, hasSignificantPageReduction, idKindOf, idPrefix, inferTsType, insertChildAtPath, integrators_registry_default as integratorsRegistry, isBinding, isCallSiteConfigDeclaration, isCircuitEvent, isDestructiveChange, isDrawHostPattern, isDrawablePattern, isEffect, isEntityAwarePattern, isEntityCall, isEntityId, isEntityReference, isEntityReferenceAny, isEventId, isEventPayloadValue, isFieldValue, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMcpService, isOrbitalDefinition, isOrbitalId, isPageId, isPageReference, isPageReferenceObject, isPageReferenceString, isPaletteEntryId, isPlanSnapshot, isReferenceConfigType, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isServiceId, isServiceReference, isServiceReferenceObject, isSessionHistoryEntry, isSocketService, isThemeId, isThemeReference, isTraitFieldRef, isTraitId, isValidBinding, isValidPatternType, ledgerCurName, ledgerRename, ledgerResolveName, mergeEntityFrame, mintId, navigate, navigatePatternPath, normalizeCallSiteConfigToValues, normalizeTraitRef, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, patterns_registry_default as patternsRegistry, persist, persistenceModeAllowsOverrides, recommendPatterns, ref, registry, removeChildAtPath, renderUI, renderUiPatternTypesOf, replaceChildAtPath, requiresConfirmation, resolveConfigRefEventName, safeParseOrbitalSchema, schemaToIR, set, setPropAtPath, sexpr, spawn, summarizeOrbital, summarizeSchema, swap, toBindingRoot, translateOverlaysToParams, validateAssetAnimations, validateBindingInContext, walkSExpr, walkStatePairs, watch, widenTier };
|
|
49139
|
+
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, ANIMATION_NAMES, ASSET_ASPECTS, ASSET_DIMENSIONS, AgentDomainCategorySchema, AnimationDefSchema, AnimationNameSchema, AssetAspectSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetDimensionSchema, AssetSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CAMERA_MODES, COMPONENT_MAPPING, CONFIG_REF_EVENT_PATTERN, CORE_BINDINGS, CameraModeSchema, CameraSchema, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, ConfigProvenanceRecordSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EVENT_CONTRACTS, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldContractSchema, EntityFieldSchema, EntityIdSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventIdSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpressionSchema, FieldFormatSchema, FieldSchema, FieldTypeSchema, GameSubCategorySchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, INTEGRATORS_REGISTRY, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalIdSchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PATTERN_REGISTRY, PATTERN_TYPES, PageIdSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PaletteEntryIdSchema, PatternTypeSchema, PayloadFieldSchema, REFERENCE_CONFIG_TYPES, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, RestAuthConfigSchema, RestServiceDefSchema, SERVICE_TYPES, SExprAtomSchema, SExprSchema, SPRITE_DIRECTIONS, ScenePosSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceIdSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SpacingScaleSchema, SpriteDirectionSchema, SpriteSheetAtlasSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SubTextureSchema, SuggestedGuardSchema, TextureAtlasSchema, ThemeDefinitionSchema, ThemeIdSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TilesheetSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitIdSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, answerToMutations, answersToMutations, applyEventWiring, applyFactoryCallPlanMutation, applyRenderOverlay, asEntityId, asEventId, asOrbitalId, asPageId, asPaletteEntryId, asServiceId, asThemeId, asTraitId, atomic, buildEdgeCoveringWalk, buildGuardPayloads, buildRecommendationContext, buildReplayPaths, buildResolvedTraitConfigs, buildStateGraph, callService, categorizeRemovals, classifyWorkflow, clearSchemaCache, collectBindings, collectEmbeddedTraitReferrers, collectReachableStates, collectRenderUiPatternTypes, collectTraitConfigRefAdjacency, collectTraitEmbedAdjacency, component_mapping_default as componentMapping, composeBehaviors, configRefEventKnob, constTruth, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, deref, deriveCollection, deriveInputType, despawn, detectLayoutStrategy, detectPageContentReduction, diffFactoryCalls, diffOrbitalSchemas, diffSchemaSemantics, diffSchemas, doEffects, emit, event_contracts_default as eventContracts, extractPayloadFieldRef, findCompatiblePatterns, findService, fingerprintNode, formatRecommendationsForPrompt, generatePatternDescription, generateQuestions, getAllPatternTypes, getArgs, getBindingExamples, getComponentForPattern, getDefaultAnimationsForRole, getEmittedEvents, getEntity, getEntityCardinality, getInteractionModelForDomain, getOperator, getOrbAllowedPatterns, getOrbAllowedPatternsCompact, getOrbAllowedPatternsFiltered, getOrbAllowedPatternsSlim, getPage, getPages, getPatternActionsRef, getPatternDefinition, getPatternMetadata, getPatternPropsCompact, getPatternsGroupedByCategory, getRemovals, getSchemaCacheStats, getServiceNames, getTrait, getTraitConfig, getTraitName, hasService, hasSignificantPageReduction, idKindOf, idPrefix, inferTsType, insertChildAtPath, integrators_registry_default as integratorsRegistry, isBinding, isCallSiteConfigDeclaration, isCircuitEvent, isContentBodyPattern, isContentBodyPatternType, isDestructiveChange, isDrawHostPattern, isDrawablePattern, isEffect, isEntityAwarePattern, isEntityCall, isEntityId, isEntityReference, isEntityReferenceAny, isEventId, isEventPayloadValue, isFieldValue, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMainSlotRenderUi, isMcpService, isOrbitalDefinition, isOrbitalId, isPageId, isPageReference, isPageReferenceObject, isPageReferenceString, isPaletteEntryId, isPlanSnapshot, isReferenceConfigType, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isServiceId, isServiceReference, isServiceReferenceObject, isSessionHistoryEntry, isSocketService, isThemeId, isThemeReference, isTraitFieldRef, isTraitId, isValidBinding, isValidPatternType, ledgerCurName, ledgerRename, ledgerResolveName, mergeEntityFrame, mintId, navigate, navigatePatternPath, normalizeCallSiteConfigToValues, normalizeTraitRef, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, patterns_registry_default as patternsRegistry, persist, persistenceModeAllowsOverrides, recommendPatterns, ref, registry, removeChildAtPath, renderUI, renderUiPatternTypesOf, replaceChildAtPath, requiresConfirmation, resolveConfigRefEventName, safeParseOrbitalSchema, schemaToIR, set, setPropAtPath, sexpr, spawn, summarizeOrbital, summarizeSchema, swap, toBindingRoot, translateOverlaysToParams, validateAssetAnimations, validateBindingInContext, walkSExpr, walkStatePairs, watch, widenTier };
|
|
48679
49140
|
//# sourceMappingURL=index.js.map
|
|
48680
49141
|
//# sourceMappingURL=index.js.map
|