@verbaly/sveltekit 0.17.0 → 0.19.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/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Verbaly } from "verbaly";
1
+ import { SwitchLocaleOptions, switchLocale } from "verbaly";
2
2
  //#region src/index.d.ts
3
3
  declare const LOCALE_COOKIE: string;
4
4
  interface HandleEvent {
@@ -21,21 +21,11 @@ interface HandleInput {
21
21
  resolve(event: HandleEvent, opts?: ResolveOptions): Response | Promise<Response>;
22
22
  }
23
23
  interface VerbalyHandleOptions {
24
- /** supported locales — pass `locales` from 'virtual:verbaly' */
25
24
  locales: string[];
26
- /** default when nothing matches (defaults to the first locale) */
27
25
  fallback?: string;
28
- /** cookie read for the user's choice; `false` = Accept-Language only */
29
26
  cookie?: string | false;
30
27
  }
31
28
  declare function verbalyHandle(options: VerbalyHandleOptions): ({ event, resolve }: HandleInput) => Response | Promise<Response>;
32
- interface SwitchLocaleOptions {
33
- /** cookie written so the next SSR request matches; `false` = don't persist */
34
- cookie?: string | false;
35
- /** cookie lifetime in seconds (default 1 year) */
36
- maxAge?: number;
37
- }
38
- declare function switchLocale(instance: Pick<Verbaly, 'loadLocale' | 'setLocale'>, locale: string, options?: SwitchLocaleOptions): Promise<void>;
39
29
  //#endregion
40
- export { LOCALE_COOKIE, SwitchLocaleOptions, VerbalyHandleOptions, switchLocale, verbalyHandle };
30
+ export { LOCALE_COOKIE, type SwitchLocaleOptions, VerbalyHandleOptions, switchLocale, verbalyHandle };
41
31
  //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -1,8 +1,7 @@
1
- import { LOCALE_STORAGE_KEY, resolveRequestLocale } from "verbaly";
1
+ import { LOCALE_STORAGE_KEY, resolveRequestLocale, switchLocale } from "verbaly";
2
2
  //#region src/index.ts
3
3
  const LOCALE_COOKIE = LOCALE_STORAGE_KEY;
4
4
  const LANG_PLACEHOLDER = "%verbaly.lang%";
5
- const YEAR = 31536e3;
6
5
  function verbalyHandle(options) {
7
6
  const { locales, cookie = LOCALE_COOKIE } = options;
8
7
  if (!Array.isArray(locales) || locales.length === 0) throw new Error("[verbaly] verbalyHandle needs `locales` — pass the `locales` export from 'virtual:verbaly' (requires @verbaly/vite ≥0.16) or list them yourself: verbalyHandle({ locales: [...] })");
@@ -18,14 +17,6 @@ function verbalyHandle(options) {
18
17
  return resolve(event, { transformPageChunk: ({ html }) => html.replaceAll(LANG_PLACEHOLDER, resolved) });
19
18
  };
20
19
  }
21
- async function switchLocale(instance, locale, options = {}) {
22
- const { cookie = LOCALE_COOKIE, maxAge = YEAR } = options;
23
- await instance.loadLocale(locale);
24
- instance.setLocale(locale);
25
- if (typeof document === "undefined") return;
26
- if (cookie) document.cookie = `${cookie}=${encodeURIComponent(locale)}; path=/; max-age=${maxAge}; samesite=lax`;
27
- document.documentElement.lang = locale;
28
- }
29
20
  //#endregion
30
21
  export { LOCALE_COOKIE, switchLocale, verbalyHandle };
31
22
 
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":[],"sources":["../src/index.ts"],"sourcesContent":["import { LOCALE_STORAGE_KEY, resolveRequestLocale } from 'verbaly';\nimport type { Verbaly } from 'verbaly';\n\n// derived from core's localStorage key — one identity per user across channels\nexport const LOCALE_COOKIE: string = LOCALE_STORAGE_KEY;\nconst LANG_PLACEHOLDER = '%verbaly.lang%';\nconst YEAR = 31536000;\n\n// structural subset of @sveltejs/kit — no runtime or type dependency on kit\ninterface HandleEvent {\n request: Request;\n cookies: { get(name: string): string | undefined };\n locals: { verbalyLocale?: string };\n}\ninterface ResolveOptions {\n transformPageChunk?(input: { html: string; done: boolean }): string | undefined;\n}\ninterface HandleInput {\n event: HandleEvent;\n resolve(event: HandleEvent, opts?: ResolveOptions): Response | Promise<Response>;\n}\n\nexport interface VerbalyHandleOptions {\n /** supported locales — pass `locales` from 'virtual:verbaly' */\n locales: string[];\n /** default when nothing matches (defaults to the first locale) */\n fallback?: string;\n /** cookie read for the user's choice; `false` = Accept-Language only */\n cookie?: string | false;\n}\n\n// server hook: cookie → Accept-Language → fallback, per request.\n// Sets event.locals.verbalyLocale and fills %verbaly.lang% in app.html.\nexport function verbalyHandle(options: VerbalyHandleOptions) {\n const { locales, cookie = LOCALE_COOKIE } = options;\n if (!Array.isArray(locales) || locales.length === 0) {\n throw new Error(\n \"[verbaly] verbalyHandle needs `locales` — pass the `locales` export from 'virtual:verbaly' \" +\n '(requires @verbaly/vite ≥0.16) or list them yourself: verbalyHandle({ locales: [...] })',\n );\n }\n const fallback = options.fallback ?? locales[0]!;\n\n return ({ event, resolve }: HandleInput): Response | Promise<Response> => {\n const resolved = resolveRequestLocale({\n supported: locales,\n cookie: cookie ? event.cookies.get(cookie) : undefined,\n header: event.request.headers.get('accept-language'),\n fallback,\n });\n\n event.locals.verbalyLocale = resolved;\n return resolve(event, {\n transformPageChunk: ({ html }) => html.replaceAll(LANG_PLACEHOLDER, resolved),\n });\n };\n}\n\nexport interface SwitchLocaleOptions {\n /** cookie written so the next SSR request matches; `false` = don't persist */\n cookie?: string | false;\n /** cookie lifetime in seconds (default 1 year) */\n maxAge?: number;\n}\n\n// client-side switch: catalog first (no flash), then locale, then persistence\nexport async function switchLocale(\n instance: Pick<Verbaly, 'loadLocale' | 'setLocale'>,\n locale: string,\n options: SwitchLocaleOptions = {},\n): Promise<void> {\n const { cookie = LOCALE_COOKIE, maxAge = YEAR } = options;\n await instance.loadLocale(locale);\n instance.setLocale(locale);\n if (typeof document === 'undefined') return; // SSR-safe no-op\n if (cookie) {\n document.cookie = `${cookie}=${encodeURIComponent(locale)}; path=/; max-age=${maxAge}; samesite=lax`;\n }\n document.documentElement.lang = locale;\n}\n"],"mappings":";;AAIA,MAAa,gBAAwB;AACrC,MAAM,mBAAmB;AACzB,MAAM,OAAO;AA2Bb,SAAgB,cAAc,SAA+B;CAC3D,MAAM,EAAE,SAAS,SAAS,kBAAkB;CAC5C,IAAI,CAAC,MAAM,QAAQ,OAAO,KAAK,QAAQ,WAAW,GAChD,MAAM,IAAI,MACR,oLAEF;CAEF,MAAM,WAAW,QAAQ,YAAY,QAAQ;CAE7C,QAAQ,EAAE,OAAO,cAAyD;EACxE,MAAM,WAAW,qBAAqB;GACpC,WAAW;GACX,QAAQ,SAAS,MAAM,QAAQ,IAAI,MAAM,IAAI,KAAA;GAC7C,QAAQ,MAAM,QAAQ,QAAQ,IAAI,iBAAiB;GACnD;EACF,CAAC;EAED,MAAM,OAAO,gBAAgB;EAC7B,OAAO,QAAQ,OAAO,EACpB,qBAAqB,EAAE,WAAW,KAAK,WAAW,kBAAkB,QAAQ,EAC9E,CAAC;CACH;AACF;AAUA,eAAsB,aACpB,UACA,QACA,UAA+B,CAAC,GACjB;CACf,MAAM,EAAE,SAAS,eAAe,SAAS,SAAS;CAClD,MAAM,SAAS,WAAW,MAAM;CAChC,SAAS,UAAU,MAAM;CACzB,IAAI,OAAO,aAAa,aAAa;CACrC,IAAI,QACF,SAAS,SAAS,GAAG,OAAO,GAAG,mBAAmB,MAAM,EAAE,oBAAoB,OAAO;CAEvF,SAAS,gBAAgB,OAAO;AAClC"}
1
+ {"version":3,"file":"index.js","names":[],"sources":["../src/index.ts"],"sourcesContent":["import { LOCALE_STORAGE_KEY, resolveRequestLocale } from 'verbaly';\n\n// derived from core's localStorage key — one identity per user across channels\nexport const LOCALE_COOKIE: string = LOCALE_STORAGE_KEY;\nconst LANG_PLACEHOLDER = '%verbaly.lang%';\n\n// structural subset of @sveltejs/kit — no runtime or type dependency on kit\ninterface HandleEvent {\n request: Request;\n cookies: { get(name: string): string | undefined };\n locals: { verbalyLocale?: string };\n}\ninterface ResolveOptions {\n transformPageChunk?(input: { html: string; done: boolean }): string | undefined;\n}\ninterface HandleInput {\n event: HandleEvent;\n resolve(event: HandleEvent, opts?: ResolveOptions): Response | Promise<Response>;\n}\n\nexport interface VerbalyHandleOptions {\n locales: string[];\n fallback?: string;\n cookie?: string | false;\n}\n\n// server hook: cookie → Accept-Language → fallback, per request.\n// Sets event.locals.verbalyLocale and fills %verbaly.lang% in app.html.\nexport function verbalyHandle(options: VerbalyHandleOptions) {\n const { locales, cookie = LOCALE_COOKIE } = options;\n if (!Array.isArray(locales) || locales.length === 0) {\n throw new Error(\n \"[verbaly] verbalyHandle needs `locales` — pass the `locales` export from 'virtual:verbaly' \" +\n '(requires @verbaly/vite ≥0.16) or list them yourself: verbalyHandle({ locales: [...] })',\n );\n }\n const fallback = options.fallback ?? locales[0]!;\n\n return ({ event, resolve }: HandleInput): Response | Promise<Response> => {\n const resolved = resolveRequestLocale({\n supported: locales,\n cookie: cookie ? event.cookies.get(cookie) : undefined,\n header: event.request.headers.get('accept-language'),\n fallback,\n });\n\n event.locals.verbalyLocale = resolved;\n return resolve(event, {\n transformPageChunk: ({ html }) => html.replaceAll(LANG_PLACEHOLDER, resolved),\n });\n };\n}\n\n// switchLocale moved to core in 0.18.0 (shared with @verbaly/nuxt) same API, re-exported\nexport { switchLocale } from 'verbaly';\nexport type { SwitchLocaleOptions } from 'verbaly';\n"],"mappings":";;AAGA,MAAa,gBAAwB;AACrC,MAAM,mBAAmB;AAwBzB,SAAgB,cAAc,SAA+B;CAC3D,MAAM,EAAE,SAAS,SAAS,kBAAkB;CAC5C,IAAI,CAAC,MAAM,QAAQ,OAAO,KAAK,QAAQ,WAAW,GAChD,MAAM,IAAI,MACR,oLAEF;CAEF,MAAM,WAAW,QAAQ,YAAY,QAAQ;CAE7C,QAAQ,EAAE,OAAO,cAAyD;EACxE,MAAM,WAAW,qBAAqB;GACpC,WAAW;GACX,QAAQ,SAAS,MAAM,QAAQ,IAAI,MAAM,IAAI,KAAA;GAC7C,QAAQ,MAAM,QAAQ,QAAQ,IAAI,iBAAiB;GACnD;EACF,CAAC;EAED,MAAM,OAAO,gBAAgB;EAC7B,OAAO,QAAQ,OAAO,EACpB,qBAAqB,EAAE,WAAW,KAAK,WAAW,kBAAkB,QAAQ,EAC9E,CAAC;CACH;AACF"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verbaly/sveltekit",
3
- "version": "0.17.0",
3
+ "version": "0.19.0",
4
4
  "description": "SvelteKit SSR integration for Verbaly — per-request locale negotiation and flash-free hydration.",
5
5
  "keywords": [
6
6
  "i18n",
@@ -40,13 +40,12 @@
40
40
  "access": "public"
41
41
  },
42
42
  "peerDependencies": {
43
- "verbaly": "^0.17.0"
43
+ "verbaly": "^0.19.0"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@sveltejs/kit": "^2.69.2",
47
- "happy-dom": "^20.10.6",
48
47
  "svelte": "^5.56.4",
49
- "verbaly": "0.17.0"
48
+ "verbaly": "0.19.0"
50
49
  },
51
50
  "scripts": {
52
51
  "build": "tsdown",