@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.
- package/dist/external/paraglide/messages/_index.d.ts.map +1 -1
- package/dist/external/paraglide/messages/_index.js +5 -3
- package/dist/external/paraglide/messages/en.js +1 -1
- package/dist/external/paraglide/messages/fr.js +1 -1
- package/dist/external/paraglide/messages/tl.js +1 -1
- package/dist/external/paraglide/messages.js +1 -1
- package/dist/external/paraglide/registry.js +1 -1
- package/dist/external/paraglide/runtime.d.ts +8 -189
- package/dist/external/paraglide/runtime.d.ts.map +1 -1
- package/dist/external/paraglide/runtime.js +90 -426
- package/dist/external/paraglide/server.d.ts +2 -4
- package/dist/external/paraglide/server.d.ts.map +1 -1
- package/dist/external/paraglide/server.js +20 -21
- package/dist/ui/components/MeltToaster/MeltToaster.svelte +61 -61
- package/dist/ui/components/ModalBase.svelte.d.ts +1 -8
- package/dist/ui/components/ModalBase.svelte.d.ts.map +1 -1
- package/dist/ui/components/NestedNavigation.svelte +106 -106
- package/dist/ui/components/accordion/PinyaAccordion.svelte.d.ts +1 -2
- package/dist/ui/components/accordion/PinyaAccordion.svelte.d.ts.map +1 -1
- package/dist/ui/components/accordion/PinyaAccordionItem.svelte.d.ts +1 -2
- package/dist/ui/components/accordion/PinyaAccordionItem.svelte.d.ts.map +1 -1
- package/dist/ui/elements/ImageIcon.svelte.d.ts +1 -4
- package/dist/ui/elements/ImageIcon.svelte.d.ts.map +1 -1
- package/dist/ui/elements/PinyaAnchorButton/PinyaAnchorButton.svelte.d.ts +1 -2
- package/dist/ui/elements/PinyaAnchorButton/PinyaAnchorButton.svelte.d.ts.map +1 -1
- package/dist/ui/elements/PinyaButton/PinyaButton.svelte.d.ts +1 -2
- package/dist/ui/elements/PinyaButton/PinyaButton.svelte.d.ts.map +1 -1
- package/dist/ui/elements/PinyaCard/PinyaCard.svelte.d.ts +1 -2
- package/dist/ui/elements/PinyaCard/PinyaCard.svelte.d.ts.map +1 -1
- package/dist/ui/elements/Placeholder.svelte.d.ts +1 -6
- package/dist/ui/elements/Placeholder.svelte.d.ts.map +1 -1
- package/dist/ui/elements/TextLink.svelte.d.ts +1 -2
- package/dist/ui/elements/TextLink.svelte.d.ts.map +1 -1
- 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,
|
|
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
|
-
|
|
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
|
};
|
|
@@ -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
|
|
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"
|
|
268
|
+
* @type {Array<"cookie" | "baseLocale" | "globalVariable" | "url" | "preferredLanguage" | "localStorage">}
|
|
352
269
|
*/
|
|
353
|
-
export const strategy: Array<"cookie" | "baseLocale" | "globalVariable" | "url" | "preferredLanguage" | "localStorage"
|
|
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 {
|
|
346
|
+
* @type {(newLocale: Locale, options?: { reload?: boolean }) => void}
|
|
436
347
|
*/
|
|
437
|
-
export let setLocale:
|
|
438
|
-
|
|
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":"
|
|
1
|
+
{"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../../../src/lib/external/paraglide/runtime.js"],"names":[],"mappings":"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"}
|