@duffel/components 3.3.1--canary → 3.3.1--canary.2

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.
@@ -0,0 +1,12 @@
1
+ import { StaysAmenitiesProps } from "./StaysAmenities";
2
+ declare const CUSTOM_ELEMENT_TAG = "duffel-stays-amenities";
3
+ type CustomElementRenderArguments = StaysAmenitiesProps;
4
+ declare global {
5
+ namespace JSX {
6
+ interface IntrinsicElements {
7
+ [CUSTOM_ELEMENT_TAG]: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
8
+ }
9
+ }
10
+ }
11
+ export declare function renderDuffelStaysAmenitiesCustomElement(props: CustomElementRenderArguments): void;
12
+ export {};
@@ -1,11 +1,12 @@
1
1
  import { StaysRatingProps } from "./StaysRating";
2
+ declare const CUSTOM_ELEMENT_TAG = "duffel-stays-rating";
3
+ type CustomElementRenderArguments = StaysRatingProps;
2
4
  declare global {
3
5
  namespace JSX {
4
6
  interface IntrinsicElements {
5
- "duffel-stays-rating": React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
7
+ [CUSTOM_ELEMENT_TAG]: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
6
8
  }
7
9
  }
8
10
  }
9
- type DuffelStaysRatingCustomElementRenderArguments = StaysRatingProps;
10
- export declare function renderDuffelStaysRatingCustomElement(props: DuffelStaysRatingCustomElementRenderArguments): void;
11
+ export declare function renderDuffelStaysRatingCustomElement(props: CustomElementRenderArguments): void;
11
12
  export {};
@@ -0,0 +1,12 @@
1
+ import { StaysRoomRateCardProps } from "./StaysRoomRateCard";
2
+ declare const CUSTOM_ELEMENT_TAG = "duffel-stays-room-rate-card";
3
+ type CustomElementRenderArguments = StaysRoomRateCardProps;
4
+ declare global {
5
+ namespace JSX {
6
+ interface IntrinsicElements {
7
+ [CUSTOM_ELEMENT_TAG]: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
8
+ }
9
+ }
10
+ }
11
+ export declare function renderDuffelStaysRoomRateCardCustomElement(props: CustomElementRenderArguments): void;
12
+ export {};
@@ -0,0 +1,12 @@
1
+ import { StaysSummaryProps } from "./StaysSummary";
2
+ declare const CUSTOM_ELEMENT_TAG = "duffel-stays-summary";
3
+ type CustomElementRenderArguments = StaysSummaryProps;
4
+ declare global {
5
+ namespace JSX {
6
+ interface IntrinsicElements {
7
+ [CUSTOM_ELEMENT_TAG]: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
8
+ }
9
+ }
10
+ }
11
+ export declare function renderDuffelStaysSummaryCustomElement(props: CustomElementRenderArguments): void;
12
+ export {};
@@ -4,3 +4,7 @@
4
4
  */
5
5
  export { onDuffelAncillariesPayloadReady, renderDuffelAncillariesCustomElement, } from "./components/DuffelAncillaries/DuffelAncillariesCustomElement";
6
6
  export { onDuffelPaymentsFailedPayment, onDuffelPaymentsSuccessfulPayment, renderDuffelPaymentsCustomElement, } from "./components/DuffelPayments/DuffelPaymentsCustomElement";
7
+ export { renderDuffelStaysRatingCustomElement } from "./components/Stays/StaysRatingCustomElement";
8
+ export { renderDuffelStaysAmenitiesCustomElement } from "./components/Stays/StaysAmenitiesCustomElement";
9
+ export { renderDuffelStaysSummaryCustomElement } from "./components/Stays/StaysSummaryCustomElement";
10
+ export { renderDuffelStaysRoomRateCardCustomElement } from "./components/Stays/StaysRoomRateCardCustomElement";