@duffel/components 3.4.2 → 3.4.3--canary.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/README.md +1 -1
- package/components/DuffelCardForm/DuffelCardForm.d.ts +2 -1
- package/components/DuffelCardForm/lib/getIFrameEventListener.d.ts +2 -2
- package/components/DuffelCardForm/lib/getIFrameOriginForEnvironment.d.ts +2 -0
- package/components/DuffelCardForm/lib/getIframeURL.d.ts +2 -0
- package/components/DuffelCardForm/lib/getPathnameForIntent.d.ts +2 -0
- package/components/DuffelCardForm/lib/postMessageToCreateCardForTemporaryUse.d.ts +1 -0
- package/components/DuffelCardForm/lib/postMessageToSaveCard.d.ts +1 -0
- package/components/DuffelCardForm/lib/postMessageWithStyles.d.ts +2 -0
- package/components/DuffelCardForm/lib/types.d.ts +60 -17
- package/components/DuffelCardForm/lib/useDuffelCardFormActions.d.ts +24 -0
- package/components/DuffelNGSView/DuffelNGSView.d.ts +7 -0
- package/components/DuffelNGSView/NGSShelfInfoCard.d.ts +7 -0
- package/components/DuffelNGSView/NGSSliceFareCard.d.ts +11 -0
- package/components/DuffelNGSView/SliceSummary.d.ts +7 -0
- package/components/DuffelNGSView/lib/get-max-baggages-for-offer-slice.d.ts +8 -0
- package/components/DuffelNGSView/lib/group-offers-for-ngs-view.d.ts +3 -0
- package/components/DuffelNGSView/lib/index.d.ts +56 -0
- package/components/DuffelNGSView/lib/sort-ngs-rows.d.ts +4 -0
- package/components/shared/Icon.d.ts +14 -0
- package/components/shared/RadioButton.d.ts +1 -0
- package/components/shared/SliceCarriersTitle.d.ts +7 -0
- package/custom-elements.js +27 -27
- package/custom-elements.js.map +3 -3
- package/index.d.ts +3 -1
- package/index.js +15 -15
- package/index.js.map +4 -4
- package/lib/colors.d.ts +1 -0
- package/package.json +3 -3
- package/stories/DuffelNGSView.stories.d.ts +5 -0
- package/stories/NGSShelfInfoCard.stories.d.ts +3 -0
- package/stories/NGSSliceFareCard.stories.d.ts +4 -0
- package/stories/SliceCarriersTitle.stories.d.ts +10 -0
- package/stories/SliceSummary.stories.d.ts +6 -0
- package/tsconfig.tsbuildinfo +1 -1
- package/types/DuffelAncillariesProps.d.ts +2 -2
package/index.d.ts
CHANGED
|
@@ -4,9 +4,11 @@
|
|
|
4
4
|
*/
|
|
5
5
|
export * from "./components/DuffelAncillaries/DuffelAncillaries";
|
|
6
6
|
export * from "./components/DuffelPayments/DuffelPayments";
|
|
7
|
-
export * from "./components/DuffelCardForm/DuffelCardForm";
|
|
8
7
|
export * from "./components/Stays/StaysRating";
|
|
9
8
|
export * from "./components/Stays/StaysSummary";
|
|
10
9
|
export * from "./components/Stays/StaysAmenities";
|
|
11
10
|
export * from "./components/Stays/StaysRoomRateCard";
|
|
12
11
|
export * from "./types";
|
|
12
|
+
export * from "./components/DuffelCardForm/DuffelCardForm";
|
|
13
|
+
export * from "./components/DuffelCardForm/lib/types";
|
|
14
|
+
export * from "./components/DuffelCardForm/lib/useDuffelCardFormActions";
|