@veevarts/design-system 1.8.0-dev.2 → 1.9.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 +34 -1
- package/dist/index.cjs +9 -9
- package/dist/index.js +1140 -1136
- package/dist/patterns/MembershipSelectCards/types.d.ts +2 -0
- package/dist/patterns/TicketSelection/types.d.ts +2 -0
- package/package.json +1 -1
|
@@ -3,6 +3,8 @@ export interface MembershipSelectCardsProps {
|
|
|
3
3
|
cards?: MembershipSelectCard[] | null;
|
|
4
4
|
locale?: string;
|
|
5
5
|
currency?: string;
|
|
6
|
+
/** Optional Tailwind class to control the height of the scrollable cards list area. */
|
|
7
|
+
listHeightClassName?: string;
|
|
6
8
|
labels?: Partial<MembershipSelectCardsLabels>;
|
|
7
9
|
showRenewal?: boolean;
|
|
8
10
|
defaultRenewalValue?: boolean;
|
|
@@ -35,6 +35,8 @@ export type TicketSelectionData = ExhibitionData[];
|
|
|
35
35
|
export interface TicketSelectionProps {
|
|
36
36
|
/** Maximum number of tickets the user can select globally */
|
|
37
37
|
userMaxLimit?: number;
|
|
38
|
+
/** Initial expanded state for all exhibition groups */
|
|
39
|
+
initialExpanded?: boolean;
|
|
38
40
|
/** Labels for internationalization */
|
|
39
41
|
labels?: Partial<TicketSelectionLabels>;
|
|
40
42
|
/** Regional settings for locale and currency formatting */
|