@almadar/core 10.60.0 → 10.61.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 +1 -1
- package/dist/builders.js +2 -2
- package/dist/builders.js.map +1 -1
- package/dist/{entityAccess-BTHElnAf.d.ts → entityAccess-DU_mdtr5.d.ts} +1 -1
- package/dist/factory-runtime/index.d.ts +1 -1
- package/dist/factory-runtime/index.js +3 -2
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/{index-D9aomsLC.d.ts → index-C-qK6t2U.d.ts} +1 -1
- package/dist/index.d.ts +5 -5
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +2 -2
- package/dist/{schema-WnERh-P-.d.ts → schema-Dj4GC3Vo.d.ts} +5689 -1
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.js +3 -2
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { O as OrbitalSchema, a as OrbitalDefinition } from '../schema-
|
|
1
|
+
import { O as OrbitalSchema, a as OrbitalDefinition } from '../schema-Dj4GC3Vo.js';
|
|
2
2
|
import { h as CallSiteConfig, i as CallSiteConfigEntry, g as Trait } from '../trait-DgZ5Exel.js';
|
|
3
3
|
import { E as EntityField, a as EntityPersistence } from '../effect-a1W_hXyG.js';
|
|
4
4
|
import { MakeTraitRefOpts } from '../builders.js';
|
|
@@ -1176,8 +1176,8 @@ var ThemeDefinitionSchema = z.object({
|
|
|
1176
1176
|
variants: z.record(z.string(), ThemeVariantSchema).optional()
|
|
1177
1177
|
});
|
|
1178
1178
|
var ThemeRefStringSchema = z.string().regex(
|
|
1179
|
-
/^[A-Z][a-zA-Z0-9]*\.theme$/,
|
|
1180
|
-
'Theme reference must be
|
|
1179
|
+
/^([A-Z][a-zA-Z0-9]*\.theme|[a-z][a-z0-9]*(-[a-z0-9]+)*)$/,
|
|
1180
|
+
'Theme reference must be "Alias.theme" or a registry theme key (e.g., "linear-clean-light")'
|
|
1181
1181
|
);
|
|
1182
1182
|
var ThemeRefSchema = z.union([
|
|
1183
1183
|
ThemeDefinitionSchema,
|
|
@@ -1445,6 +1445,7 @@ var SchemaMetadataSchema = z.object({
|
|
|
1445
1445
|
z.object({
|
|
1446
1446
|
name: z.string().min(1, "Schema name is required"),
|
|
1447
1447
|
description: z.string().optional(),
|
|
1448
|
+
theme: ThemeRefSchema.optional(),
|
|
1448
1449
|
summary: z.string().optional(),
|
|
1449
1450
|
version: z.string().optional(),
|
|
1450
1451
|
domainContext: DomainContextSchema.optional(),
|