release: WRNexusJS 0.2.75

This commit is contained in:
2026-07-21 12:30:46 +05:30
parent 2ca2d02b22
commit 69b6cd431f
100 changed files with 2313 additions and 116 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@wrnexus/styles",
"version": "0.2.74",
"version": "0.2.75",
"type": "module",
"main": "src/index.ts",
"exports": {
+22
View File
@@ -111,7 +111,29 @@ export interface PwaConfig {
cacheName?: string;
}
export type DevToolbarPosition = "bottom-center" | "bottom-left" | "bottom-right";
export interface DevToolbarConfig {
enabled?: boolean;
position?: DevToolbarPosition;
defaultOpen?: boolean;
keyboardShortcut?: string;
scanOnNavigation?: boolean;
scanOnHmr?: boolean;
openEditor?: boolean;
editor?: string;
rules?: Partial<Record<string, boolean>>;
severity?: Partial<Record<string, "error" | "warning" | "info" | "suggestion">>;
ignoredRules?: string[];
ignoredPaths?: string[];
slowRequestMs?: number;
largeImageBytes?: number;
veryLargeImageBytes?: number;
}
export interface AppConfig {
/** Development-only page diagnostics toolbar. Enabled by default in development. */
devToolbar?: boolean | DevToolbarConfig;
/** Raw HTML appended to every page's `<head>` (e.g. CDN stylesheet links). */
head?: string | string[];
/** Global SEO defaults merged with every page's exported `meta`. */