@electroplix/components 0.1.0 → 0.2.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.
Files changed (163) hide show
  1. package/README.md +585 -3
  2. package/cli.cjs +211 -0
  3. package/dist/README.md +0 -4
  4. package/dist/index.esm.js +17758 -163
  5. package/dist/src/__tests__/test-utils.d.ts +8 -0
  6. package/dist/src/__tests__/test-utils.d.ts.map +1 -0
  7. package/dist/src/components/blog/index.d.ts +88 -0
  8. package/dist/src/components/blog/index.d.ts.map +1 -0
  9. package/dist/src/components/buttons/index.d.ts +71 -0
  10. package/dist/src/components/buttons/index.d.ts.map +1 -0
  11. package/dist/src/components/content/BlockquoteTestimonial.d.ts +24 -0
  12. package/dist/src/components/content/BlockquoteTestimonial.d.ts.map +1 -0
  13. package/dist/src/components/content/CalloutBox.d.ts +26 -0
  14. package/dist/src/components/content/CalloutBox.d.ts.map +1 -0
  15. package/dist/src/components/content/HeadingSection.d.ts +26 -0
  16. package/dist/src/components/content/HeadingSection.d.ts.map +1 -0
  17. package/dist/src/components/content/InlineCodeText.d.ts +24 -0
  18. package/dist/src/components/content/InlineCodeText.d.ts.map +1 -0
  19. package/dist/src/components/content/ParagraphBlock.d.ts +23 -0
  20. package/dist/src/components/content/ParagraphBlock.d.ts.map +1 -0
  21. package/dist/src/components/content/RichMarkdown.d.ts +20 -0
  22. package/dist/src/components/content/RichMarkdown.d.ts.map +1 -0
  23. package/dist/src/components/content/index.d.ts +7 -0
  24. package/dist/src/components/content/index.d.ts.map +1 -0
  25. package/dist/src/components/data-display/Badge.d.ts +9 -0
  26. package/dist/src/components/data-display/Badge.d.ts.map +1 -0
  27. package/dist/src/components/data-display/BadgeGroup.d.ts +8 -0
  28. package/dist/src/components/data-display/BadgeGroup.d.ts.map +1 -0
  29. package/dist/src/components/data-display/BarChart.d.ts +12 -0
  30. package/dist/src/components/data-display/BarChart.d.ts.map +1 -0
  31. package/dist/src/components/data-display/CalendarGrid.d.ts +15 -0
  32. package/dist/src/components/data-display/CalendarGrid.d.ts.map +1 -0
  33. package/dist/src/components/data-display/DataTable.d.ts +24 -0
  34. package/dist/src/components/data-display/DataTable.d.ts.map +1 -0
  35. package/dist/src/components/data-display/LineChart.d.ts +11 -0
  36. package/dist/src/components/data-display/LineChart.d.ts.map +1 -0
  37. package/dist/src/components/data-display/PieChart.d.ts +9 -0
  38. package/dist/src/components/data-display/PieChart.d.ts.map +1 -0
  39. package/dist/src/components/data-display/ProgressBar.d.ts +11 -0
  40. package/dist/src/components/data-display/ProgressBar.d.ts.map +1 -0
  41. package/dist/src/components/data-display/RatingStars.d.ts +10 -0
  42. package/dist/src/components/data-display/RatingStars.d.ts.map +1 -0
  43. package/dist/src/components/data-display/Sparkline.d.ts +7 -0
  44. package/dist/src/components/data-display/Sparkline.d.ts.map +1 -0
  45. package/dist/src/components/data-display/Timeline.d.ts +12 -0
  46. package/dist/src/components/data-display/Timeline.d.ts.map +1 -0
  47. package/dist/src/components/data-display/index.d.ts +12 -0
  48. package/dist/src/components/data-display/index.d.ts.map +1 -0
  49. package/dist/src/components/ecommerce/index.d.ts +110 -0
  50. package/dist/src/components/ecommerce/index.d.ts.map +1 -0
  51. package/dist/src/components/forms/AddressAutocomplete.d.ts +27 -0
  52. package/dist/src/components/forms/AddressAutocomplete.d.ts.map +1 -0
  53. package/dist/src/components/forms/Captcha.d.ts +23 -0
  54. package/dist/src/components/forms/Captcha.d.ts.map +1 -0
  55. package/dist/src/components/forms/ContactForm.d.ts +28 -0
  56. package/dist/src/components/forms/ContactForm.d.ts.map +1 -0
  57. package/dist/src/components/forms/DateTimePicker.d.ts +27 -0
  58. package/dist/src/components/forms/DateTimePicker.d.ts.map +1 -0
  59. package/dist/src/components/forms/FileUploader.d.ts +24 -0
  60. package/dist/src/components/forms/FileUploader.d.ts.map +1 -0
  61. package/dist/src/components/forms/FormShell.d.ts +17 -0
  62. package/dist/src/components/forms/FormShell.d.ts.map +1 -0
  63. package/dist/src/components/forms/InputField.d.ts +32 -0
  64. package/dist/src/components/forms/InputField.d.ts.map +1 -0
  65. package/dist/src/components/forms/MultiStepWizard.d.ts +29 -0
  66. package/dist/src/components/forms/MultiStepWizard.d.ts.map +1 -0
  67. package/dist/src/components/forms/NewsletterSignup.d.ts +26 -0
  68. package/dist/src/components/forms/NewsletterSignup.d.ts.map +1 -0
  69. package/dist/src/components/forms/RadioGroup.d.ts +31 -0
  70. package/dist/src/components/forms/RadioGroup.d.ts.map +1 -0
  71. package/dist/src/components/forms/SelectDropdown.d.ts +33 -0
  72. package/dist/src/components/forms/SelectDropdown.d.ts.map +1 -0
  73. package/dist/src/components/forms/TextAreaField.d.ts +30 -0
  74. package/dist/src/components/forms/TextAreaField.d.ts.map +1 -0
  75. package/dist/src/components/forms/ToggleSwitch.d.ts +25 -0
  76. package/dist/src/components/forms/ToggleSwitch.d.ts.map +1 -0
  77. package/dist/src/components/forms/ValidationWrapper.d.ts +24 -0
  78. package/dist/src/components/forms/ValidationWrapper.d.ts.map +1 -0
  79. package/dist/src/components/forms/index.d.ts +29 -0
  80. package/dist/src/components/forms/index.d.ts.map +1 -0
  81. package/dist/src/components/hero/CTAOverlayHero.d.ts +29 -0
  82. package/dist/src/components/hero/CTAOverlayHero.d.ts.map +1 -0
  83. package/dist/src/components/hero/CarouselHero.d.ts +29 -0
  84. package/dist/src/components/hero/CarouselHero.d.ts.map +1 -0
  85. package/dist/src/components/hero/HeroShell.d.ts +18 -0
  86. package/dist/src/components/hero/HeroShell.d.ts.map +1 -0
  87. package/dist/src/components/hero/PatternedHero.d.ts +34 -0
  88. package/dist/src/components/hero/PatternedHero.d.ts.map +1 -0
  89. package/dist/src/components/hero/SplitHero.d.ts +31 -0
  90. package/dist/src/components/hero/SplitHero.d.ts.map +1 -0
  91. package/dist/src/components/hero/StaticHero.d.ts +26 -0
  92. package/dist/src/components/hero/StaticHero.d.ts.map +1 -0
  93. package/dist/src/components/hero/VideoHeaderHero.d.ts +29 -0
  94. package/dist/src/components/hero/VideoHeaderHero.d.ts.map +1 -0
  95. package/dist/src/components/hero/index.d.ts +15 -0
  96. package/dist/src/components/hero/index.d.ts.map +1 -0
  97. package/dist/src/components/lists-cards/index.d.ts +104 -0
  98. package/dist/src/components/lists-cards/index.d.ts.map +1 -0
  99. package/dist/src/components/marketing/index.d.ts +95 -0
  100. package/dist/src/components/marketing/index.d.ts.map +1 -0
  101. package/dist/src/components/media/index.d.ts +95 -0
  102. package/dist/src/components/media/index.d.ts.map +1 -0
  103. package/dist/src/components/miscellaneous/index.d.ts +63 -0
  104. package/dist/src/components/miscellaneous/index.d.ts.map +1 -0
  105. package/dist/src/components/modals/index.d.ts +83 -0
  106. package/dist/src/components/modals/index.d.ts.map +1 -0
  107. package/dist/src/components/navigation/AnchorLinks.d.ts +25 -0
  108. package/dist/src/components/navigation/AnchorLinks.d.ts.map +1 -0
  109. package/dist/src/components/navigation/Breadcrumbs.d.ts +25 -0
  110. package/dist/src/components/navigation/Breadcrumbs.d.ts.map +1 -0
  111. package/dist/src/components/navigation/LanguageSelector.d.ts +24 -0
  112. package/dist/src/components/navigation/LanguageSelector.d.ts.map +1 -0
  113. package/dist/src/components/navigation/MegaMenu.d.ts +28 -0
  114. package/dist/src/components/navigation/MegaMenu.d.ts.map +1 -0
  115. package/dist/src/components/navigation/Pagination.d.ts +18 -0
  116. package/dist/src/components/navigation/Pagination.d.ts.map +1 -0
  117. package/dist/src/components/navigation/PrimaryNav.d.ts +22 -0
  118. package/dist/src/components/navigation/PrimaryNav.d.ts.map +1 -0
  119. package/dist/src/components/navigation/SideDrawerNav.d.ts +22 -0
  120. package/dist/src/components/navigation/SideDrawerNav.d.ts.map +1 -0
  121. package/dist/src/components/navigation/SidebarMenu.d.ts +25 -0
  122. package/dist/src/components/navigation/SidebarMenu.d.ts.map +1 -0
  123. package/dist/src/components/navigation/Stepper.d.ts +17 -0
  124. package/dist/src/components/navigation/Stepper.d.ts.map +1 -0
  125. package/dist/src/components/navigation/Tabs.d.ts +22 -0
  126. package/dist/src/components/navigation/Tabs.d.ts.map +1 -0
  127. package/dist/src/components/navigation/index.d.ts +21 -0
  128. package/dist/src/components/navigation/index.d.ts.map +1 -0
  129. package/dist/src/components/onboarding/index.d.ts +66 -0
  130. package/dist/src/components/onboarding/index.d.ts.map +1 -0
  131. package/dist/src/components/search/index.d.ts +58 -0
  132. package/dist/src/components/search/index.d.ts.map +1 -0
  133. package/dist/src/components/site-identity/index.d.ts +48 -0
  134. package/dist/src/components/site-identity/index.d.ts.map +1 -0
  135. package/dist/src/components/social/index.d.ts +68 -0
  136. package/dist/src/components/social/index.d.ts.map +1 -0
  137. package/dist/src/components/user-accounts/index.d.ts +68 -0
  138. package/dist/src/components/user-accounts/index.d.ts.map +1 -0
  139. package/dist/src/core/config.d.ts +37 -0
  140. package/dist/src/core/config.d.ts.map +1 -0
  141. package/dist/src/core/icons.d.ts +25 -0
  142. package/dist/src/core/icons.d.ts.map +1 -0
  143. package/dist/src/core/index.d.ts +8 -0
  144. package/dist/src/core/index.d.ts.map +1 -0
  145. package/dist/src/core/provider.d.ts +45 -0
  146. package/dist/src/core/provider.d.ts.map +1 -0
  147. package/dist/src/core/types.d.ts +145 -0
  148. package/dist/src/core/types.d.ts.map +1 -0
  149. package/dist/src/core/utils.d.ts +70 -0
  150. package/dist/src/core/utils.d.ts.map +1 -0
  151. package/dist/src/index.d.ts +19 -5
  152. package/dist/src/index.d.ts.map +1 -1
  153. package/package.json +35 -5
  154. package/dist/src/lib/Navbar.d.ts +0 -5
  155. package/dist/src/lib/Navbar.d.ts.map +0 -1
  156. package/dist/src/lib/config.d.ts +0 -36
  157. package/dist/src/lib/config.d.ts.map +0 -1
  158. package/dist/src/lib/icons.d.ts +0 -10
  159. package/dist/src/lib/icons.d.ts.map +0 -1
  160. package/dist/src/lib/provider.d.ts +0 -38
  161. package/dist/src/lib/provider.d.ts.map +0 -1
  162. package/dist/src/lib/types.d.ts +0 -66
  163. package/dist/src/lib/types.d.ts.map +0 -1
