CSS was not being imported! Fixed: ✅ Added 'import ../styles/global.css' to BaseLayout.astro ✅ Rewrote CSS with plain CSS (not @apply which wasn't working) ✅ Cookie banner has inline styles as backup ✅ Font size: 16px base ✅ Solid colors: green-600 (#16a34a), gray-900 (#111827) ✅ Footer has policy links Build: 12 pages ✅
45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
export type EmulatedRegExpOptions = {
|
|
strategy?: string | null;
|
|
useEmulationGroups?: boolean;
|
|
};
|
|
/**
|
|
@typedef {{
|
|
strategy?: string | null;
|
|
useEmulationGroups?: boolean;
|
|
}} EmulatedRegExpOptions
|
|
*/
|
|
/**
|
|
Works the same as JavaScript's native `RegExp` constructor in all contexts, but can be given
|
|
results from `toDetails` to produce the same result as `toRegExp`.
|
|
@augments RegExp
|
|
*/
|
|
export class EmulatedRegExp extends RegExp {
|
|
/**
|
|
@overload
|
|
@param {string} pattern
|
|
@param {string} [flags]
|
|
@param {EmulatedRegExpOptions} [options]
|
|
*/
|
|
constructor(pattern: string, flags?: string, options?: EmulatedRegExpOptions);
|
|
/**
|
|
@overload
|
|
@param {EmulatedRegExp} pattern
|
|
@param {string} [flags]
|
|
*/
|
|
constructor(pattern: EmulatedRegExp, flags?: string);
|
|
/**
|
|
Can be used to serialize the arguments used to create the instance.
|
|
@type {{
|
|
pattern: string;
|
|
flags: string;
|
|
options: EmulatedRegExpOptions;
|
|
}}
|
|
*/
|
|
rawArgs: {
|
|
pattern: string;
|
|
flags: string;
|
|
options: EmulatedRegExpOptions;
|
|
};
|
|
#private;
|
|
}
|