@voyantjs/flights-ui 0.35.0 → 0.37.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.
Files changed (56) hide show
  1. package/dist/components/airport-combobox.d.ts.map +1 -1
  2. package/dist/components/airport-combobox.js +4 -2
  3. package/dist/components/flight-baggage-step.d.ts.map +1 -1
  4. package/dist/components/flight-baggage-step.js +29 -18
  5. package/dist/components/flight-billing-step.d.ts.map +1 -1
  6. package/dist/components/flight-billing-step.js +30 -24
  7. package/dist/components/flight-booking-journey.d.ts.map +1 -1
  8. package/dist/components/flight-booking-journey.js +15 -26
  9. package/dist/components/flight-booking-ledger.d.ts.map +1 -1
  10. package/dist/components/flight-booking-ledger.js +22 -12
  11. package/dist/components/flight-booking-page.js +12 -12
  12. package/dist/components/flight-booking-shell.d.ts.map +1 -1
  13. package/dist/components/flight-booking-shell.js +54 -29
  14. package/dist/components/flight-contact-form.d.ts.map +1 -1
  15. package/dist/components/flight-contact-form.js +7 -3
  16. package/dist/components/flight-fare-upsell-step.d.ts.map +1 -1
  17. package/dist/components/flight-fare-upsell-step.js +58 -30
  18. package/dist/components/flight-filters-bar.d.ts.map +1 -1
  19. package/dist/components/flight-filters-bar.js +21 -13
  20. package/dist/components/flight-itinerary.d.ts.map +1 -1
  21. package/dist/components/flight-itinerary.js +26 -6
  22. package/dist/components/flight-offer-detail.d.ts.map +1 -1
  23. package/dist/components/flight-offer-detail.js +23 -35
  24. package/dist/components/flight-offer-row.d.ts.map +1 -1
  25. package/dist/components/flight-offer-row.js +19 -15
  26. package/dist/components/flight-order-confirmation.d.ts.map +1 -1
  27. package/dist/components/flight-order-confirmation.js +20 -24
  28. package/dist/components/flight-passenger-form.d.ts.map +1 -1
  29. package/dist/components/flight-passenger-form.js +18 -14
  30. package/dist/components/flight-payment-selector.d.ts.map +1 -1
  31. package/dist/components/flight-payment-selector.js +4 -8
  32. package/dist/components/flight-payment-step.d.ts.map +1 -1
  33. package/dist/components/flight-payment-step.js +14 -15
  34. package/dist/components/flight-search-form.d.ts.map +1 -1
  35. package/dist/components/flight-search-form.js +4 -2
  36. package/dist/components/flight-seat-map.d.ts.map +1 -1
  37. package/dist/components/flight-seat-map.js +24 -19
  38. package/dist/components/flight-seats-step.js +26 -24
  39. package/dist/components/flight-services-step.d.ts.map +1 -1
  40. package/dist/components/flight-services-step.js +29 -16
  41. package/dist/components/pax-cabin-popover.d.ts.map +1 -1
  42. package/dist/components/pax-cabin-popover.js +8 -11
  43. package/dist/components/popular-routes.d.ts +0 -5
  44. package/dist/components/popular-routes.d.ts.map +1 -1
  45. package/dist/components/popular-routes.js +25 -43
  46. package/dist/i18n/en.d.ts +404 -0
  47. package/dist/i18n/en.d.ts.map +1 -1
  48. package/dist/i18n/en.js +460 -0
  49. package/dist/i18n/messages.d.ts +331 -0
  50. package/dist/i18n/messages.d.ts.map +1 -1
  51. package/dist/i18n/provider.d.ts +808 -0
  52. package/dist/i18n/provider.d.ts.map +1 -1
  53. package/dist/i18n/ro.d.ts +404 -0
  54. package/dist/i18n/ro.d.ts.map +1 -1
  55. package/dist/i18n/ro.js +460 -0
  56. package/package.json +15 -15
@@ -3,93 +3,59 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  import { Badge } from "@voyantjs/ui/components/badge";
4
4
  import { cn } from "@voyantjs/ui/lib/utils";
5
5
  import { ArrowRight, Sparkles } from "lucide-react";
