@planetaexo/design-system 0.2.12 → 0.2.13
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/index.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +13 -1
- package/dist/index.d.ts +13 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -260,6 +260,18 @@ interface BookingConfirmationProps {
|
|
|
260
260
|
}
|
|
261
261
|
declare function BookingConfirmation({ recipientName, logoUrl, bookingReference, adventures, summaryLineItems, subtotal, total, depositInfo, agent, viewBookingUrl, className, }: BookingConfirmationProps): react_jsx_runtime.JSX.Element;
|
|
262
262
|
|
|
263
|
+
interface FloatingInputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
264
|
+
label: string;
|
|
265
|
+
error?: string;
|
|
266
|
+
}
|
|
267
|
+
declare const FloatingInput: React.ForwardRefExoticComponent<FloatingInputProps & React.RefAttributes<HTMLInputElement>>;
|
|
268
|
+
interface FloatingSelectProps extends React.SelectHTMLAttributes<HTMLSelectElement> {
|
|
269
|
+
label: string;
|
|
270
|
+
error?: string;
|
|
271
|
+
children: React.ReactNode;
|
|
272
|
+
}
|
|
273
|
+
declare const FloatingSelect: React.ForwardRefExoticComponent<FloatingSelectProps & React.RefAttributes<HTMLSelectElement>>;
|
|
274
|
+
|
|
263
275
|
declare function cn(...inputs: ClassValue[]): string;
|
|
264
276
|
|
|
265
|
-
export { type BookingAdventure, BookingConfirmation, BookingConfirmationEmail, type BookingConfirmationEmailProps, type BookingConfirmationProps, type BookingContact, type BookingDepositInfo, BookingDetails, type BookingDetailsProps, type BookingStatus, type BookingSummaryLineItem, type BookingTraveller, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, Offer, OfferAdventureCard, type OfferAdventureItem, type OfferAgentInfo, type OfferDepositInfo, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, type SuggestedTraveller, cn };
|
|
277
|
+
export { type BookingAdventure, BookingConfirmation, BookingConfirmationEmail, type BookingConfirmationEmailProps, type BookingConfirmationProps, type BookingContact, type BookingDepositInfo, BookingDetails, type BookingDetailsProps, type BookingStatus, type BookingSummaryLineItem, type BookingTraveller, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, Offer, OfferAdventureCard, type OfferAdventureItem, type OfferAgentInfo, type OfferDepositInfo, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, type SuggestedTraveller, cn };
|
package/dist/index.d.ts
CHANGED
|
@@ -260,6 +260,18 @@ interface BookingConfirmationProps {
|
|
|
260
260
|
}
|
|
261
261
|
declare function BookingConfirmation({ recipientName, logoUrl, bookingReference, adventures, summaryLineItems, subtotal, total, depositInfo, agent, viewBookingUrl, className, }: BookingConfirmationProps): react_jsx_runtime.JSX.Element;
|
|
262
262
|
|
|
263
|
+
interface FloatingInputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
264
|
+
label: string;
|
|
265
|
+
error?: string;
|
|
266
|
+
}
|
|
267
|
+
declare const FloatingInput: React.ForwardRefExoticComponent<FloatingInputProps & React.RefAttributes<HTMLInputElement>>;
|
|
268
|
+
interface FloatingSelectProps extends React.SelectHTMLAttributes<HTMLSelectElement> {
|
|
269
|
+
label: string;
|
|
270
|
+
error?: string;
|
|
271
|
+
children: React.ReactNode;
|
|
272
|
+
}
|
|
273
|
+
declare const FloatingSelect: React.ForwardRefExoticComponent<FloatingSelectProps & React.RefAttributes<HTMLSelectElement>>;
|
|
274
|
+
|
|
263
275
|
declare function cn(...inputs: ClassValue[]): string;
|
|
264
276
|
|
|
265
|
-
export { type BookingAdventure, BookingConfirmation, BookingConfirmationEmail, type BookingConfirmationEmailProps, type BookingConfirmationProps, type BookingContact, type BookingDepositInfo, BookingDetails, type BookingDetailsProps, type BookingStatus, type BookingSummaryLineItem, type BookingTraveller, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, Offer, OfferAdventureCard, type OfferAdventureItem, type OfferAgentInfo, type OfferDepositInfo, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, type SuggestedTraveller, cn };
|
|
277
|
+
export { type BookingAdventure, BookingConfirmation, BookingConfirmationEmail, type BookingConfirmationEmailProps, type BookingConfirmationProps, type BookingContact, type BookingDepositInfo, BookingDetails, type BookingDetailsProps, type BookingStatus, type BookingSummaryLineItem, type BookingTraveller, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, Offer, OfferAdventureCard, type OfferAdventureItem, type OfferAgentInfo, type OfferDepositInfo, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, type SuggestedTraveller, cn };
|
package/dist/index.js
CHANGED
|
@@ -3023,6 +3023,6 @@ function BookingConfirmation({
|
|
|
3023
3023
|
);
|
|
3024
3024
|
}
|
|
3025
3025
|
|
|
3026
|
-
export { BookingConfirmation, BookingConfirmationEmail, BookingDetails, Offer, OfferAdventureCard, cn };
|
|
3026
|
+
export { BookingConfirmation, BookingConfirmationEmail, BookingDetails, FloatingInput, FloatingSelect, Offer, OfferAdventureCard, cn };
|
|
3027
3027
|
//# sourceMappingURL=index.js.map
|
|
3028
3028
|
//# sourceMappingURL=index.js.map
|