@veevarts/design-system 1.0.0-alpha.12 → 1.0.0-alpha.14
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.
|
@@ -33,5 +33,5 @@ export interface EventDetailsProps {
|
|
|
33
33
|
* @function EventDetails
|
|
34
34
|
* @description Displays a card with event information such as name, image, date, time, location, and description.
|
|
35
35
|
*/
|
|
36
|
-
declare const EventDetails: ({ classes, name, imageUrl, eventDate, eventTime, location, description, showImage, showMoreButtonClassName, labels, }: EventDetailsProps) => JSX.Element;
|
|
36
|
+
export declare const EventDetails: ({ classes, name, imageUrl, eventDate, eventTime, location, description, showImage, showMoreButtonClassName, labels, }: EventDetailsProps) => JSX.Element;
|
|
37
37
|
export default EventDetails;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/patterns/index.d.ts
CHANGED
|
@@ -6,9 +6,11 @@ export type { RichTextAreaProps } from './RichText';
|
|
|
6
6
|
export { RichTextArea, RICH_TEXT_PRESETS } from './RichText';
|
|
7
7
|
export { DonationAmounts } from './DonationAmounts';
|
|
8
8
|
export { ExpireCartTimer } from './ExpireCartTimer';
|
|
9
|
+
export { EventDetails } from './EventDetails';
|
|
9
10
|
export { OfferCard, OfferCardList, OfferCardSkeleton, OfferCardError, OfferCardEmpty, offerListVariants, offerCardVariants, formatCurrency as formatOfferCurrency, parseCurrency as parseOfferCurrency, } from './OfferCard';
|
|
10
11
|
export type { NavbarProps, NavbarLink, NavbarLanguage } from './Navbar';
|
|
11
12
|
export type { StepperProps } from './Stepper';
|
|
12
13
|
export type { DonationAmountsProps, DonationAmount, SelectedDonation, DonationLabels } from './DonationAmounts';
|
|
13
14
|
export type { ExpireCartTimerProps } from './ExpireCartTimer';
|
|
15
|
+
export type { EventDetailsProps } from './EventDetails';
|
|
14
16
|
export type { Offer, OfferSelection, OfferCardLabels, OfferCardErrorLabels, OfferCardClassNames, OfferCardListClassNames, OfferCardSkeletonClassNames, OfferCardErrorClassNames, OfferCardEmptyClassNames, OfferCardSlots, OfferCardProps, OfferCardListProps, OfferCardSkeletonProps, OfferCardErrorProps, OfferCardEmptyProps, } from './OfferCard';
|