@@ -0,0 +1,110 @@
1
+ import type { Currency } from "../../core/types";
2
+ export interface CartItem {
3
+ id: string;
4
+ title: string;
5
+ image: string;
6
+ price: number;
7
+ qty: number;
8
+ variant?: string;
9
+ }
10
+ export interface CartCommonProps {
11
+ items: CartItem[];
12
+ currency?: Currency;
13
+ onQtyChange?: (id: string, qty: number) => void;
14
+ onRemove?: (id: string) => void;
15
+ onCheckout?: () => void;
16
+ }
17
+ export interface Product {
18
+ id: string;
19
+ title: string;
20
+ image: string;
21
+ price: number;
22
+ originalPrice?: number;
23
+ badge?: string;
24
+ rating?: number;
25
+ reviewCount?: number;
26
+ inStock?: boolean;
27
+ }
28
+ export interface OrderLine {
29
+ id: string;
30
+ title: string;
31
+ qty: number;
32
+ price: number;
33
+ image?: string;
34
+ }
35
+ export interface VariantOption {
36
+ label: string;
37
+ value: string;
38
+ }
39
+ export interface VariantGroup {
40
+ name: string;
41
+ options: VariantOption[];
42
+ }
43
+ export interface CartDrawerProps extends CartCommonProps {
44
+ open?: boolean;
45
+ width?: number;
46
+ }
47
+ export declare function CartDrawer({ items, currency, onQtyChange, onRemove, onCheckout, open, width }: CartDrawerProps): import("react/jsx-runtime").JSX.Element;
48
+ export declare function MiniCartPanel({ items, currency, onCheckout }: CartCommonProps): import("react/jsx-runtime").JSX.Element;
49
+ export interface OrderSummaryProps {
50
+ orderId?: string;
51
+ status?: "processing" | "shipped" | "delivered" | "cancelled";
52
+ lines: OrderLine[];
53
+ subtotal: number;
54
+ shipping?: number;
55
+ tax?: number;
56
+ total: number;
57
+ currency?: Currency;
58
+ shippingAddress?: string;
59
+ estimatedDelivery?: string;
60
+ }
61
+ export declare function OrderSummary({ orderId, status, lines, subtotal, shipping, tax, total, currency, shippingAddress, estimatedDelivery }: OrderSummaryProps): import("react/jsx-runtime").JSX.Element;
62
+ export interface ProductCardProps {
63
+ product: Product;
64
+ currency?: Currency;
65
+ onAddToCart?: (id: string) => void;
66
+ onWishlist?: (id: string) => void;
67
+ }
68
+ export declare function ProductCard({ product, currency, onAddToCart, onWishlist }: ProductCardProps): import("react/jsx-runtime").JSX.Element;
69
+ export interface ProductGridProps {
70
+ products: Product[];
71
+ currency?: Currency;
72
+ columns?: number;
73
+ onAddToCart?: (id: string) => void;
74
+ onWishlist?: (id: string) => void;
75
+ }
76
+ export declare function ProductGrid({ products, currency, columns, onAddToCart, onWishlist }: ProductGridProps): import("react/jsx-runtime").JSX.Element;
77
+ export interface ProductDetailProps {
78
+ product: Product;
79
+ description?: string;
80
+ images?: string[];
81
+ variants?: VariantGroup[];
82
+ currency?: Currency;
83
+ onAddToCart?: () => void;
84
+ }
85
+ export declare function ProductDetail({ product, description, images, variants, currency, onAddToCart }: ProductDetailProps): import("react/jsx-runtime").JSX.Element;
86
+ export interface VariantSelectorProps {
87
+ groups: VariantGroup[];
88
+ selected?: Record<string, string>;
89
+ onChange?: (groupName: string, value: string) => void;
90
+ }
91
+ export declare function VariantSelector({ groups, selected, onChange }: VariantSelectorProps): import("react/jsx-runtime").JSX.Element;
92
+ export interface QuickAddButtonProps {
93
+ productId: string;
94
+ label?: string;
95
+ onAdd?: (id: string) => void;
96
+ disabled?: boolean;
97
+ }
98
+ export declare function QuickAddButton({ productId, label, onAdd, disabled }: QuickAddButtonProps): import("react/jsx-runtime").JSX.Element;
99
+ export interface WishlistButtonProps {
100
+ productId: string;
101
+ wishlisted?: boolean;
102
+ onToggle?: (id: string) => void;
103
+ }
104
+ export declare function WishlistButton({ productId, wishlisted, onToggle }: WishlistButtonProps): import("react/jsx-runtime").JSX.Element;
105
+ export interface PaymentButtonsProps {
106
+ onPay?: (method: string) => void;
107
+ methods?: string[];
108
+ }
109
+ export declare function PaymentButtons({ onPay, methods }: PaymentButtonsProps): import("react/jsx-runtime").JSX.Element;
110
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/ecommerce/index.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,27 @@
1
+ import React from "react";
2
+ export interface AddressAutocompleteProps {
3
+ as?: React.ElementType;
4
+ label?: string;
5
+ name: string;
6
+ suggestions?: string[];
7
+ onQuery?: (q: string) => Promise<string[]> | string[];
8
+ placeholder?: string;
9
+ onSelect?: (value: string) => void;
10
+ bgColor?: string;
11
+ textColor?: string;
12
+ accentColor?: string;
13
+ borderColor?: string;
14
+ inputBg?: string;
15
+ fontFamily?: string;
16
+ maxW?: number;
17
+ px?: number;
18
+ py?: number;
19
+ radius?: number;
20
+ gap?: number;
21
+ labelSize?: number;
22
+ inputSize?: number;
23
+ style?: React.CSSProperties;
24
+ className?: string;
25
+ }
26
+ export declare function AddressAutocomplete(props: AddressAutocompleteProps): import("react/jsx-runtime").JSX.Element;
27
+ //# sourceMappingURL=AddressAutocomplete.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AddressAutocomplete.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/AddressAutocomplete.tsx"],"names":[],"mappings":"AACA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAIxC,MAAM,WAAW,wBAAwB;IACvC,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC;IACtD,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,wBAAwB,2CAmClE"}
@@ -0,0 +1,23 @@
1
+ import React from "react";
2
+ export interface CaptchaProps {
3
+ as?: React.ElementType;
4
+ mode?: "checkbox" | "math";
5
+ label?: string;
6
+ onVerify?: (ok: boolean) => void;
7
+ bgColor?: string;
8
+ textColor?: string;
9
+ accentColor?: string;
10
+ borderColor?: string;
11
+ inputBg?: string;
12
+ fontFamily?: string;
13
+ maxW?: number;
14
+ px?: number;
15
+ py?: number;
16
+ radius?: number;
17
+ gap?: number;
18
+ labelSize?: number;
19
+ style?: React.CSSProperties;
20
+ className?: string;
21
+ }
22
+ export declare function Captcha(props: CaptchaProps): import("react/jsx-runtime").JSX.Element;
23
+ //# sourceMappingURL=Captcha.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Captcha.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/Captcha.tsx"],"names":[],"mappings":"AACA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAIxC,MAAM,WAAW,YAAY;IAC3B,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IACvB,IAAI,CAAC,EAAE,UAAU,GAAG,MAAM,CAAC;IAC3B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,KAAK,IAAI,CAAC;IACjC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,OAAO,CAAC,KAAK,EAAE,YAAY,2CAmC1C"}
@@ -0,0 +1,28 @@
1
+ import React from "react";
2
+ export interface ContactFormProps {
3
+ as?: React.ElementType;
4
+ title?: string;
5
+ onSubmit?: (data: {
6
+ name: string;
7
+ email: string;
8
+ message: string;
9
+ }) => void;
10
+ bgColor?: string;
11
+ textColor?: string;
12
+ accentColor?: string;
13
+ borderColor?: string;
14
+ inputBg?: string;
15
+ fontFamily?: string;
16
+ maxW?: number;
17
+ px?: number;
18
+ py?: number;
19
+ radius?: number;
20
+ gap?: number;
21
+ titleSize?: number;
22
+ labelSize?: number;
23
+ inputSize?: number;
24
+ style?: React.CSSProperties;
25
+ className?: string;
26
+ }
27
+ export declare function ContactForm(props: ContactFormProps): import("react/jsx-runtime").JSX.Element;
28
+ //# sourceMappingURL=ContactForm.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ContactForm.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/ContactForm.tsx"],"names":[],"mappings":"AACA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAIxC,MAAM,WAAW,gBAAgB;IAC/B,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,CAAC;IAC5E,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,WAAW,CAAC,KAAK,EAAE,gBAAgB,2CAqClD"}
@@ -0,0 +1,27 @@
1
+ import React from "react";
2
+ export interface DateTimePickerProps {
3
+ as?: React.ElementType;
4
+ label?: string;
5
+ name: string;
6
+ mode?: "date" | "time" | "datetime-local" | "month" | "week";
7
+ value?: string;
8
+ defaultValue?: string;
9
+ onChange?: (v: string) => void;
10
+ bgColor?: string;
11
+ textColor?: string;
12
+ accentColor?: string;
13
+ borderColor?: string;
14
+ inputBg?: string;
15
+ fontFamily?: string;
16
+ maxW?: number;
17
+ px?: number;
18
+ py?: number;
19
+ radius?: number;
20
+ gap?: number;
21
+ labelSize?: number;
22
+ inputSize?: number;
23
+ style?: React.CSSProperties;
24
+ className?: string;
25
+ }
26
+ export declare function DateTimePicker(props: DateTimePickerProps): import("react/jsx-runtime").JSX.Element;
27
+ //# sourceMappingURL=DateTimePicker.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DateTimePicker.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/DateTimePicker.tsx"],"names":[],"mappings":"AACA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAIxC,MAAM,WAAW,mBAAmB;IAClC,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,gBAAgB,GAAG,OAAO,GAAG,MAAM,CAAC;IAC7D,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,cAAc,CAAC,KAAK,EAAE,mBAAmB,2CA0BxD"}
@@ -0,0 +1,24 @@
1
+ import React from "react";
2
+ export interface FileUploaderProps {
3
+ as?: React.ElementType;
4
+ multiple?: boolean;
5
+ accept?: string;
6
+ label?: string;
7
+ onFiles?: (files: File[]) => void;
8
+ maxSize?: number;
9
+ bgColor?: string;
10
+ textColor?: string;
11
+ accentColor?: string;
12
+ borderColor?: string;
13
+ inputBg?: string;
14
+ fontFamily?: string;
15
+ maxW?: number;
16
+ px?: number;
17
+ py?: number;
18
+ radius?: number;
19
+ gap?: number;
20
+ style?: React.CSSProperties;
21
+ className?: string;
22
+ }
23
+ export declare function FileUploader(props: FileUploaderProps): import("react/jsx-runtime").JSX.Element;
24
+ //# sourceMappingURL=FileUploader.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FileUploader.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/FileUploader.tsx"],"names":[],"mappings":"AACA,OAAO,KAA2B,MAAM,OAAO,CAAC;AAIhD,MAAM,WAAW,iBAAiB;IAChC,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IACvB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,KAAK,IAAI,CAAC;IAClC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,YAAY,CAAC,KAAK,EAAE,iBAAiB,2CAkCpD"}
@@ -0,0 +1,17 @@
1
+ import React from "react";
2
+ export interface FormShellProps {
3
+ as?: React.ElementType;
4
+ bgColor?: string;
5
+ textColor?: string;
6
+ fontFamily?: string;
7
+ maxW?: number;
8
+ px?: number;
9
+ py?: number;
10
+ radius?: number;
11
+ gap?: number;
12
+ style?: React.CSSProperties;
13
+ className?: string;
14
+ children?: React.ReactNode;
15
+ }
16
+ export declare function FormShell(props: FormShellProps): import("react/jsx-runtime").JSX.Element;
17
+ //# sourceMappingURL=FormShell.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FormShell.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/FormShell.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,cAAc;IAC7B,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IACvB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B;AAED,wBAAgB,SAAS,CAAC,KAAK,EAAE,cAAc,2CAQ9C"}
@@ -0,0 +1,32 @@
1
+ import React from "react";
2
+ export interface InputFieldProps {
3
+ as?: React.ElementType;
4
+ label?: string;
5
+ name: string;
6
+ type?: React.HTMLInputTypeAttribute;
7
+ value?: string;
8
+ defaultValue?: string;
9
+ placeholder?: string;
10
+ onChange?: (v: string) => void;
11
+ helpText?: string;
12
+ required?: boolean;
13
+ error?: string;
14
+ icon?: string;
15
+ bgColor?: string;
16
+ textColor?: string;
17
+ accentColor?: string;
18
+ borderColor?: string;
19
+ inputBg?: string;
20
+ fontFamily?: string;
21
+ maxW?: number;
22
+ px?: number;
23
+ py?: number;
24
+ radius?: number;
25
+ gap?: number;
26
+ labelSize?: number;
27
+ inputSize?: number;
28
+ style?: React.CSSProperties;
29
+ className?: string;
30
+ }
31
+ export declare function InputField(props: InputFieldProps): import("react/jsx-runtime").JSX.Element;
32
+ //# sourceMappingURL=InputField.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InputField.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/InputField.tsx"],"names":[],"mappings":"AACA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAIxC,MAAM,WAAW,eAAe;IAC9B,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,KAAK,CAAC,sBAAsB,CAAC;IACpC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,UAAU,CAAC,KAAK,EAAE,eAAe,2CAsBhD"}
@@ -0,0 +1,29 @@
1
+ import React from "react";
2
+ export type WizardStep = {
3
+ title: string;
4
+ description?: string;
5
+ content: React.ReactNode;
6
+ validate?: () => string[];
7
+ };
8
+ export interface MultiStepWizardProps {
9
+ as?: React.ElementType;
10
+ steps: WizardStep[];
11
+ onFinish?: () => void;
12
+ bgColor?: string;
13
+ textColor?: string;
14
+ accentColor?: string;
15
+ borderColor?: string;
16
+ fontFamily?: string;
17
+ maxW?: number;
18
+ px?: number;
19
+ py?: number;
20
+ radius?: number;
21
+ gap?: number;
22
+ titleSize?: number;
23
+ descSize?: number;
24
+ navBtnSize?: number;
25
+ style?: React.CSSProperties;
26
+ className?: string;
27
+ }
28
+ export declare function MultiStepWizard(props: MultiStepWizardProps): import("react/jsx-runtime").JSX.Element;
29
+ //# sourceMappingURL=MultiStepWizard.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MultiStepWizard.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/MultiStepWizard.tsx"],"names":[],"mappings":"AACA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAIxC,MAAM,MAAM,UAAU,GAAG;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,WAAW,CAAC,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,KAAK,CAAC,SAAS,CAAC;IAAC,QAAQ,CAAC,EAAE,MAAM,MAAM,EAAE,CAAA;CAAE,CAAC;AACtH,MAAM,WAAW,oBAAoB;IACnC,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IACvB,KAAK,EAAE,UAAU,EAAE,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,eAAe,CAAC,KAAK,EAAE,oBAAoB,2CAiC1D"}
@@ -0,0 +1,26 @@
1
+ import React from "react";
2
+ export interface NewsletterSignupProps {
3
+ as?: React.ElementType;
4
+ title?: string;
5
+ subtitle?: string;
6
+ onSubmit?: (email: string) => void;
7
+ buttonText?: string;
8
+ bgColor?: string;
9
+ textColor?: string;
10
+ accentColor?: string;
11
+ borderColor?: string;
12
+ inputBg?: string;
13
+ fontFamily?: string;
14
+ maxW?: number;
15
+ px?: number;
16
+ py?: number;
17
+ radius?: number;
18
+ gap?: number;
19
+ titleSize?: number;
20
+ subtitleSize?: number;
21
+ inputSize?: number;
22
+ style?: React.CSSProperties;
23
+ className?: string;
24
+ }
25
+ export declare function NewsletterSignup(props: NewsletterSignupProps): import("react/jsx-runtime").JSX.Element;
26
+ //# sourceMappingURL=NewsletterSignup.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NewsletterSignup.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/NewsletterSignup.tsx"],"names":[],"mappings":"AACA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAIxC,MAAM,WAAW,qBAAqB;IACpC,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,qBAAqB,2CAmC5D"}
@@ -0,0 +1,31 @@
1
+ import React from "react";
2
+ export type RadioOption = {
3
+ label: string;
4
+ value: string;
5
+ helpText?: string;
6
+ };
7
+ export interface RadioGroupProps {
8
+ as?: React.ElementType;
9
+ name: string;
10
+ options: RadioOption[];
11
+ value?: string;
12
+ defaultValue?: string;
13
+ onChange?: (v: string) => void;
14
+ label?: string;
15
+ bgColor?: string;
16
+ textColor?: string;
17
+ accentColor?: string;
18
+ borderColor?: string;
19
+ fontFamily?: string;
20
+ maxW?: number;
21
+ px?: number;
22
+ py?: number;
23
+ radius?: number;
24
+ gap?: number;
25
+ labelSize?: number;
26
+ itemSize?: number;
27
+ style?: React.CSSProperties;
28
+ className?: string;
29
+ }
30
+ export declare function RadioGroup(props: RadioGroupProps): import("react/jsx-runtime").JSX.Element;
31
+ //# sourceMappingURL=RadioGroup.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RadioGroup.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/RadioGroup.tsx"],"names":[],"mappings":"AACA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAIxC,MAAM,MAAM,WAAW,GAAG;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;AAC9E,MAAM,WAAW,eAAe;IAC9B,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,WAAW,EAAE,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,UAAU,CAAC,KAAK,EAAE,eAAe,2CA0BhD"}
@@ -0,0 +1,33 @@
1
+ import React from "react";
2
+ export type SelectOption = {
3
+ label: string;
4
+ value: string;
5
+ disabled?: boolean;
6
+ };
7
+ export interface SelectDropdownProps {
8
+ as?: React.ElementType;
9
+ name: string;
10
+ options: SelectOption[];
11
+ value?: string;
12
+ defaultValue?: string;
13
+ onChange?: (v: string) => void;
14
+ label?: string;
15
+ placeholder?: string;
16
+ bgColor?: string;
17
+ textColor?: string;
18
+ accentColor?: string;
19
+ borderColor?: string;
20
+ inputBg?: string;
21
+ fontFamily?: string;
22
+ maxW?: number;
23
+ px?: number;
24
+ py?: number;
25
+ radius?: number;
26
+ gap?: number;
27
+ labelSize?: number;
28
+ selectSize?: number;
29
+ style?: React.CSSProperties;
30
+ className?: string;
31
+ }
32
+ export declare function SelectDropdown(props: SelectDropdownProps): import("react/jsx-runtime").JSX.Element;
33
+ //# sourceMappingURL=SelectDropdown.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SelectDropdown.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/SelectDropdown.tsx"],"names":[],"mappings":"AACA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAIxC,MAAM,MAAM,YAAY,GAAG;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,EAAE,OAAO,CAAA;CAAE,CAAC;AAChF,MAAM,WAAW,mBAAmB;IAClC,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,cAAc,CAAC,KAAK,EAAE,mBAAmB,2CA4BxD"}
@@ -0,0 +1,30 @@
1
+ import React from "react";
2
+ export interface TextAreaFieldProps {
3
+ as?: React.ElementType;
4
+ label?: string;
5
+ name: string;
6
+ value?: string;
7
+ defaultValue?: string;
8
+ placeholder?: string;
9
+ rows?: number;
10
+ onChange?: (v: string) => void;
11
+ showPreview?: boolean;
12
+ maxLength?: number;
13
+ bgColor?: string;
14
+ textColor?: string;
15
+ accentColor?: string;
16
+ borderColor?: string;
17
+ inputBg?: string;
18
+ fontFamily?: string;
19
+ maxW?: number;
20
+ px?: number;
21
+ py?: number;
22
+ radius?: number;
23
+ gap?: number;
24
+ labelSize?: number;
25
+ inputSize?: number;
26
+ style?: React.CSSProperties;
27
+ className?: string;
28
+ }
29
+ export declare function TextAreaField(props: TextAreaFieldProps): import("react/jsx-runtime").JSX.Element;
30
+ //# sourceMappingURL=TextAreaField.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TextAreaField.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/TextAreaField.tsx"],"names":[],"mappings":"AACA,OAAO,KAA4B,MAAM,OAAO,CAAC;AAIjD,MAAM,WAAW,kBAAkB;IACjC,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,aAAa,CAAC,KAAK,EAAE,kBAAkB,2CAgCtD"}
@@ -0,0 +1,25 @@
1
+ import React from "react";
2
+ export interface ToggleSwitchProps {
3
+ as?: React.ElementType;
4
+ label?: string;
5
+ description?: string;
6
+ checked?: boolean;
7
+ defaultChecked?: boolean;
8
+ onChange?: (v: boolean) => void;
9
+ size?: number;
10
+ bgColor?: string;
11
+ textColor?: string;
12
+ accentColor?: string;
13
+ borderColor?: string;
14
+ fontFamily?: string;
15
+ maxW?: number;
16
+ px?: number;
17
+ py?: number;
18
+ radius?: number;
19
+ gap?: number;
20
+ labelSize?: number;
21
+ style?: React.CSSProperties;
22
+ className?: string;
23
+ }
24
+ export declare function ToggleSwitch(props: ToggleSwitchProps): import("react/jsx-runtime").JSX.Element;
25
+ //# sourceMappingURL=ToggleSwitch.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ToggleSwitch.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/ToggleSwitch.tsx"],"names":[],"mappings":"AACA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAIxC,MAAM,WAAW,iBAAiB;IAChC,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,QAAQ,CAAC,EAAE,CAAC,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC;IAChC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,YAAY,CAAC,KAAK,EAAE,iBAAiB,2CAsBpD"}
@@ -0,0 +1,24 @@
1
+ import React from "react";
2
+ export interface ValidationWrapperProps {
3
+ as?: React.ElementType;
4
+ errors?: string[];
5
+ title?: string;
6
+ children?: React.ReactNode;
7
+ success?: boolean;
8
+ successMessage?: string;
9
+ bgColor?: string;
10
+ textColor?: string;
11
+ accentColor?: string;
12
+ borderColor?: string;
13
+ fontFamily?: string;
14
+ maxW?: number;
15
+ px?: number;
16
+ py?: number;
17
+ radius?: number;
18
+ gap?: number;
19
+ titleSize?: number;
20
+ style?: React.CSSProperties;
21
+ className?: string;
22
+ }
23
+ export declare function ValidationWrapper(props: ValidationWrapperProps): import("react/jsx-runtime").JSX.Element;
24
+ //# sourceMappingURL=ValidationWrapper.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ValidationWrapper.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/ValidationWrapper.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,WAAW,sBAAsB;IACrC,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IACvB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,sBAAsB,2CAiC9D"}
@@ -0,0 +1,29 @@
1
+ export { FormShell } from "./FormShell";
2
+ export type { FormShellProps } from "./FormShell";
3
+ export { InputField } from "./InputField";
4
+ export type { InputFieldProps } from "./InputField";
5
+ export { TextAreaField } from "./TextAreaField";
6
+ export type { TextAreaFieldProps } from "./TextAreaField";
7
+ export { SelectDropdown } from "./SelectDropdown";
8
+ export type { SelectDropdownProps, SelectOption } from "./SelectDropdown";
9
+ export { RadioGroup } from "./RadioGroup";
10
+ export type { RadioGroupProps, RadioOption } from "./RadioGroup";
11
+ export { ToggleSwitch } from "./ToggleSwitch";
12
+ export type { ToggleSwitchProps } from "./ToggleSwitch";
13
+ export { DateTimePicker } from "./DateTimePicker";
14
+ export type { DateTimePickerProps } from "./DateTimePicker";
15
+ export { FileUploader } from "./FileUploader";
16
+ export type { FileUploaderProps } from "./FileUploader";
17
+ export { ContactForm } from "./ContactForm";
18
+ export type { ContactFormProps } from "./ContactForm";
19
+ export { NewsletterSignup } from "./NewsletterSignup";
20
+ export type { NewsletterSignupProps } from "./NewsletterSignup";
21
+ export { MultiStepWizard } from "./MultiStepWizard";
22
+ export type { MultiStepWizardProps, WizardStep } from "./MultiStepWizard";
23
+ export { Captcha } from "./Captcha";
24
+ export type { CaptchaProps } from "./Captcha";
25
+ export { AddressAutocomplete } from "./AddressAutocomplete";
26
+ export type { AddressAutocompleteProps } from "./AddressAutocomplete";
27
+ export { ValidationWrapper } from "./ValidationWrapper";
28
+ export type { ValidationWrapperProps } from "./ValidationWrapper";
29
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,YAAY,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAElD,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,YAAY,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAEpD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,YAAY,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAE1D,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,YAAY,EAAE,mBAAmB,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAE1E,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,YAAY,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAEjE,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,YAAY,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAExD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,YAAY,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAE5D,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,YAAY,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAExD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,YAAY,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAEtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,YAAY,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AAEhE,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,YAAY,EAAE,oBAAoB,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAE1E,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,YAAY,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAE9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,YAAY,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AAEtE,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,YAAY,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC"}
@@ -0,0 +1,29 @@
1
+ import React from "react";
2
+ export interface CTAOverlayHeroProps {
3
+ as?: React.ElementType;
4
+ title?: string;
5
+ subtitle?: string;
6
+ bgImage?: string;
7
+ overlay?: number;
8
+ form?: boolean;
9
+ buttonText?: string;
10
+ onSubmit?: (data: Record<string, FormDataEntryValue>) => void;
11
+ inputPlaceholder?: string;
12
+ titleSize?: number;
13
+ subtitleSize?: number;
14
+ bgColor?: string;
15
+ textColor?: string;
16
+ accentColor?: string;
17
+ borderColor?: string;
18
+ fontFamily?: string;
19
+ minH?: string | number;
20
+ maxW?: number;
21
+ px?: number;
22
+ py?: number;
23
+ radius?: number;
24
+ gap?: number;
25
+ style?: React.CSSProperties;
26
+ className?: string;
27
+ }
28
+ export declare function CTAOverlayHero(props: CTAOverlayHeroProps): import("react/jsx-runtime").JSX.Element;
29
+ //# sourceMappingURL=CTAOverlayHero.d.ts.map