6
+ import { flightsUiEn } from "../i18n/en.js";
7
+ import { useFlightsUiMessagesOrDefault } from "../i18n/index.js";
6
8
  /**
7
9
  * Default route set — recognizable city pairs across regions so a fresh
8
10
  * /flights page has something to click without having to type airports.
9
11
  * Pages can pass their own `routes` to override.
10
12
  */
11
- export const DEFAULT_POPULAR_ROUTES = [
13
+ const DEFAULT_POPULAR_ROUTE_CODES = [
12
14
  {
13
15
  origin: "LHR",
14
- originLabel: "London",
15
16
  destination: "JFK",
16
- destinationLabel: "New York",
17
- tag: "Transatlantic",
18
- hint: "Premium cabins, daily",
19
17
  },
20
18
  {
21
19
  origin: "CDG",
22
- originLabel: "Paris",
23
20
  destination: "DXB",
24
- destinationLabel: "Dubai",
25
- tag: "Connecting hub",
26
- hint: "Wide carrier mix",
27
21
  },
28
22
  {
29
23
  origin: "AMS",
30
- originLabel: "Amsterdam",
31
24
  destination: "SIN",
32
- destinationLabel: "Singapore",
33
- tag: "Long-haul",
34
- hint: "Nonstop options",
35
25
  },
36
26
  {
37
27
  origin: "FRA",
38
- originLabel: "Frankfurt",
39
28
  destination: "NRT",
40
- destinationLabel: "Tokyo",
41
- tag: "Long-haul",
42
- hint: "12-13h nonstop",
43
29
  },
44
30
  {
45
31
  origin: "MAD",
46
- originLabel: "Madrid",
47
32
  destination: "GRU",
48
- destinationLabel: "São Paulo",
49
- tag: "Latin America",
50
- hint: "10h nonstop",
51
33
  },
52
34
  {
53
35
  origin: "BCN",
54
- originLabel: "Barcelona",
55
36
  destination: "FCO",
56
- destinationLabel: "Rome",
57
- tag: "Short-haul",
58
- hint: "From €60",
59
37
  },
60
38
  {
61
39
  origin: "LGW",
62
- originLabel: "London Gatwick",
63
40
  destination: "MAD",
64
- destinationLabel: "Madrid",
65
- tag: "Short-haul",
66
- hint: "LCC dominant",
67
41
  },
68
42
  {
69
43
  origin: "DXB",
70
- originLabel: "Dubai",
71
44
  destination: "BKK",
72
- destinationLabel: "Bangkok",
73
- tag: "Asia",
74
- hint: "6h nonstop",
75
45
  },
76
46
  {
77
47
  origin: "SFO",
78
- originLabel: "San Francisco",
79
48
  destination: "HND",
80
- destinationLabel: "Tokyo",
81
- tag: "Trans-Pacific",
82
- hint: "11h nonstop",
83
49
  },
84
50
  {
85
51
  origin: "ZRH",
86
- originLabel: "Zurich",
87
52
  destination: "JNB",
88
- destinationLabel: "Johannesburg",
89
- tag: "Africa",
90
- hint: "11h overnight",
91
53
  },
92
54
  ];
55
+ export const DEFAULT_POPULAR_ROUTES = DEFAULT_POPULAR_ROUTE_CODES.map((route, index) => ({
56
+ ...route,
57
+ ...defaultRouteMessages(flightsUiEn.popularRoutes.defaults, index),
58
+ }));
93
59
  /**
94
60
  * A grid of clickable popular-route cards. Each card synthesizes a
95
61
  * `FlightSearchRequest` (round-trip by default, 14 days out, 7 nights) and
@@ -97,7 +63,15 @@ export const DEFAULT_POPULAR_ROUTES = [
97
63
  * step. Designed for the empty-state of a flights page: gives the user
98
64
  * something to do without typing airport codes.
99
65
  */
100
- export function PopularRoutes({ routes, onSelect, tripType = "round_trip", daysOut = 14, tripNights = 7, cabin = "economy", adults = 1, className, title = "Popular routes", }) {
66
+ export function PopularRoutes({ routes, onSelect, tripType = "round_trip", daysOut = 14, tripNights = 7, cabin = "economy", adults = 1, className, title, }) {
67
+ const messages = useFlightsUiMessagesOrDefault().popularRoutes;
68
+ const resolvedRoutes = routes.map((route, index) => route === DEFAULT_POPULAR_ROUTES[index]
69
+ ? {
70
+ ...route,
71
+ ...defaultRouteMessages(messages.defaults, index),
72
+ }
73
+ : route);
74
+ const resolvedTitle = title === undefined ? messages.title : title;
101
75
  const today = new Date();
102
76
  const departure = isoDate(addDays(today, daysOut));
103
77
  const returnDate = isoDate(addDays(today, daysOut + tripNights));
@@ -114,7 +88,7 @@ export function PopularRoutes({ routes, onSelect, tripType = "round_trip", daysO
114
88
  }
115
89
  return { slices, passengers: { adults, children: 0, infants: 0 }, cabin };
116
90
  };
117
- return (_jsxs("section", { className: cn("flex flex-col gap-3", className), children: [title && (_jsxs("div", { className: "flex items-center gap-2 text-muted-foreground text-sm", children: [_jsx(Sparkles, { className: "h-4 w-4" }), _jsx("span", { children: title })] })), _jsx("div", { className: "grid grid-cols-1 gap-3 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4", children: routes.map((route) => (_jsxs("button", { type: "button", onClick: () => onSelect(buildRequest(route)), className: "group flex flex-col gap-2 rounded-lg border bg-card p-4 text-left shadow-sm transition-all hover:border-primary/40 hover:shadow", children: [_jsxs("div", { className: "flex items-center gap-2 text-sm", children: [_jsxs("span", { className: "flex flex-col leading-tight", children: [_jsx("span", { className: "font-mono text-xs text-muted-foreground", children: route.origin }), _jsx("span", { className: "font-medium", children: route.originLabel })] }), _jsx(ArrowRight, { className: "mx-auto h-4 w-4 shrink-0 text-muted-foreground transition-transform group-hover:translate-x-0.5" }), _jsxs("span", { className: "flex flex-col text-right leading-tight", children: [_jsx("span", { className: "font-mono text-xs text-muted-foreground", children: route.destination }), _jsx("span", { className: "font-medium", children: route.destinationLabel })] })] }), _jsxs("div", { className: "mt-auto flex items-center justify-between", children: [route.tag && (_jsx(Badge, { variant: "secondary", className: "text-[10px] font-normal", children: route.tag })), route.hint && _jsx("span", { className: "text-xs text-muted-foreground", children: route.hint })] })] }, `${route.origin}-${route.destination}`))) })] }));
91
+ return (_jsxs("section", { className: cn("flex flex-col gap-3", className), children: [resolvedTitle && (_jsxs("div", { className: "flex items-center gap-2 text-muted-foreground text-sm", children: [_jsx(Sparkles, { className: "h-4 w-4" }), _jsx("span", { children: resolvedTitle })] })), _jsx("div", { className: "grid grid-cols-1 gap-3 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4", children: resolvedRoutes.map((route) => (_jsxs("button", { type: "button", onClick: () => onSelect(buildRequest(route)), className: "group flex flex-col gap-2 rounded-lg border bg-card p-4 text-left shadow-sm transition-all hover:border-primary/40 hover:shadow", children: [_jsxs("div", { className: "flex items-center gap-2 text-sm", children: [_jsxs("span", { className: "flex flex-col leading-tight", children: [_jsx("span", { className: "font-mono text-xs text-muted-foreground", children: route.origin }), _jsx("span", { className: "font-medium", children: route.originLabel })] }), _jsx(ArrowRight, { className: "mx-auto h-4 w-4 shrink-0 text-muted-foreground transition-transform group-hover:translate-x-0.5" }), _jsxs("span", { className: "flex flex-col text-right leading-tight", children: [_jsx("span", { className: "font-mono text-xs text-muted-foreground", children: route.destination }), _jsx("span", { className: "font-medium", children: route.destinationLabel })] })] }), _jsxs("div", { className: "mt-auto flex items-center justify-between", children: [route.tag && (_jsx(Badge, { variant: "secondary", className: "text-[10px] font-normal", children: route.tag })), route.hint && _jsx("span", { className: "text-xs text-muted-foreground", children: route.hint })] })] }, `${route.origin}-${route.destination}`))) })] }));
118
92
  }
119
93
  function addDays(d, n) {
120
94
  const copy = new Date(d.getTime());
@@ -124,3 +98,11 @@ function addDays(d, n) {
124
98
  function isoDate(d) {
125
99
  return d.toISOString().slice(0, 10);
126
100
  }
101
+ function defaultRouteMessages(defaults, index) {
102
+ return (defaults[index] ?? {
103
+ originLabel: "",
104
+ destinationLabel: "",
105
+ tag: "",
106
+ hint: "",
107
+ });
108
+ }
package/dist/i18n/en.d.ts CHANGED
@@ -1,4 +1,60 @@
1
1
  export declare const flightsUiEn: {
2
+ common: {
3
+ noValue: string;
4
+ total: string;
5
+ included: string;
6
+ free: string;
7
+ selected: string;
8
+ recommended: string;
9
+ passengerSingular: string;
10
+ passengerPlural: string;
11
+ pax: string;
12
+ adultPerPassenger: string;
13
+ passengerTypeLabels: {
14
+ adult: string;
15
+ child: string;
16
+ infant: string;
17
+ senior: string;
18
+ youth: string;
19
+ };
20
+ cabinLabels: {
21
+ economy: string;
22
+ premium_economy: string;
23
+ business: string;
24
+ first: string;
25
+ };
26
+ genderLabels: {
27
+ M: string;
28
+ F: string;
29
+ X: string;
30
+ };
31
+ documentTypeLabels: {
32
+ passport: string;
33
+ national_id: string;
34
+ visa: string;
35
+ };
36
+ orderStatusLabels: {
37
+ pending: string;
38
+ confirmed: string;
39
+ ticketed: string;
40
+ cancelled: string;
41
+ failed: string;
42
+ };
43
+ legLabels: {
44
+ itinerary: string;
45
+ outbound: string;
46
+ return: string;
47
+ leg: string;
48
+ };
49
+ stops: {
50
+ nonstop: string;
51
+ oneStop: string;
52
+ manyStops: string;
53
+ via: string;
54
+ upToOne: string;
55
+ upToMany: string;
56
+ };
57
+ };
2
58
  flightsPage: {
3
59
  title: string;
4
60
  description: string;
@@ -37,6 +93,15 @@ export declare const flightsUiEn: {
37
93
  offerNotInSessionDescription: string;
38
94
  backToFlightSearch: string;
39
95
  backToResults: string;
96
+ offerUnavailable: string;
97
+ segmentNotFound: string;
98
+ paymentBrandLabels: {
99
+ visa: string;
100
+ mastercard: string;
101
+ amex: string;
102
+ revolut: string;
103
+ bank_transfer: string;
104
+ };
40
105
  };
41
106
  passengerContactPicker: {
42
107
  trigger: string;
@@ -57,5 +122,344 @@ export declare const flightsUiEn: {
57
122
  orgsEmpty: string;
58
123
  emptyName: string;
59
124
  };
125
+ airportCombobox: {
126
+ placeholder: string;
127
+ searchPlaceholder: string;
128
+ searching: string;
129
+ empty: string;
130
+ };
131
+ flightBaggageStep: {
132
+ unavailable: string;
133
+ title: string;
134
+ description: string;
135
+ sameForBothDirections: string;
136
+ bags: string;
137
+ noCheckedBag: string;
138
+ };
139
+ flightBillingStep: {
140
+ title: string;
141
+ description: string;
142
+ tabs: {
143
+ personal: string;
144
+ company: string;
145
+ };
146
+ fields: {
147
+ firstName: string;
148
+ lastName: string;
149
+ companyName: string;
150
+ vatNumber: string;
151
+ email: string;
152
+ phone: string;
153
+ workPhone: string;
154
+ streetAddress: string;
155
+ addressLine2: string;
156
+ city: string;
157
+ postalCode: string;
158
+ country: string;
159
+ };
160
+ placeholders: {
161
+ vatNumber: string;
162
+ streetAddress: string;
163
+ addressLine2: string;
164
+ searchPassengers: string;
165
+ };
166
+ saveDefault: string;
167
+ pickFromPassengers: string;
168
+ noMatchingPassengers: string;
169
+ validation: {
170
+ emailRequired: string;
171
+ emailInvalid: string;
172
+ streetAddressRequired: string;
173
+ cityRequired: string;
174
+ countryRequired: string;
175
+ firstNameRequired: string;
176
+ lastNameRequired: string;
177
+ companyNameRequired: string;
178
+ vatNumberRequired: string;
179
+ };
180
+ };
181
+ flightBookingJourney: {
182
+ steps: {
183
+ review: string;
184
+ passengers: string;
185
+ contact: string;
186
+ confirm: string;
187
+ };
188
+ reviewTitle: string;
189
+ backToResults: string;
190
+ back: string;
191
+ booking: string;
192
+ confirmBooking: string;
193
+ continue: string;
194
+ rows: {
195
+ total: string;
196
+ passengers: string;
197
+ contact: string;
198
+ payment: string;
199
+ offerExpires: string;
200
+ };
201
+ confirmDescription: string;
202
+ };
203
+ flightBookingLedger: {
204
+ flight: string;
205
+ outbound: string;
206
+ return: string;
207
+ passengers: string;
208
+ working: string;
209
+ billing: string;
210
+ payment: string;
211
+ };
212
+ flightBookingShell: {
213
+ steps: {
214
+ review: string;
215
+ fares: string;
216
+ passengers: string;
217
+ bags: string;
218
+ seats: string;
219
+ services: string;
220
+ billing: string;
221
+ payment: string;
222
+ confirm: string;
223
+ };
224
+ seatMapsUnavailable: string;
225
+ backToResults: string;
226
+ back: string;
227
+ booking: string;
228
+ confirmBooking: string;
229
+ continue: string;
230
+ reviewTrip: string;
231
+ reviewFlight: string;
232
+ confirmTitle: string;
233
+ rows: {
234
+ passengers: string;
235
+ documents: string;
236
+ contact: string;
237
+ billedTo: string;
238
+ payment: string;
239
+ };
240
+ documentsAllAdded: string;
241
+ documentsSomeAdded: string;
242
+ documentsAddAtCheckIn: string;
243
+ confirmDescription: string;
244
+ lineItems: {
245
+ fare: string;
246
+ seatsPicked: string;
247
+ specialAssistance: string;
248
+ };
249
+ segmentNotFound: string;
250
+ };
251
+ flightContactForm: {
252
+ title: string;
253
+ description: string;
254
+ email: string;
255
+ phone: string;
256
+ emailPlaceholder: string;
257
+ phonePlaceholder: string;
258
+ validation: {
259
+ emailRequired: string;
260
+ emailInvalid: string;
261
+ };
262
+ };
263
+ flightFareUpsellStep: {
264
+ unavailable: string;
265
+ title: string;
266
+ description: string;
267
+ sameForAllPassengers: string;
268
+ resetToBasic: string;
269
+ appliesToAllPassengers: string;
270
+ cabinBag: string;
271
+ noCabinBag: string;
272
+ checkedBag: string;
273
+ noCheckedBag: string;
274
+ freeSeatSelection: string;
275
+ standardSeatSelection: string;
276
+ noSeatSelection: string;
277
+ priorityBoarding: string;
278
+ loungeAccess: string;
279
+ freeChanges: string;
280
+ changesForFee: string;
281
+ refundable: string;
282
+ nonRefundable: string;
283
+ };
284
+ flightSearchForm: {
285
+ roundTrip: string;
286
+ oneWay: string;
287
+ fromPlaceholder: string;
288
+ toPlaceholder: string;
289
+ departPlaceholder: string;
290
+ returnPlaceholder: string;
291
+ swapAriaLabel: string;
292
+ search: string;
293
+ searching: string;
294
+ };
295
+ flightFiltersBar: {
296
+ clearAll: string;
297
+ airlines: string;
298
+ filterAirlinesPlaceholder: string;
299
+ noAirlines: string;
300
+ clearFilter: string;
301
+ stops: string;
302
+ price: string;
303
+ maximumPrice: string;
304
+ noCap: string;
305
+ clear: string;
306
+ };
307
+ flightItinerary: {
308
+ totalDuration: string;
309
+ layover: string;
310
+ layoverIn: string;
311
+ operatedBy: string;
312
+ terminal: string;
313
+ aircraft: string;
314
+ };
315
+ flightOfferDetail: {
316
+ fareBreakdown: string;
317
+ validatingCarrier: string;
318
+ expires: string;
319
+ lastTicketing: string;
320
+ instantTicketing: string;
321
+ base: string;
322
+ tax: string;
323
+ };
324
+ flightOfferRow: {
325
+ select: string;
326
+ codeshare: string;
327
+ interline: string;
328
+ };
329
+ flightOrderConfirmation: {
330
+ bookingConfirmed: string;
331
+ ticketDeadline: string;
332
+ passengers: string;
333
+ contact: string;
334
+ itinerary: string;
335
+ dob: string;
336
+ cancelBooking: string;
337
+ cancelling: string;
338
+ };
339
+ flightPassengerForm: {
340
+ documentsRequiredNotice: string;
341
+ fields: {
342
+ firstName: string;
343
+ middleName: string;
344
+ lastName: string;
345
+ dateOfBirth: string;
346
+ gender: string;
347
+ travelDocument: string;
348
+ documentType: string;
349
+ documentNumber: string;
350
+ countryOfIssue: string;
351
+ countryOfNationality: string;
352
+ expiryDate: string;
353
+ };
354
+ placeholders: {
355
+ asOnPassport: string;
356
+ optional: string;
357
+ selectDate: string;
358
+ select: string;
359
+ asPrintedOnDocument: string;
360
+ };
361
+ addNow: string;
362
+ skipDocuments: string;
363
+ validation: {
364
+ firstNameRequired: string;
365
+ lastNameRequired: string;
366
+ dateOfBirthRequired: string;
367
+ documentNumberRequired: string;
368
+ documentCountryRequired: string;
369
+ documentExpiryRequired: string;
370
+ };
371
+ };
372
+ flightPaymentSelector: {
373
+ title: string;
374
+ description: string;
375
+ intents: {
376
+ hold: {
377
+ title: string;
378
+ description: string;
379
+ };
380
+ card: {
381
+ title: string;
382
+ description: string;
383
+ };
384
+ ticket_on_credit: {
385
+ title: string;
386
+ description: string;
387
+ };
388
+ };
389
+ };
390
+ flightPaymentStep: {
391
+ agencyCreditLabel: string;
392
+ agencyCreditDescription: string;
393
+ };
394
+ flightSeatMap: {
395
+ cabin: string;
396
+ pickingSeatFor: string;
397
+ window: string;
398
+ aisle: string;
399
+ noCharge: string;
400
+ pickedBy: string;
401
+ categories: {
402
+ exit_row: string;
403
+ extra_legroom: string;
404
+ preferred: string;
405
+ premium: string;
406
+ bulkhead: string;
407
+ standard: string;
408
+ };
409
+ legend: {
410
+ available: string;
411
+ preferred: string;
412
+ exitRow: string;
413
+ picked: string;
414
+ taken: string;
415
+ };
416
+ };
417
+ flightSeatsStep: {
418
+ title: string;
419
+ description: string;
420
+ modes: {
421
+ skip: {
422
+ title: string;
423
+ body: string;
424
+ };
425
+ auto: {
426
+ title: string;
427
+ body: string;
428
+ };
429
+ now: {
430
+ title: string;
431
+ body: string;
432
+ };
433
+ };
434
+ seatMapUnavailable: string;
435
+ };
436
+ flightServicesStep: {
437
+ title: string;
438
+ description: string;
439
+ servicesUnavailable: string;
440
+ specialAssistance: string;
441
+ noAssistanceNeeded: string;
442
+ extras: string;
443
+ };
444
+ paxCabinPopover: {
445
+ adults: string;
446
+ adultsSublabel: string;
447
+ children: string;
448
+ childrenSublabel: string;
449
+ infants: string;
450
+ infantsSublabel: string;
451
+ cabin: string;
452
+ decrease: string;
453
+ increase: string;
454
+ };
455
+ popularRoutes: {
456
+ title: string;
457
+ defaults: {
458
+ originLabel: string;
459
+ destinationLabel: string;
460
+ tag: string;
461
+ hint: string;
462
+ }[];
463
+ };
60
464
  };
61
465
  //# sourceMappingURL=en.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../src/i18n/en.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4DK,CAAA"}
1
+ {"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../src/i18n/en.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAihBK,CAAA"}