@turnipxenon/pineapple 5.0.0-alpha.5 → 5.0.0-alpha.6

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.
Files changed (34) hide show
  1. package/dist/external/paraglide/messages/_index.d.ts.map +1 -1
  2. package/dist/external/paraglide/messages/_index.js +5 -3
  3. package/dist/external/paraglide/messages/en.js +1 -1
  4. package/dist/external/paraglide/messages/fr.js +1 -1
  5. package/dist/external/paraglide/messages/tl.js +1 -1
  6. package/dist/external/paraglide/messages.js +1 -1
  7. package/dist/external/paraglide/registry.js +1 -1
  8. package/dist/external/paraglide/runtime.d.ts +8 -189
  9. package/dist/external/paraglide/runtime.d.ts.map +1 -1
  10. package/dist/external/paraglide/runtime.js +90 -426
  11. package/dist/external/paraglide/server.d.ts +2 -4
  12. package/dist/external/paraglide/server.d.ts.map +1 -1
  13. package/dist/external/paraglide/server.js +20 -21
  14. package/dist/ui/components/MeltToaster/MeltToaster.svelte +61 -61
  15. package/dist/ui/components/ModalBase.svelte.d.ts +1 -8
  16. package/dist/ui/components/ModalBase.svelte.d.ts.map +1 -1
  17. package/dist/ui/components/NestedNavigation.svelte +106 -106
  18. package/dist/ui/components/accordion/PinyaAccordion.svelte.d.ts +1 -2
  19. package/dist/ui/components/accordion/PinyaAccordion.svelte.d.ts.map +1 -1
  20. package/dist/ui/components/accordion/PinyaAccordionItem.svelte.d.ts +1 -2
  21. package/dist/ui/components/accordion/PinyaAccordionItem.svelte.d.ts.map +1 -1
  22. package/dist/ui/elements/ImageIcon.svelte.d.ts +1 -4
  23. package/dist/ui/elements/ImageIcon.svelte.d.ts.map +1 -1
  24. package/dist/ui/elements/PinyaAnchorButton/PinyaAnchorButton.svelte.d.ts +1 -2
  25. package/dist/ui/elements/PinyaAnchorButton/PinyaAnchorButton.svelte.d.ts.map +1 -1
  26. package/dist/ui/elements/PinyaButton/PinyaButton.svelte.d.ts +1 -2
  27. package/dist/ui/elements/PinyaButton/PinyaButton.svelte.d.ts.map +1 -1
  28. package/dist/ui/elements/PinyaCard/PinyaCard.svelte.d.ts +1 -2
  29. package/dist/ui/elements/PinyaCard/PinyaCard.svelte.d.ts.map +1 -1
  30. package/dist/ui/elements/Placeholder.svelte.d.ts +1 -6
  31. package/dist/ui/elements/Placeholder.svelte.d.ts.map +1 -1
  32. package/dist/ui/elements/TextLink.svelte.d.ts +1 -2
  33. package/dist/ui/elements/TextLink.svelte.d.ts.map +1 -1
  34. package/package.json +16 -17
@@ -1 +1 @@
1
- {"version":3,"file":"_index.d.ts","sourceRoot":"","sources":["../../../../src/lib/external/paraglide/messages/_index.js"],"names":[],"mappings":"AAkBO,wCALG;IAAE,QAAQ,EAAE,WAAW,CAAC,OAAO,CAAC,CAAA;CAAE,YAClC;IAAE,MAAM,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;CAAE,GAC7B,MAAM,CAYjB;AAcM,kCALG,EAAE,YACF;IAAE,MAAM,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;CAAE,GAC7B,MAAM,CAYjB"}
1
+ {"version":3,"file":"_index.d.ts","sourceRoot":"","sources":["../../../../src/lib/external/paraglide/messages/_index.js"],"names":[],"mappings":"AAkBO,wCALG;IAAE,QAAQ,EAAE,WAAW,CAAC,OAAO,CAAC,CAAA;CAAE,YAClC;IAAE,MAAM,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;CAAE,GAC7B,MAAM,CAajB;AAcM,kCALG,EAAE,YACF;IAAE,MAAM,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;CAAE,GAC7B,MAAM,CAajB"}
@@ -1,4 +1,4 @@
1
- /* eslint-disable */
1
+ // eslint-disable
2
2
  import { getLocale, trackMessageCall, experimentalMiddlewareLocaleSplitting, isServer } from "../runtime.js"
