@almadar/core 10.86.0 → 10.88.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.d.ts +5 -4
- package/dist/builders.js +70 -29
- package/dist/builders.js.map +1 -1
- package/dist/{effect-BgDiw_bG.d.ts → effect-DMA97JxX.d.ts} +22 -6
- package/dist/{entityAccess-DK5S_2cT.d.ts → entityAccess-B5_Y9zF5.d.ts} +2 -2
- package/dist/{expression-Fk8bQWef.d.ts → expression-WfTp2arD.d.ts} +2 -65
- package/dist/factory/index.d.ts +6 -5
- package/dist/factory/index.js +1194 -401
- package/dist/factory/index.js.map +1 -1
- package/dist/factory-runtime/index.d.ts +35 -5
- package/dist/factory-runtime/index.js +129 -52
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/i18n/index.d.ts +124 -2
- package/dist/i18n/index.js +680 -382
- package/dist/i18n/index.js.map +1 -1
- package/dist/{index-ChYsqVJj.d.ts → index-CYE40P_7.d.ts} +18 -5
- package/dist/index.d.ts +82 -14
- package/dist/index.js +2058 -696
- package/dist/index.js.map +1 -1
- package/dist/json-D8gmyK3l.d.ts +65 -0
- package/dist/mock/index.d.ts +129 -12
- package/dist/mock/index.js +192 -61
- package/dist/mock/index.js.map +1 -1
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +2525 -609
- package/dist/patterns/index.js +1238 -384
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +107 -23
- package/dist/patterns/patterns-registry.json +1170 -400
- package/dist/patterns/registry.json +1170 -400
- package/dist/patterns/services-registry.json +170 -35
- package/dist/{schema-BhfQb1oe.d.ts → schema-ex9koAoK.d.ts} +46845 -21335
- package/dist/state-machine/index.d.ts +2 -1
- package/dist/trait-BJAX5TJK.d.ts +10683 -0
- package/dist/types/index.d.ts +7 -6
- package/dist/types/index.js +134 -43
- package/dist/types/index.js.map +1 -1
- package/dist/{types-CCAmdxcH.d.ts → types-kHQhEEXQ.d.ts} +19 -3
- package/package.json +4 -3
- package/dist/trait-pavNlGqm.d.ts +0 -5385
package/dist/index.js
CHANGED
|
@@ -95,6 +95,50 @@ function ulid() {
|
|
|
95
95
|
function mintId(kind) {
|
|
96
96
|
return brand(ID_PREFIXES[kind] + ulid());
|
|
97
97
|
}
|
|
98
|
+
var U64_MASK = (1n << 64n) - 1n;
|
|
99
|
+
var BODY_TIME_MASK = (1n << 50n) - 1n;
|
|
100
|
+
var BODY_RANDOM_MASK = (1n << 80n) - 1n;
|
|
101
|
+
var FNV_PRIME_64 = 0x100000001b3n;
|
|
102
|
+
var FNV_OFFSET_1 = 0xcbf29ce484222325n;
|
|
103
|
+
var FNV_OFFSET_2 = (0x100000001b3n ^ 0xdeadbeefn) & U64_MASK;
|
|
104
|
+
function splitmix64(x) {
|
|
105
|
+
let z19 = x + 0x9e3779b97f4a7c15n & U64_MASK;
|
|
106
|
+
z19 = (z19 ^ z19 >> 30n) * 0xbf58476d1ce4e5b9n & U64_MASK;
|
|
107
|
+
z19 = (z19 ^ z19 >> 27n) * 0x94d049bb133111ebn & U64_MASK;
|
|
108
|
+
return (z19 ^ z19 >> 31n) & U64_MASK;
|
|
109
|
+
}
|
|
110
|
+
function fnv1a64(data, offset) {
|
|
111
|
+
let h = offset & U64_MASK;
|
|
112
|
+
for (const b of data) {
|
|
113
|
+
h = (h ^ BigInt(b)) & U64_MASK;
|
|
114
|
+
h = h * FNV_PRIME_64 & U64_MASK;
|
|
115
|
+
}
|
|
116
|
+
return h;
|
|
117
|
+
}
|
|
118
|
+
function pushBase32(value, nChars) {
|
|
119
|
+
let v = value;
|
|
120
|
+
const chars = new Array(nChars);
|
|
121
|
+
for (let i = nChars - 1; i >= 0; i--) {
|
|
122
|
+
chars[i] = CROCKFORD[Number(v & 0x1fn)];
|
|
123
|
+
v >>= 5n;
|
|
124
|
+
}
|
|
125
|
+
return chars.join("");
|
|
126
|
+
}
|
|
127
|
+
function deriveId(parentId, discriminator) {
|
|
128
|
+
const kind = idKindOf(parentId) ?? "trait";
|
|
129
|
+
const encoder = new TextEncoder();
|
|
130
|
+
const parentBytes = encoder.encode(parentId);
|
|
131
|
+
const discBytes = encoder.encode(discriminator);
|
|
132
|
+
const data = new Uint8Array(parentBytes.length + 1 + discBytes.length);
|
|
133
|
+
data.set(parentBytes, 0);
|
|
134
|
+
data[parentBytes.length] = 31;
|
|
135
|
+
data.set(discBytes, parentBytes.length + 1);
|
|
136
|
+
const h1 = splitmix64(fnv1a64(data, FNV_OFFSET_1));
|
|
137
|
+
const h2 = splitmix64(fnv1a64(data, FNV_OFFSET_2));
|
|
138
|
+
const timeBits = (h1 << 64n | h2) & BODY_TIME_MASK;
|
|
139
|
+
const randBits = (h2 << 64n | h1) & BODY_RANDOM_MASK;
|
|
140
|
+
return ID_PREFIXES[kind] + pushBase32(timeBits, 10) + pushBase32(randBits, 16);
|
|
141
|
+
}
|
|
98
142
|
function ledgerResolveName(ledger, kind, name) {
|
|
99
143
|
for (const [id, entry] of Object.entries(ledger.entries)) {
|
|
100
144
|
if (entry.kind === kind && entry.curName === name) return id;
|
|
@@ -793,6 +837,9 @@ var EntityPersistenceSchema = z.enum([
|
|
|
793
837
|
]);
|
|
794
838
|
var OrbitalEntitySchema = z.object({
|
|
795
839
|
name: z.string().min(1, "Entity name is required"),
|
|
840
|
+
// V4 arena id (`EntityDefinition.id`); declared so the strip-mode zod gate
|
|
841
|
+
// carries an imported entity's id through instead of erasing it.
|
|
842
|
+
id: EntityIdSchema.optional(),
|
|
796
843
|
persistence: EntityPersistenceSchema.default("persistent"),
|
|
797
844
|
shared: z.boolean().optional(),
|
|
798
845
|
// Must stay in step with the Rust serde field (`EntityDefinition.identity`,
|
|
@@ -960,7 +1007,8 @@ var PayloadFieldSchema = z.object({
|
|
|
960
1007
|
type: z.string().min(1),
|
|
961
1008
|
required: z.boolean().optional(),
|
|
962
1009
|
properties: z.lazy(() => z.array(PayloadFieldSchema)).optional(),
|
|
963
|
-
typeWhen: z.array(PayloadTypeWhenSchema).optional()
|
|
1010
|
+
typeWhen: z.array(PayloadTypeWhenSchema).optional(),
|
|
1011
|
+
entity: z.string().min(1).optional()
|
|
964
1012
|
});
|
|
965
1013
|
var EventSchema = z.object({
|
|
966
1014
|
key: z.string().min(1, "Event key is required"),
|
|
@@ -970,6 +1018,7 @@ var EventSchema = z.object({
|
|
|
970
1018
|
synonyms: z.string().optional(),
|
|
971
1019
|
tier: z.string().optional(),
|
|
972
1020
|
payloadSchema: z.array(PayloadFieldSchema).optional(),
|
|
1021
|
+
payloadEntity: z.string().optional(),
|
|
973
1022
|
classification: z.enum(["domain", "system"]).optional(),
|
|
974
1023
|
semanticRole: z.string().optional()
|
|
975
1024
|
});
|
|
@@ -1053,6 +1102,19 @@ function maskSecretConfigValues(config, values) {
|
|
|
1053
1102
|
}
|
|
1054
1103
|
return masked;
|
|
1055
1104
|
}
|
|
1105
|
+
function overrideDeclaredKnobs(declared, overrides) {
|
|
1106
|
+
const out = { ...declared };
|
|
1107
|
+
for (const key of Object.keys(overrides)) {
|
|
1108
|
+
const field = declared[key];
|
|
1109
|
+
if (field === void 0) {
|
|
1110
|
+
throw new Error(
|
|
1111
|
+
`overrideDeclaredKnobs: config override "${key}" is not a declared knob (ORB_O_CONFIG_UNKNOWN_KEY). Declared: ${Object.keys(declared).join(", ") || "(none)"}`
|
|
1112
|
+
);
|
|
1113
|
+
}
|
|
1114
|
+
out[key] = { ...field, default: overrides[key] };
|
|
1115
|
+
}
|
|
1116
|
+
return out;
|
|
1117
|
+
}
|
|
1056
1118
|
var ConfigFieldItemsDeclarationSchema = z.lazy(
|
|
1057
1119
|
() => z.object({
|
|
1058
1120
|
type: z.string().optional(),
|
|
@@ -1072,7 +1134,8 @@ var ConfigFieldDeclarationSchema = z.object({
|
|
|
1072
1134
|
values: z.array(z.string()).optional(),
|
|
1073
1135
|
synonyms: z.string().optional(),
|
|
1074
1136
|
items: ConfigFieldItemsDeclarationSchema.optional(),
|
|
1075
|
-
properties: z.lazy(() => z.record(TraitEntityFieldSchema)).optional()
|
|
1137
|
+
properties: z.lazy(() => z.record(TraitEntityFieldSchema)).optional(),
|
|
1138
|
+
forwardedFrom: z.string().optional()
|
|
1076
1139
|
});
|
|
1077
1140
|
var DeclaredTraitConfigSchema = z.record(
|
|
1078
1141
|
ConfigFieldDeclarationSchema
|
|
@@ -1094,31 +1157,32 @@ var TraitCategorySchema = z.enum([
|
|
|
1094
1157
|
"game-board",
|
|
1095
1158
|
"game-puzzle"
|
|
1096
1159
|
]);
|
|
1160
|
+
var TRAIT_FIELD_TYPES = [
|
|
1161
|
+
"string",
|
|
1162
|
+
"number",
|
|
1163
|
+
"boolean",
|
|
1164
|
+
"date",
|
|
1165
|
+
"array",
|
|
1166
|
+
"object",
|
|
1167
|
+
"timestamp",
|
|
1168
|
+
"datetime",
|
|
1169
|
+
"enum",
|
|
1170
|
+
"email",
|
|
1171
|
+
"url",
|
|
1172
|
+
"phone",
|
|
1173
|
+
"uuid",
|
|
1174
|
+
"image",
|
|
1175
|
+
"trait",
|
|
1176
|
+
"slot",
|
|
1177
|
+
"pattern",
|
|
1178
|
+
"node",
|
|
1179
|
+
"event",
|
|
1180
|
+
"scalar",
|
|
1181
|
+
"union"
|
|
1182
|
+
];
|
|
1097
1183
|
var TraitEntityFieldSchema = z.object({
|
|
1098
1184
|
name: z.string().min(1),
|
|
1099
|
-
type: z.enum(
|
|
1100
|
-
"string",
|
|
1101
|
-
"number",
|
|
1102
|
-
"boolean",
|
|
1103
|
-
"date",
|
|
1104
|
-
"array",
|
|
1105
|
-
"object",
|
|
1106
|
-
"timestamp",
|
|
1107
|
-
"datetime",
|
|
1108
|
-
"enum",
|
|
1109
|
-
"email",
|
|
1110
|
-
"url",
|
|
1111
|
-
"phone",
|
|
1112
|
-
"uuid",
|
|
1113
|
-
"image",
|
|
1114
|
-
"trait",
|
|
1115
|
-
"slot",
|
|
1116
|
-
"pattern",
|
|
1117
|
-
// `node` was missing here while being a real `TraitFieldType` member
|
|
1118
|
-
// — the same latent-drift trap `event` would otherwise repeat.
|
|
1119
|
-
"node",
|
|
1120
|
-
"event"
|
|
1121
|
-
]),
|
|
1185
|
+
type: z.enum(TRAIT_FIELD_TYPES),
|
|
1122
1186
|
required: z.boolean().optional(),
|
|
1123
1187
|
default: TraitConfigValueSchema.optional(),
|
|
1124
1188
|
values: z.array(z.string()).optional(),
|
|
@@ -1173,7 +1237,7 @@ var EventPayloadFieldSchema = z.object({
|
|
|
1173
1237
|
type: z.string().min(1),
|
|
1174
1238
|
required: z.boolean().optional(),
|
|
1175
1239
|
description: z.string().optional(),
|
|
1176
|
-
|
|
1240
|
+
entity: z.string().optional(),
|
|
1177
1241
|
properties: z.lazy(() => z.array(EventPayloadFieldSchema)).optional(),
|
|
1178
1242
|
typeWhen: z.array(PayloadTypeWhenSchema).optional()
|
|
1179
1243
|
});
|
|
@@ -1213,6 +1277,7 @@ var TraitEventContractSchema = z.object({
|
|
|
1213
1277
|
definerKnob: z.string().optional(),
|
|
1214
1278
|
scopeOverridden: z.boolean().optional(),
|
|
1215
1279
|
payloadSchema: z.array(EventPayloadFieldSchema).optional(),
|
|
1280
|
+
payloadEntity: z.string().optional(),
|
|
1216
1281
|
scope: EventScopeSchema.optional()
|
|
1217
1282
|
});
|
|
1218
1283
|
var ListenSourceSchema = z.union([
|
|
@@ -1245,8 +1310,7 @@ var TraitEventListenerSchema = z.object({
|
|
|
1245
1310
|
});
|
|
1246
1311
|
var RequiredFieldSchema = z.object({
|
|
1247
1312
|
name: z.string().min(1),
|
|
1248
|
-
|
|
1249
|
-
type: z.enum(["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern", "node", "event"]),
|
|
1313
|
+
type: z.enum(TRAIT_FIELD_TYPES),
|
|
1250
1314
|
description: z.string().optional()
|
|
1251
1315
|
});
|
|
1252
1316
|
var TraitReferenceSchema = z.object({
|
|
@@ -1265,6 +1329,7 @@ var TraitReferenceSchema = z.object({
|
|
|
1265
1329
|
z.string().min(1, "events value (caller event name) must be non-empty")
|
|
1266
1330
|
).optional(),
|
|
1267
1331
|
eventIds: z.record(z.string().min(1), EventIdSchema).optional(),
|
|
1332
|
+
_resolved: z.lazy(() => TraitSchema).optional(),
|
|
1268
1333
|
// 3-II type-parameter arguments (see `TraitReference.typeArgs`).
|
|
1269
1334
|
typeArgs: z.record(
|
|
1270
1335
|
z.string().min(1, "typeArgs key (declared param name) must be non-empty"),
|
|
@@ -1957,7 +2022,8 @@ var UseDeclarationSchema = z.object({
|
|
|
1957
2022
|
as: z.string().min(1, "Alias is required").regex(
|
|
1958
2023
|
/^[A-Z][a-zA-Z0-9]*$/,
|
|
1959
2024
|
'Alias must be PascalCase (e.g., "Health", "GameCore")'
|
|
1960
|
-
)
|
|
2025
|
+
),
|
|
2026
|
+
config: DeclaredTraitConfigSchema.optional()
|
|
1961
2027
|
});
|
|
1962
2028
|
function expectedEntityName(decl) {
|
|
1963
2029
|
switch (decl.kind) {
|
|
@@ -2063,6 +2129,30 @@ var PageRefSchema = z.union([
|
|
|
2063
2129
|
PageRefStringSchema,
|
|
2064
2130
|
PageRefObjectSchema
|
|
2065
2131
|
]);
|
|
2132
|
+
var OrbitalRefStringSchema = z.string().regex(
|
|
2133
|
+
/^[A-Z][a-zA-Z0-9]*\.orbitals\.[A-Z][a-zA-Z0-9]*$/,
|
|
2134
|
+
'Orbital reference must be "Alias.orbitals.OrbitalName"'
|
|
2135
|
+
);
|
|
2136
|
+
var OrbitalRefObjectSchema = z.object({
|
|
2137
|
+
ref: OrbitalRefStringSchema,
|
|
2138
|
+
refId: OrbitalIdSchema.optional(),
|
|
2139
|
+
entity: z.string().optional(),
|
|
2140
|
+
fields: z.record(z.string()).optional(),
|
|
2141
|
+
pages: z.record(z.string()).optional(),
|
|
2142
|
+
omit: z.array(z.string()).optional(),
|
|
2143
|
+
only: z.array(z.string()).optional(),
|
|
2144
|
+
config: DeclaredTraitConfigSchema.optional(),
|
|
2145
|
+
events: z.record(z.string()).optional(),
|
|
2146
|
+
roles: z.record(z.string(), z.array(z.string())).optional(),
|
|
2147
|
+
entities: z.record(z.string(), z.string()).optional(),
|
|
2148
|
+
mounts: z.record(z.string(), z.array(z.string())).optional(),
|
|
2149
|
+
extend: z.array(EntityFieldSchema).optional()
|
|
2150
|
+
});
|
|
2151
|
+
function parseOrbitalRef(ref2) {
|
|
2152
|
+
const match = ref2.match(/^([A-Z][a-zA-Z0-9]*)\.orbitals\.([A-Z][a-zA-Z0-9]*)$/);
|
|
2153
|
+
if (!match) return null;
|
|
2154
|
+
return { alias: match[1], orbitalName: match[2] };
|
|
2155
|
+
}
|
|
2066
2156
|
z.string().regex(
|
|
2067
2157
|
/^([A-Z][a-zA-Z0-9]*\.traits\.)?[A-Z][a-zA-Z0-9]*$/,
|
|
2068
2158
|
'Trait reference must be "TraitName" or "Alias.traits.TraitName"'
|
|
@@ -2123,6 +2213,15 @@ var OrbitalDefinitionSchema = z.object({
|
|
|
2123
2213
|
services: z.array(ServiceRefSchema).optional(),
|
|
2124
2214
|
// Components (inline or reference)
|
|
2125
2215
|
entity: EntityRefSchema,
|
|
2216
|
+
// Mirrors the `OrbitalDefinition.auxiliaryEntities` type field — WAS
|
|
2217
|
+
// undeclared here, so `OrbitalSchemaSchema.safeParse` (every load through
|
|
2218
|
+
// `external-loader.ts`) silently stripped it on every externally-loaded
|
|
2219
|
+
// orbital (zod drops unrecognized keys by default), while a schema parsed
|
|
2220
|
+
// directly via `JSON.parse` kept it. Found via the entity-field auto-merge
|
|
2221
|
+
// rebind-target fallback landing on the wrong entity for any RECURSIVELY
|
|
2222
|
+
// loaded `uses` file (`packages/almadar-runtime/src/resolver/
|
|
2223
|
+
// reference-resolver.ts`'s `mergeImportedEntityFieldsIntoOrbital`).
|
|
2224
|
+
auxiliaryEntities: z.array(EntityRefSchema).optional(),
|
|
2126
2225
|
traits: z.array(TraitRefSchema),
|
|
2127
2226
|
pages: z.array(PageRefSchema),
|
|
2128
2227
|
// Event interface (trait-centric model) - computed by resolver
|
|
@@ -2130,6 +2229,10 @@ var OrbitalDefinitionSchema = z.object({
|
|
|
2130
2229
|
listens: z.array(ComputedEventListenerSchema).optional(),
|
|
2131
2230
|
// Filter for exposed events (trait-centric model)
|
|
2132
2231
|
exposes: z.array(z.string()).optional(),
|
|
2232
|
+
// This orbital's own declared knobs (§4.5)
|
|
2233
|
+
config: DeclaredTraitConfigSchema.optional(),
|
|
2234
|
+
// Transient — set by lowering, cleared by inline/resolve
|
|
2235
|
+
reference: OrbitalRefObjectSchema.optional(),
|
|
2133
2236
|
// Context fields - persisted throughout orbital lifecycle
|
|
2134
2237
|
domainContext: DomainContextSchema.optional(),
|
|
2135
2238
|
design: DesignPreferencesSchema.optional(),
|
|
@@ -2141,18 +2244,6 @@ function isOrbitalDefinition(orbital) {
|
|
|
2141
2244
|
return "entity" in orbital;
|
|
2142
2245
|
}
|
|
2143
2246
|
var OrbitalUnitSchema = OrbitalSchema;
|
|
2144
|
-
var OrbitalConfigSchema = z.object({
|
|
2145
|
-
theme: z.object({
|
|
2146
|
-
primary: z.string().optional(),
|
|
2147
|
-
secondary: z.string().optional(),
|
|
2148
|
-
mode: z.enum(["light", "dark", "system"]).optional()
|
|
2149
|
-
}).optional(),
|
|
2150
|
-
features: z.record(z.boolean()).optional(),
|
|
2151
|
-
api: z.object({
|
|
2152
|
-
baseUrl: z.string().optional(),
|
|
2153
|
-
timeout: z.number().optional()
|
|
2154
|
-
}).optional()
|
|
2155
|
-
});
|
|
2156
2247
|
var ConfigProvenanceRecordSchema = z.object({
|
|
2157
2248
|
trait: z.string(),
|
|
2158
2249
|
patternPath: z.string().optional(),
|
|
@@ -2178,7 +2269,7 @@ var OrbitalSchemaSchema = z.object({
|
|
|
2178
2269
|
customPatterns: CustomPatternMapSchema,
|
|
2179
2270
|
orbitals: z.array(OrbitalSchema).min(1, "At least one orbital is required"),
|
|
2180
2271
|
services: z.array(ServiceDefinitionSchema).optional(),
|
|
2181
|
-
config:
|
|
2272
|
+
config: DeclaredTraitConfigSchema.optional(),
|
|
2182
2273
|
_metadata: SchemaMetadataSchema.optional(),
|
|
2183
2274
|
// V4 identity — optional/dual-carry until the Phase-7 flip. Present on
|
|
2184
2275
|
// id-carrying `.orb` files so `parseOrbitalSchema` preserves them instead
|
|
@@ -2484,11 +2575,12 @@ function getInteractionModelForDomain(domain) {
|
|
|
2484
2575
|
// src/patterns/patterns-registry.json
|
|
2485
2576
|
var patterns_registry_default = {
|
|
2486
2577
|
version: "1.0.0",
|
|
2487
|
-
exportedAt: "2026-09-
|
|
2578
|
+
exportedAt: "2026-09-07T02:55:20.374Z",
|
|
2488
2579
|
patterns: {
|
|
2489
2580
|
"entity-table": {
|
|
2490
2581
|
type: "entity-table",
|
|
2491
2582
|
category: "display",
|
|
2583
|
+
sourceFile: "components/core/organisms/DataTable.tsx",
|
|
2492
2584
|
tier: "organisms",
|
|
2493
2585
|
family: "core",
|
|
2494
2586
|
description: "Data table with columns and sorting",
|
|
@@ -2735,7 +2827,8 @@ var patterns_registry_default = {
|
|
|
2735
2827
|
event: {
|
|
2736
2828
|
types: [
|
|
2737
2829
|
"string"
|
|
2738
|
-
]
|
|
2830
|
+
],
|
|
2831
|
+
kind: "event"
|
|
2739
2832
|
},
|
|
2740
2833
|
navigatesTo: {
|
|
2741
2834
|
types: [
|
|
@@ -2802,7 +2895,8 @@ var patterns_registry_default = {
|
|
|
2802
2895
|
event: {
|
|
2803
2896
|
types: [
|
|
2804
2897
|
"string"
|
|
2805
|
-
]
|
|
2898
|
+
],
|
|
2899
|
+
kind: "event"
|
|
2806
2900
|
}
|
|
2807
2901
|
},
|
|
2808
2902
|
propertyRequired: [
|
|
@@ -2874,7 +2968,8 @@ var patterns_registry_default = {
|
|
|
2874
2968
|
event: {
|
|
2875
2969
|
types: [
|
|
2876
2970
|
"string"
|
|
2877
|
-
]
|
|
2971
|
+
],
|
|
2972
|
+
kind: "event"
|
|
2878
2973
|
}
|
|
2879
2974
|
},
|
|
2880
2975
|
required: [
|
|
@@ -2922,7 +3017,8 @@ var patterns_registry_default = {
|
|
|
2922
3017
|
event: {
|
|
2923
3018
|
types: [
|
|
2924
3019
|
"string"
|
|
2925
|
-
]
|
|
3020
|
+
],
|
|
3021
|
+
kind: "event"
|
|
2926
3022
|
}
|
|
2927
3023
|
},
|
|
2928
3024
|
required: [
|
|
@@ -2962,6 +3058,7 @@ var patterns_registry_default = {
|
|
|
2962
3058
|
"entity-list": {
|
|
2963
3059
|
type: "entity-list",
|
|
2964
3060
|
category: "display",
|
|
3061
|
+
sourceFile: "components/core/organisms/List.tsx",
|
|
2965
3062
|
tier: "organisms",
|
|
2966
3063
|
family: "core",
|
|
2967
3064
|
description: "Vertical list of items",
|
|
@@ -3122,7 +3219,8 @@ var patterns_registry_default = {
|
|
|
3122
3219
|
event: {
|
|
3123
3220
|
types: [
|
|
3124
3221
|
"string"
|
|
3125
|
-
]
|
|
3222
|
+
],
|
|
3223
|
+
kind: "event"
|
|
3126
3224
|
},
|
|
3127
3225
|
navigatesTo: {
|
|
3128
3226
|
types: [
|
|
@@ -3271,7 +3369,6 @@ var patterns_registry_default = {
|
|
|
3271
3369
|
types: [
|
|
3272
3370
|
"object"
|
|
3273
3371
|
],
|
|
3274
|
-
freeform: true,
|
|
3275
3372
|
controlValue: true
|
|
3276
3373
|
}
|
|
3277
3374
|
}
|
|
@@ -3345,6 +3442,7 @@ var patterns_registry_default = {
|
|
|
3345
3442
|
"entity-cards": {
|
|
3346
3443
|
type: "entity-cards",
|
|
3347
3444
|
category: "display",
|
|
3445
|
+
sourceFile: "components/core/organisms/CardGrid.tsx",
|
|
3348
3446
|
tier: "organisms",
|
|
3349
3447
|
family: "core",
|
|
3350
3448
|
description: "Grid of cards for visual content",
|
|
@@ -3626,7 +3724,8 @@ var patterns_registry_default = {
|
|
|
3626
3724
|
event: {
|
|
3627
3725
|
types: [
|
|
3628
3726
|
"string"
|
|
3629
|
-
]
|
|
3727
|
+
],
|
|
3728
|
+
kind: "event"
|
|
3630
3729
|
},
|
|
3631
3730
|
navigatesTo: {
|
|
3632
3731
|
types: [
|
|
@@ -3684,6 +3783,7 @@ var patterns_registry_default = {
|
|
|
3684
3783
|
"detail-panel": {
|
|
3685
3784
|
type: "detail-panel",
|
|
3686
3785
|
category: "display",
|
|
3786
|
+
sourceFile: "components/core/organisms/DetailPanel.tsx",
|
|
3687
3787
|
tier: "organisms",
|
|
3688
3788
|
family: "core",
|
|
3689
3789
|
description: "Detail view panel for drawers/sidebars",
|
|
@@ -3965,7 +4065,8 @@ var patterns_registry_default = {
|
|
|
3965
4065
|
event: {
|
|
3966
4066
|
types: [
|
|
3967
4067
|
"string"
|
|
3968
|
-
]
|
|
4068
|
+
],
|
|
4069
|
+
kind: "event"
|
|
3969
4070
|
},
|
|
3970
4071
|
navigatesTo: {
|
|
3971
4072
|
types: [
|
|
@@ -4021,7 +4122,8 @@ var patterns_registry_default = {
|
|
|
4021
4122
|
event: {
|
|
4022
4123
|
types: [
|
|
4023
4124
|
"string"
|
|
4024
|
-
]
|
|
4125
|
+
],
|
|
4126
|
+
kind: "event"
|
|
4025
4127
|
},
|
|
4026
4128
|
navigatesTo: {
|
|
4027
4129
|
types: [
|
|
@@ -4233,6 +4335,7 @@ var patterns_registry_default = {
|
|
|
4233
4335
|
"page-header": {
|
|
4234
4336
|
type: "page-header",
|
|
4235
4337
|
category: "header",
|
|
4338
|
+
sourceFile: "components/core/molecules/PageHeader.tsx",
|
|
4236
4339
|
tier: "molecules",
|
|
4237
4340
|
family: "core",
|
|
4238
4341
|
description: "Page title with optional breadcrumb and action buttons",
|
|
@@ -4358,7 +4461,8 @@ var patterns_registry_default = {
|
|
|
4358
4461
|
event: {
|
|
4359
4462
|
types: [
|
|
4360
4463
|
"string"
|
|
4361
|
-
]
|
|
4464
|
+
],
|
|
4465
|
+
kind: "event"
|
|
4362
4466
|
},
|
|
4363
4467
|
variant: {
|
|
4364
4468
|
types: [
|
|
@@ -4498,6 +4602,7 @@ var patterns_registry_default = {
|
|
|
4498
4602
|
form: {
|
|
4499
4603
|
type: "form",
|
|
4500
4604
|
category: "form",
|
|
4605
|
+
sourceFile: "components/core/organisms/Form.tsx",
|
|
4501
4606
|
tier: "organisms",
|
|
4502
4607
|
family: "core",
|
|
4503
4608
|
description: "Complete form with fields and actions",
|
|
@@ -4622,7 +4727,6 @@ var patterns_registry_default = {
|
|
|
4622
4727
|
types: [
|
|
4623
4728
|
"object"
|
|
4624
4729
|
],
|
|
4625
|
-
freeform: true,
|
|
4626
4730
|
controlValue: true
|
|
4627
4731
|
},
|
|
4628
4732
|
options: {
|
|
@@ -5066,7 +5170,6 @@ var patterns_registry_default = {
|
|
|
5066
5170
|
types: [
|
|
5067
5171
|
"object"
|
|
5068
5172
|
],
|
|
5069
|
-
freeform: true,
|
|
5070
5173
|
controlValue: true
|
|
5071
5174
|
}
|
|
5072
5175
|
},
|
|
@@ -5078,7 +5181,6 @@ var patterns_registry_default = {
|
|
|
5078
5181
|
types: [
|
|
5079
5182
|
"object"
|
|
5080
5183
|
],
|
|
5081
|
-
freeform: true,
|
|
5082
5184
|
controlValue: true
|
|
5083
5185
|
}
|
|
5084
5186
|
},
|
|
@@ -5090,7 +5192,6 @@ var patterns_registry_default = {
|
|
|
5090
5192
|
types: [
|
|
5091
5193
|
"object"
|
|
5092
5194
|
],
|
|
5093
|
-
freeform: true,
|
|
5094
5195
|
controlValue: true
|
|
5095
5196
|
}
|
|
5096
5197
|
},
|
|
@@ -5102,7 +5203,6 @@ var patterns_registry_default = {
|
|
|
5102
5203
|
types: [
|
|
5103
5204
|
"object"
|
|
5104
5205
|
],
|
|
5105
|
-
freeform: true,
|
|
5106
5206
|
controlValue: true
|
|
5107
5207
|
}
|
|
5108
5208
|
}
|
|
@@ -5185,7 +5285,6 @@ var patterns_registry_default = {
|
|
|
5185
5285
|
types: [
|
|
5186
5286
|
"object"
|
|
5187
5287
|
],
|
|
5188
|
-
freeform: true,
|
|
5189
5288
|
controlValue: true
|
|
5190
5289
|
},
|
|
5191
5290
|
options: {
|
|
@@ -5390,7 +5489,6 @@ var patterns_registry_default = {
|
|
|
5390
5489
|
types: [
|
|
5391
5490
|
"object"
|
|
5392
5491
|
],
|
|
5393
|
-
freeform: true,
|
|
5394
5492
|
controlValue: true
|
|
5395
5493
|
}
|
|
5396
5494
|
}
|
|
@@ -5421,6 +5519,7 @@ var patterns_registry_default = {
|
|
|
5421
5519
|
"form-section": {
|
|
5422
5520
|
type: "form-section",
|
|
5423
5521
|
category: "form",
|
|
5522
|
+
sourceFile: "components/core/organisms/Form.tsx",
|
|
5424
5523
|
tier: "organisms",
|
|
5425
5524
|
family: "core",
|
|
5426
5525
|
description: "Alias for form \u2014 Complete form with fields and actions",
|
|
@@ -5545,7 +5644,6 @@ var patterns_registry_default = {
|
|
|
5545
5644
|
types: [
|
|
5546
5645
|
"object"
|
|
5547
5646
|
],
|
|
5548
|
-
freeform: true,
|
|
5549
5647
|
controlValue: true
|
|
5550
5648
|
},
|
|
5551
5649
|
options: {
|
|
@@ -5989,7 +6087,6 @@ var patterns_registry_default = {
|
|
|
5989
6087
|
types: [
|
|
5990
6088
|
"object"
|
|
5991
6089
|
],
|
|
5992
|
-
freeform: true,
|
|
5993
6090
|
controlValue: true
|
|
5994
6091
|
}
|
|
5995
6092
|
},
|
|
@@ -6001,7 +6098,6 @@ var patterns_registry_default = {
|
|
|
6001
6098
|
types: [
|
|
6002
6099
|
"object"
|
|
6003
6100
|
],
|
|
6004
|
-
freeform: true,
|
|
6005
6101
|
controlValue: true
|
|
6006
6102
|
}
|
|
6007
6103
|
},
|
|
@@ -6013,7 +6109,6 @@ var patterns_registry_default = {
|
|
|
6013
6109
|
types: [
|
|
6014
6110
|
"object"
|
|
6015
6111
|
],
|
|
6016
|
-
freeform: true,
|
|
6017
6112
|
controlValue: true
|
|
6018
6113
|
}
|
|
6019
6114
|
},
|
|
@@ -6025,7 +6120,6 @@ var patterns_registry_default = {
|
|
|
6025
6120
|
types: [
|
|
6026
6121
|
"object"
|
|
6027
6122
|
],
|
|
6028
|
-
freeform: true,
|
|
6029
6123
|
controlValue: true
|
|
6030
6124
|
}
|
|
6031
6125
|
}
|
|
@@ -6108,7 +6202,6 @@ var patterns_registry_default = {
|
|
|
6108
6202
|
types: [
|
|
6109
6203
|
"object"
|
|
6110
6204
|
],
|
|
6111
|
-
freeform: true,
|
|
6112
6205
|
controlValue: true
|
|
6113
6206
|
},
|
|
6114
6207
|
options: {
|
|
@@ -6313,7 +6406,6 @@ var patterns_registry_default = {
|
|
|
6313
6406
|
types: [
|
|
6314
6407
|
"object"
|
|
6315
6408
|
],
|
|
6316
|
-
freeform: true,
|
|
6317
6409
|
controlValue: true
|
|
6318
6410
|
}
|
|
6319
6411
|
}
|
|
@@ -6672,6 +6764,7 @@ var patterns_registry_default = {
|
|
|
6672
6764
|
tabs: {
|
|
6673
6765
|
type: "tabs",
|
|
6674
6766
|
category: "navigation",
|
|
6767
|
+
sourceFile: "components/core/molecules/Tabs.tsx",
|
|
6675
6768
|
tier: "molecules",
|
|
6676
6769
|
family: "core",
|
|
6677
6770
|
description: "Tab navigation within page",
|
|
@@ -6827,7 +6920,8 @@ var patterns_registry_default = {
|
|
|
6827
6920
|
event: {
|
|
6828
6921
|
types: [
|
|
6829
6922
|
"string"
|
|
6830
|
-
]
|
|
6923
|
+
],
|
|
6924
|
+
kind: "event"
|
|
6831
6925
|
},
|
|
6832
6926
|
active: {
|
|
6833
6927
|
types: [
|
|
@@ -6986,7 +7080,8 @@ var patterns_registry_default = {
|
|
|
6986
7080
|
event: {
|
|
6987
7081
|
types: [
|
|
6988
7082
|
"string"
|
|
6989
|
-
]
|
|
7083
|
+
],
|
|
7084
|
+
kind: "event"
|
|
6990
7085
|
},
|
|
6991
7086
|
active: {
|
|
6992
7087
|
types: [
|
|
@@ -7072,6 +7167,7 @@ var patterns_registry_default = {
|
|
|
7072
7167
|
breadcrumb: {
|
|
7073
7168
|
type: "breadcrumb",
|
|
7074
7169
|
category: "navigation",
|
|
7170
|
+
sourceFile: "components/core/molecules/Breadcrumb.tsx",
|
|
7075
7171
|
tier: "molecules",
|
|
7076
7172
|
family: "core",
|
|
7077
7173
|
description: "Breadcrumb navigation",
|
|
@@ -7127,7 +7223,8 @@ var patterns_registry_default = {
|
|
|
7127
7223
|
event: {
|
|
7128
7224
|
types: [
|
|
7129
7225
|
"string"
|
|
7130
|
-
]
|
|
7226
|
+
],
|
|
7227
|
+
kind: "event"
|
|
7131
7228
|
}
|
|
7132
7229
|
},
|
|
7133
7230
|
required: [
|
|
@@ -7463,6 +7560,7 @@ var patterns_registry_default = {
|
|
|
7463
7560
|
"wizard-container": {
|
|
7464
7561
|
type: "wizard-container",
|
|
7465
7562
|
category: "navigation",
|
|
7563
|
+
sourceFile: "components/core/molecules/WizardContainer.tsx",
|
|
7466
7564
|
tier: "molecules",
|
|
7467
7565
|
family: "core",
|
|
7468
7566
|
description: "Multi-step wizard container",
|
|
@@ -7688,7 +7786,6 @@ var patterns_registry_default = {
|
|
|
7688
7786
|
types: [
|
|
7689
7787
|
"object"
|
|
7690
7788
|
],
|
|
7691
|
-
freeform: true,
|
|
7692
7789
|
controlValue: true
|
|
7693
7790
|
}
|
|
7694
7791
|
},
|
|
@@ -7710,7 +7807,6 @@ var patterns_registry_default = {
|
|
|
7710
7807
|
types: [
|
|
7711
7808
|
"object"
|
|
7712
7809
|
],
|
|
7713
|
-
freeform: true,
|
|
7714
7810
|
controlValue: true
|
|
7715
7811
|
}
|
|
7716
7812
|
},
|
|
@@ -7753,7 +7849,6 @@ var patterns_registry_default = {
|
|
|
7753
7849
|
types: [
|
|
7754
7850
|
"object"
|
|
7755
7851
|
],
|
|
7756
|
-
freeform: true,
|
|
7757
7852
|
controlValue: true
|
|
7758
7853
|
}
|
|
7759
7854
|
},
|
|
@@ -7765,7 +7860,6 @@ var patterns_registry_default = {
|
|
|
7765
7860
|
types: [
|
|
7766
7861
|
"object"
|
|
7767
7862
|
],
|
|
7768
|
-
freeform: true,
|
|
7769
7863
|
controlValue: true
|
|
7770
7864
|
}
|
|
7771
7865
|
},
|
|
@@ -7777,7 +7871,6 @@ var patterns_registry_default = {
|
|
|
7777
7871
|
types: [
|
|
7778
7872
|
"object"
|
|
7779
7873
|
],
|
|
7780
|
-
freeform: true,
|
|
7781
7874
|
controlValue: true
|
|
7782
7875
|
}
|
|
7783
7876
|
},
|
|
@@ -7799,7 +7892,6 @@ var patterns_registry_default = {
|
|
|
7799
7892
|
types: [
|
|
7800
7893
|
"object"
|
|
7801
7894
|
],
|
|
7802
|
-
freeform: true,
|
|
7803
7895
|
controlValue: true
|
|
7804
7896
|
}
|
|
7805
7897
|
},
|
|
@@ -7927,7 +8019,8 @@ var patterns_registry_default = {
|
|
|
7927
8019
|
types: [
|
|
7928
8020
|
"object"
|
|
7929
8021
|
],
|
|
7930
|
-
cyclic: true
|
|
8022
|
+
cyclic: true,
|
|
8023
|
+
cyclicTypeName: "WizardSection"
|
|
7931
8024
|
}
|
|
7932
8025
|
},
|
|
7933
8026
|
condition: {
|
|
@@ -7989,7 +8082,6 @@ var patterns_registry_default = {
|
|
|
7989
8082
|
types: [
|
|
7990
8083
|
"object"
|
|
7991
8084
|
],
|
|
7992
|
-
freeform: true,
|
|
7993
8085
|
controlValue: true
|
|
7994
8086
|
}
|
|
7995
8087
|
},
|
|
@@ -9492,8 +9584,7 @@ var patterns_registry_default = {
|
|
|
9492
9584
|
"object"
|
|
9493
9585
|
],
|
|
9494
9586
|
description: "Payload to include with the action event",
|
|
9495
|
-
payloadFor: "action"
|
|
9496
|
-
freeform: true
|
|
9587
|
+
payloadFor: "action"
|
|
9497
9588
|
},
|
|
9498
9589
|
hoverEvent: {
|
|
9499
9590
|
types: [
|
|
@@ -10165,8 +10256,7 @@ var patterns_registry_default = {
|
|
|
10165
10256
|
"object"
|
|
10166
10257
|
],
|
|
10167
10258
|
description: "Payload to include with the action event",
|
|
10168
|
-
payloadFor: "action"
|
|
10169
|
-
freeform: true
|
|
10259
|
+
payloadFor: "action"
|
|
10170
10260
|
},
|
|
10171
10261
|
label: {
|
|
10172
10262
|
types: [
|
|
@@ -10472,8 +10562,7 @@ var patterns_registry_default = {
|
|
|
10472
10562
|
"object"
|
|
10473
10563
|
],
|
|
10474
10564
|
description: "Payload to include with the action event",
|
|
10475
|
-
payloadFor: "action"
|
|
10476
|
-
freeform: true
|
|
10565
|
+
payloadFor: "action"
|
|
10477
10566
|
}
|
|
10478
10567
|
}
|
|
10479
10568
|
},
|
|
@@ -11708,6 +11797,7 @@ var patterns_registry_default = {
|
|
|
11708
11797
|
menu: {
|
|
11709
11798
|
type: "menu",
|
|
11710
11799
|
category: "component",
|
|
11800
|
+
sourceFile: "components/core/molecules/Menu.tsx",
|
|
11711
11801
|
tier: "molecules",
|
|
11712
11802
|
family: "core",
|
|
11713
11803
|
description: "Dropdown menu",
|
|
@@ -11778,7 +11868,8 @@ var patterns_registry_default = {
|
|
|
11778
11868
|
event: {
|
|
11779
11869
|
types: [
|
|
11780
11870
|
"string"
|
|
11781
|
-
]
|
|
11871
|
+
],
|
|
11872
|
+
kind: "event"
|
|
11782
11873
|
},
|
|
11783
11874
|
url: {
|
|
11784
11875
|
types: [
|
|
@@ -11802,7 +11893,8 @@ var patterns_registry_default = {
|
|
|
11802
11893
|
types: [
|
|
11803
11894
|
"object"
|
|
11804
11895
|
],
|
|
11805
|
-
cyclic: true
|
|
11896
|
+
cyclic: true,
|
|
11897
|
+
cyclicTypeName: "MenuItem"
|
|
11806
11898
|
}
|
|
11807
11899
|
}
|
|
11808
11900
|
},
|
|
@@ -12370,6 +12462,7 @@ var patterns_registry_default = {
|
|
|
12370
12462
|
"conditional-wrapper": {
|
|
12371
12463
|
type: "conditional-wrapper",
|
|
12372
12464
|
category: "component",
|
|
12465
|
+
sourceFile: "components/core/atoms/ConditionalWrapper.tsx",
|
|
12373
12466
|
tier: "atoms",
|
|
12374
12467
|
family: "core",
|
|
12375
12468
|
description: "ConditionalWrapper Atom Component A wrapper component that conditionally renders its children based on S-expression evaluation. Used for dynamic field visibility in inspection forms.",
|
|
@@ -12401,7 +12494,6 @@ var patterns_registry_default = {
|
|
|
12401
12494
|
types: [
|
|
12402
12495
|
"object"
|
|
12403
12496
|
],
|
|
12404
|
-
freeform: true,
|
|
12405
12497
|
controlValue: true
|
|
12406
12498
|
}
|
|
12407
12499
|
},
|
|
@@ -12413,7 +12505,6 @@ var patterns_registry_default = {
|
|
|
12413
12505
|
types: [
|
|
12414
12506
|
"object"
|
|
12415
12507
|
],
|
|
12416
|
-
freeform: true,
|
|
12417
12508
|
controlValue: true
|
|
12418
12509
|
}
|
|
12419
12510
|
},
|
|
@@ -12425,7 +12516,6 @@ var patterns_registry_default = {
|
|
|
12425
12516
|
types: [
|
|
12426
12517
|
"object"
|
|
12427
12518
|
],
|
|
12428
|
-
freeform: true,
|
|
12429
12519
|
controlValue: true
|
|
12430
12520
|
}
|
|
12431
12521
|
},
|
|
@@ -12437,7 +12527,6 @@ var patterns_registry_default = {
|
|
|
12437
12527
|
types: [
|
|
12438
12528
|
"object"
|
|
12439
12529
|
],
|
|
12440
|
-
freeform: true,
|
|
12441
12530
|
controlValue: true
|
|
12442
12531
|
}
|
|
12443
12532
|
}
|
|
@@ -12773,8 +12862,7 @@ var patterns_registry_default = {
|
|
|
12773
12862
|
"object"
|
|
12774
12863
|
],
|
|
12775
12864
|
description: "Payload to include with the action event",
|
|
12776
|
-
payloadFor: "action"
|
|
12777
|
-
freeform: true
|
|
12865
|
+
payloadFor: "action"
|
|
12778
12866
|
},
|
|
12779
12867
|
responsive: {
|
|
12780
12868
|
types: [
|
|
@@ -13121,6 +13209,7 @@ var patterns_registry_default = {
|
|
|
13121
13209
|
"form-actions": {
|
|
13122
13210
|
type: "form-actions",
|
|
13123
13211
|
category: "component",
|
|
13212
|
+
sourceFile: "components/core/molecules/ButtonGroup.tsx",
|
|
13124
13213
|
tier: "molecules",
|
|
13125
13214
|
family: "core",
|
|
13126
13215
|
description: "ButtonGroup Molecule Component A component for grouping buttons together with connected styling. Supports both children-based and form-actions pattern (primary/secondary) usage. Uses Button atoms.",
|
|
@@ -13156,7 +13245,8 @@ var patterns_registry_default = {
|
|
|
13156
13245
|
event: {
|
|
13157
13246
|
types: [
|
|
13158
13247
|
"string"
|
|
13159
|
-
]
|
|
13248
|
+
],
|
|
13249
|
+
kind: "event"
|
|
13160
13250
|
},
|
|
13161
13251
|
navigatesTo: {
|
|
13162
13252
|
types: [
|
|
@@ -13198,7 +13288,8 @@ var patterns_registry_default = {
|
|
|
13198
13288
|
event: {
|
|
13199
13289
|
types: [
|
|
13200
13290
|
"string"
|
|
13201
|
-
]
|
|
13291
|
+
],
|
|
13292
|
+
kind: "event"
|
|
13202
13293
|
},
|
|
13203
13294
|
navigatesTo: {
|
|
13204
13295
|
types: [
|
|
@@ -13484,6 +13575,7 @@ var patterns_registry_default = {
|
|
|
13484
13575
|
"floating-action-button": {
|
|
13485
13576
|
type: "floating-action-button",
|
|
13486
13577
|
category: "component",
|
|
13578
|
+
sourceFile: "components/core/molecules/FloatingActionButton.tsx",
|
|
13487
13579
|
tier: "molecules",
|
|
13488
13580
|
family: "core",
|
|
13489
13581
|
description: "FloatingActionButton Molecule Component A floating action button that can expand into multiple actions vertically. Uses Button atom.",
|
|
@@ -13508,7 +13600,6 @@ var patterns_registry_default = {
|
|
|
13508
13600
|
],
|
|
13509
13601
|
description: "Payload to include with the dispatched action event.",
|
|
13510
13602
|
payloadFor: "action",
|
|
13511
|
-
freeform: true,
|
|
13512
13603
|
eventPayloadBrand: true
|
|
13513
13604
|
},
|
|
13514
13605
|
actions: {
|
|
@@ -13547,7 +13638,8 @@ var patterns_registry_default = {
|
|
|
13547
13638
|
event: {
|
|
13548
13639
|
types: [
|
|
13549
13640
|
"string"
|
|
13550
|
-
]
|
|
13641
|
+
],
|
|
13642
|
+
kind: "event"
|
|
13551
13643
|
},
|
|
13552
13644
|
variant: {
|
|
13553
13645
|
types: [
|
|
@@ -14762,6 +14854,7 @@ var patterns_registry_default = {
|
|
|
14762
14854
|
navigation: {
|
|
14763
14855
|
type: "navigation",
|
|
14764
14856
|
category: "navigation",
|
|
14857
|
+
sourceFile: "components/core/molecules/Navigation.tsx",
|
|
14765
14858
|
tier: "molecules",
|
|
14766
14859
|
family: "core",
|
|
14767
14860
|
description: "Navigation Organism Component A navigation component with items, active indicators, icons, and badges. Uses Menu, ButtonGroup molecules and Button, Icon, Badge, Typography, Divider atoms.",
|
|
@@ -14831,7 +14924,8 @@ var patterns_registry_default = {
|
|
|
14831
14924
|
types: [
|
|
14832
14925
|
"object"
|
|
14833
14926
|
],
|
|
14834
|
-
cyclic: true
|
|
14927
|
+
cyclic: true,
|
|
14928
|
+
cyclicTypeName: "NavigationItem"
|
|
14835
14929
|
}
|
|
14836
14930
|
}
|
|
14837
14931
|
},
|
|
@@ -14900,6 +14994,7 @@ var patterns_registry_default = {
|
|
|
14900
14994
|
"orbital-visualization": {
|
|
14901
14995
|
type: "orbital-visualization",
|
|
14902
14996
|
category: "display",
|
|
14997
|
+
sourceFile: "components/core/molecules/OrbitalVisualization.tsx",
|
|
14903
14998
|
tier: "molecules",
|
|
14904
14999
|
family: "core",
|
|
14905
15000
|
description: "OrbitalVisualization Component Visualizes KFlow schemas as atomic orbitals based on complexity. Uses CSS 3D transforms for lightweight rendering without Three.js. Orbital Types (based on complexity score): - 1s (1-3): Simple sphere - Red - 2s (4-8): Larger sphere - Orange - 2p (9-15): Dumbbell shape - Yellow - 3s (16-25): Sphere with node - Green - 3p (26-40): Complex dumbbell - Blue - 3d (41-60): Cloverleaf - Indigo - 4f (61+): Multi-lobe - Violet",
|
|
@@ -14914,18 +15009,12 @@ var patterns_registry_default = {
|
|
|
14914
15009
|
types: [
|
|
14915
15010
|
"object"
|
|
14916
15011
|
],
|
|
14917
|
-
description: "
|
|
15012
|
+
description: "Complexity-scoring summary of a KFlow schema (counts only \u2014 see {@link OrbitalVisualizationSchemaSummary}).",
|
|
14918
15013
|
properties: {
|
|
14919
15014
|
dataEntities: {
|
|
14920
15015
|
types: [
|
|
14921
|
-
"
|
|
14922
|
-
]
|
|
14923
|
-
items: {
|
|
14924
|
-
types: [
|
|
14925
|
-
"object"
|
|
14926
|
-
],
|
|
14927
|
-
freeform: true
|
|
14928
|
-
}
|
|
15016
|
+
"number"
|
|
15017
|
+
]
|
|
14929
15018
|
},
|
|
14930
15019
|
ui: {
|
|
14931
15020
|
types: [
|
|
@@ -14943,14 +15032,8 @@ var patterns_registry_default = {
|
|
|
14943
15032
|
properties: {
|
|
14944
15033
|
sections: {
|
|
14945
15034
|
types: [
|
|
14946
|
-
"
|
|
14947
|
-
]
|
|
14948
|
-
items: {
|
|
14949
|
-
types: [
|
|
14950
|
-
"object"
|
|
14951
|
-
],
|
|
14952
|
-
freeform: true
|
|
14953
|
-
}
|
|
15035
|
+
"number"
|
|
15036
|
+
]
|
|
14954
15037
|
}
|
|
14955
15038
|
}
|
|
14956
15039
|
}
|
|
@@ -14959,14 +15042,8 @@ var patterns_registry_default = {
|
|
|
14959
15042
|
},
|
|
14960
15043
|
traits: {
|
|
14961
15044
|
types: [
|
|
14962
|
-
"
|
|
14963
|
-
]
|
|
14964
|
-
items: {
|
|
14965
|
-
types: [
|
|
14966
|
-
"object"
|
|
14967
|
-
],
|
|
14968
|
-
freeform: true
|
|
14969
|
-
}
|
|
15045
|
+
"number"
|
|
15046
|
+
]
|
|
14970
15047
|
}
|
|
14971
15048
|
}
|
|
14972
15049
|
},
|
|
@@ -15193,6 +15270,7 @@ var patterns_registry_default = {
|
|
|
15193
15270
|
sidebar: {
|
|
15194
15271
|
type: "sidebar",
|
|
15195
15272
|
category: "navigation",
|
|
15273
|
+
sourceFile: "components/core/molecules/Sidebar.tsx",
|
|
15196
15274
|
tier: "molecules",
|
|
15197
15275
|
family: "core",
|
|
15198
15276
|
description: "Sidebar Organism Component A sidebar component with logo, navigation items, user section, and collapse/expand. Styled to match the main Layout component with theme-aware CSS variables.",
|
|
@@ -15324,7 +15402,8 @@ var patterns_registry_default = {
|
|
|
15324
15402
|
types: [
|
|
15325
15403
|
"object"
|
|
15326
15404
|
],
|
|
15327
|
-
cyclic: true
|
|
15405
|
+
cyclic: true,
|
|
15406
|
+
cyclicTypeName: "SidebarItem"
|
|
15328
15407
|
}
|
|
15329
15408
|
}
|
|
15330
15409
|
},
|
|
@@ -15408,6 +15487,7 @@ var patterns_registry_default = {
|
|
|
15408
15487
|
split: {
|
|
15409
15488
|
type: "split",
|
|
15410
15489
|
category: "layout",
|
|
15490
|
+
sourceFile: "components/core/molecules/Split.tsx",
|
|
15411
15491
|
tier: "molecules",
|
|
15412
15492
|
family: "core",
|
|
15413
15493
|
description: "Split Component A two-column layout with configurable ratios. Perfect for sidebar/content layouts or side-by-side comparisons.",
|
|
@@ -15515,8 +15595,7 @@ var patterns_registry_default = {
|
|
|
15515
15595
|
items: {
|
|
15516
15596
|
types: [
|
|
15517
15597
|
"node"
|
|
15518
|
-
]
|
|
15519
|
-
freeform: true
|
|
15598
|
+
]
|
|
15520
15599
|
}
|
|
15521
15600
|
},
|
|
15522
15601
|
isLoading: {
|
|
@@ -15861,6 +15940,7 @@ var patterns_registry_default = {
|
|
|
15861
15940
|
"dashboard-layout": {
|
|
15862
15941
|
type: "dashboard-layout",
|
|
15863
15942
|
category: "template",
|
|
15943
|
+
sourceFile: "components/core/templates/DashboardLayout.tsx",
|
|
15864
15944
|
tier: "templates",
|
|
15865
15945
|
family: "core",
|
|
15866
15946
|
description: "DashboardLayout component",
|
|
@@ -15924,7 +16004,8 @@ var patterns_registry_default = {
|
|
|
15924
16004
|
types: [
|
|
15925
16005
|
"object"
|
|
15926
16006
|
],
|
|
15927
|
-
cyclic: true
|
|
16007
|
+
cyclic: true,
|
|
16008
|
+
cyclicTypeName: "NavItem"
|
|
15928
16009
|
}
|
|
15929
16010
|
}
|
|
15930
16011
|
},
|
|
@@ -16027,7 +16108,8 @@ var patterns_registry_default = {
|
|
|
16027
16108
|
event: {
|
|
16028
16109
|
types: [
|
|
16029
16110
|
"string"
|
|
16030
|
-
]
|
|
16111
|
+
],
|
|
16112
|
+
kind: "event"
|
|
16031
16113
|
},
|
|
16032
16114
|
navigatesTo: {
|
|
16033
16115
|
types: [
|
|
@@ -16500,6 +16582,7 @@ var patterns_registry_default = {
|
|
|
16500
16582
|
chart: {
|
|
16501
16583
|
type: "chart",
|
|
16502
16584
|
category: "visualization",
|
|
16585
|
+
sourceFile: "components/core/molecules/Chart.tsx",
|
|
16503
16586
|
tier: "molecules",
|
|
16504
16587
|
family: "core",
|
|
16505
16588
|
description: "Data visualization chart supporting bar, line, pie, area, and donut types",
|
|
@@ -16771,7 +16854,8 @@ var patterns_registry_default = {
|
|
|
16771
16854
|
event: {
|
|
16772
16855
|
types: [
|
|
16773
16856
|
"string"
|
|
16774
|
-
]
|
|
16857
|
+
],
|
|
16858
|
+
kind: "event"
|
|
16775
16859
|
},
|
|
16776
16860
|
navigatesTo: {
|
|
16777
16861
|
types: [
|
|
@@ -16843,6 +16927,7 @@ var patterns_registry_default = {
|
|
|
16843
16927
|
meter: {
|
|
16844
16928
|
type: "meter",
|
|
16845
16929
|
category: "visualization",
|
|
16930
|
+
sourceFile: "components/core/molecules/Meter.tsx",
|
|
16846
16931
|
tier: "molecules",
|
|
16847
16932
|
family: "core",
|
|
16848
16933
|
description: "Gauge/meter component for displaying a value within a range with thresholds",
|
|
@@ -16977,7 +17062,8 @@ var patterns_registry_default = {
|
|
|
16977
17062
|
event: {
|
|
16978
17063
|
types: [
|
|
16979
17064
|
"string"
|
|
16980
|
-
]
|
|
17065
|
+
],
|
|
17066
|
+
kind: "event"
|
|
16981
17067
|
},
|
|
16982
17068
|
navigatesTo: {
|
|
16983
17069
|
types: [
|
|
@@ -17049,6 +17135,7 @@ var patterns_registry_default = {
|
|
|
17049
17135
|
timeline: {
|
|
17050
17136
|
type: "timeline",
|
|
17051
17137
|
category: "display",
|
|
17138
|
+
sourceFile: "components/core/organisms/Timeline.tsx",
|
|
17052
17139
|
tier: "organisms",
|
|
17053
17140
|
family: "core",
|
|
17054
17141
|
description: "Vertical timeline for displaying chronological events with status indicators",
|
|
@@ -17215,7 +17302,8 @@ var patterns_registry_default = {
|
|
|
17215
17302
|
event: {
|
|
17216
17303
|
types: [
|
|
17217
17304
|
"string"
|
|
17218
|
-
]
|
|
17305
|
+
],
|
|
17306
|
+
kind: "event"
|
|
17219
17307
|
},
|
|
17220
17308
|
navigatesTo: {
|
|
17221
17309
|
types: [
|
|
@@ -17256,6 +17344,7 @@ var patterns_registry_default = {
|
|
|
17256
17344
|
"media-gallery": {
|
|
17257
17345
|
type: "media-gallery",
|
|
17258
17346
|
category: "media",
|
|
17347
|
+
sourceFile: "components/core/organisms/MediaGallery.tsx",
|
|
17259
17348
|
tier: "organisms",
|
|
17260
17349
|
family: "core",
|
|
17261
17350
|
description: "Grid gallery for images and media with lightbox, selection, and upload",
|
|
@@ -17526,7 +17615,8 @@ var patterns_registry_default = {
|
|
|
17526
17615
|
event: {
|
|
17527
17616
|
types: [
|
|
17528
17617
|
"string"
|
|
17529
|
-
]
|
|
17618
|
+
],
|
|
17619
|
+
kind: "event"
|
|
17530
17620
|
},
|
|
17531
17621
|
navigatesTo: {
|
|
17532
17622
|
types: [
|
|
@@ -17707,6 +17797,7 @@ var patterns_registry_default = {
|
|
|
17707
17797
|
"document-viewer": {
|
|
17708
17798
|
type: "document-viewer",
|
|
17709
17799
|
category: "display",
|
|
17800
|
+
sourceFile: "components/core/molecules/DocumentViewer.tsx",
|
|
17710
17801
|
tier: "molecules",
|
|
17711
17802
|
family: "core",
|
|
17712
17803
|
description: "Document viewer for PDFs, text, HTML, and markdown with zoom and pagination",
|
|
@@ -17810,7 +17901,8 @@ var patterns_registry_default = {
|
|
|
17810
17901
|
event: {
|
|
17811
17902
|
types: [
|
|
17812
17903
|
"string"
|
|
17813
|
-
]
|
|
17904
|
+
],
|
|
17905
|
+
kind: "event"
|
|
17814
17906
|
},
|
|
17815
17907
|
navigatesTo: {
|
|
17816
17908
|
types: [
|
|
@@ -17924,6 +18016,7 @@ var patterns_registry_default = {
|
|
|
17924
18016
|
"graph-canvas": {
|
|
17925
18017
|
type: "graph-canvas",
|
|
17926
18018
|
category: "game",
|
|
18019
|
+
sourceFile: "components/core/molecules/GraphCanvas.tsx",
|
|
17927
18020
|
tier: "molecules",
|
|
17928
18021
|
family: "core",
|
|
17929
18022
|
description: "Force-directed graph visualization for node-link data with interactive zoom, pan, and layout",
|
|
@@ -18186,7 +18279,8 @@ var patterns_registry_default = {
|
|
|
18186
18279
|
event: {
|
|
18187
18280
|
types: [
|
|
18188
18281
|
"string"
|
|
18189
|
-
]
|
|
18282
|
+
],
|
|
18283
|
+
kind: "event"
|
|
18190
18284
|
},
|
|
18191
18285
|
navigatesTo: {
|
|
18192
18286
|
types: [
|
|
@@ -18809,6 +18903,7 @@ var patterns_registry_default = {
|
|
|
18809
18903
|
"code-block": {
|
|
18810
18904
|
type: "code-block",
|
|
18811
18905
|
category: "component",
|
|
18906
|
+
sourceFile: "components/core/molecules/markdown/CodeBlock.tsx",
|
|
18812
18907
|
tier: "molecules",
|
|
18813
18908
|
family: "core",
|
|
18814
18909
|
description: "CodeBlock Molecule Component A syntax-highlighted code block with copy-to-clipboard functionality. Preserves scroll position during re-renders. Event Contract: - Emits: UI:COPY_CODE { language, success }",
|
|
@@ -19093,6 +19188,17 @@ var patterns_registry_default = {
|
|
|
19093
19188
|
]
|
|
19094
19189
|
}
|
|
19095
19190
|
},
|
|
19191
|
+
naturalLanguages: {
|
|
19192
|
+
types: [
|
|
19193
|
+
"array"
|
|
19194
|
+
],
|
|
19195
|
+
description: "Show the program in these natural languages as tabs, translating on the fly. Only meaningful for `language` 'lolo' / 'orb'; ignored otherwise. Fewer than two entries renders exactly as without the prop. `editable` wins: editing a translation is not a thing, so the English source is shown and this is ignored.",
|
|
19196
|
+
items: {
|
|
19197
|
+
types: [
|
|
19198
|
+
"object"
|
|
19199
|
+
]
|
|
19200
|
+
}
|
|
19201
|
+
},
|
|
19096
19202
|
actions: {
|
|
19097
19203
|
types: [
|
|
19098
19204
|
"array"
|
|
@@ -19113,7 +19219,8 @@ var patterns_registry_default = {
|
|
|
19113
19219
|
event: {
|
|
19114
19220
|
types: [
|
|
19115
19221
|
"string"
|
|
19116
|
-
]
|
|
19222
|
+
],
|
|
19223
|
+
kind: "event"
|
|
19117
19224
|
},
|
|
19118
19225
|
navigatesTo: {
|
|
19119
19226
|
types: [
|
|
@@ -20373,8 +20480,7 @@ var patterns_registry_default = {
|
|
|
20373
20480
|
"object"
|
|
20374
20481
|
],
|
|
20375
20482
|
description: "Additional payload for long-press events",
|
|
20376
|
-
payloadFor: "longPressEvent"
|
|
20377
|
-
freeform: true
|
|
20483
|
+
payloadFor: "longPressEvent"
|
|
20378
20484
|
},
|
|
20379
20485
|
swipeLeftEvent: {
|
|
20380
20486
|
types: [
|
|
@@ -21074,6 +21180,7 @@ var patterns_registry_default = {
|
|
|
21074
21180
|
"data-grid": {
|
|
21075
21181
|
type: "data-grid",
|
|
21076
21182
|
category: "display",
|
|
21183
|
+
sourceFile: "components/core/molecules/DataGrid.tsx",
|
|
21077
21184
|
tier: "molecules",
|
|
21078
21185
|
family: "core",
|
|
21079
21186
|
description: "DataGrid \u2014 structured records grid rendering rows over configurable columns, with sort, select, and drag-reorder.",
|
|
@@ -21299,7 +21406,8 @@ var patterns_registry_default = {
|
|
|
21299
21406
|
event: {
|
|
21300
21407
|
types: [
|
|
21301
21408
|
"string"
|
|
21302
|
-
]
|
|
21409
|
+
],
|
|
21410
|
+
kind: "event"
|
|
21303
21411
|
},
|
|
21304
21412
|
navigatesTo: {
|
|
21305
21413
|
types: [
|
|
@@ -21540,6 +21648,7 @@ var patterns_registry_default = {
|
|
|
21540
21648
|
"data-list": {
|
|
21541
21649
|
type: "data-list",
|
|
21542
21650
|
category: "display",
|
|
21651
|
+
sourceFile: "components/core/molecules/DataList.tsx",
|
|
21543
21652
|
tier: "molecules",
|
|
21544
21653
|
family: "core",
|
|
21545
21654
|
description: "DataList component",
|
|
@@ -21745,7 +21854,8 @@ var patterns_registry_default = {
|
|
|
21745
21854
|
event: {
|
|
21746
21855
|
types: [
|
|
21747
21856
|
"string"
|
|
21748
|
-
]
|
|
21857
|
+
],
|
|
21858
|
+
kind: "event"
|
|
21749
21859
|
},
|
|
21750
21860
|
icon: {
|
|
21751
21861
|
types: [
|
|
@@ -22504,8 +22614,7 @@ var patterns_registry_default = {
|
|
|
22504
22614
|
"object"
|
|
22505
22615
|
],
|
|
22506
22616
|
description: "Payload to include with the action event",
|
|
22507
|
-
payloadFor: "action"
|
|
22508
|
-
freeform: true
|
|
22617
|
+
payloadFor: "action"
|
|
22509
22618
|
},
|
|
22510
22619
|
onChange: {
|
|
22511
22620
|
types: [
|
|
@@ -22854,8 +22963,7 @@ var patterns_registry_default = {
|
|
|
22854
22963
|
"object"
|
|
22855
22964
|
],
|
|
22856
22965
|
description: "Payload to include with the action event",
|
|
22857
|
-
payloadFor: "action"
|
|
22858
|
-
freeform: true
|
|
22966
|
+
payloadFor: "action"
|
|
22859
22967
|
},
|
|
22860
22968
|
className: {
|
|
22861
22969
|
types: [
|
|
@@ -22947,8 +23055,7 @@ var patterns_registry_default = {
|
|
|
22947
23055
|
"object"
|
|
22948
23056
|
],
|
|
22949
23057
|
description: "Payload to include with the action event",
|
|
22950
|
-
payloadFor: "action"
|
|
22951
|
-
freeform: true
|
|
23058
|
+
payloadFor: "action"
|
|
22952
23059
|
},
|
|
22953
23060
|
onChange: {
|
|
22954
23061
|
types: [
|
|
@@ -23093,8 +23200,7 @@ var patterns_registry_default = {
|
|
|
23093
23200
|
"object"
|
|
23094
23201
|
],
|
|
23095
23202
|
description: "Payload to include with the action event",
|
|
23096
|
-
payloadFor: "action"
|
|
23097
|
-
freeform: true
|
|
23203
|
+
payloadFor: "action"
|
|
23098
23204
|
},
|
|
23099
23205
|
onFiles: {
|
|
23100
23206
|
types: [
|
|
@@ -23251,8 +23357,7 @@ var patterns_registry_default = {
|
|
|
23251
23357
|
"object"
|
|
23252
23358
|
],
|
|
23253
23359
|
description: "Optional payload to include with the load-more event",
|
|
23254
|
-
payloadFor: "loadMoreEvent"
|
|
23255
|
-
freeform: true
|
|
23360
|
+
payloadFor: "loadMoreEvent"
|
|
23256
23361
|
},
|
|
23257
23362
|
isLoading: {
|
|
23258
23363
|
types: [
|
|
@@ -23336,6 +23441,7 @@ var patterns_registry_default = {
|
|
|
23336
23441
|
carousel: {
|
|
23337
23442
|
type: "carousel",
|
|
23338
23443
|
category: "component",
|
|
23444
|
+
sourceFile: "components/core/molecules/Carousel.tsx",
|
|
23339
23445
|
tier: "molecules",
|
|
23340
23446
|
family: "core",
|
|
23341
23447
|
description: "Carousel component",
|
|
@@ -23354,8 +23460,23 @@ var patterns_registry_default = {
|
|
|
23354
23460
|
types: [
|
|
23355
23461
|
"object"
|
|
23356
23462
|
],
|
|
23357
|
-
|
|
23358
|
-
|
|
23463
|
+
properties: {
|
|
23464
|
+
id: {
|
|
23465
|
+
types: [
|
|
23466
|
+
"string"
|
|
23467
|
+
]
|
|
23468
|
+
},
|
|
23469
|
+
title: {
|
|
23470
|
+
types: [
|
|
23471
|
+
"string"
|
|
23472
|
+
]
|
|
23473
|
+
},
|
|
23474
|
+
image: {
|
|
23475
|
+
types: [
|
|
23476
|
+
"asset"
|
|
23477
|
+
]
|
|
23478
|
+
}
|
|
23479
|
+
}
|
|
23359
23480
|
}
|
|
23360
23481
|
},
|
|
23361
23482
|
renderItem: {
|
|
@@ -23367,7 +23488,29 @@ var patterns_registry_default = {
|
|
|
23367
23488
|
callbackArgs: [
|
|
23368
23489
|
{
|
|
23369
23490
|
name: "item",
|
|
23370
|
-
type: "object"
|
|
23491
|
+
type: "object",
|
|
23492
|
+
schema: {
|
|
23493
|
+
types: [
|
|
23494
|
+
"object"
|
|
23495
|
+
],
|
|
23496
|
+
properties: {
|
|
23497
|
+
id: {
|
|
23498
|
+
types: [
|
|
23499
|
+
"string"
|
|
23500
|
+
]
|
|
23501
|
+
},
|
|
23502
|
+
title: {
|
|
23503
|
+
types: [
|
|
23504
|
+
"string"
|
|
23505
|
+
]
|
|
23506
|
+
},
|
|
23507
|
+
image: {
|
|
23508
|
+
types: [
|
|
23509
|
+
"asset"
|
|
23510
|
+
]
|
|
23511
|
+
}
|
|
23512
|
+
}
|
|
23513
|
+
}
|
|
23371
23514
|
},
|
|
23372
23515
|
{
|
|
23373
23516
|
name: "index",
|
|
@@ -23385,7 +23528,29 @@ var patterns_registry_default = {
|
|
|
23385
23528
|
callbackArgs: [
|
|
23386
23529
|
{
|
|
23387
23530
|
name: "item",
|
|
23388
|
-
type: "object"
|
|
23531
|
+
type: "object",
|
|
23532
|
+
schema: {
|
|
23533
|
+
types: [
|
|
23534
|
+
"object"
|
|
23535
|
+
],
|
|
23536
|
+
properties: {
|
|
23537
|
+
id: {
|
|
23538
|
+
types: [
|
|
23539
|
+
"string"
|
|
23540
|
+
]
|
|
23541
|
+
},
|
|
23542
|
+
title: {
|
|
23543
|
+
types: [
|
|
23544
|
+
"string"
|
|
23545
|
+
]
|
|
23546
|
+
},
|
|
23547
|
+
image: {
|
|
23548
|
+
types: [
|
|
23549
|
+
"asset"
|
|
23550
|
+
]
|
|
23551
|
+
}
|
|
23552
|
+
}
|
|
23553
|
+
}
|
|
23389
23554
|
},
|
|
23390
23555
|
{
|
|
23391
23556
|
name: "index",
|
|
@@ -23449,7 +23614,12 @@ var patterns_registry_default = {
|
|
|
23449
23614
|
],
|
|
23450
23615
|
description: "Payload to include with the slide change event",
|
|
23451
23616
|
payloadFor: "slideChangeEvent",
|
|
23452
|
-
|
|
23617
|
+
mapValue: {
|
|
23618
|
+
types: [
|
|
23619
|
+
"object"
|
|
23620
|
+
],
|
|
23621
|
+
jsonValueBrand: true
|
|
23622
|
+
}
|
|
23453
23623
|
},
|
|
23454
23624
|
className: {
|
|
23455
23625
|
types: [
|
|
@@ -23485,8 +23655,7 @@ var patterns_registry_default = {
|
|
|
23485
23655
|
"object"
|
|
23486
23656
|
],
|
|
23487
23657
|
description: "Payload to include with the refresh event",
|
|
23488
|
-
payloadFor: "refreshEvent"
|
|
23489
|
-
freeform: true
|
|
23658
|
+
payloadFor: "refreshEvent"
|
|
23490
23659
|
},
|
|
23491
23660
|
threshold: {
|
|
23492
23661
|
types: [
|
|
@@ -23584,8 +23753,7 @@ var patterns_registry_default = {
|
|
|
23584
23753
|
"object"
|
|
23585
23754
|
],
|
|
23586
23755
|
description: "reorderPayload prop",
|
|
23587
|
-
payloadFor: "reorderEvent"
|
|
23588
|
-
freeform: true
|
|
23756
|
+
payloadFor: "reorderEvent"
|
|
23589
23757
|
},
|
|
23590
23758
|
dragHandlePosition: {
|
|
23591
23759
|
types: [
|
|
@@ -23609,6 +23777,7 @@ var patterns_registry_default = {
|
|
|
23609
23777
|
"swipeable-row": {
|
|
23610
23778
|
type: "swipeable-row",
|
|
23611
23779
|
category: "component",
|
|
23780
|
+
sourceFile: "components/core/molecules/SwipeableRow.tsx",
|
|
23612
23781
|
tier: "molecules",
|
|
23613
23782
|
family: "core",
|
|
23614
23783
|
description: "SwipeableRow component",
|
|
@@ -23656,14 +23825,15 @@ var patterns_registry_default = {
|
|
|
23656
23825
|
event: {
|
|
23657
23826
|
types: [
|
|
23658
23827
|
"string"
|
|
23659
|
-
]
|
|
23828
|
+
],
|
|
23829
|
+
kind: "event"
|
|
23660
23830
|
},
|
|
23661
23831
|
eventPayload: {
|
|
23662
23832
|
types: [
|
|
23663
23833
|
"object"
|
|
23664
23834
|
],
|
|
23665
|
-
|
|
23666
|
-
|
|
23835
|
+
eventPayloadBrand: true,
|
|
23836
|
+
payloadFor: "event"
|
|
23667
23837
|
}
|
|
23668
23838
|
},
|
|
23669
23839
|
required: [
|
|
@@ -23710,14 +23880,15 @@ var patterns_registry_default = {
|
|
|
23710
23880
|
event: {
|
|
23711
23881
|
types: [
|
|
23712
23882
|
"string"
|
|
23713
|
-
]
|
|
23883
|
+
],
|
|
23884
|
+
kind: "event"
|
|
23714
23885
|
},
|
|
23715
23886
|
eventPayload: {
|
|
23716
23887
|
types: [
|
|
23717
23888
|
"object"
|
|
23718
23889
|
],
|
|
23719
|
-
|
|
23720
|
-
|
|
23890
|
+
eventPayloadBrand: true,
|
|
23891
|
+
payloadFor: "event"
|
|
23721
23892
|
}
|
|
23722
23893
|
},
|
|
23723
23894
|
required: [
|
|
@@ -23746,8 +23917,8 @@ var patterns_registry_default = {
|
|
|
23746
23917
|
"object"
|
|
23747
23918
|
],
|
|
23748
23919
|
description: "itemData prop",
|
|
23749
|
-
|
|
23750
|
-
|
|
23920
|
+
kind: "entity",
|
|
23921
|
+
cardinality: "record"
|
|
23751
23922
|
},
|
|
23752
23923
|
className: {
|
|
23753
23924
|
types: [
|
|
@@ -28736,6 +28907,7 @@ var patterns_registry_default = {
|
|
|
28736
28907
|
"file-tree": {
|
|
28737
28908
|
type: "file-tree",
|
|
28738
28909
|
category: "component",
|
|
28910
|
+
sourceFile: "components/core/molecules/FileTree.tsx",
|
|
28739
28911
|
tier: "molecules",
|
|
28740
28912
|
family: "core",
|
|
28741
28913
|
description: "FileTree component",
|
|
@@ -28783,7 +28955,8 @@ var patterns_registry_default = {
|
|
|
28783
28955
|
types: [
|
|
28784
28956
|
"object"
|
|
28785
28957
|
],
|
|
28786
|
-
cyclic: true
|
|
28958
|
+
cyclic: true,
|
|
28959
|
+
cyclicTypeName: "FileTreeNode"
|
|
28787
28960
|
}
|
|
28788
28961
|
},
|
|
28789
28962
|
size: {
|
|
@@ -29853,6 +30026,7 @@ var patterns_registry_default = {
|
|
|
29853
30026
|
"reply-tree": {
|
|
29854
30027
|
type: "reply-tree",
|
|
29855
30028
|
category: "display",
|
|
30029
|
+
sourceFile: "components/core/molecules/ReplyTree.tsx",
|
|
29856
30030
|
tier: "molecules",
|
|
29857
30031
|
family: "core",
|
|
29858
30032
|
description: "ReplyTree component",
|
|
@@ -29922,7 +30096,8 @@ var patterns_registry_default = {
|
|
|
29922
30096
|
"object",
|
|
29923
30097
|
"array"
|
|
29924
30098
|
],
|
|
29925
|
-
cyclic: true
|
|
30099
|
+
cyclic: true,
|
|
30100
|
+
cyclicTypeName: "ReplyNodeRow"
|
|
29926
30101
|
}
|
|
29927
30102
|
}
|
|
29928
30103
|
},
|
|
@@ -33076,6 +33251,7 @@ var patterns_registry_default = {
|
|
|
33076
33251
|
"doc-sidebar": {
|
|
33077
33252
|
type: "doc-sidebar",
|
|
33078
33253
|
category: "navigation",
|
|
33254
|
+
sourceFile: "components/core/molecules/DocSidebar.tsx",
|
|
33079
33255
|
tier: "molecules",
|
|
33080
33256
|
family: "core",
|
|
33081
33257
|
description: "DocSidebar component",
|
|
@@ -33115,7 +33291,8 @@ var patterns_registry_default = {
|
|
|
33115
33291
|
types: [
|
|
33116
33292
|
"object"
|
|
33117
33293
|
],
|
|
33118
|
-
cyclic: true
|
|
33294
|
+
cyclic: true,
|
|
33295
|
+
cyclicTypeName: "DocSidebarItem"
|
|
33119
33296
|
}
|
|
33120
33297
|
},
|
|
33121
33298
|
active: {
|
|
@@ -34020,84 +34197,540 @@ var patterns_registry_default = {
|
|
|
34020
34197
|
"object"
|
|
34021
34198
|
],
|
|
34022
34199
|
properties: {
|
|
34023
|
-
|
|
34024
|
-
types: [
|
|
34025
|
-
"
|
|
34026
|
-
]
|
|
34027
|
-
|
|
34028
|
-
|
|
34029
|
-
|
|
34030
|
-
|
|
34031
|
-
|
|
34032
|
-
|
|
34033
|
-
|
|
34034
|
-
|
|
34035
|
-
|
|
34036
|
-
|
|
34037
|
-
|
|
34038
|
-
|
|
34039
|
-
|
|
34040
|
-
|
|
34041
|
-
|
|
34042
|
-
|
|
34043
|
-
|
|
34044
|
-
|
|
34045
|
-
|
|
34046
|
-
|
|
34047
|
-
|
|
34048
|
-
|
|
34049
|
-
|
|
34050
|
-
|
|
34051
|
-
|
|
34052
|
-
|
|
34053
|
-
|
|
34054
|
-
|
|
34055
|
-
|
|
34056
|
-
|
|
34057
|
-
|
|
34058
|
-
|
|
34059
|
-
|
|
34060
|
-
|
|
34061
|
-
|
|
34062
|
-
|
|
34063
|
-
|
|
34064
|
-
|
|
34065
|
-
|
|
34066
|
-
|
|
34067
|
-
|
|
34068
|
-
|
|
34069
|
-
|
|
34070
|
-
|
|
34071
|
-
|
|
34072
|
-
|
|
34073
|
-
|
|
34074
|
-
|
|
34075
|
-
|
|
34076
|
-
|
|
34077
|
-
|
|
34078
|
-
|
|
34079
|
-
|
|
34080
|
-
|
|
34081
|
-
|
|
34082
|
-
|
|
34083
|
-
|
|
34084
|
-
|
|
34085
|
-
|
|
34086
|
-
|
|
34087
|
-
|
|
34088
|
-
|
|
34089
|
-
|
|
34090
|
-
|
|
34091
|
-
|
|
34092
|
-
|
|
34093
|
-
|
|
34094
|
-
|
|
34095
|
-
|
|
34096
|
-
|
|
34097
|
-
|
|
34098
|
-
|
|
34099
|
-
|
|
34100
|
-
|
|
34200
|
+
assetUrl: {
|
|
34201
|
+
types: [
|
|
34202
|
+
"object"
|
|
34203
|
+
],
|
|
34204
|
+
properties: {
|
|
34205
|
+
url: {
|
|
34206
|
+
types: [
|
|
34207
|
+
"asset"
|
|
34208
|
+
]
|
|
34209
|
+
},
|
|
34210
|
+
role: {
|
|
34211
|
+
types: [
|
|
34212
|
+
"string"
|
|
34213
|
+
]
|
|
34214
|
+
},
|
|
34215
|
+
category: {
|
|
34216
|
+
types: [
|
|
34217
|
+
"string"
|
|
34218
|
+
]
|
|
34219
|
+
},
|
|
34220
|
+
animations: {
|
|
34221
|
+
types: [
|
|
34222
|
+
"array"
|
|
34223
|
+
],
|
|
34224
|
+
items: {
|
|
34225
|
+
types: [
|
|
34226
|
+
"string"
|
|
34227
|
+
]
|
|
34228
|
+
}
|
|
34229
|
+
},
|
|
34230
|
+
style: {
|
|
34231
|
+
types: [
|
|
34232
|
+
"string"
|
|
34233
|
+
],
|
|
34234
|
+
enumValues: [
|
|
34235
|
+
"pixel",
|
|
34236
|
+
"vector",
|
|
34237
|
+
"hd",
|
|
34238
|
+
"1-bit",
|
|
34239
|
+
"isometric"
|
|
34240
|
+
]
|
|
34241
|
+
},
|
|
34242
|
+
variant: {
|
|
34243
|
+
types: [
|
|
34244
|
+
"string"
|
|
34245
|
+
]
|
|
34246
|
+
},
|
|
34247
|
+
dimension: {
|
|
34248
|
+
types: [
|
|
34249
|
+
"string"
|
|
34250
|
+
],
|
|
34251
|
+
enumValues: [
|
|
34252
|
+
"2d",
|
|
34253
|
+
"3d"
|
|
34254
|
+
]
|
|
34255
|
+
},
|
|
34256
|
+
aspect: {
|
|
34257
|
+
types: [
|
|
34258
|
+
"string"
|
|
34259
|
+
],
|
|
34260
|
+
enumValues: [
|
|
34261
|
+
"1:1",
|
|
34262
|
+
"16:9",
|
|
34263
|
+
"5:7",
|
|
34264
|
+
"8:1"
|
|
34265
|
+
]
|
|
34266
|
+
},
|
|
34267
|
+
atlas: {
|
|
34268
|
+
types: [
|
|
34269
|
+
"asset"
|
|
34270
|
+
]
|
|
34271
|
+
},
|
|
34272
|
+
sprite: {
|
|
34273
|
+
types: [
|
|
34274
|
+
"string"
|
|
34275
|
+
]
|
|
34276
|
+
},
|
|
34277
|
+
name: {
|
|
34278
|
+
types: [
|
|
34279
|
+
"string"
|
|
34280
|
+
]
|
|
34281
|
+
},
|
|
34282
|
+
thumbnailUrl: {
|
|
34283
|
+
types: [
|
|
34284
|
+
"string"
|
|
34285
|
+
]
|
|
34286
|
+
}
|
|
34287
|
+
},
|
|
34288
|
+
required: [
|
|
34289
|
+
"url",
|
|
34290
|
+
"role",
|
|
34291
|
+
"category"
|
|
34292
|
+
]
|
|
34293
|
+
},
|
|
34294
|
+
iconUrl: {
|
|
34295
|
+
types: [
|
|
34296
|
+
"object"
|
|
34297
|
+
],
|
|
34298
|
+
properties: {
|
|
34299
|
+
url: {
|
|
34300
|
+
types: [
|
|
34301
|
+
"asset"
|
|
34302
|
+
]
|
|
34303
|
+
},
|
|
34304
|
+
role: {
|
|
34305
|
+
types: [
|
|
34306
|
+
"string"
|
|
34307
|
+
]
|
|
34308
|
+
},
|
|
34309
|
+
category: {
|
|
34310
|
+
types: [
|
|
34311
|
+
"string"
|
|
34312
|
+
]
|
|
34313
|
+
},
|
|
34314
|
+
animations: {
|
|
34315
|
+
types: [
|
|
34316
|
+
"array"
|
|
34317
|
+
],
|
|
34318
|
+
items: {
|
|
34319
|
+
types: [
|
|
34320
|
+
"string"
|
|
34321
|
+
]
|
|
34322
|
+
}
|
|
34323
|
+
},
|
|
34324
|
+
style: {
|
|
34325
|
+
types: [
|
|
34326
|
+
"string"
|
|
34327
|
+
],
|
|
34328
|
+
enumValues: [
|
|
34329
|
+
"pixel",
|
|
34330
|
+
"vector",
|
|
34331
|
+
"hd",
|
|
34332
|
+
"1-bit",
|
|
34333
|
+
"isometric"
|
|
34334
|
+
]
|
|
34335
|
+
},
|
|
34336
|
+
variant: {
|
|
34337
|
+
types: [
|
|
34338
|
+
"string"
|
|
34339
|
+
]
|
|
34340
|
+
},
|
|
34341
|
+
dimension: {
|
|
34342
|
+
types: [
|
|
34343
|
+
"string"
|
|
34344
|
+
],
|
|
34345
|
+
enumValues: [
|
|
34346
|
+
"2d",
|
|
34347
|
+
"3d"
|
|
34348
|
+
]
|
|
34349
|
+
},
|
|
34350
|
+
aspect: {
|
|
34351
|
+
types: [
|
|
34352
|
+
"string"
|
|
34353
|
+
],
|
|
34354
|
+
enumValues: [
|
|
34355
|
+
"1:1",
|
|
34356
|
+
"16:9",
|
|
34357
|
+
"5:7",
|
|
34358
|
+
"8:1"
|
|
34359
|
+
]
|
|
34360
|
+
},
|
|
34361
|
+
atlas: {
|
|
34362
|
+
types: [
|
|
34363
|
+
"asset"
|
|
34364
|
+
]
|
|
34365
|
+
},
|
|
34366
|
+
sprite: {
|
|
34367
|
+
types: [
|
|
34368
|
+
"string"
|
|
34369
|
+
]
|
|
34370
|
+
},
|
|
34371
|
+
name: {
|
|
34372
|
+
types: [
|
|
34373
|
+
"string"
|
|
34374
|
+
]
|
|
34375
|
+
},
|
|
34376
|
+
thumbnailUrl: {
|
|
34377
|
+
types: [
|
|
34378
|
+
"string"
|
|
34379
|
+
]
|
|
34380
|
+
}
|
|
34381
|
+
},
|
|
34382
|
+
required: [
|
|
34383
|
+
"url",
|
|
34384
|
+
"role",
|
|
34385
|
+
"category"
|
|
34386
|
+
]
|
|
34387
|
+
},
|
|
34388
|
+
label: {
|
|
34389
|
+
types: [
|
|
34390
|
+
"string"
|
|
34391
|
+
]
|
|
34392
|
+
},
|
|
34393
|
+
value: {
|
|
34394
|
+
types: [
|
|
34395
|
+
"number",
|
|
34396
|
+
"string"
|
|
34397
|
+
]
|
|
34398
|
+
},
|
|
34399
|
+
max: {
|
|
34400
|
+
types: [
|
|
34401
|
+
"number"
|
|
34402
|
+
]
|
|
34403
|
+
},
|
|
34404
|
+
source: {
|
|
34405
|
+
types: [
|
|
34406
|
+
"string"
|
|
34407
|
+
]
|
|
34408
|
+
},
|
|
34409
|
+
field: {
|
|
34410
|
+
types: [
|
|
34411
|
+
"string"
|
|
34412
|
+
]
|
|
34413
|
+
},
|
|
34414
|
+
format: {
|
|
34415
|
+
types: [
|
|
34416
|
+
"string"
|
|
34417
|
+
]
|
|
34418
|
+
},
|
|
34419
|
+
icon: {
|
|
34420
|
+
types: [
|
|
34421
|
+
"icon",
|
|
34422
|
+
"string"
|
|
34423
|
+
]
|
|
34424
|
+
},
|
|
34425
|
+
variant: {
|
|
34426
|
+
types: [
|
|
34427
|
+
"string"
|
|
34428
|
+
]
|
|
34429
|
+
},
|
|
34430
|
+
className: {
|
|
34431
|
+
types: [
|
|
34432
|
+
"string"
|
|
34433
|
+
]
|
|
34434
|
+
}
|
|
34435
|
+
},
|
|
34436
|
+
required: [
|
|
34437
|
+
"label"
|
|
34438
|
+
]
|
|
34439
|
+
}
|
|
34440
|
+
},
|
|
34441
|
+
items: {
|
|
34442
|
+
types: [
|
|
34443
|
+
"array"
|
|
34444
|
+
],
|
|
34445
|
+
description: "Alias for stats (schema compatibility)",
|
|
34446
|
+
items: {
|
|
34447
|
+
types: [
|
|
34448
|
+
"object"
|
|
34449
|
+
],
|
|
34450
|
+
properties: {
|
|
34451
|
+
assetUrl: {
|
|
34452
|
+
types: [
|
|
34453
|
+
"object"
|
|
34454
|
+
],
|
|
34455
|
+
properties: {
|
|
34456
|
+
url: {
|
|
34457
|
+
types: [
|
|
34458
|
+
"asset"
|
|
34459
|
+
]
|
|
34460
|
+
},
|
|
34461
|
+
role: {
|
|
34462
|
+
types: [
|
|
34463
|
+
"string"
|
|
34464
|
+
]
|
|
34465
|
+
},
|
|
34466
|
+
category: {
|
|
34467
|
+
types: [
|
|
34468
|
+
"string"
|
|
34469
|
+
]
|
|
34470
|
+
},
|
|
34471
|
+
animations: {
|
|
34472
|
+
types: [
|
|
34473
|
+
"array"
|
|
34474
|
+
],
|
|
34475
|
+
items: {
|
|
34476
|
+
types: [
|
|
34477
|
+
"string"
|
|
34478
|
+
]
|
|
34479
|
+
}
|
|
34480
|
+
},
|
|
34481
|
+
style: {
|
|
34482
|
+
types: [
|
|
34483
|
+
"string"
|
|
34484
|
+
],
|
|
34485
|
+
enumValues: [
|
|
34486
|
+
"pixel",
|
|
34487
|
+
"vector",
|
|
34488
|
+
"hd",
|
|
34489
|
+
"1-bit",
|
|
34490
|
+
"isometric"
|
|
34491
|
+
]
|
|
34492
|
+
},
|
|
34493
|
+
variant: {
|
|
34494
|
+
types: [
|
|
34495
|
+
"string"
|
|
34496
|
+
]
|
|
34497
|
+
},
|
|
34498
|
+
dimension: {
|
|
34499
|
+
types: [
|
|
34500
|
+
"string"
|
|
34501
|
+
],
|
|
34502
|
+
enumValues: [
|
|
34503
|
+
"2d",
|
|
34504
|
+
"3d"
|
|
34505
|
+
]
|
|
34506
|
+
},
|
|
34507
|
+
aspect: {
|
|
34508
|
+
types: [
|
|
34509
|
+
"string"
|
|
34510
|
+
],
|
|
34511
|
+
enumValues: [
|
|
34512
|
+
"1:1",
|
|
34513
|
+
"16:9",
|
|
34514
|
+
"5:7",
|
|
34515
|
+
"8:1"
|
|
34516
|
+
]
|
|
34517
|
+
},
|
|
34518
|
+
atlas: {
|
|
34519
|
+
types: [
|
|
34520
|
+
"asset"
|
|
34521
|
+
]
|
|
34522
|
+
},
|
|
34523
|
+
sprite: {
|
|
34524
|
+
types: [
|
|
34525
|
+
"string"
|
|
34526
|
+
]
|
|
34527
|
+
},
|
|
34528
|
+
name: {
|
|
34529
|
+
types: [
|
|
34530
|
+
"string"
|
|
34531
|
+
]
|
|
34532
|
+
},
|
|
34533
|
+
thumbnailUrl: {
|
|
34534
|
+
types: [
|
|
34535
|
+
"string"
|
|
34536
|
+
]
|
|
34537
|
+
}
|
|
34538
|
+
},
|
|
34539
|
+
required: [
|
|
34540
|
+
"url",
|
|
34541
|
+
"role",
|
|
34542
|
+
"category"
|
|
34543
|
+
]
|
|
34544
|
+
},
|
|
34545
|
+
iconUrl: {
|
|
34546
|
+
types: [
|
|
34547
|
+
"object"
|
|
34548
|
+
],
|
|
34549
|
+
properties: {
|
|
34550
|
+
url: {
|
|
34551
|
+
types: [
|
|
34552
|
+
"asset"
|
|
34553
|
+
]
|
|
34554
|
+
},
|
|
34555
|
+
role: {
|
|
34556
|
+
types: [
|
|
34557
|
+
"string"
|
|
34558
|
+
]
|
|
34559
|
+
},
|
|
34560
|
+
category: {
|
|
34561
|
+
types: [
|
|
34562
|
+
"string"
|
|
34563
|
+
]
|
|
34564
|
+
},
|
|
34565
|
+
animations: {
|
|
34566
|
+
types: [
|
|
34567
|
+
"array"
|
|
34568
|
+
],
|
|
34569
|
+
items: {
|
|
34570
|
+
types: [
|
|
34571
|
+
"string"
|
|
34572
|
+
]
|
|
34573
|
+
}
|
|
34574
|
+
},
|
|
34575
|
+
style: {
|
|
34576
|
+
types: [
|
|
34577
|
+
"string"
|
|
34578
|
+
],
|
|
34579
|
+
enumValues: [
|
|
34580
|
+
"pixel",
|
|
34581
|
+
"vector",
|
|
34582
|
+
"hd",
|
|
34583
|
+
"1-bit",
|
|
34584
|
+
"isometric"
|
|
34585
|
+
]
|
|
34586
|
+
},
|
|
34587
|
+
variant: {
|
|
34588
|
+
types: [
|
|
34589
|
+
"string"
|
|
34590
|
+
]
|
|
34591
|
+
},
|
|
34592
|
+
dimension: {
|
|
34593
|
+
types: [
|
|
34594
|
+
"string"
|
|
34595
|
+
],
|
|
34596
|
+
enumValues: [
|
|
34597
|
+
"2d",
|
|
34598
|
+
"3d"
|
|
34599
|
+
]
|
|
34600
|
+
},
|
|
34601
|
+
aspect: {
|
|
34602
|
+
types: [
|
|
34603
|
+
"string"
|
|
34604
|
+
],
|
|
34605
|
+
enumValues: [
|
|
34606
|
+
"1:1",
|
|
34607
|
+
"16:9",
|
|
34608
|
+
"5:7",
|
|
34609
|
+
"8:1"
|
|
34610
|
+
]
|
|
34611
|
+
},
|
|
34612
|
+
atlas: {
|
|
34613
|
+
types: [
|
|
34614
|
+
"asset"
|
|
34615
|
+
]
|
|
34616
|
+
},
|
|
34617
|
+
sprite: {
|
|
34618
|
+
types: [
|
|
34619
|
+
"string"
|
|
34620
|
+
]
|
|
34621
|
+
},
|
|
34622
|
+
name: {
|
|
34623
|
+
types: [
|
|
34624
|
+
"string"
|
|
34625
|
+
]
|
|
34626
|
+
},
|
|
34627
|
+
thumbnailUrl: {
|
|
34628
|
+
types: [
|
|
34629
|
+
"string"
|
|
34630
|
+
]
|
|
34631
|
+
}
|
|
34632
|
+
},
|
|
34633
|
+
required: [
|
|
34634
|
+
"url",
|
|
34635
|
+
"role",
|
|
34636
|
+
"category"
|
|
34637
|
+
]
|
|
34638
|
+
},
|
|
34639
|
+
label: {
|
|
34640
|
+
types: [
|
|
34641
|
+
"string"
|
|
34642
|
+
]
|
|
34643
|
+
},
|
|
34644
|
+
value: {
|
|
34645
|
+
types: [
|
|
34646
|
+
"number",
|
|
34647
|
+
"string"
|
|
34648
|
+
]
|
|
34649
|
+
},
|
|
34650
|
+
max: {
|
|
34651
|
+
types: [
|
|
34652
|
+
"number"
|
|
34653
|
+
]
|
|
34654
|
+
},
|
|
34655
|
+
source: {
|
|
34656
|
+
types: [
|
|
34657
|
+
"string"
|
|
34658
|
+
]
|
|
34659
|
+
},
|
|
34660
|
+
field: {
|
|
34661
|
+
types: [
|
|
34662
|
+
"string"
|
|
34663
|
+
]
|
|
34664
|
+
},
|
|
34665
|
+
format: {
|
|
34666
|
+
types: [
|
|
34667
|
+
"string"
|
|
34668
|
+
]
|
|
34669
|
+
},
|
|
34670
|
+
icon: {
|
|
34671
|
+
types: [
|
|
34672
|
+
"icon",
|
|
34673
|
+
"string"
|
|
34674
|
+
]
|
|
34675
|
+
},
|
|
34676
|
+
variant: {
|
|
34677
|
+
types: [
|
|
34678
|
+
"string"
|
|
34679
|
+
]
|
|
34680
|
+
},
|
|
34681
|
+
className: {
|
|
34682
|
+
types: [
|
|
34683
|
+
"string"
|
|
34684
|
+
]
|
|
34685
|
+
}
|
|
34686
|
+
},
|
|
34687
|
+
required: [
|
|
34688
|
+
"label"
|
|
34689
|
+
]
|
|
34690
|
+
}
|
|
34691
|
+
},
|
|
34692
|
+
elements: {
|
|
34693
|
+
types: [
|
|
34694
|
+
"array"
|
|
34695
|
+
],
|
|
34696
|
+
description: "Schema-style elements array (alternative to stats). Converted to stats internally for backwards compatibility.",
|
|
34697
|
+
items: {
|
|
34698
|
+
types: [
|
|
34699
|
+
"object"
|
|
34700
|
+
],
|
|
34701
|
+
properties: {
|
|
34702
|
+
type: {
|
|
34703
|
+
types: [
|
|
34704
|
+
"string"
|
|
34705
|
+
]
|
|
34706
|
+
},
|
|
34707
|
+
bind: {
|
|
34708
|
+
types: [
|
|
34709
|
+
"string"
|
|
34710
|
+
]
|
|
34711
|
+
},
|
|
34712
|
+
position: {
|
|
34713
|
+
types: [
|
|
34714
|
+
"string"
|
|
34715
|
+
]
|
|
34716
|
+
},
|
|
34717
|
+
label: {
|
|
34718
|
+
types: [
|
|
34719
|
+
"string"
|
|
34720
|
+
]
|
|
34721
|
+
},
|
|
34722
|
+
value: {
|
|
34723
|
+
types: [
|
|
34724
|
+
"number",
|
|
34725
|
+
"string"
|
|
34726
|
+
]
|
|
34727
|
+
},
|
|
34728
|
+
icon: {
|
|
34729
|
+
types: [
|
|
34730
|
+
"icon",
|
|
34731
|
+
"string"
|
|
34732
|
+
]
|
|
34733
|
+
},
|
|
34101
34734
|
assetUrl: {
|
|
34102
34735
|
types: [
|
|
34103
34736
|
"object"
|
|
@@ -34246,6 +34879,7 @@ var patterns_registry_default = {
|
|
|
34246
34879
|
"game-menu": {
|
|
34247
34880
|
type: "game-menu",
|
|
34248
34881
|
category: "game",
|
|
34882
|
+
sourceFile: "components/game/molecules/GameMenu.tsx",
|
|
34249
34883
|
tier: "molecules",
|
|
34250
34884
|
family: "game",
|
|
34251
34885
|
description: "GameMenu component",
|
|
@@ -34295,7 +34929,8 @@ var patterns_registry_default = {
|
|
|
34295
34929
|
event: {
|
|
34296
34930
|
types: [
|
|
34297
34931
|
"string"
|
|
34298
|
-
]
|
|
34932
|
+
],
|
|
34933
|
+
kind: "event"
|
|
34299
34934
|
},
|
|
34300
34935
|
navigatesTo: {
|
|
34301
34936
|
types: [
|
|
@@ -34348,7 +34983,8 @@ var patterns_registry_default = {
|
|
|
34348
34983
|
event: {
|
|
34349
34984
|
types: [
|
|
34350
34985
|
"string"
|
|
34351
|
-
]
|
|
34986
|
+
],
|
|
34987
|
+
kind: "event"
|
|
34352
34988
|
},
|
|
34353
34989
|
navigatesTo: {
|
|
34354
34990
|
types: [
|
|
@@ -34404,7 +35040,8 @@ var patterns_registry_default = {
|
|
|
34404
35040
|
event: {
|
|
34405
35041
|
types: [
|
|
34406
35042
|
"string"
|
|
34407
|
-
]
|
|
35043
|
+
],
|
|
35044
|
+
kind: "event"
|
|
34408
35045
|
},
|
|
34409
35046
|
navigatesTo: {
|
|
34410
35047
|
types: [
|
|
@@ -38717,6 +39354,7 @@ var patterns_registry_default = {
|
|
|
38717
39354
|
"table-view": {
|
|
38718
39355
|
type: "table-view",
|
|
38719
39356
|
category: "display",
|
|
39357
|
+
sourceFile: "components/core/molecules/TableView.tsx",
|
|
38720
39358
|
tier: "molecules",
|
|
38721
39359
|
family: "core",
|
|
38722
39360
|
description: "TableView \u2014 sortable, selectable data table rendering rows over configurable columns, with inline row actions and grouping.",
|
|
@@ -38986,7 +39624,8 @@ var patterns_registry_default = {
|
|
|
38986
39624
|
event: {
|
|
38987
39625
|
types: [
|
|
38988
39626
|
"string"
|
|
38989
|
-
]
|
|
39627
|
+
],
|
|
39628
|
+
kind: "event"
|
|
38990
39629
|
},
|
|
38991
39630
|
icon: {
|
|
38992
39631
|
types: [
|
|
@@ -40155,6 +40794,7 @@ var patterns_registry_default = {
|
|
|
40155
40794
|
"subagent-trace-panel": {
|
|
40156
40795
|
type: "subagent-trace-panel",
|
|
40157
40796
|
category: "display",
|
|
40797
|
+
sourceFile: "components/core/organisms/SubagentTracePanel.tsx",
|
|
40158
40798
|
tier: "organisms",
|
|
40159
40799
|
family: "core",
|
|
40160
40800
|
description: "SubagentTracePanel component",
|
|
@@ -40282,7 +40922,102 @@ var patterns_registry_default = {
|
|
|
40282
40922
|
types: [
|
|
40283
40923
|
"object"
|
|
40284
40924
|
],
|
|
40285
|
-
|
|
40925
|
+
properties: {
|
|
40926
|
+
id: {
|
|
40927
|
+
types: [
|
|
40928
|
+
"string"
|
|
40929
|
+
]
|
|
40930
|
+
},
|
|
40931
|
+
name: {
|
|
40932
|
+
types: [
|
|
40933
|
+
"string"
|
|
40934
|
+
]
|
|
40935
|
+
},
|
|
40936
|
+
role: {
|
|
40937
|
+
types: [
|
|
40938
|
+
"string"
|
|
40939
|
+
]
|
|
40940
|
+
},
|
|
40941
|
+
orbitalName: {
|
|
40942
|
+
types: [
|
|
40943
|
+
"string"
|
|
40944
|
+
]
|
|
40945
|
+
},
|
|
40946
|
+
parentId: {
|
|
40947
|
+
types: [
|
|
40948
|
+
"string"
|
|
40949
|
+
]
|
|
40950
|
+
},
|
|
40951
|
+
status: {
|
|
40952
|
+
types: [
|
|
40953
|
+
"string"
|
|
40954
|
+
],
|
|
40955
|
+
enumValues: [
|
|
40956
|
+
"running",
|
|
40957
|
+
"complete",
|
|
40958
|
+
"error"
|
|
40959
|
+
]
|
|
40960
|
+
},
|
|
40961
|
+
task: {
|
|
40962
|
+
types: [
|
|
40963
|
+
"string"
|
|
40964
|
+
]
|
|
40965
|
+
},
|
|
40966
|
+
messages: {
|
|
40967
|
+
types: [
|
|
40968
|
+
"array"
|
|
40969
|
+
],
|
|
40970
|
+
items: {
|
|
40971
|
+
types: [
|
|
40972
|
+
"object"
|
|
40973
|
+
],
|
|
40974
|
+
properties: {
|
|
40975
|
+
message: {
|
|
40976
|
+
types: [
|
|
40977
|
+
"string"
|
|
40978
|
+
]
|
|
40979
|
+
},
|
|
40980
|
+
tool: {
|
|
40981
|
+
types: [
|
|
40982
|
+
"string"
|
|
40983
|
+
]
|
|
40984
|
+
},
|
|
40985
|
+
timestamp: {
|
|
40986
|
+
types: [
|
|
40987
|
+
"number"
|
|
40988
|
+
]
|
|
40989
|
+
}
|
|
40990
|
+
},
|
|
40991
|
+
required: [
|
|
40992
|
+
"message",
|
|
40993
|
+
"timestamp"
|
|
40994
|
+
]
|
|
40995
|
+
}
|
|
40996
|
+
},
|
|
40997
|
+
durationMs: {
|
|
40998
|
+
types: [
|
|
40999
|
+
"number"
|
|
41000
|
+
]
|
|
41001
|
+
},
|
|
41002
|
+
timeline: {
|
|
41003
|
+
types: [
|
|
41004
|
+
"array"
|
|
41005
|
+
],
|
|
41006
|
+
items: {
|
|
41007
|
+
types: [
|
|
41008
|
+
"object"
|
|
41009
|
+
]
|
|
41010
|
+
}
|
|
41011
|
+
}
|
|
41012
|
+
},
|
|
41013
|
+
required: [
|
|
41014
|
+
"id",
|
|
41015
|
+
"name",
|
|
41016
|
+
"role",
|
|
41017
|
+
"status",
|
|
41018
|
+
"task",
|
|
41019
|
+
"messages"
|
|
41020
|
+
]
|
|
40286
41021
|
}
|
|
40287
41022
|
},
|
|
40288
41023
|
focusedOrbital: {
|
|
@@ -40327,8 +41062,7 @@ var patterns_registry_default = {
|
|
|
40327
41062
|
items: {
|
|
40328
41063
|
types: [
|
|
40329
41064
|
"object"
|
|
40330
|
-
]
|
|
40331
|
-
freeform: true
|
|
41065
|
+
]
|
|
40332
41066
|
}
|
|
40333
41067
|
},
|
|
40334
41068
|
coordinatorMessages: {
|
|
@@ -40340,7 +41074,81 @@ var patterns_registry_default = {
|
|
|
40340
41074
|
types: [
|
|
40341
41075
|
"object"
|
|
40342
41076
|
],
|
|
40343
|
-
|
|
41077
|
+
properties: {
|
|
41078
|
+
role: {
|
|
41079
|
+
types: [
|
|
41080
|
+
"string"
|
|
41081
|
+
],
|
|
41082
|
+
enumValues: [
|
|
41083
|
+
"system",
|
|
41084
|
+
"user",
|
|
41085
|
+
"assistant",
|
|
41086
|
+
"tool"
|
|
41087
|
+
]
|
|
41088
|
+
},
|
|
41089
|
+
content: {
|
|
41090
|
+
types: [
|
|
41091
|
+
"string"
|
|
41092
|
+
]
|
|
41093
|
+
},
|
|
41094
|
+
toolCalls: {
|
|
41095
|
+
types: [
|
|
41096
|
+
"array"
|
|
41097
|
+
],
|
|
41098
|
+
items: {
|
|
41099
|
+
types: [
|
|
41100
|
+
"object"
|
|
41101
|
+
],
|
|
41102
|
+
properties: {
|
|
41103
|
+
id: {
|
|
41104
|
+
types: [
|
|
41105
|
+
"string"
|
|
41106
|
+
]
|
|
41107
|
+
},
|
|
41108
|
+
name: {
|
|
41109
|
+
types: [
|
|
41110
|
+
"string"
|
|
41111
|
+
]
|
|
41112
|
+
},
|
|
41113
|
+
args: {
|
|
41114
|
+
types: [
|
|
41115
|
+
"object"
|
|
41116
|
+
],
|
|
41117
|
+
mapValue: {
|
|
41118
|
+
types: [
|
|
41119
|
+
"object"
|
|
41120
|
+
],
|
|
41121
|
+
jsonValueBrand: true
|
|
41122
|
+
}
|
|
41123
|
+
}
|
|
41124
|
+
},
|
|
41125
|
+
required: [
|
|
41126
|
+
"id",
|
|
41127
|
+
"name",
|
|
41128
|
+
"args"
|
|
41129
|
+
]
|
|
41130
|
+
}
|
|
41131
|
+
},
|
|
41132
|
+
toolCallId: {
|
|
41133
|
+
types: [
|
|
41134
|
+
"string"
|
|
41135
|
+
]
|
|
41136
|
+
},
|
|
41137
|
+
toolName: {
|
|
41138
|
+
types: [
|
|
41139
|
+
"string"
|
|
41140
|
+
]
|
|
41141
|
+
},
|
|
41142
|
+
reasoningContent: {
|
|
41143
|
+
types: [
|
|
41144
|
+
"string"
|
|
41145
|
+
]
|
|
41146
|
+
}
|
|
41147
|
+
},
|
|
41148
|
+
required: [
|
|
41149
|
+
"role",
|
|
41150
|
+
"content"
|
|
41151
|
+
]
|
|
40344
41152
|
}
|
|
40345
41153
|
},
|
|
40346
41154
|
mode: {
|
|
@@ -41527,8 +42335,7 @@ var patterns_registry_default = {
|
|
|
41527
42335
|
"object"
|
|
41528
42336
|
],
|
|
41529
42337
|
description: "Payload to include with the action event",
|
|
41530
|
-
payloadFor: "action"
|
|
41531
|
-
freeform: true
|
|
42338
|
+
payloadFor: "action"
|
|
41532
42339
|
},
|
|
41533
42340
|
responsive: {
|
|
41534
42341
|
types: [
|
|
@@ -41698,8 +42505,7 @@ var patterns_registry_default = {
|
|
|
41698
42505
|
"object"
|
|
41699
42506
|
],
|
|
41700
42507
|
description: "Payload to include with the action event",
|
|
41701
|
-
payloadFor: "action"
|
|
41702
|
-
freeform: true
|
|
42508
|
+
payloadFor: "action"
|
|
41703
42509
|
},
|
|
41704
42510
|
responsive: {
|
|
41705
42511
|
types: [
|
|
@@ -48712,6 +49518,21 @@ var patterns_registry_default = {
|
|
|
48712
49518
|
],
|
|
48713
49519
|
description: "asset prop",
|
|
48714
49520
|
properties: {
|
|
49521
|
+
url: {
|
|
49522
|
+
types: [
|
|
49523
|
+
"string"
|
|
49524
|
+
]
|
|
49525
|
+
},
|
|
49526
|
+
atlas: {
|
|
49527
|
+
types: [
|
|
49528
|
+
"string"
|
|
49529
|
+
]
|
|
49530
|
+
},
|
|
49531
|
+
sprite: {
|
|
49532
|
+
types: [
|
|
49533
|
+
"string"
|
|
49534
|
+
]
|
|
49535
|
+
},
|
|
48715
49536
|
name: {
|
|
48716
49537
|
types: [
|
|
48717
49538
|
"string"
|
|
@@ -48811,6 +49632,21 @@ var patterns_registry_default = {
|
|
|
48811
49632
|
],
|
|
48812
49633
|
description: "asset prop",
|
|
48813
49634
|
properties: {
|
|
49635
|
+
url: {
|
|
49636
|
+
types: [
|
|
49637
|
+
"string"
|
|
49638
|
+
]
|
|
49639
|
+
},
|
|
49640
|
+
atlas: {
|
|
49641
|
+
types: [
|
|
49642
|
+
"string"
|
|
49643
|
+
]
|
|
49644
|
+
},
|
|
49645
|
+
sprite: {
|
|
49646
|
+
types: [
|
|
49647
|
+
"string"
|
|
49648
|
+
]
|
|
49649
|
+
},
|
|
48814
49650
|
name: {
|
|
48815
49651
|
types: [
|
|
48816
49652
|
"string"
|
|
@@ -50028,6 +50864,11 @@ var patterns_registry_default = {
|
|
|
50028
50864
|
"draw-shape"
|
|
50029
50865
|
]
|
|
50030
50866
|
},
|
|
50867
|
+
id: {
|
|
50868
|
+
types: [
|
|
50869
|
+
"string"
|
|
50870
|
+
]
|
|
50871
|
+
},
|
|
50031
50872
|
shape: {
|
|
50032
50873
|
types: [
|
|
50033
50874
|
"string"
|
|
@@ -50719,6 +51560,11 @@ var patterns_registry_default = {
|
|
|
50719
51560
|
"draw-sprite"
|
|
50720
51561
|
]
|
|
50721
51562
|
},
|
|
51563
|
+
id: {
|
|
51564
|
+
types: [
|
|
51565
|
+
"string"
|
|
51566
|
+
]
|
|
51567
|
+
},
|
|
50722
51568
|
position: {
|
|
50723
51569
|
types: [
|
|
50724
51570
|
"object"
|
|
@@ -51004,6 +51850,11 @@ var patterns_registry_default = {
|
|
|
51004
51850
|
"draw-text"
|
|
51005
51851
|
]
|
|
51006
51852
|
},
|
|
51853
|
+
id: {
|
|
51854
|
+
types: [
|
|
51855
|
+
"string"
|
|
51856
|
+
]
|
|
51857
|
+
},
|
|
51007
51858
|
text: {
|
|
51008
51859
|
types: [
|
|
51009
51860
|
"string"
|
|
@@ -51948,6 +52799,7 @@ var patterns_registry_default = {
|
|
|
51948
52799
|
"import-preview-tree": {
|
|
51949
52800
|
type: "import-preview-tree",
|
|
51950
52801
|
category: "component",
|
|
52802
|
+
sourceFile: "components/core/molecules/import/ImportPreviewTree.tsx",
|
|
51951
52803
|
tier: "molecules",
|
|
51952
52804
|
family: "core",
|
|
51953
52805
|
description: "ImportPreviewTree component",
|
|
@@ -51988,7 +52840,6 @@ var patterns_registry_default = {
|
|
|
51988
52840
|
types: [
|
|
51989
52841
|
"object"
|
|
51990
52842
|
],
|
|
51991
|
-
freeform: true,
|
|
51992
52843
|
controlValue: true
|
|
51993
52844
|
}
|
|
51994
52845
|
},
|
|
@@ -54283,6 +55134,7 @@ var patterns_registry_default = {
|
|
|
54283
55134
|
"document-panel": {
|
|
54284
55135
|
type: "document-panel",
|
|
54285
55136
|
category: "component",
|
|
55137
|
+
sourceFile: "components/core/molecules/DocumentPanel.tsx",
|
|
54286
55138
|
tier: "molecules",
|
|
54287
55139
|
family: "core",
|
|
54288
55140
|
description: "DocumentPanel \u2014 a record rendered as one continuous document: editable title over the rich-text body, editing controls tucked into the header corner.",
|
|
@@ -54351,7 +55203,8 @@ var patterns_registry_default = {
|
|
|
54351
55203
|
event: {
|
|
54352
55204
|
types: [
|
|
54353
55205
|
"string"
|
|
54354
|
-
]
|
|
55206
|
+
],
|
|
55207
|
+
kind: "event"
|
|
54355
55208
|
},
|
|
54356
55209
|
icon: {
|
|
54357
55210
|
types: [
|
|
@@ -54485,6 +55338,7 @@ var patterns_registry_default = {
|
|
|
54485
55338
|
"document-details": {
|
|
54486
55339
|
type: "document-details",
|
|
54487
55340
|
category: "display",
|
|
55341
|
+
sourceFile: "components/core/molecules/DocumentDetails.tsx",
|
|
54488
55342
|
tier: "molecules",
|
|
54489
55343
|
family: "core",
|
|
54490
55344
|
description: "DocumentDetails \u2014 the document's metadata as a compact settings card for the rail beside a DocumentPanel, each property committing in place.",
|
|
@@ -54607,7 +55461,6 @@ var patterns_registry_default = {
|
|
|
54607
55461
|
types: [
|
|
54608
55462
|
"object"
|
|
54609
55463
|
],
|
|
54610
|
-
freeform: true,
|
|
54611
55464
|
controlValue: true
|
|
54612
55465
|
}
|
|
54613
55466
|
}
|
|
@@ -54655,6 +55508,7 @@ var patterns_registry_default = {
|
|
|
54655
55508
|
"floating-toolbar": {
|
|
54656
55509
|
type: "floating-toolbar",
|
|
54657
55510
|
category: "component",
|
|
55511
|
+
sourceFile: "components/core/molecules/FloatingToolbar.tsx",
|
|
54658
55512
|
tier: "molecules",
|
|
54659
55513
|
family: "core",
|
|
54660
55514
|
description: "FloatingToolbar component",
|
|
@@ -54695,19 +55549,21 @@ var patterns_registry_default = {
|
|
|
54695
55549
|
event: {
|
|
54696
55550
|
types: [
|
|
54697
55551
|
"string"
|
|
54698
|
-
]
|
|
55552
|
+
],
|
|
55553
|
+
kind: "event"
|
|
54699
55554
|
},
|
|
54700
55555
|
action: {
|
|
54701
55556
|
types: [
|
|
54702
55557
|
"string"
|
|
54703
|
-
]
|
|
55558
|
+
],
|
|
55559
|
+
kind: "event"
|
|
54704
55560
|
},
|
|
54705
55561
|
actionPayload: {
|
|
54706
55562
|
types: [
|
|
54707
55563
|
"object"
|
|
54708
55564
|
],
|
|
54709
|
-
|
|
54710
|
-
|
|
55565
|
+
eventPayloadBrand: true,
|
|
55566
|
+
payloadFor: "action"
|
|
54711
55567
|
},
|
|
54712
55568
|
active: {
|
|
54713
55569
|
types: [
|
|
@@ -54986,6 +55842,7 @@ var patterns_registry_default = {
|
|
|
54986
55842
|
"command-palette": {
|
|
54987
55843
|
type: "command-palette",
|
|
54988
55844
|
category: "component",
|
|
55845
|
+
sourceFile: "components/core/molecules/CommandPalette.tsx",
|
|
54989
55846
|
tier: "molecules",
|
|
54990
55847
|
family: "core",
|
|
54991
55848
|
description: "CommandPalette component",
|
|
@@ -55072,19 +55929,21 @@ var patterns_registry_default = {
|
|
|
55072
55929
|
event: {
|
|
55073
55930
|
types: [
|
|
55074
55931
|
"string"
|
|
55075
|
-
]
|
|
55932
|
+
],
|
|
55933
|
+
kind: "event"
|
|
55076
55934
|
},
|
|
55077
55935
|
action: {
|
|
55078
55936
|
types: [
|
|
55079
55937
|
"string"
|
|
55080
|
-
]
|
|
55938
|
+
],
|
|
55939
|
+
kind: "event"
|
|
55081
55940
|
},
|
|
55082
55941
|
actionPayload: {
|
|
55083
55942
|
types: [
|
|
55084
55943
|
"object"
|
|
55085
55944
|
],
|
|
55086
|
-
|
|
55087
|
-
|
|
55945
|
+
eventPayloadBrand: true,
|
|
55946
|
+
payloadFor: "action"
|
|
55088
55947
|
}
|
|
55089
55948
|
},
|
|
55090
55949
|
required: [
|
|
@@ -55152,19 +56011,21 @@ var patterns_registry_default = {
|
|
|
55152
56011
|
event: {
|
|
55153
56012
|
types: [
|
|
55154
56013
|
"string"
|
|
55155
|
-
]
|
|
56014
|
+
],
|
|
56015
|
+
kind: "event"
|
|
55156
56016
|
},
|
|
55157
56017
|
action: {
|
|
55158
56018
|
types: [
|
|
55159
56019
|
"string"
|
|
55160
|
-
]
|
|
56020
|
+
],
|
|
56021
|
+
kind: "event"
|
|
55161
56022
|
},
|
|
55162
56023
|
actionPayload: {
|
|
55163
56024
|
types: [
|
|
55164
56025
|
"object"
|
|
55165
56026
|
],
|
|
55166
|
-
|
|
55167
|
-
|
|
56027
|
+
eventPayloadBrand: true,
|
|
56028
|
+
payloadFor: "action"
|
|
55168
56029
|
}
|
|
55169
56030
|
},
|
|
55170
56031
|
required: [
|
|
@@ -55464,7 +56325,7 @@ var patterns_registry_default = {
|
|
|
55464
56325
|
// src/patterns/integrators-registry.json
|
|
55465
56326
|
var integrators_registry_default = {
|
|
55466
56327
|
version: "1.0.0",
|
|
55467
|
-
exportedAt: "2026-09-
|
|
56328
|
+
exportedAt: "2026-09-07T01:58:57.916Z",
|
|
55468
56329
|
integrators: {
|
|
55469
56330
|
github: {
|
|
55470
56331
|
name: "github",
|
|
@@ -55866,7 +56727,10 @@ var integrators_registry_default = {
|
|
|
55866
56727
|
name: "metadata",
|
|
55867
56728
|
type: "object",
|
|
55868
56729
|
required: false,
|
|
55869
|
-
description: "Arbitrary key-value tags attached to the PaymentIntent (string values only)."
|
|
56730
|
+
description: "Arbitrary key-value tags attached to the PaymentIntent (string values only).",
|
|
56731
|
+
mapValue: {
|
|
56732
|
+
type: "string"
|
|
56733
|
+
}
|
|
55870
56734
|
}
|
|
55871
56735
|
],
|
|
55872
56736
|
responseShape: {
|
|
@@ -56334,7 +57198,10 @@ var integrators_registry_default = {
|
|
|
56334
57198
|
name: "payload",
|
|
56335
57199
|
type: "object",
|
|
56336
57200
|
required: false,
|
|
56337
|
-
description: "Event payload; defaults to an empty object."
|
|
57201
|
+
description: "Event payload; defaults to an empty object.",
|
|
57202
|
+
mapValue: {
|
|
57203
|
+
type: "string"
|
|
57204
|
+
}
|
|
56338
57205
|
},
|
|
56339
57206
|
{
|
|
56340
57207
|
name: "secret",
|
|
@@ -57326,7 +58193,10 @@ var integrators_registry_default = {
|
|
|
57326
58193
|
name: "buildArgs",
|
|
57327
58194
|
type: "object",
|
|
57328
58195
|
required: false,
|
|
57329
|
-
description: "Build-time --build-arg values."
|
|
58196
|
+
description: "Build-time --build-arg values.",
|
|
58197
|
+
mapValue: {
|
|
58198
|
+
type: "string"
|
|
58199
|
+
}
|
|
57330
58200
|
}
|
|
57331
58201
|
],
|
|
57332
58202
|
responseShape: {
|
|
@@ -57379,7 +58249,10 @@ var integrators_registry_default = {
|
|
|
57379
58249
|
name: "env",
|
|
57380
58250
|
type: "object",
|
|
57381
58251
|
required: false,
|
|
57382
|
-
description: "Environment variables set inside the container."
|
|
58252
|
+
description: "Environment variables set inside the container.",
|
|
58253
|
+
mapValue: {
|
|
58254
|
+
type: "string"
|
|
58255
|
+
}
|
|
57383
58256
|
},
|
|
57384
58257
|
{
|
|
57385
58258
|
name: "volumes",
|
|
@@ -57685,9 +58558,12 @@ var integrators_registry_default = {
|
|
|
57685
58558
|
},
|
|
57686
58559
|
{
|
|
57687
58560
|
name: "metadata",
|
|
57688
|
-
type: "
|
|
58561
|
+
type: "object",
|
|
57689
58562
|
required: false,
|
|
57690
|
-
description: "
|
|
58563
|
+
description: "Object metadata stored alongside the content (S3-compatible object stores carry metadata as string headers \u2014 never structured values).",
|
|
58564
|
+
mapValue: {
|
|
58565
|
+
type: "string"
|
|
58566
|
+
}
|
|
57691
58567
|
}
|
|
57692
58568
|
],
|
|
57693
58569
|
responseShape: {
|
|
@@ -57807,7 +58683,12 @@ var integrators_registry_default = {
|
|
|
57807
58683
|
content: "string",
|
|
57808
58684
|
contentType: "string",
|
|
57809
58685
|
size: "number",
|
|
57810
|
-
metadata:
|
|
58686
|
+
metadata: {
|
|
58687
|
+
type: "object",
|
|
58688
|
+
mapValue: {
|
|
58689
|
+
type: "string"
|
|
58690
|
+
}
|
|
58691
|
+
}
|
|
57811
58692
|
}
|
|
57812
58693
|
},
|
|
57813
58694
|
{
|
|
@@ -57940,7 +58821,8 @@ var integrators_registry_default = {
|
|
|
57940
58821
|
name: "payload",
|
|
57941
58822
|
type: "ServiceParams",
|
|
57942
58823
|
required: true,
|
|
57943
|
-
description: "
|
|
58824
|
+
description: "Job payload \u2014 the caller declares its own shape.",
|
|
58825
|
+
shapedBy: "payload"
|
|
57944
58826
|
},
|
|
57945
58827
|
{
|
|
57946
58828
|
name: "delay",
|
|
@@ -57972,7 +58854,29 @@ var integrators_registry_default = {
|
|
|
57972
58854
|
}
|
|
57973
58855
|
],
|
|
57974
58856
|
responseShape: {
|
|
57975
|
-
job:
|
|
58857
|
+
job: {
|
|
58858
|
+
type: "QueueJob | null",
|
|
58859
|
+
properties: {
|
|
58860
|
+
id: {
|
|
58861
|
+
type: "string",
|
|
58862
|
+
required: true
|
|
58863
|
+
},
|
|
58864
|
+
payload: {
|
|
58865
|
+
type: "ServiceParams",
|
|
58866
|
+
required: true,
|
|
58867
|
+
description: "Whatever `enqueue` was given \u2014 the caller declares its own shape.",
|
|
58868
|
+
shapedBy: "payload"
|
|
58869
|
+
},
|
|
58870
|
+
enqueuedAt: {
|
|
58871
|
+
type: "number",
|
|
58872
|
+
required: true
|
|
58873
|
+
},
|
|
58874
|
+
priority: {
|
|
58875
|
+
type: "number",
|
|
58876
|
+
required: true
|
|
58877
|
+
}
|
|
58878
|
+
}
|
|
58879
|
+
}
|
|
57976
58880
|
}
|
|
57977
58881
|
},
|
|
57978
58882
|
{
|
|
@@ -57988,7 +58892,29 @@ var integrators_registry_default = {
|
|
|
57988
58892
|
],
|
|
57989
58893
|
responseShape: {
|
|
57990
58894
|
status: "'pending' | 'processing' | 'completed' | 'failed'",
|
|
57991
|
-
job:
|
|
58895
|
+
job: {
|
|
58896
|
+
type: "QueueJob | null",
|
|
58897
|
+
properties: {
|
|
58898
|
+
id: {
|
|
58899
|
+
type: "string",
|
|
58900
|
+
required: true
|
|
58901
|
+
},
|
|
58902
|
+
payload: {
|
|
58903
|
+
type: "ServiceParams",
|
|
58904
|
+
required: true,
|
|
58905
|
+
description: "Whatever `enqueue` was given \u2014 the caller declares its own shape.",
|
|
58906
|
+
shapedBy: "payload"
|
|
58907
|
+
},
|
|
58908
|
+
enqueuedAt: {
|
|
58909
|
+
type: "number",
|
|
58910
|
+
required: true
|
|
58911
|
+
},
|
|
58912
|
+
priority: {
|
|
58913
|
+
type: "number",
|
|
58914
|
+
required: true
|
|
58915
|
+
}
|
|
58916
|
+
}
|
|
58917
|
+
}
|
|
57992
58918
|
}
|
|
57993
58919
|
},
|
|
57994
58920
|
{
|
|
@@ -58005,7 +58931,8 @@ var integrators_registry_default = {
|
|
|
58005
58931
|
name: "result",
|
|
58006
58932
|
type: "ServiceParams",
|
|
58007
58933
|
required: false,
|
|
58008
|
-
description: "Result payload to attach to the job."
|
|
58934
|
+
description: "Result payload to attach to the job \u2014 the caller declares its own shape (not necessarily the same shape as the job's `payload`).",
|
|
58935
|
+
shapedBy: "result"
|
|
58009
58936
|
}
|
|
58010
58937
|
],
|
|
58011
58938
|
responseShape: {
|
|
@@ -58084,7 +59011,10 @@ var integrators_registry_default = {
|
|
|
58084
59011
|
}
|
|
58085
59012
|
],
|
|
58086
59013
|
responseShape: {
|
|
58087
|
-
value:
|
|
59014
|
+
value: {
|
|
59015
|
+
type: "ServiceParams",
|
|
59016
|
+
shapedBy: "value"
|
|
59017
|
+
}
|
|
58088
59018
|
}
|
|
58089
59019
|
},
|
|
58090
59020
|
{
|
|
@@ -58101,7 +59031,8 @@ var integrators_registry_default = {
|
|
|
58101
59031
|
name: "value",
|
|
58102
59032
|
type: "ServiceParams",
|
|
58103
59033
|
required: true,
|
|
58104
|
-
description: "Value to store."
|
|
59034
|
+
description: "Value to store \u2014 the caller declares its own shape.",
|
|
59035
|
+
shapedBy: "value"
|
|
58105
59036
|
},
|
|
58106
59037
|
{
|
|
58107
59038
|
name: "ttl",
|
|
@@ -58228,7 +59159,8 @@ var integrators_registry_default = {
|
|
|
58228
59159
|
name: "message",
|
|
58229
59160
|
type: "ServiceParams",
|
|
58230
59161
|
required: true,
|
|
58231
|
-
description: "Message payload."
|
|
59162
|
+
description: "Message payload \u2014 the caller declares its own shape.",
|
|
59163
|
+
shapedBy: "message"
|
|
58232
59164
|
}
|
|
58233
59165
|
],
|
|
58234
59166
|
responseShape: {
|
|
@@ -58516,9 +59448,12 @@ var integrators_registry_default = {
|
|
|
58516
59448
|
},
|
|
58517
59449
|
{
|
|
58518
59450
|
name: "attributes",
|
|
58519
|
-
type: "
|
|
59451
|
+
type: "object",
|
|
58520
59452
|
required: false,
|
|
58521
|
-
description: "Key-value attributes attached to the span."
|
|
59453
|
+
description: "Key-value attributes attached to the span (OTel attribute values are scalar).",
|
|
59454
|
+
mapValue: {
|
|
59455
|
+
type: "string | number | boolean"
|
|
59456
|
+
}
|
|
58522
59457
|
},
|
|
58523
59458
|
{
|
|
58524
59459
|
name: "traceId",
|
|
@@ -58571,9 +59506,12 @@ var integrators_registry_default = {
|
|
|
58571
59506
|
},
|
|
58572
59507
|
{
|
|
58573
59508
|
name: "attributes",
|
|
58574
|
-
type: "
|
|
59509
|
+
type: "object",
|
|
58575
59510
|
required: false,
|
|
58576
|
-
description: "Key-value attributes attached to the event."
|
|
59511
|
+
description: "Key-value attributes attached to the event (OTel attribute values are scalar).",
|
|
59512
|
+
mapValue: {
|
|
59513
|
+
type: "string | number | boolean"
|
|
59514
|
+
}
|
|
58577
59515
|
}
|
|
58578
59516
|
],
|
|
58579
59517
|
responseShape: {
|
|
@@ -58604,9 +59542,12 @@ var integrators_registry_default = {
|
|
|
58604
59542
|
},
|
|
58605
59543
|
{
|
|
58606
59544
|
name: "labels",
|
|
58607
|
-
type: "
|
|
59545
|
+
type: "object",
|
|
58608
59546
|
required: false,
|
|
58609
|
-
description: "Key-value labels attached to the metric (replaces prior labels on the same name)."
|
|
59547
|
+
description: "Key-value labels attached to the metric (replaces prior labels on the same name; OTel label values are scalar).",
|
|
59548
|
+
mapValue: {
|
|
59549
|
+
type: "string | number | boolean"
|
|
59550
|
+
}
|
|
58610
59551
|
}
|
|
58611
59552
|
],
|
|
58612
59553
|
responseShape: {
|
|
@@ -58690,7 +59631,8 @@ var integrators_registry_default = {
|
|
|
58690
59631
|
name: "context",
|
|
58691
59632
|
type: "IntegrationParams",
|
|
58692
59633
|
required: false,
|
|
58693
|
-
description: "Extra context passed through to the agent."
|
|
59634
|
+
description: "Extra context passed through to the agent \u2014 the caller declares its own shape.",
|
|
59635
|
+
shapedBy: "context"
|
|
58694
59636
|
}
|
|
58695
59637
|
],
|
|
58696
59638
|
responseShape: {
|
|
@@ -58816,7 +59758,10 @@ var integrators_registry_default = {
|
|
|
58816
59758
|
}
|
|
58817
59759
|
],
|
|
58818
59760
|
responseShape: {
|
|
58819
|
-
rows:
|
|
59761
|
+
rows: {
|
|
59762
|
+
type: "DatabaseRow[]",
|
|
59763
|
+
shapedBy: "rows"
|
|
59764
|
+
},
|
|
58820
59765
|
rowCount: "number"
|
|
58821
59766
|
}
|
|
58822
59767
|
}
|
|
@@ -58982,7 +59927,7 @@ var integrators_registry_default = {
|
|
|
58982
59927
|
// src/patterns/component-mapping.json
|
|
58983
59928
|
var component_mapping_default = {
|
|
58984
59929
|
version: "1.0.0",
|
|
58985
|
-
exportedAt: "2026-09-
|
|
59930
|
+
exportedAt: "2026-09-07T02:55:20.374Z",
|
|
58986
59931
|
mappings: {
|
|
58987
59932
|
"page-header": {
|
|
58988
59933
|
component: "PageHeader",
|
|
@@ -60427,7 +61372,7 @@ var component_mapping_default = {
|
|
|
60427
61372
|
// src/patterns/event-contracts.json
|
|
60428
61373
|
var event_contracts_default = {
|
|
60429
61374
|
version: "1.0.0",
|
|
60430
|
-
exportedAt: "2026-09-
|
|
61375
|
+
exportedAt: "2026-09-07T02:55:20.374Z",
|
|
60431
61376
|
contracts: {
|
|
60432
61377
|
form: {
|
|
60433
61378
|
emits: [
|
|
@@ -62892,7 +63837,6 @@ function schemaToIR(schema, useCache = true) {
|
|
|
62892
63837
|
const entity = {
|
|
62893
63838
|
name: entityDef.name,
|
|
62894
63839
|
description: entityDef.description,
|
|
62895
|
-
// eslint-disable-next-line almadar/no-record-string-unknown -- icon is an optional extension not on Entity type
|
|
62896
63840
|
icon: entityDef.icon,
|
|
62897
63841
|
collection: entityDef.collection || entityDef.name.toLowerCase() + "s",
|
|
62898
63842
|
fields: (entityDef.fields || []).filter(
|
|
@@ -62901,7 +63845,6 @@ function schemaToIR(schema, useCache = true) {
|
|
|
62901
63845
|
name: field.name,
|
|
62902
63846
|
type: field.type,
|
|
62903
63847
|
tsType: inferTsType2(field.type),
|
|
62904
|
-
// eslint-disable-next-line almadar/no-record-string-unknown -- description is an optional extension not on EntityField type
|
|
62905
63848
|
description: field.description,
|
|
62906
63849
|
default: field.default,
|
|
62907
63850
|
required: field.required ?? false,
|
|
@@ -62929,8 +63872,7 @@ function schemaToIR(schema, useCache = true) {
|
|
|
62929
63872
|
ir.entities.set(entity.name, entity);
|
|
62930
63873
|
}
|
|
62931
63874
|
for (const rawTrait of orbital.traits || []) {
|
|
62932
|
-
const
|
|
62933
|
-
const maybeResolved = wrap._resolved;
|
|
63875
|
+
const maybeResolved = typeof rawTrait === "object" && "ref" in rawTrait ? rawTrait._resolved : void 0;
|
|
62934
63876
|
const trait = maybeResolved && maybeResolved.stateMachine ? maybeResolved : rawTrait;
|
|
62935
63877
|
if (!trait.name) continue;
|
|
62936
63878
|
const resolvedTrait = {
|
|
@@ -63090,6 +64032,16 @@ function getTrait(ir, traitName) {
|
|
|
63090
64032
|
// src/embedded-trait-config.ts
|
|
63091
64033
|
var TRAIT_BINDING_PREFIX = "@trait.";
|
|
63092
64034
|
var CONFIG_FORWARD_RE = /^@config\.([A-Za-z_][A-Za-z0-9_]*)$/;
|
|
64035
|
+
var CALLSITE_PAYLOAD_PREFIX = "@callsitePayload.";
|
|
64036
|
+
function valueContainsPrefixedString(value, prefix) {
|
|
64037
|
+
if (value === null || value === void 0) return false;
|
|
64038
|
+
if (typeof value === "string") return value.startsWith(prefix);
|
|
64039
|
+
if (Array.isArray(value)) return value.some((item) => valueContainsPrefixedString(item, prefix));
|
|
64040
|
+
if (typeof value === "object") {
|
|
64041
|
+
return Object.values(value).some((v) => valueContainsPrefixedString(v, prefix));
|
|
64042
|
+
}
|
|
64043
|
+
return false;
|
|
64044
|
+
}
|
|
63093
64045
|
function collectTraitRefsFromValue(value, into) {
|
|
63094
64046
|
if (value === null || value === void 0) return;
|
|
63095
64047
|
if (typeof value === "string") {
|
|
@@ -63223,8 +64175,33 @@ function resolveForwardsDeep(value, referrerConfig, consumed) {
|
|
|
63223
64175
|
}
|
|
63224
64176
|
return value;
|
|
63225
64177
|
}
|
|
64178
|
+
function fromDeclared(declared) {
|
|
64179
|
+
if (!declared) return void 0;
|
|
64180
|
+
const out = {};
|
|
64181
|
+
let any = false;
|
|
64182
|
+
for (const [key, field] of Object.entries(declared)) {
|
|
64183
|
+
if (field.default !== void 0) {
|
|
64184
|
+
out[key] = field.default;
|
|
64185
|
+
any = true;
|
|
64186
|
+
}
|
|
64187
|
+
}
|
|
64188
|
+
return any ? out : void 0;
|
|
64189
|
+
}
|
|
64190
|
+
function applyForwardRung(out, rungConfig) {
|
|
64191
|
+
if (!rungConfig) return;
|
|
64192
|
+
const consumed = /* @__PURE__ */ new Map();
|
|
64193
|
+
for (const [key, value] of Object.entries(out)) {
|
|
64194
|
+
out[key] = resolveForwardsDeep(value, rungConfig, consumed);
|
|
64195
|
+
}
|
|
64196
|
+
for (const [key, value] of consumed) {
|
|
64197
|
+
if (!(key in out)) {
|
|
64198
|
+
out[key] = value;
|
|
64199
|
+
}
|
|
64200
|
+
}
|
|
64201
|
+
}
|
|
63226
64202
|
function buildResolvedTraitConfigs(schema) {
|
|
63227
64203
|
const rawByName = {};
|
|
64204
|
+
const orbitalByTrait = {};
|
|
63228
64205
|
if (!schema?.orbitals) return {};
|
|
63229
64206
|
for (const orbital of schema.orbitals) {
|
|
63230
64207
|
const traitRefs = orbital.traits;
|
|
@@ -63232,6 +64209,9 @@ function buildResolvedTraitConfigs(schema) {
|
|
|
63232
64209
|
for (const t of traitRefs) {
|
|
63233
64210
|
if (typeof t === "string") continue;
|
|
63234
64211
|
const name = t.name ?? t.ref;
|
|
64212
|
+
if (typeof name === "string") {
|
|
64213
|
+
orbitalByTrait[name] = orbital;
|
|
64214
|
+
}
|
|
63235
64215
|
const config = t.config;
|
|
63236
64216
|
if (typeof name === "string" && config !== void 0) {
|
|
63237
64217
|
rawByName[name] = { ...t, config };
|
|
@@ -63251,18 +64231,9 @@ function buildResolvedTraitConfigs(schema) {
|
|
|
63251
64231
|
resolving.add(name);
|
|
63252
64232
|
const out = { ...base };
|
|
63253
64233
|
const referrer = referrerByChild.get(name);
|
|
63254
|
-
|
|
63255
|
-
|
|
63256
|
-
|
|
63257
|
-
for (const [key, value] of Object.entries(out)) {
|
|
63258
|
-
out[key] = resolveForwardsDeep(value, referrerConfig, consumed);
|
|
63259
|
-
}
|
|
63260
|
-
for (const [key, value] of consumed) {
|
|
63261
|
-
if (!(key in out)) {
|
|
63262
|
-
out[key] = value;
|
|
63263
|
-
}
|
|
63264
|
-
}
|
|
63265
|
-
}
|
|
64234
|
+
applyForwardRung(out, referrer && referrer !== name ? resolveConfig(referrer) : void 0);
|
|
64235
|
+
applyForwardRung(out, fromDeclared(orbitalByTrait[name]?.config));
|
|
64236
|
+
applyForwardRung(out, fromDeclared(schema?.config));
|
|
63266
64237
|
resolving.delete(name);
|
|
63267
64238
|
resolved.set(name, out);
|
|
63268
64239
|
return out;
|
|
@@ -63274,6 +64245,77 @@ function buildResolvedTraitConfigs(schema) {
|
|
|
63274
64245
|
}
|
|
63275
64246
|
return map;
|
|
63276
64247
|
}
|
|
64248
|
+
function traitReferencesCallsitePayload(trait) {
|
|
64249
|
+
if (!trait) return false;
|
|
64250
|
+
if (trait.config && valueContainsPrefixedString(trait.config, CALLSITE_PAYLOAD_PREFIX)) {
|
|
64251
|
+
return true;
|
|
64252
|
+
}
|
|
64253
|
+
const stateMachine = trait.stateMachine;
|
|
64254
|
+
if (stateMachine && valueContainsPrefixedString(stateMachine, CALLSITE_PAYLOAD_PREFIX)) {
|
|
64255
|
+
return true;
|
|
64256
|
+
}
|
|
64257
|
+
return false;
|
|
64258
|
+
}
|
|
64259
|
+
function collectCallsiteCaptureChildren(orbital) {
|
|
64260
|
+
const adjacency = collectTraitEmbedAdjacency(orbital);
|
|
64261
|
+
const traitsByName = /* @__PURE__ */ new Map();
|
|
64262
|
+
const traits = orbital.traits;
|
|
64263
|
+
if (Array.isArray(traits)) {
|
|
64264
|
+
for (const traitRef of traits) {
|
|
64265
|
+
const target = targetTraitOf(traitRef);
|
|
64266
|
+
if (target?.name) traitsByName.set(target.name, target);
|
|
64267
|
+
}
|
|
64268
|
+
}
|
|
64269
|
+
const reachesCapture = /* @__PURE__ */ new Map();
|
|
64270
|
+
function traitReachesCapture(name, seen) {
|
|
64271
|
+
const cached = reachesCapture.get(name);
|
|
64272
|
+
if (cached !== void 0) return cached;
|
|
64273
|
+
if (seen.has(name)) return false;
|
|
64274
|
+
seen.add(name);
|
|
64275
|
+
const trait = traitsByName.get(name);
|
|
64276
|
+
if (trait && traitReferencesCallsitePayload(trait)) {
|
|
64277
|
+
reachesCapture.set(name, true);
|
|
64278
|
+
return true;
|
|
64279
|
+
}
|
|
64280
|
+
const children = adjacency.get(name);
|
|
64281
|
+
if (children) {
|
|
64282
|
+
for (const child of children) {
|
|
64283
|
+
if (traitReachesCapture(child, seen)) {
|
|
64284
|
+
reachesCapture.set(name, true);
|
|
64285
|
+
return true;
|
|
64286
|
+
}
|
|
64287
|
+
}
|
|
64288
|
+
}
|
|
64289
|
+
reachesCapture.set(name, false);
|
|
64290
|
+
return false;
|
|
64291
|
+
}
|
|
64292
|
+
const out = /* @__PURE__ */ new Map();
|
|
64293
|
+
for (const [referrer, children] of adjacency) {
|
|
64294
|
+
const keep = /* @__PURE__ */ new Set();
|
|
64295
|
+
for (const child of children) {
|
|
64296
|
+
if (traitReachesCapture(child, /* @__PURE__ */ new Set())) keep.add(child);
|
|
64297
|
+
}
|
|
64298
|
+
if (keep.size > 0) out.set(referrer, keep);
|
|
64299
|
+
}
|
|
64300
|
+
return out;
|
|
64301
|
+
}
|
|
64302
|
+
|
|
64303
|
+
// src/lib/get-nested-value.ts
|
|
64304
|
+
function getNestedValue(obj, path) {
|
|
64305
|
+
if (obj === null || obj === void 0 || !path) return void 0;
|
|
64306
|
+
if (typeof obj !== "object" || Array.isArray(obj)) return void 0;
|
|
64307
|
+
if (!path.includes(".")) {
|
|
64308
|
+
return obj[path];
|
|
64309
|
+
}
|
|
64310
|
+
const parts = path.split(".");
|
|
64311
|
+
let value = obj;
|
|
64312
|
+
for (const part of parts) {
|
|
64313
|
+
if (value === null || value === void 0) return void 0;
|
|
64314
|
+
if (typeof value !== "object" || Array.isArray(value)) return void 0;
|
|
64315
|
+
value = value[part];
|
|
64316
|
+
}
|
|
64317
|
+
return value;
|
|
64318
|
+
}
|
|
63277
64319
|
|
|
63278
64320
|
// src/page-content-owner.ts
|
|
63279
64321
|
function writesContentMain(effects) {
|
|
@@ -64118,6 +65160,16 @@ function rehydrateKnobDefs(catalog) {
|
|
|
64118
65160
|
mutable.overridableConfigKeys = knobs;
|
|
64119
65161
|
delete mutable.overridableConfigKeyRefs;
|
|
64120
65162
|
}
|
|
65163
|
+
const configRefs = sig.configRefs;
|
|
65164
|
+
if (configRefs === void 0) continue;
|
|
65165
|
+
const configKnobs = [];
|
|
65166
|
+
for (const i of configRefs) {
|
|
65167
|
+
const knob = table[i];
|
|
65168
|
+
if (knob !== void 0) configKnobs.push(knob);
|
|
65169
|
+
}
|
|
65170
|
+
const mutableSig = sig;
|
|
65171
|
+
mutableSig.config = configKnobs;
|
|
65172
|
+
delete mutableSig.configRefs;
|
|
64121
65173
|
}
|
|
64122
65174
|
return catalog;
|
|
64123
65175
|
}
|
|
@@ -65063,6 +66115,18 @@ function signatureToParamsSchema(signature, options) {
|
|
|
65063
66115
|
description: "Theme key \u2014 the full `data-theme` value applied to the layout root (e.g. linear-clean-light, terminal-dark, game-adventure-dark). Plan-level: pick ONE for the whole app \u2014 it is threaded to every orbital. Omit to leave the factory default."
|
|
65064
66116
|
}
|
|
65065
66117
|
};
|
|
66118
|
+
if (signature.config && signature.config.length > 0) {
|
|
66119
|
+
const configProps = {};
|
|
66120
|
+
for (const knob of signature.config) {
|
|
66121
|
+
configProps[knob.key] = knobToSchema(knob, void 0, traitRefValues);
|
|
66122
|
+
}
|
|
66123
|
+
properties.config = {
|
|
66124
|
+
type: "object",
|
|
66125
|
+
additionalProperties: false,
|
|
66126
|
+
description: "This orbital's own declared knobs (Orbital.config). Only the keys shown are valid.",
|
|
66127
|
+
properties: configProps
|
|
66128
|
+
};
|
|
66129
|
+
}
|
|
65066
66130
|
if (allowPersistenceOverride) {
|
|
65067
66131
|
properties.collection = {
|
|
65068
66132
|
type: "string",
|
|
@@ -66708,6 +67772,133 @@ function mergeEntityFrame(current, orderedWrites) {
|
|
|
66708
67772
|
return next;
|
|
66709
67773
|
}
|
|
66710
67774
|
|
|
67775
|
+
// src/i18n/orb-notation.json
|
|
67776
|
+
var orb_notation_default = {
|
|
67777
|
+
reason: "Design-system token NAMES reachable only under a theme `tokens` node. They are keys of the .orb schema but notation, not language vocabulary, so they are excluded from the `orb` i18n section (owner ruling 2026-09-07). Regenerate with: pnpm --filter @almadar/core run gen:orb-notation",
|
|
67778
|
+
keys: [
|
|
67779
|
+
"2xl",
|
|
67780
|
+
"3xl",
|
|
67781
|
+
"4xl",
|
|
67782
|
+
"accent",
|
|
67783
|
+
"accentForeground",
|
|
67784
|
+
"background",
|
|
67785
|
+
"base",
|
|
67786
|
+
"bodyDefault",
|
|
67787
|
+
"bodyEmphasis",
|
|
67788
|
+
"bodyFamily",
|
|
67789
|
+
"bodyQuiet",
|
|
67790
|
+
"border",
|
|
67791
|
+
"borderHairline",
|
|
67792
|
+
"borderHeavy",
|
|
67793
|
+
"borderHover",
|
|
67794
|
+
"borderStandard",
|
|
67795
|
+
"buttonHeightLg",
|
|
67796
|
+
"buttonHeightMd",
|
|
67797
|
+
"buttonHeightSm",
|
|
67798
|
+
"caption",
|
|
67799
|
+
"card",
|
|
67800
|
+
"cardElevation",
|
|
67801
|
+
"cardForeground",
|
|
67802
|
+
"cardPaddingLg",
|
|
67803
|
+
"cardPaddingMd",
|
|
67804
|
+
"cardPaddingSm",
|
|
67805
|
+
"defaultSize",
|
|
67806
|
+
"dialogElevation",
|
|
67807
|
+
"dialogPadding",
|
|
67808
|
+
"display-1",
|
|
67809
|
+
"display-2",
|
|
67810
|
+
"displayFamily",
|
|
67811
|
+
"dramatic",
|
|
67812
|
+
"duration",
|
|
67813
|
+
"durations",
|
|
67814
|
+
"easing",
|
|
67815
|
+
"easings",
|
|
67816
|
+
"emphasized",
|
|
67817
|
+
"emptyAsset",
|
|
67818
|
+
"enter",
|
|
67819
|
+
"error",
|
|
67820
|
+
"errorAsset",
|
|
67821
|
+
"errorForeground",
|
|
67822
|
+
"exit",
|
|
67823
|
+
"expand",
|
|
67824
|
+
"family",
|
|
67825
|
+
"fast",
|
|
67826
|
+
"foreground",
|
|
67827
|
+
"headingMajor",
|
|
67828
|
+
"headingMinor",
|
|
67829
|
+
"hover",
|
|
67830
|
+
"info",
|
|
67831
|
+
"infoForeground",
|
|
67832
|
+
"input",
|
|
67833
|
+
"inputHeightLg",
|
|
67834
|
+
"inputHeightMd",
|
|
67835
|
+
"inputHeightSm",
|
|
67836
|
+
"instant",
|
|
67837
|
+
"intents",
|
|
67838
|
+
"lg",
|
|
67839
|
+
"lineHeight",
|
|
67840
|
+
"linear",
|
|
67841
|
+
"loadingAsset",
|
|
67842
|
+
"monoFamily",
|
|
67843
|
+
"muted",
|
|
67844
|
+
"mutedForeground",
|
|
67845
|
+
"normal",
|
|
67846
|
+
"numeric",
|
|
67847
|
+
"onboardingAsset",
|
|
67848
|
+
"placeholder",
|
|
67849
|
+
"popoverElevation",
|
|
67850
|
+
"press",
|
|
67851
|
+
"primary",
|
|
67852
|
+
"primaryForeground",
|
|
67853
|
+
"primaryHover",
|
|
67854
|
+
"radiusContainer",
|
|
67855
|
+
"radiusInteractive",
|
|
67856
|
+
"radiusPill",
|
|
67857
|
+
"ring",
|
|
67858
|
+
"rowHeightCompact",
|
|
67859
|
+
"rowHeightNormal",
|
|
67860
|
+
"rowHeightSpacious",
|
|
67861
|
+
"scale",
|
|
67862
|
+
"secondary",
|
|
67863
|
+
"secondaryForeground",
|
|
67864
|
+
"secondaryHover",
|
|
67865
|
+
"sectionGap",
|
|
67866
|
+
"size",
|
|
67867
|
+
"slot",
|
|
67868
|
+
"slow",
|
|
67869
|
+
"sm",
|
|
67870
|
+
"space0",
|
|
67871
|
+
"space1",
|
|
67872
|
+
"space10",
|
|
67873
|
+
"space11",
|
|
67874
|
+
"space12",
|
|
67875
|
+
"space2",
|
|
67876
|
+
"space3",
|
|
67877
|
+
"space4",
|
|
67878
|
+
"space5",
|
|
67879
|
+
"space6",
|
|
67880
|
+
"space7",
|
|
67881
|
+
"space8",
|
|
67882
|
+
"space9",
|
|
67883
|
+
"spring",
|
|
67884
|
+
"standard",
|
|
67885
|
+
"strokeWidth",
|
|
67886
|
+
"success",
|
|
67887
|
+
"successForeground",
|
|
67888
|
+
"surface",
|
|
67889
|
+
"surfaceHover",
|
|
67890
|
+
"tableBorder",
|
|
67891
|
+
"tableHeader",
|
|
67892
|
+
"tableRowHover",
|
|
67893
|
+
"toastElevation",
|
|
67894
|
+
"warning",
|
|
67895
|
+
"warningForeground",
|
|
67896
|
+
"weight",
|
|
67897
|
+
"xl",
|
|
67898
|
+
"xs"
|
|
67899
|
+
]
|
|
67900
|
+
};
|
|
67901
|
+
|
|
66711
67902
|
// src/i18n/en.json
|
|
66712
67903
|
var en_default = {
|
|
66713
67904
|
meta: {
|
|
@@ -66749,7 +67940,13 @@ var en_default = {
|
|
|
66749
67940
|
events: "events",
|
|
66750
67941
|
event: "event",
|
|
66751
67942
|
emitsScope: "emitsScope",
|
|
66752
|
-
identity: "identity"
|
|
67943
|
+
identity: "identity",
|
|
67944
|
+
pages: "pages",
|
|
67945
|
+
omit: "omit",
|
|
67946
|
+
only: "only",
|
|
67947
|
+
roles: "roles",
|
|
67948
|
+
entities: "entities",
|
|
67949
|
+
extend: "extend"
|
|
66753
67950
|
},
|
|
66754
67951
|
shapes: {
|
|
66755
67952
|
Entity: "Entity",
|
|
@@ -66842,7 +68039,6 @@ var en_default = {
|
|
|
66842
68039
|
duration: "duration",
|
|
66843
68040
|
money: "money",
|
|
66844
68041
|
scalar: "scalar",
|
|
66845
|
-
opaque: "opaque",
|
|
66846
68042
|
file: "file",
|
|
66847
68043
|
email: "email",
|
|
66848
68044
|
url: "url",
|
|
@@ -66853,6 +68049,11 @@ var en_default = {
|
|
|
66853
68049
|
asset: "asset",
|
|
66854
68050
|
component: "component",
|
|
66855
68051
|
object: "object",
|
|
68052
|
+
array: "array",
|
|
68053
|
+
enum: "enum",
|
|
68054
|
+
relation: "relation",
|
|
68055
|
+
node: "node",
|
|
68056
|
+
union: "union",
|
|
66856
68057
|
void: "void",
|
|
66857
68058
|
null: "null",
|
|
66858
68059
|
any: "any",
|
|
@@ -66881,16 +68082,11 @@ var en_default = {
|
|
|
66881
68082
|
INIT: "INIT"
|
|
66882
68083
|
},
|
|
66883
68084
|
orb: {
|
|
66884
|
-
"2xl": "2xl",
|
|
66885
|
-
"3xl": "3xl",
|
|
66886
|
-
"4xl": "4xl",
|
|
66887
68085
|
_metadata: "_metadata",
|
|
66888
|
-
|
|
66889
|
-
accentForeground: "accentForeground",
|
|
68086
|
+
_resolved: "_resolved",
|
|
66890
68087
|
access_waivers: "access_waivers",
|
|
66891
68088
|
alias: "alias",
|
|
66892
68089
|
animations: "animations",
|
|
66893
|
-
api: "api",
|
|
66894
68090
|
appliesTo: "appliesTo",
|
|
66895
68091
|
as: "as",
|
|
66896
68092
|
aspect: "aspect",
|
|
@@ -66898,31 +68094,10 @@ var en_default = {
|
|
|
66898
68094
|
at: "at",
|
|
66899
68095
|
auth: "auth",
|
|
66900
68096
|
auxiliaryEntities: "auxiliaryEntities",
|
|
66901
|
-
background: "background",
|
|
66902
68097
|
bakedName: "bakedName",
|
|
66903
|
-
base: "base",
|
|
66904
68098
|
baseUrl: "baseUrl",
|
|
66905
68099
|
behavior: "behavior",
|
|
66906
|
-
bodyDefault: "bodyDefault",
|
|
66907
|
-
bodyEmphasis: "bodyEmphasis",
|
|
66908
|
-
bodyFamily: "bodyFamily",
|
|
66909
|
-
bodyQuiet: "bodyQuiet",
|
|
66910
|
-
border: "border",
|
|
66911
|
-
borderHairline: "borderHairline",
|
|
66912
|
-
borderHeavy: "borderHeavy",
|
|
66913
|
-
borderHover: "borderHover",
|
|
66914
|
-
borderStandard: "borderStandard",
|
|
66915
|
-
buttonHeightLg: "buttonHeightLg",
|
|
66916
|
-
buttonHeightMd: "buttonHeightMd",
|
|
66917
|
-
buttonHeightSm: "buttonHeightSm",
|
|
66918
68100
|
capabilities: "capabilities",
|
|
66919
|
-
caption: "caption",
|
|
66920
|
-
card: "card",
|
|
66921
|
-
cardElevation: "cardElevation",
|
|
66922
|
-
cardForeground: "cardForeground",
|
|
66923
|
-
cardPaddingLg: "cardPaddingLg",
|
|
66924
|
-
cardPaddingMd: "cardPaddingMd",
|
|
66925
|
-
cardPaddingSm: "cardPaddingSm",
|
|
66926
68101
|
cardinality: "cardinality",
|
|
66927
68102
|
category: "category",
|
|
66928
68103
|
className: "className",
|
|
@@ -66943,7 +68118,6 @@ var en_default = {
|
|
|
66943
68118
|
darkMode: "darkMode",
|
|
66944
68119
|
dataEntities: "dataEntities",
|
|
66945
68120
|
default: "default",
|
|
66946
|
-
defaultSize: "defaultSize",
|
|
66947
68121
|
definerKnob: "definerKnob",
|
|
66948
68122
|
delayMs: "delayMs",
|
|
66949
68123
|
delete: "delete",
|
|
@@ -66955,28 +68129,16 @@ var en_default = {
|
|
|
66955
68129
|
designTokens: "designTokens",
|
|
66956
68130
|
detailPattern: "detailPattern",
|
|
66957
68131
|
device: "device",
|
|
66958
|
-
dialogElevation: "dialogElevation",
|
|
66959
|
-
dialogPadding: "dialogPadding",
|
|
66960
68132
|
dimension: "dimension",
|
|
66961
|
-
"display-1": "display-1",
|
|
66962
|
-
"display-2": "display-2",
|
|
66963
|
-
displayFamily: "displayFamily",
|
|
66964
68133
|
domainContext: "domainContext",
|
|
66965
|
-
dramatic: "dramatic",
|
|
66966
|
-
duration: "duration",
|
|
66967
|
-
durations: "durations",
|
|
66968
|
-
easing: "easing",
|
|
66969
|
-
easings: "easings",
|
|
66970
68134
|
effectRow: "effectRow",
|
|
66971
68135
|
effects: "effects",
|
|
66972
68136
|
elevation: "elevation",
|
|
66973
68137
|
emitIds: "emitIds",
|
|
66974
68138
|
emits: "emits",
|
|
66975
68139
|
emitsScope: "emitsScope",
|
|
66976
|
-
emphasized: "emphasized",
|
|
66977
|
-
emptyAsset: "emptyAsset",
|
|
66978
68140
|
enabled: "enabled",
|
|
66979
|
-
|
|
68141
|
+
entities: "entities",
|
|
66980
68142
|
entity: "entity",
|
|
66981
68143
|
entityBindingDescription: "entityBindingDescription",
|
|
66982
68144
|
entityBindingSynonyms: "entityBindingSynonyms",
|
|
@@ -66984,56 +68146,37 @@ var en_default = {
|
|
|
66984
68146
|
entityId: "entityId",
|
|
66985
68147
|
entityRebindable: "entityRebindable",
|
|
66986
68148
|
entityRefIds: "entityRefIds",
|
|
66987
|
-
entityType: "entityType",
|
|
66988
68149
|
entries: "entries",
|
|
66989
68150
|
env: "env",
|
|
66990
68151
|
equals: "equals",
|
|
66991
|
-
error: "error",
|
|
66992
|
-
errorAsset: "errorAsset",
|
|
66993
|
-
errorForeground: "errorForeground",
|
|
66994
68152
|
event: "event",
|
|
66995
68153
|
eventId: "eventId",
|
|
66996
68154
|
eventIds: "eventIds",
|
|
66997
68155
|
events: "events",
|
|
66998
|
-
exit: "exit",
|
|
66999
|
-
expand: "expand",
|
|
67000
68156
|
expects: "expects",
|
|
67001
68157
|
exposes: "exposes",
|
|
68158
|
+
extend: "extend",
|
|
67002
68159
|
extends: "extends",
|
|
67003
68160
|
extendsId: "extendsId",
|
|
67004
|
-
family: "family",
|
|
67005
|
-
fast: "fast",
|
|
67006
|
-
features: "features",
|
|
67007
68161
|
field: "field",
|
|
67008
68162
|
fields: "fields",
|
|
67009
68163
|
flowPattern: "flowPattern",
|
|
67010
|
-
foreground: "foreground",
|
|
67011
68164
|
foreignKey: "foreignKey",
|
|
67012
68165
|
formPattern: "formPattern",
|
|
68166
|
+
forwardedFrom: "forwardedFrom",
|
|
67013
68167
|
from: "from",
|
|
67014
68168
|
geometry: "geometry",
|
|
67015
68169
|
guard: "guard",
|
|
67016
68170
|
guards: "guards",
|
|
67017
68171
|
headers: "headers",
|
|
67018
|
-
headingMajor: "headingMajor",
|
|
67019
|
-
headingMinor: "headingMinor",
|
|
67020
|
-
hover: "hover",
|
|
67021
68172
|
icon: "icon",
|
|
67022
68173
|
iconography: "iconography",
|
|
67023
68174
|
id: "id",
|
|
67024
68175
|
identity: "identity",
|
|
67025
68176
|
illustration: "illustration",
|
|
67026
68177
|
inbound: "inbound",
|
|
67027
|
-
info: "info",
|
|
67028
|
-
infoForeground: "infoForeground",
|
|
67029
68178
|
initialEffects: "initialEffects",
|
|
67030
|
-
input: "input",
|
|
67031
|
-
inputHeightLg: "inputHeightLg",
|
|
67032
|
-
inputHeightMd: "inputHeightMd",
|
|
67033
|
-
inputHeightSm: "inputHeightSm",
|
|
67034
68179
|
instances: "instances",
|
|
67035
|
-
instant: "instant",
|
|
67036
|
-
intents: "intents",
|
|
67037
68180
|
interactive: "interactive",
|
|
67038
68181
|
interval: "interval",
|
|
67039
68182
|
intrinsic: "intrinsic",
|
|
@@ -67048,30 +68191,22 @@ var en_default = {
|
|
|
67048
68191
|
knob: "knob",
|
|
67049
68192
|
label: "label",
|
|
67050
68193
|
ledger: "ledger",
|
|
67051
|
-
lg: "lg",
|
|
67052
|
-
lineHeight: "lineHeight",
|
|
67053
|
-
linear: "linear",
|
|
67054
68194
|
linkedEntity: "linkedEntity",
|
|
67055
68195
|
linkedEntityId: "linkedEntityId",
|
|
67056
68196
|
listPattern: "listPattern",
|
|
67057
68197
|
listens: "listens",
|
|
67058
|
-
loadingAsset: "loadingAsset",
|
|
67059
68198
|
location: "location",
|
|
67060
68199
|
max: "max",
|
|
67061
68200
|
maxAttempts: "maxAttempts",
|
|
67062
68201
|
min: "min",
|
|
67063
|
-
mode: "mode",
|
|
67064
|
-
monoFamily: "monoFamily",
|
|
67065
68202
|
motion: "motion",
|
|
67066
|
-
|
|
67067
|
-
mutedForeground: "mutedForeground",
|
|
68203
|
+
mounts: "mounts",
|
|
67068
68204
|
name: "name",
|
|
67069
|
-
|
|
67070
|
-
numeric: "numeric",
|
|
68205
|
+
omit: "omit",
|
|
67071
68206
|
onDelete: "onDelete",
|
|
67072
68207
|
onEntry: "onEntry",
|
|
67073
68208
|
onExit: "onExit",
|
|
67074
|
-
|
|
68209
|
+
only: "only",
|
|
67075
68210
|
orbital: "orbital",
|
|
67076
68211
|
orbitalId: "orbitalId",
|
|
67077
68212
|
orbitals: "orbitals",
|
|
@@ -67086,19 +68221,14 @@ var en_default = {
|
|
|
67086
68221
|
pattern: "pattern",
|
|
67087
68222
|
patternPath: "patternPath",
|
|
67088
68223
|
payload: "payload",
|
|
68224
|
+
payloadEntity: "payloadEntity",
|
|
67089
68225
|
payloadMapping: "payloadMapping",
|
|
67090
68226
|
payloadSchema: "payloadSchema",
|
|
67091
68227
|
persistence: "persistence",
|
|
67092
68228
|
personas: "personas",
|
|
67093
|
-
placeholder: "placeholder",
|
|
67094
|
-
popoverElevation: "popoverElevation",
|
|
67095
68229
|
presentation: "presentation",
|
|
67096
|
-
press: "press",
|
|
67097
|
-
primary: "primary",
|
|
67098
68230
|
primaryColor: "primaryColor",
|
|
67099
68231
|
primaryEntity: "primaryEntity",
|
|
67100
|
-
primaryForeground: "primaryForeground",
|
|
67101
|
-
primaryHover: "primaryHover",
|
|
67102
68232
|
primaryKey: "primaryKey",
|
|
67103
68233
|
priority: "priority",
|
|
67104
68234
|
prop: "prop",
|
|
@@ -67106,14 +68236,12 @@ var en_default = {
|
|
|
67106
68236
|
props: "props",
|
|
67107
68237
|
provides: "provides",
|
|
67108
68238
|
radii: "radii",
|
|
67109
|
-
radiusContainer: "radiusContainer",
|
|
67110
|
-
radiusInteractive: "radiusInteractive",
|
|
67111
|
-
radiusPill: "radiusPill",
|
|
67112
68239
|
read: "read",
|
|
67113
68240
|
read_policy: "read_policy",
|
|
67114
68241
|
reconnect: "reconnect",
|
|
67115
68242
|
ref: "ref",
|
|
67116
68243
|
refId: "refId",
|
|
68244
|
+
reference: "reference",
|
|
67117
68245
|
relatedLinks: "relatedLinks",
|
|
67118
68246
|
relation: "relation",
|
|
67119
68247
|
renames: "renames",
|
|
@@ -67124,21 +68252,13 @@ var en_default = {
|
|
|
67124
68252
|
requires: "requires",
|
|
67125
68253
|
resolved: "resolved",
|
|
67126
68254
|
resource: "resource",
|
|
67127
|
-
ring: "ring",
|
|
67128
68255
|
role: "role",
|
|
67129
|
-
|
|
67130
|
-
rowHeightNormal: "rowHeightNormal",
|
|
67131
|
-
rowHeightSpacious: "rowHeightSpacious",
|
|
68256
|
+
roles: "roles",
|
|
67132
68257
|
runtime: "runtime",
|
|
67133
|
-
scale: "scale",
|
|
67134
68258
|
schemaVersion: "schemaVersion",
|
|
67135
68259
|
scope: "scope",
|
|
67136
68260
|
scopeOverridden: "scopeOverridden",
|
|
67137
|
-
secondary: "secondary",
|
|
67138
|
-
secondaryForeground: "secondaryForeground",
|
|
67139
|
-
secondaryHover: "secondaryHover",
|
|
67140
68261
|
secretEnv: "secretEnv",
|
|
67141
|
-
sectionGap: "sectionGap",
|
|
67142
68262
|
sections: "sections",
|
|
67143
68263
|
semanticRole: "semanticRole",
|
|
67144
68264
|
serverPath: "serverPath",
|
|
@@ -67148,47 +68268,20 @@ var en_default = {
|
|
|
67148
68268
|
shared: "shared",
|
|
67149
68269
|
singleton: "singleton",
|
|
67150
68270
|
site: "site",
|
|
67151
|
-
size: "size",
|
|
67152
|
-
slot: "slot",
|
|
67153
68271
|
slots: "slots",
|
|
67154
|
-
slow: "slow",
|
|
67155
|
-
sm: "sm",
|
|
67156
68272
|
softDelete: "softDelete",
|
|
67157
68273
|
source: "source",
|
|
67158
68274
|
sourceBehavior: "sourceBehavior",
|
|
67159
68275
|
sourceEntityDefinition: "sourceEntityDefinition",
|
|
67160
|
-
space0: "space0",
|
|
67161
|
-
space1: "space1",
|
|
67162
|
-
space10: "space10",
|
|
67163
|
-
space11: "space11",
|
|
67164
|
-
space12: "space12",
|
|
67165
|
-
space2: "space2",
|
|
67166
|
-
space3: "space3",
|
|
67167
|
-
space4: "space4",
|
|
67168
|
-
space5: "space5",
|
|
67169
|
-
space6: "space6",
|
|
67170
|
-
space7: "space7",
|
|
67171
|
-
space8: "space8",
|
|
67172
|
-
space9: "space9",
|
|
67173
68276
|
spacing: "spacing",
|
|
67174
|
-
spring: "spring",
|
|
67175
|
-
standard: "standard",
|
|
67176
68277
|
stateMachine: "stateMachine",
|
|
67177
68278
|
states: "states",
|
|
67178
|
-
strokeWidth: "strokeWidth",
|
|
67179
68279
|
style: "style",
|
|
67180
68280
|
subDomain: "subDomain",
|
|
67181
|
-
success: "success",
|
|
67182
|
-
successForeground: "successForeground",
|
|
67183
68281
|
suggestedGuards: "suggestedGuards",
|
|
67184
68282
|
summary: "summary",
|
|
67185
|
-
surface: "surface",
|
|
67186
|
-
surfaceHover: "surfaceHover",
|
|
67187
68283
|
surfaces: "surfaces",
|
|
67188
68284
|
synonyms: "synonyms",
|
|
67189
|
-
tableBorder: "tableBorder",
|
|
67190
|
-
tableHeader: "tableHeader",
|
|
67191
|
-
tableRowHover: "tableRowHover",
|
|
67192
68285
|
target: "target",
|
|
67193
68286
|
targetView: "targetView",
|
|
67194
68287
|
text: "text",
|
|
@@ -67201,7 +68294,6 @@ var en_default = {
|
|
|
67201
68294
|
timestamps: "timestamps",
|
|
67202
68295
|
title: "title",
|
|
67203
68296
|
to: "to",
|
|
67204
|
-
toastElevation: "toastElevation",
|
|
67205
68297
|
tokens: "tokens",
|
|
67206
68298
|
trait: "trait",
|
|
67207
68299
|
traitEmbedIds: "traitEmbedIds",
|
|
@@ -67234,12 +68326,7 @@ var en_default = {
|
|
|
67234
68326
|
version: "version",
|
|
67235
68327
|
viewType: "viewType",
|
|
67236
68328
|
visual_prompt: "visual_prompt",
|
|
67237
|
-
vocabulary: "vocabulary"
|
|
67238
|
-
warning: "warning",
|
|
67239
|
-
warningForeground: "warningForeground",
|
|
67240
|
-
weight: "weight",
|
|
67241
|
-
xl: "xl",
|
|
67242
|
-
xs: "xs"
|
|
68329
|
+
vocabulary: "vocabulary"
|
|
67243
68330
|
}
|
|
67244
68331
|
};
|
|
67245
68332
|
|
|
@@ -67284,7 +68371,13 @@ var ar_default = {
|
|
|
67284
68371
|
events: "\u0623\u062D\u062F\u0627\u062B",
|
|
67285
68372
|
event: "\u062D\u062F\u062B",
|
|
67286
68373
|
emitsScope: "\u0646\u0637\u0627\u0642_\u0627\u0644\u0625\u0635\u062F\u0627\u0631",
|
|
67287
|
-
identity: "\u0647\u0648\u064A\u0629"
|
|
68374
|
+
identity: "\u0647\u0648\u064A\u0629",
|
|
68375
|
+
pages: "\u0635\u0641\u062D\u0627\u062A",
|
|
68376
|
+
omit: "\u0627\u0633\u062A\u0628\u0639\u0627\u062F",
|
|
68377
|
+
only: "\u0641\u0642\u0637",
|
|
68378
|
+
roles: "\u0623\u062F\u0648\u0627\u0631",
|
|
68379
|
+
entities: "\u0643\u064A\u0627\u0646\u0627\u062A",
|
|
68380
|
+
extend: "\u0627\u0645\u062A\u062F\u0627\u062F"
|
|
67288
68381
|
},
|
|
67289
68382
|
shapes: {
|
|
67290
68383
|
Entity: "\u0643\u064A\u0627\u0646",
|
|
@@ -67377,7 +68470,6 @@ var ar_default = {
|
|
|
67377
68470
|
duration: "\u0645\u062F\u0629",
|
|
67378
68471
|
money: "\u0645\u0628\u0644\u063A_\u0645\u0627\u0644\u064A",
|
|
67379
68472
|
scalar: "\u0639\u062F\u062F\u064A",
|
|
67380
|
-
opaque: "\u0645\u0639\u062A\u0645",
|
|
67381
68473
|
file: "\u0645\u0644\u0641",
|
|
67382
68474
|
email: "\u0628\u0631\u064A\u062F_\u0625\u0644\u0643\u062A\u0631\u0648\u0646\u064A",
|
|
67383
68475
|
url: "\u0631\u0627\u0628\u0637",
|
|
@@ -67388,6 +68480,11 @@ var ar_default = {
|
|
|
67388
68480
|
asset: "\u0623\u0635\u0644",
|
|
67389
68481
|
component: "\u0645\u0643\u0648\u0646",
|
|
67390
68482
|
object: "\u0643\u0627\u0626\u0646",
|
|
68483
|
+
array: "\u0645\u0635\u0641\u0648\u0641\u0629",
|
|
68484
|
+
enum: "\u062A\u0639\u062F\u0627\u062F",
|
|
68485
|
+
relation: "\u0639\u0644\u0627\u0642\u0629",
|
|
68486
|
+
node: "\u0639\u0642\u062F\u0629",
|
|
68487
|
+
union: "\u0627\u062A\u062D\u0627\u062F",
|
|
67391
68488
|
void: "\u0641\u0631\u0627\u063A",
|
|
67392
68489
|
null: "\u0639\u062F\u0645",
|
|
67393
68490
|
any: "\u0623\u064A",
|
|
@@ -67416,16 +68513,11 @@ var ar_default = {
|
|
|
67416
68513
|
INIT: "\u062A\u0647\u064A\u0626\u0629"
|
|
67417
68514
|
},
|
|
67418
68515
|
orb: {
|
|
67419
|
-
"2xl": "2\u0643\u0628\u064A\u0631",
|
|
67420
|
-
"3xl": "3\u0643\u0628\u064A\u0631",
|
|
67421
|
-
"4xl": "4\u0643\u0628\u064A\u0631",
|
|
67422
68516
|
_metadata: "\u0628\u064A\u0627\u0646\u0627\u062A_\u0648\u0635\u0641\u064A\u0629",
|
|
67423
|
-
|
|
67424
|
-
accentForeground: "\u0645\u0642\u062F\u0645\u0629_\u0627\u0644\u062A\u0645\u064A\u064A\u0632",
|
|
68517
|
+
_resolved: "_\u0645\u062D\u0644\u0648\u0644",
|
|
67425
68518
|
access_waivers: "\u0625\u0639\u0641\u0627\u0621\u0627\u062A_\u0627\u0644\u0648\u0635\u0648\u0644",
|
|
67426
68519
|
alias: "\u0627\u0633\u0645_\u0645\u0633\u062A\u0639\u0627\u0631",
|
|
67427
68520
|
animations: "\u0631\u0633\u0648\u0645_\u0645\u062A\u062D\u0631\u0643\u0629",
|
|
67428
|
-
api: "\u0648\u0627\u062C\u0647\u0629_\u0628\u0631\u0645\u062C\u064A\u0629",
|
|
67429
68521
|
appliesTo: "\u064A\u0646\u0637\u0628\u0642_\u0639\u0644\u0649",
|
|
67430
68522
|
as: "\u0643\u0640",
|
|
67431
68523
|
aspect: "\u0646\u0633\u0628\u0629",
|
|
@@ -67433,31 +68525,10 @@ var ar_default = {
|
|
|
67433
68525
|
at: "\u0641\u064A",
|
|
67434
68526
|
auth: "\u0645\u0635\u0627\u062F\u0642\u0629",
|
|
67435
68527
|
auxiliaryEntities: "\u0643\u064A\u0627\u0646\u0627\u062A_\u0645\u0633\u0627\u0639\u062F\u0629",
|
|
67436
|
-
background: "\u062E\u0644\u0641\u064A\u0629",
|
|
67437
68528
|
bakedName: "\u0627\u0633\u0645_\u0645\u062E\u0628\u0648\u0632",
|
|
67438
|
-
base: "\u0623\u0633\u0627\u0633",
|
|
67439
68529
|
baseUrl: "\u0631\u0627\u0628\u0637_\u0623\u0633\u0627\u0633\u064A",
|
|
67440
68530
|
behavior: "\u0633\u0644\u0648\u0643",
|
|
67441
|
-
bodyDefault: "\u0645\u062A\u0646_\u0627\u0641\u062A\u0631\u0627\u0636\u064A",
|
|
67442
|
-
bodyEmphasis: "\u0645\u062A\u0646_\u0645\u0624\u0643\u062F",
|
|
67443
|
-
bodyFamily: "\u0639\u0627\u0626\u0644\u0629_\u0627\u0644\u0645\u062A\u0646",
|
|
67444
|
-
bodyQuiet: "\u0645\u062A\u0646_\u0647\u0627\u062F\u0626",
|
|
67445
|
-
border: "\u062D\u062F",
|
|
67446
|
-
borderHairline: "\u062D\u062F_\u0634\u0639\u0631\u064A",
|
|
67447
|
-
borderHeavy: "\u062D\u062F_\u0633\u0645\u064A\u0643",
|
|
67448
|
-
borderHover: "\u062D\u062F_\u0639\u0646\u062F_\u0627\u0644\u062A\u0645\u0631\u064A\u0631",
|
|
67449
|
-
borderStandard: "\u062D\u062F_\u0642\u064A\u0627\u0633\u064A",
|
|
67450
|
-
buttonHeightLg: "\u0627\u0631\u062A\u0641\u0627\u0639_\u0627\u0644\u0632\u0631_\u0643\u0628\u064A\u0631",
|
|
67451
|
-
buttonHeightMd: "\u0627\u0631\u062A\u0641\u0627\u0639_\u0627\u0644\u0632\u0631_\u0645\u062A\u0648\u0633\u0637",
|
|
67452
|
-
buttonHeightSm: "\u0627\u0631\u062A\u0641\u0627\u0639_\u0627\u0644\u0632\u0631_\u0635\u063A\u064A\u0631",
|
|
67453
68531
|
capabilities: "\u0642\u062F\u0631\u0627\u062A",
|
|
67454
|
-
caption: "\u062A\u0633\u0645\u064A\u0629_\u062A\u0648\u0636\u064A\u062D\u064A\u0629",
|
|
67455
|
-
card: "\u0628\u0637\u0627\u0642\u0629",
|
|
67456
|
-
cardElevation: "\u0627\u0631\u062A\u0641\u0627\u0639_\u0627\u0644\u0628\u0637\u0627\u0642\u0629",
|
|
67457
|
-
cardForeground: "\u0645\u0642\u062F\u0645\u0629_\u0627\u0644\u0628\u0637\u0627\u0642\u0629",
|
|
67458
|
-
cardPaddingLg: "\u062D\u0634\u0648\u0629_\u0627\u0644\u0628\u0637\u0627\u0642\u0629_\u0643\u0628\u064A\u0631",
|
|
67459
|
-
cardPaddingMd: "\u062D\u0634\u0648\u0629_\u0627\u0644\u0628\u0637\u0627\u0642\u0629_\u0645\u062A\u0648\u0633\u0637",
|
|
67460
|
-
cardPaddingSm: "\u062D\u0634\u0648\u0629_\u0627\u0644\u0628\u0637\u0627\u0642\u0629_\u0635\u063A\u064A\u0631",
|
|
67461
68532
|
cardinality: "\u062A\u0639\u062F\u062F\u064A\u0629",
|
|
67462
68533
|
category: "\u0641\u0626\u0629",
|
|
67463
68534
|
className: "\u0627\u0633\u0645_\u0627\u0644\u0641\u0626\u0629",
|
|
@@ -67478,7 +68549,6 @@ var ar_default = {
|
|
|
67478
68549
|
darkMode: "\u0627\u0644\u0648\u0636\u0639_\u0627\u0644\u062F\u0627\u0643\u0646",
|
|
67479
68550
|
dataEntities: "\u0643\u064A\u0627\u0646\u0627\u062A_\u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A",
|
|
67480
68551
|
default: "\u0627\u0641\u062A\u0631\u0627\u0636\u064A",
|
|
67481
|
-
defaultSize: "\u0627\u0644\u062D\u062C\u0645_\u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A",
|
|
67482
68552
|
definerKnob: "\u0645\u0642\u0628\u0636_\u0627\u0644\u0645\u064F\u0639\u0631\u0650\u0651\u0641",
|
|
67483
68553
|
delayMs: "\u062A\u0623\u062E\u064A\u0631_\u0645\u0644\u0644\u064A_\u062B\u0627\u0646\u064A\u0629",
|
|
67484
68554
|
delete: "\u062D\u0630\u0641",
|
|
@@ -67490,28 +68560,16 @@ var ar_default = {
|
|
|
67490
68560
|
designTokens: "\u0631\u0645\u0648\u0632_\u0627\u0644\u062A\u0635\u0645\u064A\u0645",
|
|
67491
68561
|
detailPattern: "\u0646\u0645\u0637_\u0627\u0644\u062A\u0641\u0627\u0635\u064A\u0644",
|
|
67492
68562
|
device: "\u062C\u0647\u0627\u0632",
|
|
67493
|
-
dialogElevation: "\u0627\u0631\u062A\u0641\u0627\u0639_\u0627\u0644\u062D\u0648\u0627\u0631",
|
|
67494
|
-
dialogPadding: "\u062D\u0634\u0648\u0629_\u0627\u0644\u062D\u0648\u0627\u0631",
|
|
67495
68563
|
dimension: "\u0628\u064F\u0639\u062F",
|
|
67496
|
-
"display-1": "\u0639\u0631\u0636-1",
|
|
67497
|
-
"display-2": "\u0639\u0631\u0636-2",
|
|
67498
|
-
displayFamily: "\u0639\u0627\u0626\u0644\u0629_\u0627\u0644\u0639\u0631\u0636",
|
|
67499
68564
|
domainContext: "\u0633\u064A\u0627\u0642_\u0627\u0644\u0645\u062C\u0627\u0644",
|
|
67500
|
-
dramatic: "\u062F\u0631\u0627\u0645\u064A",
|
|
67501
|
-
duration: "\u0645\u062F\u0629",
|
|
67502
|
-
durations: "\u0645\u062F\u062F",
|
|
67503
|
-
easing: "\u062A\u0633\u0647\u064A\u0644",
|
|
67504
|
-
easings: "\u0623\u0646\u0645\u0627\u0637_\u0627\u0644\u062A\u0633\u0647\u064A\u0644",
|
|
67505
68565
|
effectRow: "\u0635\u0641_\u0627\u0644\u062A\u0623\u062B\u064A\u0631",
|
|
67506
68566
|
effects: "\u062A\u0623\u062B\u064A\u0631\u0627\u062A",
|
|
67507
68567
|
elevation: "\u0627\u0631\u062A\u0641\u0627\u0639",
|
|
67508
68568
|
emitIds: "\u0645\u0639\u0631\u0641\u0627\u062A_\u0627\u0644\u0628\u062B",
|
|
67509
68569
|
emits: "\u064A\u0635\u062F\u0631",
|
|
67510
68570
|
emitsScope: "\u0646\u0637\u0627\u0642_\u0627\u0644\u0625\u0635\u062F\u0627\u0631",
|
|
67511
|
-
emphasized: "\u0645\u0624\u0643\u062F",
|
|
67512
|
-
emptyAsset: "\u0623\u0635\u0644_\u0641\u0627\u0631\u063A",
|
|
67513
68571
|
enabled: "\u0645\u064F\u0641\u0639\u0651\u0644",
|
|
67514
|
-
|
|
68572
|
+
entities: "\u0643\u064A\u0627\u0646\u0627\u062A",
|
|
67515
68573
|
entity: "\u0643\u064A\u0627\u0646",
|
|
67516
68574
|
entityBindingDescription: "\u0648\u0635\u0641_\u0631\u0628\u0637_\u0627\u0644\u0643\u064A\u0627\u0646",
|
|
67517
68575
|
entityBindingSynonyms: "\u0645\u0631\u0627\u062F\u0641\u0627\u062A_\u0631\u0628\u0637_\u0627\u0644\u0643\u064A\u0627\u0646",
|
|
@@ -67519,56 +68577,37 @@ var ar_default = {
|
|
|
67519
68577
|
entityId: "\u0645\u0639\u0631\u0641_\u0627\u0644\u0643\u064A\u0627\u0646",
|
|
67520
68578
|
entityRebindable: "\u0642\u0627\u0628\u0644_\u0644\u0625\u0639\u0627\u062F\u0629_\u0631\u0628\u0637_\u0627\u0644\u0643\u064A\u0627\u0646",
|
|
67521
68579
|
entityRefIds: "\u0645\u0639\u0631\u0641\u0627\u062A_\u0645\u0631\u062C\u0639_\u0627\u0644\u0643\u064A\u0627\u0646",
|
|
67522
|
-
entityType: "\u0646\u0648\u0639_\u0627\u0644\u0643\u064A\u0627\u0646",
|
|
67523
68580
|
entries: "\u0625\u062F\u062E\u0627\u0644\u0627\u062A",
|
|
67524
68581
|
env: "\u0628\u064A\u0626\u0629",
|
|
67525
68582
|
equals: "\u064A\u0633\u0627\u0648\u064A",
|
|
67526
|
-
error: "\u062E\u0637\u0623",
|
|
67527
|
-
errorAsset: "\u0623\u0635\u0644_\u0627\u0644\u062E\u0637\u0623",
|
|
67528
|
-
errorForeground: "\u0645\u0642\u062F\u0645\u0629_\u0627\u0644\u062E\u0637\u0623",
|
|
67529
68583
|
event: "\u062D\u062F\u062B",
|
|
67530
68584
|
eventId: "\u0645\u0639\u0631\u0641_\u0627\u0644\u062D\u062F\u062B",
|
|
67531
68585
|
eventIds: "\u0645\u0639\u0631\u0641\u0627\u062A_\u0627\u0644\u062D\u062F\u062B",
|
|
67532
68586
|
events: "\u0623\u062D\u062F\u0627\u062B",
|
|
67533
|
-
exit: "\u062E\u0631\u0648\u062C",
|
|
67534
|
-
expand: "\u062A\u0648\u0633\u064A\u0639",
|
|
67535
68587
|
expects: "\u064A\u062A\u0648\u0642\u0639",
|
|
67536
68588
|
exposes: "\u064A\u0639\u0631\u0636",
|
|
68589
|
+
extend: "\u0627\u0645\u062A\u062F\u0627\u062F",
|
|
67537
68590
|
extends: "\u064A\u0645\u062A\u062F",
|
|
67538
68591
|
extendsId: "\u0645\u0639\u0631\u0641_\u0627\u0644\u0627\u0645\u062A\u062F\u0627\u062F",
|
|
67539
|
-
family: "\u0639\u0627\u0626\u0644\u0629",
|
|
67540
|
-
fast: "\u0633\u0631\u064A\u0639",
|
|
67541
|
-
features: "\u0645\u064A\u0632\u0627\u062A",
|
|
67542
68592
|
field: "\u062D\u0642\u0644",
|
|
67543
68593
|
fields: "\u062D\u0642\u0648\u0644",
|
|
67544
68594
|
flowPattern: "\u0646\u0645\u0637_\u0627\u0644\u062A\u062F\u0641\u0642",
|
|
67545
|
-
foreground: "\u0645\u0642\u062F\u0645\u0629",
|
|
67546
68595
|
foreignKey: "\u0645\u0641\u062A\u0627\u062D_\u0623\u062C\u0646\u0628\u064A",
|
|
67547
68596
|
formPattern: "\u0646\u0645\u0637_\u0627\u0644\u0646\u0645\u0648\u0630\u062C",
|
|
68597
|
+
forwardedFrom: "\u0645\u0648\u062C\u0647_\u0645\u0646",
|
|
67548
68598
|
from: "\u0645\u0646",
|
|
67549
68599
|
geometry: "\u0647\u0646\u062F\u0633\u0629",
|
|
67550
68600
|
guard: "\u062D\u0627\u0631\u0633",
|
|
67551
68601
|
guards: "\u062D\u0631\u0627\u0633",
|
|
67552
68602
|
headers: "\u062A\u0631\u0648\u064A\u0633\u0627\u062A",
|
|
67553
|
-
headingMajor: "\u0639\u0646\u0648\u0627\u0646_\u0631\u0626\u064A\u0633\u064A",
|
|
67554
|
-
headingMinor: "\u0639\u0646\u0648\u0627\u0646_\u0641\u0631\u0639\u064A",
|
|
67555
|
-
hover: "\u062A\u0645\u0631\u064A\u0631",
|
|
67556
68603
|
icon: "\u0623\u064A\u0642\u0648\u0646\u0629",
|
|
67557
68604
|
iconography: "\u0623\u064A\u0642\u0648\u0646\u0627\u062A",
|
|
67558
68605
|
id: "\u0645\u0639\u0631\u0641",
|
|
67559
68606
|
identity: "\u0647\u0648\u064A\u0629",
|
|
67560
68607
|
illustration: "\u0631\u0633\u0645_\u062A\u0648\u0636\u064A\u062D\u064A",
|
|
67561
68608
|
inbound: "\u0648\u0627\u0631\u062F",
|
|
67562
|
-
info: "\u0645\u0639\u0644\u0648\u0645\u0627\u062A",
|
|
67563
|
-
infoForeground: "\u0645\u0642\u062F\u0645\u0629_\u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062A",
|
|
67564
68609
|
initialEffects: "\u0627\u0644\u062A\u0623\u062B\u064A\u0631\u0627\u062A_\u0627\u0644\u0623\u0648\u0644\u064A\u0629",
|
|
67565
|
-
input: "\u0625\u062F\u062E\u0627\u0644",
|
|
67566
|
-
inputHeightLg: "\u0627\u0631\u062A\u0641\u0627\u0639_\u0627\u0644\u0625\u062F\u062E\u0627\u0644_\u0643\u0628\u064A\u0631",
|
|
67567
|
-
inputHeightMd: "\u0627\u0631\u062A\u0641\u0627\u0639_\u0627\u0644\u0625\u062F\u062E\u0627\u0644_\u0645\u062A\u0648\u0633\u0637",
|
|
67568
|
-
inputHeightSm: "\u0627\u0631\u062A\u0641\u0627\u0639_\u0627\u0644\u0625\u062F\u062E\u0627\u0644_\u0635\u063A\u064A\u0631",
|
|
67569
68610
|
instances: "\u0646\u0633\u062E",
|
|
67570
|
-
instant: "\u0641\u0648\u0631\u064A",
|
|
67571
|
-
intents: "\u0646\u0648\u0627\u064A\u0627",
|
|
67572
68611
|
interactive: "\u062A\u0641\u0627\u0639\u0644\u064A",
|
|
67573
68612
|
interval: "\u0641\u0627\u0635\u0644_\u0632\u0645\u0646\u064A",
|
|
67574
68613
|
intrinsic: "\u062C\u0648\u0647\u0631\u064A",
|
|
@@ -67583,30 +68622,22 @@ var ar_default = {
|
|
|
67583
68622
|
knob: "\u0645\u0642\u0628\u0636",
|
|
67584
68623
|
label: "\u062A\u0633\u0645\u064A\u0629",
|
|
67585
68624
|
ledger: "\u0633\u062C\u0644",
|
|
67586
|
-
lg: "\u0643\u0628\u064A\u0631",
|
|
67587
|
-
lineHeight: "\u0627\u0631\u062A\u0641\u0627\u0639_\u0627\u0644\u0633\u0637\u0631",
|
|
67588
|
-
linear: "\u062E\u0637\u064A",
|
|
67589
68625
|
linkedEntity: "\u0643\u064A\u0627\u0646_\u0645\u0631\u062A\u0628\u0637",
|
|
67590
68626
|
linkedEntityId: "\u0645\u0639\u0631\u0641_\u0627\u0644\u0643\u064A\u0627\u0646_\u0627\u0644\u0645\u0631\u062A\u0628\u0637",
|
|
67591
68627
|
listPattern: "\u0646\u0645\u0637_\u0627\u0644\u0642\u0627\u0626\u0645\u0629",
|
|
67592
68628
|
listens: "\u064A\u0633\u062A\u0645\u0639",
|
|
67593
|
-
loadingAsset: "\u0623\u0635\u0644_\u0627\u0644\u062A\u062D\u0645\u064A\u0644",
|
|
67594
68629
|
location: "\u0645\u0648\u0642\u0639",
|
|
67595
68630
|
max: "\u0623\u0642\u0635\u0649",
|
|
67596
68631
|
maxAttempts: "\u0623\u0642\u0635\u0649_\u0639\u062F\u062F_\u0645\u062D\u0627\u0648\u0644\u0627\u062A",
|
|
67597
68632
|
min: "\u0623\u062F\u0646\u0649",
|
|
67598
|
-
mode: "\u0648\u0636\u0639",
|
|
67599
|
-
monoFamily: "\u0639\u0627\u0626\u0644\u0629_\u0623\u062D\u0627\u062F\u064A\u0629_\u0627\u0644\u0645\u0633\u0627\u0641\u0629",
|
|
67600
68633
|
motion: "\u062D\u0631\u0643\u0629",
|
|
67601
|
-
|
|
67602
|
-
mutedForeground: "\u0645\u0642\u062F\u0645\u0629_\u062E\u0627\u0641\u062A\u0629",
|
|
68634
|
+
mounts: "\u062A\u0631\u0643\u064A\u0628\u0627\u062A",
|
|
67603
68635
|
name: "\u0627\u0633\u0645",
|
|
67604
|
-
|
|
67605
|
-
numeric: "\u0631\u0642\u0645\u064A",
|
|
68636
|
+
omit: "\u0627\u0633\u062A\u0628\u0639\u0627\u062F",
|
|
67606
68637
|
onDelete: "\u0639\u0646\u062F_\u0627\u0644\u062D\u0630\u0641",
|
|
67607
68638
|
onEntry: "\u0639\u0646\u062F_\u0627\u0644\u062F\u062E\u0648\u0644",
|
|
67608
68639
|
onExit: "\u0639\u0646\u062F_\u0627\u0644\u062E\u0631\u0648\u062C",
|
|
67609
|
-
|
|
68640
|
+
only: "\u0641\u0642\u0637",
|
|
67610
68641
|
orbital: "\u0645\u062F\u0627\u0631",
|
|
67611
68642
|
orbitalId: "\u0645\u0639\u0631\u0641_\u0627\u0644\u0645\u062F\u0627\u0631",
|
|
67612
68643
|
orbitals: "\u0645\u062F\u0627\u0631\u0627\u062A",
|
|
@@ -67621,19 +68652,14 @@ var ar_default = {
|
|
|
67621
68652
|
pattern: "\u0646\u0645\u0637",
|
|
67622
68653
|
patternPath: "\u0645\u0633\u0627\u0631_\u0627\u0644\u0646\u0645\u0637",
|
|
67623
68654
|
payload: "\u062D\u0645\u0648\u0644\u0629",
|
|
68655
|
+
payloadEntity: "\u0643\u064A\u0627\u0646_\u0627\u0644\u062D\u0645\u0648\u0644\u0629",
|
|
67624
68656
|
payloadMapping: "\u062A\u062E\u0637\u064A\u0637_\u0627\u0644\u062D\u0645\u0648\u0644\u0629",
|
|
67625
68657
|
payloadSchema: "\u0645\u062E\u0637\u0637_\u0627\u0644\u062D\u0645\u0648\u0644\u0629",
|
|
67626
68658
|
persistence: "\u0627\u0633\u062A\u0645\u0631\u0627\u0631\u064A\u0629",
|
|
67627
68659
|
personas: "\u0634\u062E\u0635\u064A\u0627\u062A",
|
|
67628
|
-
placeholder: "\u0646\u0627\u0626\u0628",
|
|
67629
|
-
popoverElevation: "\u0627\u0631\u062A\u0641\u0627\u0639_\u0627\u0644\u0646\u0627\u0641\u0630\u0629_\u0627\u0644\u0645\u0646\u0628\u062B\u0642\u0629",
|
|
67630
68660
|
presentation: "\u0639\u0631\u0636_\u062A\u0642\u062F\u064A\u0645\u064A",
|
|
67631
|
-
press: "\u0636\u063A\u0637",
|
|
67632
|
-
primary: "\u0623\u0633\u0627\u0633\u064A",
|
|
67633
68661
|
primaryColor: "\u0627\u0644\u0644\u0648\u0646_\u0627\u0644\u0623\u0633\u0627\u0633\u064A",
|
|
67634
68662
|
primaryEntity: "\u0627\u0644\u0643\u064A\u0627\u0646_\u0627\u0644\u0623\u0633\u0627\u0633\u064A",
|
|
67635
|
-
primaryForeground: "\u0645\u0642\u062F\u0645\u0629_\u0623\u0633\u0627\u0633\u064A\u0629",
|
|
67636
|
-
primaryHover: "\u0623\u0633\u0627\u0633\u064A_\u0639\u0646\u062F_\u0627\u0644\u062A\u0645\u0631\u064A\u0631",
|
|
67637
68663
|
primaryKey: "\u0645\u0641\u062A\u0627\u062D_\u0623\u0633\u0627\u0633\u064A",
|
|
67638
68664
|
priority: "\u0623\u0648\u0644\u0648\u064A\u0629",
|
|
67639
68665
|
prop: "\u062E\u0627\u0635\u064A\u0629",
|
|
@@ -67641,14 +68667,12 @@ var ar_default = {
|
|
|
67641
68667
|
props: "\u062E\u0648\u0627\u0635",
|
|
67642
68668
|
provides: "\u064A\u0648\u0641\u0631",
|
|
67643
68669
|
radii: "\u0623\u0646\u0635\u0627\u0641_\u0623\u0642\u0637\u0627\u0631",
|
|
67644
|
-
radiusContainer: "\u0646\u0635\u0641_\u0642\u0637\u0631_\u0627\u0644\u062D\u0627\u0648\u064A\u0629",
|
|
67645
|
-
radiusInteractive: "\u0646\u0635\u0641_\u0642\u0637\u0631_\u0627\u0644\u062A\u0641\u0627\u0639\u0644\u064A",
|
|
67646
|
-
radiusPill: "\u0646\u0635\u0641_\u0642\u0637\u0631_\u0627\u0644\u0643\u0628\u0633\u0648\u0644\u0629",
|
|
67647
68670
|
read: "\u0642\u0631\u0627\u0621\u0629",
|
|
67648
68671
|
read_policy: "\u0633\u064A\u0627\u0633\u0629_\u0627\u0644\u0642\u0631\u0627\u0621\u0629",
|
|
67649
68672
|
reconnect: "\u0625\u0639\u0627\u062F\u0629_\u0627\u0644\u0627\u062A\u0635\u0627\u0644",
|
|
67650
68673
|
ref: "\u0645\u0631\u062C\u0639",
|
|
67651
68674
|
refId: "\u0645\u0639\u0631\u0641_\u0627\u0644\u0645\u0631\u062C\u0639",
|
|
68675
|
+
reference: "\u0645\u0631\u062C\u0639\u064A\u0629",
|
|
67652
68676
|
relatedLinks: "\u0631\u0648\u0627\u0628\u0637_\u0630\u0627\u062A_\u0635\u0644\u0629",
|
|
67653
68677
|
relation: "\u0639\u0644\u0627\u0642\u0629",
|
|
67654
68678
|
renames: "\u0625\u0639\u0627\u062F\u0629_\u062A\u0633\u0645\u064A\u0629",
|
|
@@ -67659,21 +68683,13 @@ var ar_default = {
|
|
|
67659
68683
|
requires: "\u064A\u062A\u0637\u0644\u0628",
|
|
67660
68684
|
resolved: "\u0645\u062D\u0644\u0648\u0644",
|
|
67661
68685
|
resource: "\u0645\u0648\u0631\u062F",
|
|
67662
|
-
ring: "\u062D\u0644\u0642\u0629",
|
|
67663
68686
|
role: "\u062F\u0648\u0631",
|
|
67664
|
-
|
|
67665
|
-
rowHeightNormal: "\u0627\u0631\u062A\u0641\u0627\u0639_\u0627\u0644\u0635\u0641_\u0627\u0644\u0639\u0627\u062F\u064A",
|
|
67666
|
-
rowHeightSpacious: "\u0627\u0631\u062A\u0641\u0627\u0639_\u0627\u0644\u0635\u0641_\u0627\u0644\u0648\u0627\u0633\u0639",
|
|
68687
|
+
roles: "\u0623\u062F\u0648\u0627\u0631",
|
|
67667
68688
|
runtime: "\u0648\u0642\u062A_\u0627\u0644\u062A\u0634\u063A\u064A\u0644",
|
|
67668
|
-
scale: "\u0645\u0642\u064A\u0627\u0633",
|
|
67669
68689
|
schemaVersion: "\u0625\u0635\u062F\u0627\u0631_\u0627\u0644\u0645\u062E\u0637\u0637",
|
|
67670
68690
|
scope: "\u0646\u0637\u0627\u0642",
|
|
67671
68691
|
scopeOverridden: "\u0627\u0644\u0646\u0637\u0627\u0642_\u0645\u064F\u062A\u062C\u0627\u0648\u064E\u0632",
|
|
67672
|
-
secondary: "\u062B\u0627\u0646\u0648\u064A",
|
|
67673
|
-
secondaryForeground: "\u0645\u0642\u062F\u0645\u0629_\u062B\u0627\u0646\u0648\u064A\u0629",
|
|
67674
|
-
secondaryHover: "\u062B\u0627\u0646\u0648\u064A_\u0639\u0646\u062F_\u0627\u0644\u062A\u0645\u0631\u064A\u0631",
|
|
67675
68692
|
secretEnv: "\u0628\u064A\u0626\u0629_\u0633\u0631\u064A\u0629",
|
|
67676
|
-
sectionGap: "\u0641\u062C\u0648\u0629_\u0627\u0644\u0642\u0633\u0645",
|
|
67677
68693
|
sections: "\u0623\u0642\u0633\u0627\u0645",
|
|
67678
68694
|
semanticRole: "\u062F\u0648\u0631_\u062F\u0644\u0627\u0644\u064A",
|
|
67679
68695
|
serverPath: "\u0645\u0633\u0627\u0631_\u0627\u0644\u062E\u0627\u062F\u0645",
|
|
@@ -67683,47 +68699,20 @@ var ar_default = {
|
|
|
67683
68699
|
shared: "\u0645\u0634\u062A\u0631\u0643",
|
|
67684
68700
|
singleton: "\u0648\u062D\u064A\u062F",
|
|
67685
68701
|
site: "\u0645\u0648\u0642\u0639_\u0627\u0644\u0648\u064A\u0628",
|
|
67686
|
-
size: "\u062D\u062C\u0645",
|
|
67687
|
-
slot: "\u0641\u062A\u062D\u0629",
|
|
67688
68702
|
slots: "\u0641\u062A\u062D\u0627\u062A",
|
|
67689
|
-
slow: "\u0628\u0637\u064A\u0621",
|
|
67690
|
-
sm: "\u0635\u063A\u064A\u0631",
|
|
67691
68703
|
softDelete: "\u062D\u0630\u0641_\u0646\u0627\u0639\u0645",
|
|
67692
68704
|
source: "\u0645\u0635\u062F\u0631",
|
|
67693
68705
|
sourceBehavior: "\u0633\u0644\u0648\u0643_\u0627\u0644\u0645\u0635\u062F\u0631",
|
|
67694
68706
|
sourceEntityDefinition: "\u062A\u0639\u0631\u064A\u0641_\u0643\u064A\u0627\u0646_\u0627\u0644\u0645\u0635\u062F\u0631",
|
|
67695
|
-
space0: "\u0645\u0633\u0627\u0641\u06290",
|
|
67696
|
-
space1: "\u0645\u0633\u0627\u0641\u06291",
|
|
67697
|
-
space10: "\u0645\u0633\u0627\u0641\u062910",
|
|
67698
|
-
space11: "\u0645\u0633\u0627\u0641\u062911",
|
|
67699
|
-
space12: "\u0645\u0633\u0627\u0641\u062912",
|
|
67700
|
-
space2: "\u0645\u0633\u0627\u0641\u06292",
|
|
67701
|
-
space3: "\u0645\u0633\u0627\u0641\u06293",
|
|
67702
|
-
space4: "\u0645\u0633\u0627\u0641\u06294",
|
|
67703
|
-
space5: "\u0645\u0633\u0627\u0641\u06295",
|
|
67704
|
-
space6: "\u0645\u0633\u0627\u0641\u06296",
|
|
67705
|
-
space7: "\u0645\u0633\u0627\u0641\u06297",
|
|
67706
|
-
space8: "\u0645\u0633\u0627\u0641\u06298",
|
|
67707
|
-
space9: "\u0645\u0633\u0627\u0641\u06299",
|
|
67708
68707
|
spacing: "\u062A\u0628\u0627\u0639\u062F",
|
|
67709
|
-
spring: "\u0632\u0646\u0628\u0631\u0643\u064A",
|
|
67710
|
-
standard: "\u0642\u064A\u0627\u0633\u064A",
|
|
67711
68708
|
stateMachine: "\u0622\u0644\u0629_\u062D\u0627\u0644\u0629",
|
|
67712
68709
|
states: "\u062D\u0627\u0644\u0627\u062A",
|
|
67713
|
-
strokeWidth: "\u0633\u064F\u0645\u0643_\u0627\u0644\u062E\u0637",
|
|
67714
68710
|
style: "\u0623\u0633\u0644\u0648\u0628",
|
|
67715
68711
|
subDomain: "\u0645\u062C\u0627\u0644_\u0641\u0631\u0639\u064A",
|
|
67716
|
-
success: "\u0646\u062C\u0627\u062D",
|
|
67717
|
-
successForeground: "\u0645\u0642\u062F\u0645\u0629_\u0627\u0644\u0646\u062C\u0627\u062D",
|
|
67718
68712
|
suggestedGuards: "\u0627\u0644\u062D\u0631\u0627\u0633_\u0627\u0644\u0645\u0642\u062A\u0631\u062D\u0648\u0646",
|
|
67719
68713
|
summary: "\u0645\u0644\u062E\u0635",
|
|
67720
|
-
surface: "\u0633\u0637\u062D",
|
|
67721
|
-
surfaceHover: "\u0633\u0637\u062D_\u0639\u0646\u062F_\u0627\u0644\u062A\u0645\u0631\u064A\u0631",
|
|
67722
68714
|
surfaces: "\u0623\u0633\u0637\u062D",
|
|
67723
68715
|
synonyms: "\u0645\u0631\u0627\u062F\u0641\u0627\u062A",
|
|
67724
|
-
tableBorder: "\u062D\u062F_\u0627\u0644\u062C\u062F\u0648\u0644",
|
|
67725
|
-
tableHeader: "\u062A\u0631\u0648\u064A\u0633\u0629_\u0627\u0644\u062C\u062F\u0648\u0644",
|
|
67726
|
-
tableRowHover: "\u0635\u0641_\u0627\u0644\u062C\u062F\u0648\u0644_\u0639\u0646\u062F_\u0627\u0644\u062A\u0645\u0631\u064A\u0631",
|
|
67727
68716
|
target: "\u0647\u062F\u0641",
|
|
67728
68717
|
targetView: "\u0627\u0644\u0639\u0631\u0636_\u0627\u0644\u0645\u0633\u062A\u0647\u062F\u0641",
|
|
67729
68718
|
text: "\u0646\u0635",
|
|
@@ -67736,7 +68725,6 @@ var ar_default = {
|
|
|
67736
68725
|
timestamps: "\u0637\u0648\u0627\u0628\u0639_\u0632\u0645\u0646\u064A\u0629",
|
|
67737
68726
|
title: "\u0639\u0646\u0648\u0627\u0646",
|
|
67738
68727
|
to: "\u0625\u0644\u0649",
|
|
67739
|
-
toastElevation: "\u0627\u0631\u062A\u0641\u0627\u0639_\u0627\u0644\u0625\u0634\u0639\u0627\u0631_\u0627\u0644\u0645\u0624\u0642\u062A",
|
|
67740
68728
|
tokens: "\u0631\u0645\u0648\u0632",
|
|
67741
68729
|
trait: "\u0633\u0645\u0629",
|
|
67742
68730
|
traitEmbedIds: "\u0645\u0639\u0631\u0641\u0627\u062A_\u062A\u0636\u0645\u064A\u0646_\u0627\u0644\u0633\u0645\u0629",
|
|
@@ -67769,12 +68757,7 @@ var ar_default = {
|
|
|
67769
68757
|
version: "\u0625\u0635\u062F\u0627\u0631",
|
|
67770
68758
|
viewType: "\u0646\u0648\u0639_\u0627\u0644\u0639\u0631\u0636",
|
|
67771
68759
|
visual_prompt: "\u0645\u0648\u062C\u0647_\u0628\u0635\u0631\u064A",
|
|
67772
|
-
vocabulary: "\u0645\u0641\u0631\u062F\u0627\u062A"
|
|
67773
|
-
warning: "\u062A\u062D\u0630\u064A\u0631",
|
|
67774
|
-
warningForeground: "\u0645\u0642\u062F\u0645\u0629_\u0627\u0644\u062A\u062D\u0630\u064A\u0631",
|
|
67775
|
-
weight: "\u0648\u0632\u0646",
|
|
67776
|
-
xl: "\u0643\u0628\u064A\u0631_\u062C\u062F\u0627",
|
|
67777
|
-
xs: "\u0635\u063A\u064A\u0631_\u062C\u062F\u0627"
|
|
68760
|
+
vocabulary: "\u0645\u0641\u0631\u062F\u0627\u062A"
|
|
67778
68761
|
}
|
|
67779
68762
|
};
|
|
67780
68763
|
|
|
@@ -67819,7 +68802,13 @@ var sl_default = {
|
|
|
67819
68802
|
events: "dogodki",
|
|
67820
68803
|
event: "dogodek",
|
|
67821
68804
|
emitsScope: "oddajaObseg",
|
|
67822
|
-
identity: "identiteta"
|
|
68805
|
+
identity: "identiteta",
|
|
68806
|
+
pages: "strani",
|
|
68807
|
+
omit: "izloci",
|
|
68808
|
+
only: "samo",
|
|
68809
|
+
roles: "vloge",
|
|
68810
|
+
entities: "entitete",
|
|
68811
|
+
extend: "razsiritev"
|
|
67823
68812
|
},
|
|
67824
68813
|
shapes: {
|
|
67825
68814
|
Entity: "Entiteta",
|
|
@@ -67912,7 +68901,6 @@ var sl_default = {
|
|
|
67912
68901
|
duration: "trajanje",
|
|
67913
68902
|
money: "denar",
|
|
67914
68903
|
scalar: "skalar",
|
|
67915
|
-
opaque: "nepregledno",
|
|
67916
68904
|
file: "datoteka",
|
|
67917
68905
|
email: "eposta",
|
|
67918
68906
|
url: "url",
|
|
@@ -67923,6 +68911,11 @@ var sl_default = {
|
|
|
67923
68911
|
asset: "sredstvo",
|
|
67924
68912
|
component: "komponenta",
|
|
67925
68913
|
object: "objekt",
|
|
68914
|
+
array: "seznam",
|
|
68915
|
+
enum: "nastevanje",
|
|
68916
|
+
relation: "relacija",
|
|
68917
|
+
node: "vozlisce",
|
|
68918
|
+
union: "unija",
|
|
67926
68919
|
void: "prazno",
|
|
67927
68920
|
null: "nic",
|
|
67928
68921
|
any: "karkoli",
|
|
@@ -67951,16 +68944,11 @@ var sl_default = {
|
|
|
67951
68944
|
INIT: "ZACETEK"
|
|
67952
68945
|
},
|
|
67953
68946
|
orb: {
|
|
67954
|
-
"2xl": "2xv",
|
|
67955
|
-
"3xl": "3xv",
|
|
67956
|
-
"4xl": "4xv",
|
|
67957
68947
|
_metadata: "_metapodatki",
|
|
67958
|
-
|
|
67959
|
-
accentForeground: "poudarekOspredje",
|
|
68948
|
+
_resolved: "_razresen",
|
|
67960
68949
|
access_waivers: "dostop_izjeme",
|
|
67961
68950
|
alias: "vzdevek",
|
|
67962
68951
|
animations: "animacije",
|
|
67963
|
-
api: "api",
|
|
67964
68952
|
appliesTo: "veljaZa",
|
|
67965
68953
|
as: "kot",
|
|
67966
68954
|
aspect: "razmerje",
|
|
@@ -67968,31 +68956,10 @@ var sl_default = {
|
|
|
67968
68956
|
at: "pri",
|
|
67969
68957
|
auth: "avtentikacija",
|
|
67970
68958
|
auxiliaryEntities: "pomozneEntitete",
|
|
67971
|
-
background: "ozadje",
|
|
67972
68959
|
bakedName: "zapecenoIme",
|
|
67973
|
-
base: "osnova",
|
|
67974
68960
|
baseUrl: "osnovaUrl",
|
|
67975
68961
|
behavior: "vedenje",
|
|
67976
|
-
bodyDefault: "teloPrivzeto",
|
|
67977
|
-
bodyEmphasis: "teloPoudarjeno",
|
|
67978
|
-
bodyFamily: "teloDruzina",
|
|
67979
|
-
bodyQuiet: "teloTiho",
|
|
67980
|
-
border: "rob",
|
|
67981
|
-
borderHairline: "robLasek",
|
|
67982
|
-
borderHeavy: "robTezek",
|
|
67983
|
-
borderHover: "robLebdenje",
|
|
67984
|
-
borderStandard: "robStandard",
|
|
67985
|
-
buttonHeightLg: "visinaGumbaV",
|
|
67986
|
-
buttonHeightMd: "visinaGumbaSr",
|
|
67987
|
-
buttonHeightSm: "visinaGumbaM",
|
|
67988
68962
|
capabilities: "zmoznosti",
|
|
67989
|
-
caption: "napis",
|
|
67990
|
-
card: "kartica",
|
|
67991
|
-
cardElevation: "kartcaDvig",
|
|
67992
|
-
cardForeground: "kartcaOspredje",
|
|
67993
|
-
cardPaddingLg: "kartcaBlazinaV",
|
|
67994
|
-
cardPaddingMd: "kartcaBlazinaSr",
|
|
67995
|
-
cardPaddingSm: "kartcaBlazinaM",
|
|
67996
68963
|
cardinality: "kardinalnost",
|
|
67997
68964
|
category: "kategorija",
|
|
67998
68965
|
className: "imeRazreda",
|
|
@@ -68013,7 +68980,6 @@ var sl_default = {
|
|
|
68013
68980
|
darkMode: "temniNacin",
|
|
68014
68981
|
dataEntities: "podatkiEntitete",
|
|
68015
68982
|
default: "privzeto",
|
|
68016
|
-
defaultSize: "privzetaVelikost",
|
|
68017
68983
|
definerKnob: "definitorGumbek",
|
|
68018
68984
|
delayMs: "zakasnitevMs",
|
|
68019
68985
|
delete: "izbrisi",
|
|
@@ -68025,28 +68991,16 @@ var sl_default = {
|
|
|
68025
68991
|
designTokens: "oblikovanjeZetoni",
|
|
68026
68992
|
detailPattern: "vzorecPodrobnosti",
|
|
68027
68993
|
device: "naprava",
|
|
68028
|
-
dialogElevation: "dialogDvig",
|
|
68029
|
-
dialogPadding: "dialogBlazina",
|
|
68030
68994
|
dimension: "dimenzija",
|
|
68031
|
-
"display-1": "prikaz-1",
|
|
68032
|
-
"display-2": "prikaz-2",
|
|
68033
|
-
displayFamily: "prikazDruzina",
|
|
68034
68995
|
domainContext: "domenaKontekst",
|
|
68035
|
-
dramatic: "dramaticno",
|
|
68036
|
-
duration: "trajanje",
|
|
68037
|
-
durations: "trajanja",
|
|
68038
|
-
easing: "glajenje",
|
|
68039
|
-
easings: "glajenja",
|
|
68040
68996
|
effectRow: "ucinekVrstica",
|
|
68041
68997
|
effects: "ucinki",
|
|
68042
68998
|
elevation: "dvig",
|
|
68043
68999
|
emitIds: "oddajIdji",
|
|
68044
69000
|
emits: "oddaja",
|
|
68045
69001
|
emitsScope: "oddajaObseg",
|
|
68046
|
-
emphasized: "poudarjeno",
|
|
68047
|
-
emptyAsset: "sredstvoPrazno",
|
|
68048
69002
|
enabled: "omogoceno",
|
|
68049
|
-
|
|
69003
|
+
entities: "entitete",
|
|
68050
69004
|
entity: "entiteta",
|
|
68051
69005
|
entityBindingDescription: "entitetaVezavaOpis",
|
|
68052
69006
|
entityBindingSynonyms: "entitetaVezavaSopomenke",
|
|
@@ -68054,56 +69008,37 @@ var sl_default = {
|
|
|
68054
69008
|
entityId: "entitetaId",
|
|
68055
69009
|
entityRebindable: "entitetaPrevezljivo",
|
|
68056
69010
|
entityRefIds: "entitetaSklicIdji",
|
|
68057
|
-
entityType: "entitetaTip",
|
|
68058
69011
|
entries: "vnosi",
|
|
68059
69012
|
env: "okolje",
|
|
68060
69013
|
equals: "enako",
|
|
68061
|
-
error: "napaka",
|
|
68062
|
-
errorAsset: "sredstvoNapaka",
|
|
68063
|
-
errorForeground: "napakaOspredje",
|
|
68064
69014
|
event: "dogodek",
|
|
68065
69015
|
eventId: "dogodekId",
|
|
68066
69016
|
eventIds: "dogodekIdji",
|
|
68067
69017
|
events: "dogodki",
|
|
68068
|
-
exit: "izhod",
|
|
68069
|
-
expand: "razpni",
|
|
68070
69018
|
expects: "pricakuje",
|
|
68071
69019
|
exposes: "izpostavlja",
|
|
69020
|
+
extend: "razsiritev",
|
|
68072
69021
|
extends: "razsiri",
|
|
68073
69022
|
extendsId: "razsiriId",
|
|
68074
|
-
family: "druzina",
|
|
68075
|
-
fast: "hitro",
|
|
68076
|
-
features: "znacilke",
|
|
68077
69023
|
field: "polje",
|
|
68078
69024
|
fields: "polja",
|
|
68079
69025
|
flowPattern: "vzorecPoteka",
|
|
68080
|
-
foreground: "ospredje",
|
|
68081
69026
|
foreignKey: "tujiKljuc",
|
|
68082
69027
|
formPattern: "vzorecObrazca",
|
|
69028
|
+
forwardedFrom: "posredovanoOd",
|
|
68083
69029
|
from: "iz",
|
|
68084
69030
|
geometry: "geometrija",
|
|
68085
69031
|
guard: "strazar",
|
|
68086
69032
|
guards: "strazarji",
|
|
68087
69033
|
headers: "glave",
|
|
68088
|
-
headingMajor: "naslovVeliki",
|
|
68089
|
-
headingMinor: "naslovMali",
|
|
68090
|
-
hover: "lebdenje",
|
|
68091
69034
|
icon: "ikona",
|
|
68092
69035
|
iconography: "ikonografija",
|
|
68093
69036
|
id: "id",
|
|
68094
69037
|
identity: "identiteta",
|
|
68095
69038
|
illustration: "ilustracija",
|
|
68096
69039
|
inbound: "dohodno",
|
|
68097
|
-
info: "informacija",
|
|
68098
|
-
infoForeground: "infoOspredje",
|
|
68099
69040
|
initialEffects: "zacetnoUcinki",
|
|
68100
|
-
input: "vnos",
|
|
68101
|
-
inputHeightLg: "visinaVnosaV",
|
|
68102
|
-
inputHeightMd: "visinaVnosaSr",
|
|
68103
|
-
inputHeightSm: "visinaVnosaM",
|
|
68104
69041
|
instances: "primerki",
|
|
68105
|
-
instant: "trenutno",
|
|
68106
|
-
intents: "nameni",
|
|
68107
69042
|
interactive: "interaktivno",
|
|
68108
69043
|
interval: "interval",
|
|
68109
69044
|
intrinsic: "lastno",
|
|
@@ -68118,30 +69053,22 @@ var sl_default = {
|
|
|
68118
69053
|
knob: "gumbek",
|
|
68119
69054
|
label: "oznaka",
|
|
68120
69055
|
ledger: "knjiga",
|
|
68121
|
-
lg: "v",
|
|
68122
|
-
lineHeight: "visinaVrstice",
|
|
68123
|
-
linear: "linearno",
|
|
68124
69056
|
linkedEntity: "povezanaEntiteta",
|
|
68125
69057
|
linkedEntityId: "povezanaEntitetaId",
|
|
68126
69058
|
listPattern: "vzorecSeznama",
|
|
68127
69059
|
listens: "poslusa",
|
|
68128
|
-
loadingAsset: "sredstvoNalaganje",
|
|
68129
69060
|
location: "lokacija",
|
|
68130
69061
|
max: "najvec",
|
|
68131
69062
|
maxAttempts: "najvecPoskusov",
|
|
68132
69063
|
min: "najmanj",
|
|
68133
|
-
mode: "nacin",
|
|
68134
|
-
monoFamily: "monoDruzina",
|
|
68135
69064
|
motion: "gibanje",
|
|
68136
|
-
|
|
68137
|
-
mutedForeground: "zadusenoOspredje",
|
|
69065
|
+
mounts: "priklopi",
|
|
68138
69066
|
name: "ime",
|
|
68139
|
-
|
|
68140
|
-
numeric: "stevilsko",
|
|
69067
|
+
omit: "izloci",
|
|
68141
69068
|
onDelete: "obIzbrisi",
|
|
68142
69069
|
onEntry: "obVnos",
|
|
68143
69070
|
onExit: "obIzhod",
|
|
68144
|
-
|
|
69071
|
+
only: "samo",
|
|
68145
69072
|
orbital: "orbitala",
|
|
68146
69073
|
orbitalId: "orbitalaId",
|
|
68147
69074
|
orbitals: "orbitale",
|
|
@@ -68156,19 +69083,14 @@ var sl_default = {
|
|
|
68156
69083
|
pattern: "vzorec",
|
|
68157
69084
|
patternPath: "potVzorca",
|
|
68158
69085
|
payload: "podatki",
|
|
69086
|
+
payloadEntity: "podatkiEntiteta",
|
|
68159
69087
|
payloadMapping: "podatkiPreslikava",
|
|
68160
69088
|
payloadSchema: "podatkiShema",
|
|
68161
69089
|
persistence: "trajnost",
|
|
68162
69090
|
personas: "osebe",
|
|
68163
|
-
placeholder: "ograda",
|
|
68164
|
-
popoverElevation: "pojavnoOknoDvig",
|
|
68165
69091
|
presentation: "predstavitev",
|
|
68166
|
-
press: "pritisk",
|
|
68167
|
-
primary: "primarno",
|
|
68168
69092
|
primaryColor: "primarnaBarva",
|
|
68169
69093
|
primaryEntity: "primarnaEntiteta",
|
|
68170
|
-
primaryForeground: "primarnoOspredje",
|
|
68171
|
-
primaryHover: "primarnoLebdenje",
|
|
68172
69094
|
primaryKey: "primarniKljuc",
|
|
68173
69095
|
priority: "prioriteta",
|
|
68174
69096
|
prop: "rekvizit",
|
|
@@ -68176,14 +69098,12 @@ var sl_default = {
|
|
|
68176
69098
|
props: "rekviziti",
|
|
68177
69099
|
provides: "zagotavlja",
|
|
68178
69100
|
radii: "polmeri",
|
|
68179
|
-
radiusContainer: "polmerVsebnik",
|
|
68180
|
-
radiusInteractive: "polmerInteraktivno",
|
|
68181
|
-
radiusPill: "polmerTableta",
|
|
68182
69101
|
read: "beri",
|
|
68183
69102
|
read_policy: "beri_politika",
|
|
68184
69103
|
reconnect: "ponovnaPovezava",
|
|
68185
69104
|
ref: "sklic",
|
|
68186
69105
|
refId: "sklicId",
|
|
69106
|
+
reference: "referenca",
|
|
68187
69107
|
relatedLinks: "povezanePovezave",
|
|
68188
69108
|
relation: "relacija",
|
|
68189
69109
|
renames: "preimenovanja",
|
|
@@ -68194,21 +69114,13 @@ var sl_default = {
|
|
|
68194
69114
|
requires: "zahteva",
|
|
68195
69115
|
resolved: "razresen",
|
|
68196
69116
|
resource: "vir",
|
|
68197
|
-
ring: "obroc",
|
|
68198
69117
|
role: "vloga",
|
|
68199
|
-
|
|
68200
|
-
rowHeightNormal: "visinaVrsticeNormalna",
|
|
68201
|
-
rowHeightSpacious: "visinaVrsticeProstorna",
|
|
69118
|
+
roles: "vloge",
|
|
68202
69119
|
runtime: "izvajanje",
|
|
68203
|
-
scale: "merilo",
|
|
68204
69120
|
schemaVersion: "shemaRazlicica",
|
|
68205
69121
|
scope: "obseg",
|
|
68206
69122
|
scopeOverridden: "obsegPreglasen",
|
|
68207
|
-
secondary: "sekundarno",
|
|
68208
|
-
secondaryForeground: "sekundarnoOspredje",
|
|
68209
|
-
secondaryHover: "sekundarnoLebdenje",
|
|
68210
69123
|
secretEnv: "skrivnostOkolje",
|
|
68211
|
-
sectionGap: "odsekVrzel",
|
|
68212
69124
|
sections: "odseki",
|
|
68213
69125
|
semanticRole: "semanticnaVloga",
|
|
68214
69126
|
serverPath: "streznikPot",
|
|
@@ -68218,47 +69130,20 @@ var sl_default = {
|
|
|
68218
69130
|
shared: "skupno",
|
|
68219
69131
|
singleton: "edinec",
|
|
68220
69132
|
site: "mesto",
|
|
68221
|
-
size: "velikost",
|
|
68222
|
-
slot: "reza",
|
|
68223
69133
|
slots: "reze",
|
|
68224
|
-
slow: "pocasno",
|
|
68225
|
-
sm: "m",
|
|
68226
69134
|
softDelete: "mehkoIzbrisi",
|
|
68227
69135
|
source: "izvor",
|
|
68228
69136
|
sourceBehavior: "izvorVedenje",
|
|
68229
69137
|
sourceEntityDefinition: "izvorEntitetaDefinicija",
|
|
68230
|
-
space0: "razmik0",
|
|
68231
|
-
space1: "razmik1",
|
|
68232
|
-
space10: "razmik10",
|
|
68233
|
-
space11: "razmik11",
|
|
68234
|
-
space12: "razmik12",
|
|
68235
|
-
space2: "razmik2",
|
|
68236
|
-
space3: "razmik3",
|
|
68237
|
-
space4: "razmik4",
|
|
68238
|
-
space5: "razmik5",
|
|
68239
|
-
space6: "razmik6",
|
|
68240
|
-
space7: "razmik7",
|
|
68241
|
-
space8: "razmik8",
|
|
68242
|
-
space9: "razmik9",
|
|
68243
69138
|
spacing: "razmik",
|
|
68244
|
-
spring: "vzmet",
|
|
68245
|
-
standard: "standard",
|
|
68246
69139
|
stateMachine: "strojStanj",
|
|
68247
69140
|
states: "stanja",
|
|
68248
|
-
strokeWidth: "sirinaCrte",
|
|
68249
69141
|
style: "slog",
|
|
68250
69142
|
subDomain: "poddomena",
|
|
68251
|
-
success: "uspeh",
|
|
68252
|
-
successForeground: "uspehOspredje",
|
|
68253
69143
|
suggestedGuards: "predlaganoStrazarji",
|
|
68254
69144
|
summary: "povzetek",
|
|
68255
|
-
surface: "povrsina",
|
|
68256
|
-
surfaceHover: "povrsinaLebdenje",
|
|
68257
69145
|
surfaces: "povrsine",
|
|
68258
69146
|
synonyms: "sopomenke",
|
|
68259
|
-
tableBorder: "tabelaRob",
|
|
68260
|
-
tableHeader: "tabelaGlava",
|
|
68261
|
-
tableRowHover: "tabelaVrsticaLebdenje",
|
|
68262
69147
|
target: "cilj",
|
|
68263
69148
|
targetView: "ciljPogled",
|
|
68264
69149
|
text: "besedilo",
|
|
@@ -68271,7 +69156,6 @@ var sl_default = {
|
|
|
68271
69156
|
timestamps: "casovniZigi",
|
|
68272
69157
|
title: "naziv",
|
|
68273
69158
|
to: "do",
|
|
68274
|
-
toastElevation: "obvestiloDvig",
|
|
68275
69159
|
tokens: "zetoni",
|
|
68276
69160
|
trait: "znacilnost",
|
|
68277
69161
|
traitEmbedIds: "znacilnostVgraditevIdji",
|
|
@@ -68304,15 +69188,464 @@ var sl_default = {
|
|
|
68304
69188
|
version: "razlicica",
|
|
68305
69189
|
viewType: "tipPogleda",
|
|
68306
69190
|
visual_prompt: "vizualno_poziv",
|
|
68307
|
-
vocabulary: "besednjak"
|
|
68308
|
-
warning: "opozorilo",
|
|
68309
|
-
warningForeground: "opozoriloOspredje",
|
|
68310
|
-
weight: "utez",
|
|
68311
|
-
xl: "xv",
|
|
68312
|
-
xs: "xm"
|
|
69191
|
+
vocabulary: "besednjak"
|
|
68313
69192
|
}
|
|
68314
69193
|
};
|
|
68315
69194
|
|
|
69195
|
+
// src/i18n/lolo-lexer.ts
|
|
69196
|
+
var IDENT_START = /[\p{L}_]/u;
|
|
69197
|
+
var IDENT_CONTINUE = /[\p{L}\p{N}_/-]/u;
|
|
69198
|
+
var SIGIL_CONTINUE = /[\p{L}\p{N}_.]/u;
|
|
69199
|
+
var DIGIT = /[0-9]/;
|
|
69200
|
+
function lexLolo(source) {
|
|
69201
|
+
const tokens = [];
|
|
69202
|
+
let i = 0;
|
|
69203
|
+
const n = source.length;
|
|
69204
|
+
const push = (kind, start, end, text, textStart) => {
|
|
69205
|
+
tokens.push({
|
|
69206
|
+
kind,
|
|
69207
|
+
start,
|
|
69208
|
+
end,
|
|
69209
|
+
text: text ?? source.slice(start, end),
|
|
69210
|
+
textStart: textStart ?? start
|
|
69211
|
+
});
|
|
69212
|
+
};
|
|
69213
|
+
while (i < n) {
|
|
69214
|
+
const c = source[i];
|
|
69215
|
+
if (c === " " || c === " " || c === "\r" || c === "\n") {
|
|
69216
|
+
i++;
|
|
69217
|
+
continue;
|
|
69218
|
+
}
|
|
69219
|
+
if (c === "#") {
|
|
69220
|
+
const start2 = i;
|
|
69221
|
+
if (source[i + 1] === "=") {
|
|
69222
|
+
const close = source.indexOf("=#", i + 2);
|
|
69223
|
+
i = close === -1 ? n : close + 2;
|
|
69224
|
+
} else {
|
|
69225
|
+
const nl = source.indexOf("\n", i);
|
|
69226
|
+
i = nl === -1 ? n : nl;
|
|
69227
|
+
}
|
|
69228
|
+
push("comment", start2, i);
|
|
69229
|
+
continue;
|
|
69230
|
+
}
|
|
69231
|
+
if (c === ";" && source[i + 1] === ";") {
|
|
69232
|
+
const start2 = i;
|
|
69233
|
+
const nl = source.indexOf("\n", i);
|
|
69234
|
+
i = nl === -1 ? n : nl;
|
|
69235
|
+
push("comment", start2, i);
|
|
69236
|
+
continue;
|
|
69237
|
+
}
|
|
69238
|
+
if (c === '"') {
|
|
69239
|
+
const start2 = i;
|
|
69240
|
+
i++;
|
|
69241
|
+
while (i < n) {
|
|
69242
|
+
if (source[i] === "\\") {
|
|
69243
|
+
i += 2;
|
|
69244
|
+
continue;
|
|
69245
|
+
}
|
|
69246
|
+
if (source[i] === '"') {
|
|
69247
|
+
i++;
|
|
69248
|
+
break;
|
|
69249
|
+
}
|
|
69250
|
+
i++;
|
|
69251
|
+
}
|
|
69252
|
+
push("string", start2, Math.min(i, n));
|
|
69253
|
+
continue;
|
|
69254
|
+
}
|
|
69255
|
+
if (c === "@") {
|
|
69256
|
+
const start2 = i;
|
|
69257
|
+
i++;
|
|
69258
|
+
if (source[i] === "(") {
|
|
69259
|
+
i++;
|
|
69260
|
+
push("punct", start2, i);
|
|
69261
|
+
continue;
|
|
69262
|
+
}
|
|
69263
|
+
const nameStart = i;
|
|
69264
|
+
while (i < n && SIGIL_CONTINUE.test(source[i])) i++;
|
|
69265
|
+
push("sigil", start2, i, source.slice(nameStart, i), nameStart);
|
|
69266
|
+
continue;
|
|
69267
|
+
}
|
|
69268
|
+
if (c === "?") {
|
|
69269
|
+
const start2 = i;
|
|
69270
|
+
i++;
|
|
69271
|
+
if (i < n && IDENT_START.test(source[i])) {
|
|
69272
|
+
const nameStart = i;
|
|
69273
|
+
while (i < n && SIGIL_CONTINUE.test(source[i])) i++;
|
|
69274
|
+
push("payload-sigil", start2, i, source.slice(nameStart, i), nameStart);
|
|
69275
|
+
} else {
|
|
69276
|
+
push("payload-sigil", start2, i, "", i);
|
|
69277
|
+
}
|
|
69278
|
+
continue;
|
|
69279
|
+
}
|
|
69280
|
+
if (c === "-") {
|
|
69281
|
+
const start2 = i;
|
|
69282
|
+
if (source[i + 1] === ">") {
|
|
69283
|
+
i += 2;
|
|
69284
|
+
push("punct", start2, i);
|
|
69285
|
+
} else if (source[i + 1] === "-") {
|
|
69286
|
+
i += 2;
|
|
69287
|
+
push("punct", start2, i);
|
|
69288
|
+
} else if (source[i + 1] !== void 0 && DIGIT.test(source[i + 1])) {
|
|
69289
|
+
i++;
|
|
69290
|
+
while (i < n && (DIGIT.test(source[i]) || source[i] === ".")) i++;
|
|
69291
|
+
push("number", start2, i);
|
|
69292
|
+
} else {
|
|
69293
|
+
i++;
|
|
69294
|
+
push("identifier", start2, i);
|
|
69295
|
+
}
|
|
69296
|
+
continue;
|
|
69297
|
+
}
|
|
69298
|
+
if (DIGIT.test(c)) {
|
|
69299
|
+
const start2 = i;
|
|
69300
|
+
while (i < n && (DIGIT.test(source[i]) || source[i] === ".")) i++;
|
|
69301
|
+
push("number", start2, i);
|
|
69302
|
+
continue;
|
|
69303
|
+
}
|
|
69304
|
+
if (c === "=" || c === "!" || c === "<" || c === ">") {
|
|
69305
|
+
const start2 = i;
|
|
69306
|
+
i++;
|
|
69307
|
+
if (source[i] === "=") i++;
|
|
69308
|
+
const two = i - start2 === 2;
|
|
69309
|
+
push(two ? "identifier" : "punct", start2, i);
|
|
69310
|
+
continue;
|
|
69311
|
+
}
|
|
69312
|
+
if (c === "+" || c === "*" || c === "/" || c === "%") {
|
|
69313
|
+
const start2 = i;
|
|
69314
|
+
i++;
|
|
69315
|
+
push("identifier", start2, i);
|
|
69316
|
+
continue;
|
|
69317
|
+
}
|
|
69318
|
+
if (IDENT_START.test(c)) {
|
|
69319
|
+
const start2 = i;
|
|
69320
|
+
while (i < n && IDENT_CONTINUE.test(source[i])) i++;
|
|
69321
|
+
const text = source.slice(start2, i);
|
|
69322
|
+
push(text === "true" || text === "false" || text === "null" ? "literal" : "identifier", start2, i, text);
|
|
69323
|
+
continue;
|
|
69324
|
+
}
|
|
69325
|
+
const start = i;
|
|
69326
|
+
i++;
|
|
69327
|
+
if (c === ":" && source[i] === ":") i++;
|
|
69328
|
+
push("punct", start, i);
|
|
69329
|
+
}
|
|
69330
|
+
return tokens;
|
|
69331
|
+
}
|
|
69332
|
+
|
|
69333
|
+
// src/i18n/localize.ts
|
|
69334
|
+
var LOLO_SECTIONS = [
|
|
69335
|
+
"keywords",
|
|
69336
|
+
"shapes",
|
|
69337
|
+
"tags",
|
|
69338
|
+
"categories",
|
|
69339
|
+
"capabilities",
|
|
69340
|
+
"annotations",
|
|
69341
|
+
"sigils",
|
|
69342
|
+
"effects",
|
|
69343
|
+
"types",
|
|
69344
|
+
"units",
|
|
69345
|
+
"literals",
|
|
69346
|
+
"reservedEvents"
|
|
69347
|
+
];
|
|
69348
|
+
var CANON_ANY_ORDER = [
|
|
69349
|
+
"keywords",
|
|
69350
|
+
"shapes",
|
|
69351
|
+
"tags",
|
|
69352
|
+
"categories",
|
|
69353
|
+
"capabilities",
|
|
69354
|
+
"annotations",
|
|
69355
|
+
"sigils",
|
|
69356
|
+
"types",
|
|
69357
|
+
"units",
|
|
69358
|
+
"literals",
|
|
69359
|
+
"reservedEvents"
|
|
69360
|
+
];
|
|
69361
|
+
function forward(lang, sections, resolutionOrder, operators) {
|
|
69362
|
+
const canon = (native) => {
|
|
69363
|
+
for (const section of resolutionOrder) {
|
|
69364
|
+
for (const [english, value] of Object.entries(coreTables[lang][section])) {
|
|
69365
|
+
if (value === native) return english;
|
|
69366
|
+
}
|
|
69367
|
+
}
|
|
69368
|
+
if (operators) {
|
|
69369
|
+
for (const [english, value] of Object.entries(operators.operators)) {
|
|
69370
|
+
if (value === native) return english;
|
|
69371
|
+
}
|
|
69372
|
+
}
|
|
69373
|
+
return void 0;
|
|
69374
|
+
};
|
|
69375
|
+
const map = /* @__PURE__ */ new Map();
|
|
69376
|
+
const add = (english, native) => {
|
|
69377
|
+
if (canon(native) !== english) return;
|
|
69378
|
+
map.set(english, native);
|
|
69379
|
+
};
|
|
69380
|
+
for (const section of sections) {
|
|
69381
|
+
for (const [english, native] of Object.entries(coreTables[lang][section])) {
|
|
69382
|
+
add(english, native);
|
|
69383
|
+
}
|
|
69384
|
+
}
|
|
69385
|
+
if (operators) {
|
|
69386
|
+
for (const [english, native] of Object.entries(operators.operators)) {
|
|
69387
|
+
add(english, native);
|
|
69388
|
+
}
|
|
69389
|
+
}
|
|
69390
|
+
return map;
|
|
69391
|
+
}
|
|
69392
|
+
function localizeMap(lang, operators) {
|
|
69393
|
+
return forward(lang, LOLO_SECTIONS, CANON_ANY_ORDER, operators);
|
|
69394
|
+
}
|
|
69395
|
+
function isWordShaped(english) {
|
|
69396
|
+
return /^[A-Za-z_][A-Za-z0-9_/-]*$/.test(english);
|
|
69397
|
+
}
|
|
69398
|
+
var FIELD_BLOCK_HEADS = /* @__PURE__ */ new Set(["entity", "type", "config", "params", "variants", "tokens", "event"]);
|
|
69399
|
+
var EVENT_BLOCK_HEADS = /* @__PURE__ */ new Set(["listens", "emits", "events"]);
|
|
69400
|
+
var NAME_INTRODUCING = /* @__PURE__ */ new Set([
|
|
69401
|
+
"app",
|
|
69402
|
+
"orbital",
|
|
69403
|
+
"entity",
|
|
69404
|
+
"trait",
|
|
69405
|
+
"state",
|
|
69406
|
+
"page",
|
|
69407
|
+
"type",
|
|
69408
|
+
"event",
|
|
69409
|
+
"uses",
|
|
69410
|
+
"theme",
|
|
69411
|
+
"as",
|
|
69412
|
+
"extend"
|
|
69413
|
+
]);
|
|
69414
|
+
var NAME_PUNCT = /* @__PURE__ */ new Set(["->", "-->", "\u2192", ".", "--"]);
|
|
69415
|
+
function localizeLoloSource(source, lang, options = {}) {
|
|
69416
|
+
if (lang === "en") return source;
|
|
69417
|
+
const { operators } = options;
|
|
69418
|
+
const keywords = forward(lang, ["keywords"], CANON_ANY_ORDER);
|
|
69419
|
+
const shapes = forward(lang, ["shapes"], CANON_ANY_ORDER);
|
|
69420
|
+
const types = forward(lang, ["types"], ["types"]);
|
|
69421
|
+
const modifiers = forward(lang, ["tags", "categories", "capabilities", "keywords"], CANON_ANY_ORDER);
|
|
69422
|
+
const heads = forward(lang, ["effects"], ["effects"], operators);
|
|
69423
|
+
const sigils = forward(lang, ["sigils", "annotations"], ["sigils", "annotations"]);
|
|
69424
|
+
const bindingSigils = forward(lang, ["sigils"], ["sigils", "annotations"]);
|
|
69425
|
+
const literals = forward(lang, ["literals"], ["literals"]);
|
|
69426
|
+
const units = forward(lang, ["units"], ["units"]);
|
|
69427
|
+
const reservedEvents = forward(lang, ["reservedEvents"], ["reservedEvents"]);
|
|
69428
|
+
const tokens = lexLolo(source);
|
|
69429
|
+
const edits = [];
|
|
69430
|
+
const stack = [
|
|
69431
|
+
{
|
|
69432
|
+
kind: "root",
|
|
69433
|
+
stmtHead: void 0,
|
|
69434
|
+
blockHead: void 0,
|
|
69435
|
+
afterColon: false,
|
|
69436
|
+
sawEquals: false,
|
|
69437
|
+
refBody: false,
|
|
69438
|
+
parenHead: void 0,
|
|
69439
|
+
binderSeen: false
|
|
69440
|
+
}
|
|
69441
|
+
];
|
|
69442
|
+
const top = () => stack[stack.length - 1];
|
|
69443
|
+
let prev;
|
|
69444
|
+
const replace = (token, map) => {
|
|
69445
|
+
if (!isWordShaped(token.text)) return;
|
|
69446
|
+
const native = map.get(token.text);
|
|
69447
|
+
if (native === void 0 || native === token.text) return;
|
|
69448
|
+
edits.push({ start: token.textStart, end: token.end, text: native });
|
|
69449
|
+
};
|
|
69450
|
+
for (let index = 0; index < tokens.length; index++) {
|
|
69451
|
+
const token = tokens[index];
|
|
69452
|
+
if (token.kind === "comment") continue;
|
|
69453
|
+
const frame = top();
|
|
69454
|
+
const startsStatement = prev === void 0 || prev.text === "{" || prev.text === "}" || source.slice(prev.end, token.start).includes("\n");
|
|
69455
|
+
if (startsStatement) {
|
|
69456
|
+
frame.stmtHead = void 0;
|
|
69457
|
+
frame.afterColon = false;
|
|
69458
|
+
frame.sawEquals = false;
|
|
69459
|
+
}
|
|
69460
|
+
if (token.kind === "punct") {
|
|
69461
|
+
const text = source.slice(token.start, token.end);
|
|
69462
|
+
const child = (kind) => ({
|
|
69463
|
+
kind,
|
|
69464
|
+
stmtHead: void 0,
|
|
69465
|
+
blockHead: frame.stmtHead,
|
|
69466
|
+
afterColon: false,
|
|
69467
|
+
sawEquals: false,
|
|
69468
|
+
refBody: frame.refBody || frame.sawEquals,
|
|
69469
|
+
parenHead: void 0,
|
|
69470
|
+
binderSeen: false
|
|
69471
|
+
});
|
|
69472
|
+
if (text === "(" || text === "@(") {
|
|
69473
|
+
stack.push({ ...child(parenFrame(frame, prev)), blockHead: void 0 });
|
|
69474
|
+
if (top().kind === "binder-list") frame.binderSeen = true;
|
|
69475
|
+
} else if (text === "{") {
|
|
69476
|
+
stack.push(child(braceFrame(frame, prev)));
|
|
69477
|
+
} else if (text === "[") {
|
|
69478
|
+
stack.push(child(bracketFrame(frame, prev)));
|
|
69479
|
+
} else if (text === ")" || text === "}" || text === "]") {
|
|
69480
|
+
if (stack.length > 1) stack.pop();
|
|
69481
|
+
top().afterColon = false;
|
|
69482
|
+
top().sawEquals = false;
|
|
69483
|
+
} else if (text === ":") {
|
|
69484
|
+
frame.afterColon = true;
|
|
69485
|
+
} else if (text === "=") {
|
|
69486
|
+
frame.afterColon = false;
|
|
69487
|
+
frame.sawEquals = true;
|
|
69488
|
+
} else if (text === ",") {
|
|
69489
|
+
frame.afterColon = false;
|
|
69490
|
+
frame.sawEquals = false;
|
|
69491
|
+
frame.stmtHead = void 0;
|
|
69492
|
+
}
|
|
69493
|
+
prev = token;
|
|
69494
|
+
continue;
|
|
69495
|
+
}
|
|
69496
|
+
const opaque = frame.kind === "object" || frame.kind === "array" || frame.kind === "binder-list" || frame.kind === "binder-pair" && prev !== void 0 && prev.text === "(";
|
|
69497
|
+
if (token.kind === "sigil") {
|
|
69498
|
+
const dot = token.text.indexOf(".");
|
|
69499
|
+
const root = dot === -1 ? token.text : token.text.slice(0, dot);
|
|
69500
|
+
const native = (opaque || frame.kind === "paren" ? bindingSigils : sigils).get(root);
|
|
69501
|
+
if (native !== void 0 && native !== root) {
|
|
69502
|
+
edits.push({ start: token.textStart, end: token.textStart + root.length, text: native });
|
|
69503
|
+
}
|
|
69504
|
+
prev = token;
|
|
69505
|
+
continue;
|
|
69506
|
+
}
|
|
69507
|
+
if (token.kind === "payload-sigil" || token.kind === "string" || token.kind === "number") {
|
|
69508
|
+
prev = token;
|
|
69509
|
+
continue;
|
|
69510
|
+
}
|
|
69511
|
+
if (token.kind === "literal") {
|
|
69512
|
+
if (!opaque) replace(token, literals);
|
|
69513
|
+
prev = token;
|
|
69514
|
+
continue;
|
|
69515
|
+
}
|
|
69516
|
+
const prevText = prev === void 0 ? void 0 : source.slice(prev.start, prev.end);
|
|
69517
|
+
const afterName = prevText !== void 0 && (NAME_INTRODUCING.has(prevText) || NAME_PUNCT.has(prevText));
|
|
69518
|
+
if (token.text === "INIT" && !opaque && !frame.sawEquals) {
|
|
69519
|
+
replace(token, reservedEvents);
|
|
69520
|
+
if (frame.stmtHead === void 0) frame.stmtHead = token.text;
|
|
69521
|
+
prev = token;
|
|
69522
|
+
continue;
|
|
69523
|
+
}
|
|
69524
|
+
if (!opaque && !startsStatement && prev !== void 0 && prev.kind === "number") {
|
|
69525
|
+
replace(token, units);
|
|
69526
|
+
prev = token;
|
|
69527
|
+
continue;
|
|
69528
|
+
}
|
|
69529
|
+
switch (frame.kind) {
|
|
69530
|
+
case "paren": {
|
|
69531
|
+
if (prevText === "(") {
|
|
69532
|
+
frame.parenHead = token.text;
|
|
69533
|
+
replace(token, heads);
|
|
69534
|
+
}
|
|
69535
|
+
break;
|
|
69536
|
+
}
|
|
69537
|
+
case "binder-list":
|
|
69538
|
+
case "binder-pair":
|
|
69539
|
+
break;
|
|
69540
|
+
case "object":
|
|
69541
|
+
case "array":
|
|
69542
|
+
break;
|
|
69543
|
+
case "mods":
|
|
69544
|
+
if (!frame.afterColon) replace(token, modifiers);
|
|
69545
|
+
break;
|
|
69546
|
+
case "type-array":
|
|
69547
|
+
replace(token, types);
|
|
69548
|
+
break;
|
|
69549
|
+
case "block-fields": {
|
|
69550
|
+
if (frame.afterColon && !afterName) replace(token, types);
|
|
69551
|
+
break;
|
|
69552
|
+
}
|
|
69553
|
+
case "root":
|
|
69554
|
+
case "block-body": {
|
|
69555
|
+
if (!afterName) replace(token, frame.afterColon ? types : keywords);
|
|
69556
|
+
break;
|
|
69557
|
+
}
|
|
69558
|
+
}
|
|
69559
|
+
if ((frame.kind === "root" || frame.kind === "block-body") && prevText === "=") {
|
|
69560
|
+
replace(token, shapes);
|
|
69561
|
+
}
|
|
69562
|
+
if (frame.stmtHead === void 0) frame.stmtHead = token.text;
|
|
69563
|
+
prev = token;
|
|
69564
|
+
}
|
|
69565
|
+
return applyEdits(source, edits);
|
|
69566
|
+
}
|
|
69567
|
+
function parenFrame(frame, prev) {
|
|
69568
|
+
if (frame.kind === "binder-list") return "binder-pair";
|
|
69569
|
+
if (frame.kind === "paren" && !frame.binderSeen && prev !== void 0 && prev.text === frame.parenHead && (frame.parenHead === "let" || frame.parenHead === "fn" || frame.parenHead === "lambda")) {
|
|
69570
|
+
return "binder-list";
|
|
69571
|
+
}
|
|
69572
|
+
return "paren";
|
|
69573
|
+
}
|
|
69574
|
+
function braceFrame(frame, prev) {
|
|
69575
|
+
if (isExpression(frame.kind)) return "object";
|
|
69576
|
+
if (frame.kind === "block-fields" && prev !== void 0 && prev.text === "=") return "object";
|
|
69577
|
+
if (frame.refBody && frame.stmtHead === "config") return "object";
|
|
69578
|
+
if (frame.blockHead !== void 0 && EVENT_BLOCK_HEADS.has(frame.blockHead)) return "block-fields";
|
|
69579
|
+
if (frame.kind === "type-array") return "block-fields";
|
|
69580
|
+
if (frame.kind === "block-fields" && frame.afterColon) return "block-fields";
|
|
69581
|
+
const head = frame.stmtHead;
|
|
69582
|
+
return head !== void 0 && FIELD_BLOCK_HEADS.has(head) ? "block-fields" : "block-body";
|
|
69583
|
+
}
|
|
69584
|
+
function bracketFrame(frame, prev) {
|
|
69585
|
+
if (isExpression(frame.kind)) return "array";
|
|
69586
|
+
if (prev !== void 0 && prev.text === "=") return "array";
|
|
69587
|
+
if (frame.afterColon) return frame.kind === "block-fields" ? "type-array" : "array";
|
|
69588
|
+
return "mods";
|
|
69589
|
+
}
|
|
69590
|
+
function isExpression(kind) {
|
|
69591
|
+
return kind === "paren" || kind === "object" || kind === "array" || kind === "binder-list" || kind === "binder-pair";
|
|
69592
|
+
}
|
|
69593
|
+
function applyEdits(source, edits) {
|
|
69594
|
+
if (edits.length === 0) return source;
|
|
69595
|
+
edits.sort((a, b) => a.start - b.start);
|
|
69596
|
+
let out = "";
|
|
69597
|
+
let cursor = 0;
|
|
69598
|
+
for (const edit of edits) {
|
|
69599
|
+
if (edit.start < cursor) continue;
|
|
69600
|
+
out += source.slice(cursor, edit.start) + edit.text;
|
|
69601
|
+
cursor = edit.end;
|
|
69602
|
+
}
|
|
69603
|
+
return out + source.slice(cursor);
|
|
69604
|
+
}
|
|
69605
|
+
function localizeOrbValue(value, lang, options = {}) {
|
|
69606
|
+
if (lang === "en") return value;
|
|
69607
|
+
const orbKeys = forward(lang, ["orb"], ["orb"]);
|
|
69608
|
+
const types = forward(lang, ["types"], ["types"]);
|
|
69609
|
+
const tags = forward(lang, ["tags"], ["tags"]);
|
|
69610
|
+
const heads = forward(lang, ["effects"], ["effects"], options.operators);
|
|
69611
|
+
const sigils = forward(lang, ["sigils"], ["sigils", "annotations"]);
|
|
69612
|
+
const walk = (node, inExpression) => {
|
|
69613
|
+
if (Array.isArray(node)) {
|
|
69614
|
+
const head = node[0];
|
|
69615
|
+
const native = typeof head === "string" ? heads.get(head) : void 0;
|
|
69616
|
+
const isExpression2 = native !== void 0;
|
|
69617
|
+
const items = node.map(
|
|
69618
|
+
(child, index) => index === 0 && isExpression2 ? child : walk(child, inExpression || isExpression2)
|
|
69619
|
+
);
|
|
69620
|
+
if (native !== void 0) items[0] = native;
|
|
69621
|
+
return items;
|
|
69622
|
+
}
|
|
69623
|
+
if (node !== null && typeof node === "object") {
|
|
69624
|
+
const out = {};
|
|
69625
|
+
for (const [key, child] of Object.entries(node)) {
|
|
69626
|
+
const nativeKey = orbKeys.get(key) ?? key;
|
|
69627
|
+
let next = walk(child, inExpression);
|
|
69628
|
+
if (typeof next === "string") {
|
|
69629
|
+
if (key === "type" && !inExpression) next = types.get(next) ?? next;
|
|
69630
|
+
else if (key === "persistence") next = tags.get(next) ?? next;
|
|
69631
|
+
}
|
|
69632
|
+
out[nativeKey] = next;
|
|
69633
|
+
}
|
|
69634
|
+
return out;
|
|
69635
|
+
}
|
|
69636
|
+
if (typeof node === "string" && node.startsWith("@")) {
|
|
69637
|
+
const rest = node.slice(1);
|
|
69638
|
+
const dot = rest.indexOf(".");
|
|
69639
|
+
const root = dot === -1 ? rest : rest.slice(0, dot);
|
|
69640
|
+
const native = sigils.get(root);
|
|
69641
|
+
if (native === void 0) return node;
|
|
69642
|
+
return dot === -1 ? `@${native}` : `@${native}${rest.slice(dot)}`;
|
|
69643
|
+
}
|
|
69644
|
+
return node;
|
|
69645
|
+
};
|
|
69646
|
+
return walk(value, false);
|
|
69647
|
+
}
|
|
69648
|
+
|
|
68316
69649
|
// src/i18n/index.ts
|
|
68317
69650
|
var LANGUAGE_CODES = ["en", "ar", "sl"];
|
|
68318
69651
|
var I18N_SECTIONS = [
|
|
@@ -68390,12 +69723,28 @@ function parseI18nTables(raw, source) {
|
|
|
68390
69723
|
}
|
|
68391
69724
|
return { meta: raw.meta, ...sections };
|
|
68392
69725
|
}
|
|
69726
|
+
function parseNotationKeys(raw, source) {
|
|
69727
|
+
if (!isPlainObject(raw) || !("keys" in raw) || !Array.isArray(raw.keys)) {
|
|
69728
|
+
throw new Error(`notation file "${source}": expected { keys: string[] }`);
|
|
69729
|
+
}
|
|
69730
|
+
const keys = [];
|
|
69731
|
+
for (const key of raw.keys) {
|
|
69732
|
+
if (typeof key !== "string") {
|
|
69733
|
+
throw new Error(`notation file "${source}": every key must be a string`);
|
|
69734
|
+
}
|
|
69735
|
+
keys.push(key);
|
|
69736
|
+
}
|
|
69737
|
+
return keys;
|
|
69738
|
+
}
|
|
68393
69739
|
function parseOperatorTables(raw, source) {
|
|
68394
69740
|
if (!isPlainObject(raw) || !("operators" in raw) || !isStringRecord(raw.operators)) {
|
|
68395
69741
|
throw new Error(`operator table "${source}": expected { operators: Record<string,string> }`);
|
|
68396
69742
|
}
|
|
68397
69743
|
return { operators: raw.operators };
|
|
68398
69744
|
}
|
|
69745
|
+
var ORB_NOTATION_KEYS = new Set(
|
|
69746
|
+
parseNotationKeys(orb_notation_default, "orb-notation.json")
|
|
69747
|
+
);
|
|
68399
69748
|
var coreTables = {
|
|
68400
69749
|
en: parseI18nTables(en_default, "en.json"),
|
|
68401
69750
|
ar: parseI18nTables(ar_default, "ar.json"),
|
|
@@ -68436,6 +69785,19 @@ function checkI18nCoverage(input) {
|
|
|
68436
69785
|
const problems = [];
|
|
68437
69786
|
const { core, std, canonicalOperators } = input;
|
|
68438
69787
|
const enTable = core.en;
|
|
69788
|
+
for (const lang of LANGUAGE_CODES) {
|
|
69789
|
+
for (const key of Object.keys(core[lang].orb)) {
|
|
69790
|
+
if (ORB_NOTATION_KEYS.has(key)) {
|
|
69791
|
+
problems.push({
|
|
69792
|
+
lang,
|
|
69793
|
+
section: "orb",
|
|
69794
|
+
kind: "notation-in-vocabulary",
|
|
69795
|
+
key,
|
|
69796
|
+
detail: "design-system token name \u2014 notation, not language vocabulary"
|
|
69797
|
+
});
|
|
69798
|
+
}
|
|
69799
|
+
}
|
|
69800
|
+
}
|
|
68439
69801
|
for (const lang of LANGUAGE_CODES) {
|
|
68440
69802
|
const table = core[lang];
|
|
68441
69803
|
for (const section of I18N_SECTIONS) {
|
|
@@ -68615,6 +69977,6 @@ function reportIdenticalToEnglish(input) {
|
|
|
68615
69977
|
return problems;
|
|
68616
69978
|
}
|
|
68617
69979
|
|
|
68618
|
-
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, ANIMATION_NAMES, ANONYMOUS_USER, ASSET_ASPECTS, ASSET_DIMENSIONS, AgentDomainCategorySchema, AnimationDefSchema, AnimationNameSchema, AssetAspectSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetDimensionSchema, AssetSchema, AudioManifestSchema, 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, DEFAULT_UNIT_ANIMATION_ROWS, DEFAULT_VIEWER, DEV_TOKEN_PREFIX, 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, ExpectDeclarationSchema, ExpressionSchema, FIELD_TYPES, FieldSchema, FieldTypeSchema, FileValueSchema, GameSubCategorySchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, I18N_SECTIONS, INTEGRATORS_REGISTRY, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LANGUAGE_CODES, LOLO_FIRST_TOKEN_KEYWORDS, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, MANIFEST_ASSET_LICENSES, MANIFEST_CANVAS_AFFINITIES, MANIFEST_ENTRY_KINDS, MANIFEST_SOURCE_CATALOGS, ManifestAssetLicenseSchema, ManifestCanvasAffinitySchema, ManifestEntryKindSchema, ManifestEntrySchema, ManifestFrameSpecSchema, ManifestSourceCatalogSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema,
|
|
69980
|
+
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, ANIMATION_NAMES, ANONYMOUS_USER, ASSET_ASPECTS, ASSET_DIMENSIONS, AgentDomainCategorySchema, AnimationDefSchema, AnimationNameSchema, AssetAspectSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetDimensionSchema, AssetSchema, AudioManifestSchema, 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, DEFAULT_UNIT_ANIMATION_ROWS, DEFAULT_VIEWER, DEV_TOKEN_PREFIX, 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, ExpectDeclarationSchema, ExpressionSchema, FIELD_TYPES, FieldSchema, FieldTypeSchema, FileValueSchema, GameSubCategorySchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, I18N_SECTIONS, INTEGRATORS_REGISTRY, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LANGUAGE_CODES, LOLO_FIRST_TOKEN_KEYWORDS, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, MANIFEST_ASSET_LICENSES, MANIFEST_CANVAS_AFFINITIES, MANIFEST_ENTRY_KINDS, MANIFEST_SOURCE_CATALOGS, ManifestAssetLicenseSchema, ManifestCanvasAffinitySchema, ManifestEntryKindSchema, ManifestEntrySchema, ManifestFrameSpecSchema, ManifestSourceCatalogSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, ORB_NOTATION_KEYS, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalIdSchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalRefObjectSchema, OrbitalRefStringSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PATTERN_REGISTRY, PATTERN_TYPES, PageIdSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PaletteEntryIdSchema, PatternTypeSchema, PayloadFieldSchema, PayloadTypeWhenSchema, REFERENCE_CONFIG_TYPES, RENDER_BINDING_MARKER, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, RestAuthConfigSchema, RestServiceDefSchema, SECRET_CONFIG_TYPES, SEMANTIC_STRING_TYPES, SERVICE_TYPES, SExprAtomSchema, SExprDataSchema, SExprSchema, SHEET_PROJECTIONS, SPRITE_DIRECTIONS, SPRITE_SHEET_LAYOUT, ScenePosSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceIdSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SheetProjectionSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SoundEntrySchema, SpacingScaleSchema, SpriteDirectionSchema, SpriteSheetAtlasSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SubTextureSchema, SuggestedGuardSchema, TextureAtlasSchema, ThemeDefinitionSchema, ThemeIdSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TickIntervalSchema, TilesheetSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitIdSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TraitUIBindingSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, aliasMap, answerToMutations, answersToMutations, applyEventWiring, applyFactoryCallPlanMutation, applyListenPayloadMapping, applyRenderOverlay, asEntityId, asEventId, asOrbitalId, asPageId, asPaletteEntryId, asServiceId, asThemeId, asTraitId, assertNoUnsatisfiableEnum, atomic, buildEdgeCoveringWalk, buildGuardPayloads, buildRecommendationContext, buildReplayPaths, buildResolvedTraitConfigs, buildStateGraph, callService, categorizeRemovals, checkI18nCoverage, classifyWorkflow, clearSchemaCache, collectBindings, collectCallsiteCaptureChildren, collectEmbeddedTraitReferrers, collectReachableStates, collectRenderUiPatternTypes, collectTraitConfigRefAdjacency, collectTraitEmbedAdjacency, component_mapping_default as componentMapping, composeBehaviors, configRefEventKnob, constTruth, containsEntityBinding, containsPayloadBinding, contractFieldName, coreTables, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, decodeDevIdentityToken, defaultUnitAtlas, deref, deriveCollection, deriveExpectations, deriveId, deriveInputType, describeTensorMismatch, despawn, detectLayoutStrategy, detectPageContentReduction, diffFactoryCalls, diffOrbitalSchemas, diffSchemaSemantics, diffSchemas, doEffects, emit, encodeDevIdentityToken, entityAccessPolicies, entityAccessTable, event_contracts_default as eventContracts, eventKeyPropsOf, eventListPropsOf, expectedEntityName, extractPayloadFieldRef, findCompatiblePatterns, findPersonaInRoster, findService, fingerprintNode, formatRecommendationsForPrompt, gatherTensorLastDim, generatePatternDescription, generateQuestions, getAllPatternTypes, getArgs, getBindingExamples, getComponentForPattern, getDefaultAnimationsForRole, getEmittedEvents, getEntity, getEntityCardinality, getInteractionModelForDomain, getNestedValue, getOperator, getOrbAllowedPatterns, getOrbAllowedPatternsCompact, getOrbAllowedPatternsFiltered, getOrbAllowedPatternsSlim, getPage, getPages, getPatternActionsRef, getPatternDefinition, getPatternFieldsContract, getPatternMetadata, getPatternPropsCompact, getPatternsGroupedByCategory, getRemovals, getSchemaCacheStats, getServiceNames, getTrait, getTraitConfig, getTraitName, getVocabulary, hasService, hasSignificantPageReduction, idKindOf, idPrefix, inferTsType, insertChildAtPath, integrators_registry_default as integratorsRegistry, isBinding, isCallSiteConfigDeclaration, isCircuitEvent, isContentBodyPattern, isContentBodyPatternType, isContentMainWriter, isDestructiveChange, isDrawHostPattern, isDrawablePattern, isEffect, isEmailValue, isEntityAwarePattern, isEntityCall, isEntityId, isEntityReference, isEntityReferenceAny, isEventId, isEventPayloadValue, isFieldValue, isFileValue, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMainSlotRenderUi, isMcpService, isOrbitalDefinition, isOrbitalId, isPageId, isPageReference, isPageReferenceObject, isPageReferenceString, isPaletteEntryId, isPhoneValue, isPlanSnapshot, isReferenceConfigType, isRenderBindingMarker, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isSecretConfigType, isSemanticStringType, isSemanticStringValue, isServiceId, isServiceReference, isServiceReferenceObject, isSessionHistoryEntry, isSocketService, isTensorValue, isThemeId, isThemeReference, isTraitFieldRef, isTraitId, isUrlValue, isUuidValue, isValidBinding, isValidPatternType, isValueInputPattern, languageOfLoloFirstToken, languageOfOrbTopLevelKeys, ledgerCurName, ledgerRename, ledgerResolveName, lexLolo, localizeLoloSource, localizeMap, localizeOrbValue, manifestToAssetCatalog, mapTensorLastDim, maskSecretConfigValues, matchAssetQuery, mergeEntityFrame, mintId, navigate, navigateBack, navigatePatternPath, normalizeCallSiteConfigToValues, normalizeTraitRef, normalizeUserContext, notify, overrideDeclaredKnobs, parseAssetKey, parseAssetQuery, parseBinding, parseEntityRef, parseI18nTables, parseImportedTraitRef, parseOperatorTables, parseOrbitalRef, parseOrbitalSchema, parsePageRef, parseServiceRef, patterns_registry_default as patternsRegistry, persist, persistenceModeAllowsOverrides, personaFromIdentityRow, recommendPatterns, reduceToOwners, ref, registry, rehydrateKnobDefs, removeChildAtPath, renderUI, renderUiPatternTypesOf, replaceChildAtPath, reportIdenticalToEnglish, requiresConfirmation, resolveConfigRefEventName, resolveContentOwners, resolveDefaultViewer, resolvePageContentOwner, resolvePersonaSpec, safeParseOrbitalSchema, schemaToIR, set, setPropAtPath, sexpr, signatureToParamsSchema, spawn, summarizeOrbital, summarizeSchema, swap, tensorLastDimSize, tensorShape, toBindingRoot, traitDeclaresConfigForward, traitReferencesCallsitePayload, translateOverlaysToParams, validateAssetAnimations, validateBindingInContext, validateContract, walkSExpr, walkStatePairs, watch, widenTier };
|
|
68619
69981
|
//# sourceMappingURL=index.js.map
|
|
68620
69982
|
//# sourceMappingURL=index.js.map
|