Initial commit

This commit is contained in:
Alejandro Martinez
2026-02-12 02:04:10 +01:00
commit f09af719cf
13433 changed files with 2193445 additions and 0 deletions

53
node_modules/astro/dist/assets/fonts/config.js generated vendored Normal file
View File

@@ -0,0 +1,53 @@
import { z } from "zod";
import { FONT_TYPES } from "./constants.js";
const weightSchema = z.union([z.string(), z.number()]);
const styleSchema = z.enum(["normal", "italic", "oblique"]);
const displaySchema = z.enum(["auto", "block", "swap", "fallback", "optional"]);
const familyPropertiesSchema = z.object({
weight: weightSchema.optional(),
style: styleSchema.optional(),
display: displaySchema.optional(),
stretch: z.string().optional(),
featureSettings: z.string().optional(),
variationSettings: z.string().optional(),
unicodeRange: z.array(z.string()).nonempty().optional()
});
const fallbacksSchema = z.object({
fallbacks: z.array(z.string()).optional(),
optimizedFallbacks: z.boolean().optional()
});
const requiredFamilyAttributesSchema = z.object({
name: z.string(),
cssVariable: z.string()
});
const _fontProviderSchema = z.object({
name: z.string(),
config: z.record(z.string(), z.any()).optional(),
init: z.custom((v) => typeof v === "function").optional(),
resolveFont: z.custom((v) => typeof v === "function"),
listFonts: z.custom((v) => typeof v === "function").optional()
}).strict();
const fontProviderSchema = z.custom((v) => {
return _fontProviderSchema.safeParse(v).success;
}, "Invalid FontProvider object");
const fontFamilySchema = z.object({
...requiredFamilyAttributesSchema.shape,
...fallbacksSchema.shape,
...familyPropertiesSchema.omit({
weight: true,
style: true
}).shape,
provider: fontProviderSchema,
options: z.record(z.string(), z.any()).optional(),
weights: z.array(weightSchema).nonempty().optional(),
styles: z.array(styleSchema).nonempty().optional(),
subsets: z.array(z.string()).nonempty().optional(),
formats: z.array(z.enum(FONT_TYPES)).nonempty().optional()
}).strict();
export {
displaySchema,
fontFamilySchema,
fontProviderSchema,
styleSchema,
weightSchema
};