3
3
  import * as en from "./en.js"
4
4
  import * as fr from "./fr.js"
@@ -24,7 +24,8 @@ export const example_message = (inputs, options = {}) => {
24
24
  trackMessageCall("example_message", locale)
25
25
  if (locale === "en") return en.example_message(inputs)
26
26
  if (locale === "fr") return fr.example_message(inputs)
27
- return tl.example_message(inputs)
27
+ if (locale === "tl") return tl.example_message(inputs)
28
+ return "example_message"
28
29
  };
29
30
  /**
30
31
  * This function has been compiled by [Paraglide JS](https://inlang.com/m/gerre34r).
@@ -47,5 +48,6 @@ export const settings = (inputs = {}, options = {}) => {
47
48
  trackMessageCall("settings", locale)
48
49
  if (locale === "en") return en.settings(inputs)
49
50
  if (locale === "fr") return fr.settings(inputs)
50
- return tl.settings(inputs)
51
+ if (locale === "tl") return tl.settings(inputs)
52
+ return "settings"
51
53
  };
@@ -1,4 +1,4 @@
1
- /* eslint-disable */
1
+ // eslint-disable
2
2
 
3
3
 
4
4
  export const example_message = /** @type {(inputs: { username: NonNullable<unknown> }) => string} */ (i) => {
@@ -1,4 +1,4 @@
1
- /* eslint-disable */
1
+ // eslint-disable
2
2
 
3
3
 
4
4
  export const example_message = /** @type {(inputs: { username: NonNullable<unknown> }) => string} */ (i) => {
@@ -1,4 +1,4 @@
1
- /* eslint-disable */
1
+ // eslint-disable
2
2
 
3
3
 
4
4
  export const example_message = /** @type {(inputs: { username: NonNullable<unknown> }) => string} */ (i) => {
@@ -1,4 +1,4 @@
1
- /* eslint-disable */
1
+ // eslint-disable
2
2
  export * from './messages/_index.js'
3
3
  // enabling auto-import by exposing all messages as m
4
4
  export * as m from './messages/_index.js'
@@ -1,4 +1,4 @@
1
- /* eslint-disable */
1
+ // eslint-disable
2
2
 
3
3
  /**
4
4
  * @param {import("./runtime.js").Locale} locale
@@ -34,14 +34,12 @@ export function assertIsLocale(input: any): Locale;
34
34
  /**
35
35
  * Extracts a cookie from the document.
36
36
  *
37
- * Will return undefined if the document is not available or if the cookie is not set.
37
+ * Will return undefined if the docuement is not available or if the cookie is not set.
38
38
  * The `document` object is not available in server-side rendering, so this function should not be called in that context.
39
39
  *
40
40
  * @returns {string | undefined}
41
41
  */
42
42
  export function extractLocaleFromCookie(): string | undefined;
43
- export function extractLocaleFromHeader(request: Request): Locale;
44
- export function extractLocaleFromNavigator(): Locale | undefined;
45
43
  /**
46
44
  * Extracts the locale from a given URL using native URLPattern.
47
45
  *
@@ -133,59 +131,6 @@ export function localizeUrl(url: string | URL, options?: {
133
131
  */
134
132
  export function deLocalizeUrl(url: string | URL): URL;
135
133
  export function aggregateGroups(match: any): Record<string, string | null | undefined>;
136
- /**
137
- * @typedef {object} ShouldRedirectServerInput
138
- * @property {Request} request
139
- * @property {string | URL} [url]
140
- * @property {ReturnType<typeof assertIsLocale>} [locale]
141
- *
142
- * @typedef {object} ShouldRedirectClientInput
143
- * @property {undefined} [request]
144
- * @property {string | URL} [url]
145
- * @property {ReturnType<typeof assertIsLocale>} [locale]
146
- *
147
- * @typedef {ShouldRedirectServerInput | ShouldRedirectClientInput} ShouldRedirectInput
148
- *
149
- * @typedef {object} ShouldRedirectResult
150
- * @property {boolean} shouldRedirect - Indicates whether the consumer should perform a redirect.
151
- * @property {ReturnType<typeof assertIsLocale>} locale - Locale resolved using the configured strategies.
152
- * @property {URL | undefined} redirectUrl - Destination URL when a redirect is required.
153
- */
154
- /**
155
- * Determines whether a redirect is required to align the current URL with the active locale.
156
- *
157
- * This helper mirrors the logic that powers `paraglideMiddleware`, but works in both server
158
- * and client environments. It evaluates the configured strategies in order, computes the
159
- * canonical localized URL, and reports when the current URL does not match.
160
- *
161
- * When called in the browser without arguments, the current `window.location.href` is used.
162
- *
163
- * @example
164
- * // Client side usage (e.g. TanStack Router beforeLoad hook)
165
- * async function beforeLoad({ location }) {
166
- * const decision = await shouldRedirect({ url: location.href });
167
- *
168
- * if (decision.shouldRedirect) {
169
- * throw redirect({ to: decision.redirectUrl.href });
170
- * }
171
- * }
172
- *
173
- * @example
174
- * // Server side usage with a Request
175
- * export async function handle(request) {
176
- * const decision = await shouldRedirect({ request });
177
- *
178
- * if (decision.shouldRedirect) {
179
- * return Response.redirect(decision.redirectUrl, 307);
180
- * }
181
- *
182
- * return render(request, decision.locale);
183
- * }
184
- *
185
- * @param {ShouldRedirectInput} [input]
186
- * @returns {Promise<ShouldRedirectResult>}
187
- */
188
- export function shouldRedirect(input?: ShouldRedirectInput): Promise<ShouldRedirectResult>;
189
134
  /**
190
135
  * High-level URL localization function optimized for client-side UI usage.
191
136
  *
@@ -295,32 +240,6 @@ export function trackMessageCall(safeModuleId: string, locale: Locale): void;
295
240
  * @returns {URL[]} List of localized URLs as URL objects
296
241
  */
297
242
  export function generateStaticLocalizedUrls(urls: (string | URL)[]): URL[];
298
- /**
299
- * Checks if the given strategy is a custom strategy.
300
- *
301
- * @param {any} strategy The name of the custom strategy to validate.
302
- * Must be a string that starts with "custom-" followed by alphanumeric characters, hyphens, or underscores.
303
- * @returns {boolean} Returns true if it is a custom strategy, false otherwise.
304
- */
305
- export function isCustomStrategy(strategy: any): boolean;
306
- /**
307
- * Defines a custom strategy that is executed on the server.
308
- *
309
- * @param {any} strategy The name of the custom strategy to define. Must follow the pattern custom-name with alphanumeric characters, hyphens, or underscores.
310
- * @param {CustomServerStrategyHandler} handler The handler for the custom strategy, which should implement
311
- * the method getLocale.
312
- * @returns {void}
313
- */
314
- export function defineCustomServerStrategy(strategy: any, handler: CustomServerStrategyHandler): void;
315
- /**
316
- * Defines a custom strategy that is executed on the client.
317
- *
318
- * @param {any} strategy The name of the custom strategy to define. Must follow the pattern custom-name with alphanumeric characters, hyphens, or underscores.
319
- * @param {CustomClientStrategyHandler} handler The handler for the custom strategy, which should implement the
320
- * methods getLocale and setLocale.
321
- * @returns {void}
322
- */
323
- export function defineCustomClientStrategy(strategy: any, handler: CustomClientStrategyHandler): void;
324
243
  /**
325
244
  * The project's base locale.
326
245
  *
@@ -344,13 +263,11 @@ export const cookieName: string;
344
263
  /** @type {number} */
345
264
  export const cookieMaxAge: number;
346
265
  /** @type {string} */
347
- export const cookieDomain: string;
348
- /** @type {string} */
349
266
  export const localStorageKey: string;
350
267
  /**
351
- * @type {Array<"cookie" | "baseLocale" | "globalVariable" | "url" | "preferredLanguage" | "localStorage" | `custom-${string}`>}
268
+ * @type {Array<"cookie" | "baseLocale" | "globalVariable" | "url" | "preferredLanguage" | "localStorage">}
352
269
  */
353
- export const strategy: Array<"cookie" | "baseLocale" | "globalVariable" | "url" | "preferredLanguage" | "localStorage" | `custom-${string}`>;
270
+ export const strategy: Array<"cookie" | "baseLocale" | "globalVariable" | "url" | "preferredLanguage" | "localStorage">;
354
271
  /**
355
272
  * The used URL patterns.
356
273
  *
@@ -412,9 +329,6 @@ export let getLocale: () => Locale;
412
329
  * @type {(fn: () => Locale) => void}
413
330
  */
414
331
  export const overwriteGetLocale: (fn: () => Locale) => void;
415
- /**
416
- * @typedef {(newLocale: Locale, options?: { reload?: boolean }) => void | Promise<void>} SetLocaleFn
417
- */
418
332
  /**
419
333
  * Set the locale.
420
334
  *
@@ -423,19 +337,18 @@ export const overwriteGetLocale: (fn: () => Locale) => void;
423
337
  * reloading is disabled, you need to ensure that the UI is updated
424
338
  * to reflect the new locale.
425
339
  *
426
- * If any custom strategy's \`setLocale\` function is async, then this
427
- * function will become async as well.
428
- *
429
340
  * @example
430
341
  * setLocale('en');
431
342
  *
432
343
  * @example
433
344
  * setLocale('en', { reload: false });
434
345
  *
435
- * @type {SetLocaleFn}
346
+ * @type {(newLocale: Locale, options?: { reload?: boolean }) => void}
436
347
  */
437
- export let setLocale: SetLocaleFn;
438
- export function overwriteSetLocale(fn: SetLocaleFn): void;
348
+ export let setLocale: (newLocale: Locale, options?: {
349
+ reload?: boolean;
350
+ }) => void;
351
+ export function overwriteSetLocale(fn: (newLocale: Locale) => void): void;
439
352
  /**
440
353
  * The origin of the current URL.
441
354
  *
@@ -465,92 +378,12 @@ export let overwriteGetUrlOrigin: (fn: () => string) => void;
465
378
  * they are defined. If a strategy returns an invalid locale,
466
379
  * it will fall back to the next strategy.
467
380
  *
468
- * Note: Custom server strategies are not supported in this synchronous version.
469
- * Use `extractLocaleFromRequestAsync` if you need custom server strategies with async getLocale methods.
470
- *
471
381
  * @example
472
382
  * const locale = extractLocaleFromRequest(request);
473
383
  *
474
384
  * @type {(request: Request) => Locale}
475
385
  */
476
386
  export const extractLocaleFromRequest: (request: Request) => Locale;
477
- /**
478
- * Asynchronously extracts a locale from a request.
479
- *
480
- * This function supports async custom server strategies, unlike the synchronous
481
- * `extractLocaleFromRequest`. Use this function when you have custom server strategies
482
- * that need to perform asynchronous operations (like database calls) in their getLocale method.
483
- *
484
- * The function first processes any custom server strategies asynchronously, then falls back
485
- * to the synchronous `extractLocaleFromRequest` for all other strategies.
486
- *
487
- * @see {@link https://github.com/opral/inlang-paraglide-js/issues/527#issuecomment-2978151022}
488
- *
489
- * @example
490
- * // Basic usage
491
- * const locale = await extractLocaleFromRequestAsync(request);
492
- *
493
- * @example
494
- * // With custom async server strategy
495
- * defineCustomServerStrategy("custom-database", {
496
- * getLocale: async (request) => {
497
- * const userId = extractUserIdFromRequest(request);
498
- * return await getUserLocaleFromDatabase(userId);
499
- * }
500
- * });
501
- *
502
- * const locale = await extractLocaleFromRequestAsync(request);
503
- *
504
- * @type {(request: Request) => Promise<Locale>}
505
- */
506
- export const extractLocaleFromRequestAsync: (request: Request) => Promise<Locale>;
507
- /**
508
- * @typedef {"cookie" | "baseLocale" | "globalVariable" | "url" | "preferredLanguage" | "localStorage"} BuiltInStrategy
509
- */
510
- /**
511
- * @typedef {`custom_${string}`} CustomStrategy
512
- */
513
- /**
514
- * @typedef {BuiltInStrategy | CustomStrategy} Strategy
515
- */
516
- /**
517
- * @typedef {Array<Strategy>} Strategies
518
- */
519
- /**
520
- * @typedef {{ getLocale: (request?: Request) => Promise<string | undefined> | (string | undefined) }} CustomServerStrategyHandler
521
- */
522
- /**
523
- * @typedef {{ getLocale: () => Promise<string|undefined> | (string | undefined), setLocale: (locale: string) => Promise<void> | void }} CustomClientStrategyHandler
524
- */
525
- /** @type {Map<string, CustomServerStrategyHandler>} */
526
- export const customServerStrategies: Map<string, CustomServerStrategyHandler>;
527
- /** @type {Map<string, CustomClientStrategyHandler>} */
528
- export const customClientStrategies: Map<string, CustomClientStrategyHandler>;
529
- export type ShouldRedirectServerInput = {
530
- request: Request;
531
- url?: string | URL | undefined;
532
- locale?: "en" | "fr" | "tl" | undefined;
533
- };
534
- export type ShouldRedirectClientInput = {
535
- request?: undefined;
536
- url?: string | URL | undefined;
537
- locale?: "en" | "fr" | "tl" | undefined;
538
- };
539
- export type ShouldRedirectInput = ShouldRedirectServerInput | ShouldRedirectClientInput;
540
- export type ShouldRedirectResult = {
541
- /**
542
- * - Indicates whether the consumer should perform a redirect.
543
- */
544
- shouldRedirect: boolean;
545
- /**
546
- * - Locale resolved using the configured strategies.
547
- */
548
- locale: ReturnType<typeof assertIsLocale>;
549
- /**
550
- * - Destination URL when a redirect is required.
551
- */
552
- redirectUrl: URL | undefined;
553
- };
554
387
  export type ParaglideAsyncLocalStorage = {
555
388
  getStore(): {
556
389
  locale?: Locale;
@@ -563,20 +396,6 @@ export type ParaglideAsyncLocalStorage = {
563
396
  messageCalls?: Set<string>;
564
397
  }, cb: any) => any;
565
398
  };
566
- export type SetLocaleFn = (newLocale: Locale, options?: {
567
- reload?: boolean;
568
- }) => void | Promise<void>;
569
- export type BuiltInStrategy = "cookie" | "baseLocale" | "globalVariable" | "url" | "preferredLanguage" | "localStorage";
570
- export type CustomStrategy = `custom_${string}`;
571
- export type Strategy = BuiltInStrategy | CustomStrategy;
572
- export type Strategies = Array<Strategy>;
573
- export type CustomServerStrategyHandler = {
574
- getLocale: (request?: Request) => Promise<string | undefined> | (string | undefined);
575
- };
576
- export type CustomClientStrategyHandler = {
577
- getLocale: () => Promise<string | undefined> | (string | undefined);
578
- setLocale: (locale: string) => Promise<void> | void;
579
- };
580
399
  /**
581
400
  * A locale that is available in the project.
582
401
  */
@@ -1 +1 @@
1
- {"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../../../src/lib/external/paraglide/runtime.js"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../../../src/lib/external/paraglide/runtime.js"],"names":[],"mappings":"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"}