@voyantjs/flights-ui 0.25.0 → 0.26.1

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.
@@ -1,5 +1,5 @@
1
1
  import type { FlightBookRequest, FlightOffer, FlightOrder, PassengerCounts } from "@voyantjs/flights/contract/types";
2
- import { type FlightPassengerFormProps } from "./flight-passenger-form";
2
+ import { type FlightPassengerFormProps } from "./flight-passenger-form.js";
3
3
  export interface FlightBookingJourneyProps {
4
4
  /** The offer to book — usually returned by the priceOffer call. */
5
5
  offer: FlightOffer;
@@ -1 +1 @@
1
- {"version":3,"file":"flight-booking-journey.d.ts","sourceRoot":"","sources":["../../src/components/flight-booking-journey.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,iBAAiB,EACjB,WAAW,EACX,WAAW,EAEX,eAAe,EAEhB,MAAM,kCAAkC,CAAA;AAQzC,OAAO,EAEL,KAAK,wBAAwB,EAE9B,MAAM,yBAAyB,CAAA;AAYhC,MAAM,WAAW,yBAAyB;IACxC,mEAAmE;IACnE,KAAK,EAAE,WAAW,CAAA;IAClB,gDAAgD;IAChD,UAAU,EAAE,eAAe,CAAA;IAC3B,2DAA2D;IAC3D,MAAM,EAAE,CAAC,OAAO,EAAE,iBAAiB,KAAK,OAAO,CAAC,WAAW,CAAC,GAAG,WAAW,CAAA;IAC1E,2EAA2E;IAC3E,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,WAAW,KAAK,IAAI,CAAA;IACvC,oCAAoC;IACpC,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAA;IACrB,wEAAwE;IACxE,WAAW,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,MAAM,GAAG,SAAS,CAAA;IACtD,WAAW,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,MAAM,GAAG,SAAS,CAAA;IACtD;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,wBAAwB,CAAC,cAAc,CAAC,CAAA;CACjE;AAED;;;;;GAKG;AACH,wBAAgB,oBAAoB,CAAC,EACnC,KAAK,EACL,UAAU,EACV,MAAM,EACN,QAAQ,EACR,QAAQ,EACR,WAAW,EACX,WAAW,EACX,qBAAqB,GACtB,EAAE,yBAAyB,kDAmH3B"}
1
+ {"version":3,"file":"flight-booking-journey.d.ts","sourceRoot":"","sources":["../../src/components/flight-booking-journey.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,iBAAiB,EACjB,WAAW,EACX,WAAW,EAEX,eAAe,EAEhB,MAAM,kCAAkC,CAAA;AAYzC,OAAO,EAEL,KAAK,wBAAwB,EAE9B,MAAM,4BAA4B,CAAA;AAYnC,MAAM,WAAW,yBAAyB;IACxC,mEAAmE;IACnE,KAAK,EAAE,WAAW,CAAA;IAClB,gDAAgD;IAChD,UAAU,EAAE,eAAe,CAAA;IAC3B,2DAA2D;IAC3D,MAAM,EAAE,CAAC,OAAO,EAAE,iBAAiB,KAAK,OAAO,CAAC,WAAW,CAAC,GAAG,WAAW,CAAA;IAC1E,2EAA2E;IAC3E,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,WAAW,KAAK,IAAI,CAAA;IACvC,oCAAoC;IACpC,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAA;IACrB,wEAAwE;IACxE,WAAW,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,MAAM,GAAG,SAAS,CAAA;IACtD,WAAW,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,MAAM,GAAG,SAAS,CAAA;IACtD;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,wBAAwB,CAAC,cAAc,CAAC,CAAA;CACjE;AAED;;;;;GAKG;AACH,wBAAgB,oBAAoB,CAAC,EACnC,KAAK,EACL,UAAU,EACV,MAAM,EACN,QAAQ,EACR,QAAQ,EACR,WAAW,EACX,WAAW,EACX,qBAAqB,GACtB,EAAE,yBAAyB,kDAmH3B"}
@@ -4,10 +4,10 @@ import { Button } from "@voyantjs/ui/components/button";
4
4
  import { cn } from "@voyantjs/ui/lib/utils";
5
5
  import { Check, ChevronLeft, ChevronRight } from "lucide-react";
6
6
  import { useState } from "react";
7
- import { FlightContactForm, validateContact } from "./flight-contact-form";
8
- import { FlightOfferDetail } from "./flight-offer-detail";
9
- import { FlightPassengerForm, validatePassengers, } from "./flight-passenger-form";
10
- import { FlightPaymentSelector } from "./flight-payment-selector";
7
+ import { FlightContactForm, validateContact, } from "./flight-contact-form.js";
8
+ import { FlightOfferDetail } from "./flight-offer-detail.js";
9
+ import { FlightPassengerForm, validatePassengers, } from "./flight-passenger-form.js";
10
+ import { FlightPaymentSelector } from "./flight-payment-selector.js";
11
11
  const STEPS = [
12
12
  { id: "review", label: "Review offer" },
13
13
  { id: "passengers", label: "Passengers" },
@@ -3,7 +3,7 @@ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-run
3
3
  import { Button } from "@voyantjs/ui/components/button";
4
4
  import { cn } from "@voyantjs/ui/lib/utils";
5
5
  import { Check, Pencil, Plane, Users } from "lucide-react";
6
- import { AirlineLogo } from "./airline-logo";
6
+ import { AirlineLogo } from "./airline-logo.js";
7
7
  /**
8
8
  * Sticky right-rail price ledger. Mirrors the running total + per-leg
9
9
  * breakdown that real airline checkouts use (Wizz/Ryanair/Lufthansa). One
@@ -1,9 +1,9 @@
1
1
  import type { AncillaryCatalog, FlightBookRequest, FlightOrder, PassengerCounts } from "@voyantjs/flights/contract/types";
2
- import { type BillingValue } from "./flight-billing-step";
3
- import { type FlightItinerarySelection } from "./flight-booking-ledger";
4
- import { type FlightPassengerFormProps } from "./flight-passenger-form";
5
- import { type PaymentStepCapabilities, type SavedPaymentMethod } from "./flight-payment-step";
6
- import { type FlightSeatMapSlot } from "./flight-seats-step";
2
+ import { type BillingValue } from "./flight-billing-step.js";
3
+ import { type FlightItinerarySelection } from "./flight-booking-ledger.js";
4
+ import { type FlightPassengerFormProps } from "./flight-passenger-form.js";
5
+ import { type PaymentStepCapabilities, type SavedPaymentMethod } from "./flight-payment-step.js";
6
+ import { type FlightSeatMapSlot } from "./flight-seats-step.js";
7
7
  /**
8
8
  * Per-leg ancillary catalogs supplied by the parent (typically via
9
9
  * `useFlightAncillaries(outbound)` + `useFlightAncillaries(return)`).
@@ -1 +1 @@
1
- {"version":3,"file":"flight-booking-shell.d.ts","sourceRoot":"","sources":["../../src/components/flight-booking-shell.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"flight-booking-shell.d.ts","sourceRoot":"","sources":["../../src/components/flight-booking-shell.tsx"],"names":[],"mappings":"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"}
@@ -4,15 +4,15 @@ import { Button } from "@voyantjs/ui/components/button";
4
4
  import { cn } from "@voyantjs/ui/lib/utils";
5
5
  import { Check, ChevronLeft, ChevronRight } from "lucide-react";
6
6
  import { useMemo, useState } from "react";
7
- import { FlightBaggageStep } from "./flight-baggage-step";
8
- import { emptyBillingValue, FlightBillingStep, validateBilling, } from "./flight-billing-step";
9
- import { FlightBookingLedger, } from "./flight-booking-ledger";
10
- import { FlightFareUpsellStep } from "./flight-fare-upsell-step";
11
- import { FlightItinerary } from "./flight-itinerary";
12
- import { FlightPassengerForm, validatePassengers, } from "./flight-passenger-form";
13
- import { FlightPaymentStep, } from "./flight-payment-step";
14
- import { FlightSeatsStep } from "./flight-seats-step";
15
- import { FlightServicesStep } from "./flight-services-step";
7
+ import { FlightBaggageStep } from "./flight-baggage-step.js";
8
+ import { emptyBillingValue, FlightBillingStep, validateBilling, } from "./flight-billing-step.js";
9
+ import { FlightBookingLedger, } from "./flight-booking-ledger.js";
10
+ import { FlightFareUpsellStep } from "./flight-fare-upsell-step.js";
11
+ import { FlightItinerary } from "./flight-itinerary.js";
12
+ import { FlightPassengerForm, validatePassengers, } from "./flight-passenger-form.js";
13
+ import { FlightPaymentStep, } from "./flight-payment-step.js";
14
+ import { FlightSeatsStep } from "./flight-seats-step.js";
15
+ import { FlightServicesStep } from "./flight-services-step.js";
16
16
  const ALL_STEPS = [
17
17
  { id: "review", label: "Review" },
18
18
  { id: "fares", label: "Fare" },
@@ -6,7 +6,7 @@ import { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, Command
6
6
  import { Input } from "@voyantjs/ui/components/input";
7
7
  import { Popover, PopoverContent, PopoverTrigger } from "@voyantjs/ui/components/popover";
8
8
  import { PlusCircle, X } from "lucide-react";
9
- import { AirlineLogo } from "./airline-logo";
9
+ import { AirlineLogo } from "./airline-logo.js";
10
10
  export const EMPTY_FLIGHT_FILTERS = {
11
11
  carriers: [],
12
12
  maxStops: null,
@@ -3,7 +3,7 @@ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-run
3
3
  import { Badge } from "@voyantjs/ui/components/badge";
4
4
  import { cn } from "@voyantjs/ui/lib/utils";
5
5
  import { Plane } from "lucide-react";
6
- import { AirlineLogo } from "./airline-logo";
6
+ import { AirlineLogo } from "./airline-logo.js";
7
7
  /**
8
8
  * Carrier-aware itinerary renderer. One itinerary = one direction of travel
9
9
  * (outbound, return, or one leg of an open-jaw). Surfaces:
@@ -3,7 +3,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  import { Badge } from "@voyantjs/ui/components/badge";
4
4
  import { Separator } from "@voyantjs/ui/components/separator";
5
5
  import { cn } from "@voyantjs/ui/lib/utils";
6
- import { FlightItinerary } from "./flight-itinerary";
6
+ import { FlightItinerary } from "./flight-itinerary.js";
7
7
  /**
8
8
  * Full-fidelity flight offer view for the detail sheet. Composes the shared
9
9
  * `FlightItinerary` renderer for each leg, then a fare breakdown + offer
@@ -3,7 +3,7 @@ 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 { Plane } from "lucide-react";
6
- import { AirlineLogo } from "./airline-logo";
6
+ import { AirlineLogo } from "./airline-logo.js";
7
7
  /**
8
8
  * One row in the search-results list. Lays out each itinerary on its own
9
9
  * line: carriers · departure time · journey · arrival time · stops ·
@@ -5,7 +5,7 @@ import { Button } from "@voyantjs/ui/components/button";
5
5
  import { Separator } from "@voyantjs/ui/components/separator";
6
6
  import { cn } from "@voyantjs/ui/lib/utils";
7
7
  import { CheckCircle2, Clock, Mail, Phone, Ticket, XCircle } from "lucide-react";
8
- import { FlightOfferDetail } from "./flight-offer-detail";
8
+ import { FlightOfferDetail } from "./flight-offer-detail.js";
9
9
  const STATUS_VARIANTS = {
10
10
  pending: { label: "Pending", tone: "pending", icon: _jsx(Clock, { className: "h-4 w-4" }) },
11
11
  confirmed: { label: "Confirmed", tone: "ok", icon: _jsx(CheckCircle2, { className: "h-4 w-4" }) },
@@ -5,8 +5,8 @@ import { DatePicker } from "@voyantjs/ui/components/date-picker";
5
5
  import { ToggleGroup, ToggleGroupItem } from "@voyantjs/ui/components/toggle-group";
6
6
  import { ArrowLeftRight, Search } from "lucide-react";
7
7
  import { useState } from "react";
8
- import { AirportCombobox } from "./airport-combobox";
9
- import { PaxCabinPopover } from "./pax-cabin-popover";
8
+ import { AirportCombobox } from "./airport-combobox.js";
9
+ import { PaxCabinPopover } from "./pax-cabin-popover.js";
10
10
  export function FlightSearchForm({ onSearch, loading, initial }) {
11
11
  const initialSlices = initial?.slices ?? [];
12
12
  const [tripType, setTripType] = useState(initial?.tripType ?? (initialSlices.length === 2 ? "round_trip" : "one_way"));
@@ -3,7 +3,7 @@ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-run
3
3
  import { cn } from "@voyantjs/ui/lib/utils";
4
4
  import { CheckCircle2, X } from "lucide-react";
5
5
  import { useEffect, useMemo, useState } from "react";
6
- import { FlightSeatMap } from "./flight-seat-map";
6
+ import { FlightSeatMap } from "./flight-seat-map.js";
7
7
  /**
8
8
  * Wizz-style seat selection step. Tri-option gate up top (Skip / Auto-assign
9
9
  * / Pick now) — the first two short-circuit straight to the next step. When
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voyantjs/flights-ui",
3
- "version": "0.25.0",
3
+ "version": "0.26.1",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -29,11 +29,11 @@
29
29
  "@tanstack/react-table": "^8.0.0",
30
30
  "react": "^19.0.0",
31
31
  "react-dom": "^19.0.0",
32
- "@voyantjs/finance": "0.25.0",
33
- "@voyantjs/flights": "0.25.0",
34
- "@voyantjs/flights-react": "0.25.0",
35
- "@voyantjs/checkout-ui": "0.25.0",
36
- "@voyantjs/ui": "0.25.0"
32
+ "@voyantjs/finance": "0.26.1",
33
+ "@voyantjs/flights": "0.26.1",
34
+ "@voyantjs/flights-react": "0.26.1",
35
+ "@voyantjs/checkout-ui": "0.26.1",
36
+ "@voyantjs/ui": "0.26.1"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@tanstack/react-query": "^5.96.2",
@@ -45,11 +45,11 @@
45
45
  "react-dom": "^19.2.4",
46
46
  "typescript": "^6.0.2",
47
47
  "vitest": "^4.1.2",
48
- "@voyantjs/finance": "0.25.0",
49
- "@voyantjs/flights": "0.25.0",
50
- "@voyantjs/flights-react": "0.25.0",
51
- "@voyantjs/checkout-ui": "0.25.0",
52
- "@voyantjs/ui": "0.25.0",
48
+ "@voyantjs/finance": "0.26.1",
49
+ "@voyantjs/flights": "0.26.1",
50
+ "@voyantjs/flights-react": "0.26.1",
51
+ "@voyantjs/checkout-ui": "0.26.1",
52
+ "@voyantjs/ui": "0.26.1",
53
53
  "@voyantjs/voyant-typescript-config": "0.1.0"
54
54
  },
55
55
  "files": [