@electroplix/components 0.1.0 → 0.2.1

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 +512 -3
  2. package/cli.cjs +440 -0
  3. package/dist/README.md +14 -93
  4. package/dist/index.esm.js +17777 -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 +44 -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,8 @@
1
+ import React from "react";
2
+ /**
3
+ * Wraps children in ElectroplixProvider for testing.
4
+ */
5
+ export declare function TestWrapper({ children }: {
6
+ children: React.ReactNode;
7
+ }): import("react/jsx-runtime").JSX.Element;
8
+ //# sourceMappingURL=test-utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"test-utils.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/__tests__/test-utils.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B;;GAEG;AACH,wBAAgB,WAAW,CAAC,EAAE,QAAQ,EAAE,EAAE;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,2CAEtE"}
@@ -0,0 +1,88 @@
1
+ import React from "react";
2
+ export interface BlogPost {
3
+ id: string;
4
+ title: string;
5
+ slug?: string;
6
+ excerpt?: string;
7
+ coverImage?: string;
8
+ author?: {
9
+ name: string;
10
+ avatar?: string;
11
+ };
12
+ date?: string;
13
+ readTime?: string;
14
+ tags?: string[];
15
+ category?: string;
16
+ }
17
+ export interface BlogCardProps {
18
+ post: BlogPost;
19
+ onClick?: (post: BlogPost) => void;
20
+ variant?: "vertical" | "horizontal";
21
+ }
22
+ export declare function BlogCard({ post, onClick, variant }: BlogCardProps): import("react/jsx-runtime").JSX.Element;
23
+ export interface AuthorBylineProps {
24
+ name: string;
25
+ avatar?: string;
26
+ bio?: string;
27
+ date?: string;
28
+ readTime?: string;
29
+ }
30
+ export declare function AuthorByline({ name, avatar, bio, date, readTime }: AuthorBylineProps): import("react/jsx-runtime").JSX.Element;
31
+ export interface TagListProps {
32
+ tags: string[];
33
+ onTagClick?: (tag: string) => void;
34
+ activeTag?: string;
35
+ }
36
+ export declare function TagList({ tags, onTagClick, activeTag }: TagListProps): import("react/jsx-runtime").JSX.Element;
37
+ export interface BlogBadgeProps {
38
+ label: string;
39
+ color?: string;
40
+ }
41
+ export declare function BlogBadge({ label, color }: BlogBadgeProps): import("react/jsx-runtime").JSX.Element;
42
+ export interface ReadingBarProps {
43
+ color?: string;
44
+ height?: number;
45
+ containerRef?: React.RefObject<HTMLElement | null>;
46
+ }
47
+ export declare function ReadingBar({ color, height, containerRef }: ReadingBarProps): import("react/jsx-runtime").JSX.Element;
48
+ export interface ArticleRendererProps {
49
+ /** Pre-rendered HTML string. ⚠️ Caller is responsible for sanitization (e.g. DOMPurify). */
50
+ html: string;
51
+ maxW?: number;
52
+ }
53
+ /**
54
+ * Renders trusted HTML content. **Warning:** The `html` prop is rendered
55
+ * via `dangerouslySetInnerHTML`. Always sanitize untrusted content before
56
+ * passing it (e.g. with DOMPurify).
57
+ */
58
+ export declare function ArticleRenderer({ html, maxW }: ArticleRendererProps): import("react/jsx-runtime").JSX.Element;
59
+ export interface RelatedPostsProps {
60
+ posts: BlogPost[];
61
+ title?: string;
62
+ onPostClick?: (post: BlogPost) => void;
63
+ }
64
+ export declare function RelatedPosts({ posts, title, onPostClick }: RelatedPostsProps): import("react/jsx-runtime").JSX.Element;
65
+ export interface ArchiveGroup {
66
+ label: string;
67
+ posts: BlogPost[];
68
+ }
69
+ export interface ArchiveListProps {
70
+ groups: ArchiveGroup[];
71
+ onPostClick?: (post: BlogPost) => void;
72
+ }
73
+ export declare function ArchiveList({ groups, onPostClick }: ArchiveListProps): import("react/jsx-runtime").JSX.Element;
74
+ export interface BlogComment {
75
+ id: string;
76
+ author: string;
77
+ avatar?: string;
78
+ text: string;
79
+ date?: string;
80
+ replies?: BlogComment[];
81
+ }
82
+ export interface CommentsSectionProps {
83
+ comments: BlogComment[];
84
+ onSubmit?: (text: string, parentId?: string) => void;
85
+ title?: string;
86
+ }
87
+ export declare function CommentsSection({ comments, onSubmit, title }: CommentsSectionProps): import("react/jsx-runtime").JSX.Element;
88
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/blog/index.tsx"],"names":[],"mappings":"AACA,OAAO,KAA+C,MAAM,OAAO,CAAC;AAiBpE,MAAM,WAAW,QAAQ;IAAG,EAAE,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAC;IAAC,UAAU,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAAC,QAAQ,CAAC,EAAE,MAAM,CAAA;CAAE;AAI/N,MAAM,WAAW,aAAa;IAAG,IAAI,EAAE,QAAQ,CAAC;IAAC,OAAO,CAAC,EAAE,CAAC,IAAI,EAAE,QAAQ,KAAK,IAAI,CAAC;IAAC,OAAO,CAAC,EAAE,UAAU,GAAG,YAAY,CAAA;CAAE;AAE1H,wBAAgB,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,OAAoB,EAAE,EAAE,aAAa,2CAkB9E;AAID,MAAM,WAAW,iBAAiB;IAAG,IAAI,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IAAC,GAAG,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,EAAE,MAAM,CAAA;CAAE;AAEpH,wBAAgB,YAAY,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,iBAAiB,2CAgBpF;AAID,MAAM,WAAW,YAAY;IAAG,IAAI,EAAE,MAAM,EAAE,CAAC;IAAC,UAAU,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE;AAExG,wBAAgB,OAAO,CAAC,EAAE,IAAS,EAAE,UAAU,EAAE,SAAS,EAAE,EAAE,YAAY,2CAWzE;AAID,MAAM,WAAW,cAAc;IAAG,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAA;CAAE;AAEjE,wBAAgB,SAAS,CAAC,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,cAAc,2CAMzD;AAID,MAAM,WAAW,eAAe;IAAG,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IAAC,YAAY,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,WAAW,GAAG,IAAI,CAAC,CAAA;CAAE;AAExH,wBAAgB,UAAU,CAAC,EAAE,KAAK,EAAE,MAAU,EAAE,YAAY,EAAE,EAAE,eAAe,2CAgB9E;AAID,MAAM,WAAW,oBAAoB;IACnC,4FAA4F;IAC5F,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;;;GAIG;AACH,wBAAgB,eAAe,CAAC,EAAE,IAAI,EAAE,IAAU,EAAE,EAAE,oBAAoB,2CAOzE;AAID,MAAM,WAAW,iBAAiB;IAAG,KAAK,EAAE,QAAQ,EAAE,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,QAAQ,KAAK,IAAI,CAAA;CAAE;AAEhH,wBAAgB,YAAY,CAAC,EAAE,KAAU,EAAE,KAAuB,EAAE,WAAW,EAAE,EAAE,iBAAiB,2CAUnG;AAID,MAAM,WAAW,YAAY;IAAG,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,QAAQ,EAAE,CAAA;CAAE;AAClE,MAAM,WAAW,gBAAgB;IAAG,MAAM,EAAE,YAAY,EAAE,CAAC;IAAC,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,QAAQ,KAAK,IAAI,CAAA;CAAE;AAEpG,wBAAgB,WAAW,CAAC,EAAE,MAAW,EAAE,WAAW,EAAE,EAAE,gBAAgB,2CAwBzE;AAID,MAAM,WAAW,WAAW;IAAG,EAAE,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,WAAW,EAAE,CAAA;CAAE;AAClI,MAAM,WAAW,oBAAoB;IAAG,QAAQ,EAAE,WAAW,EAAE,CAAC;IAAC,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAA;CAAE;AAEvI,wBAAgB,eAAe,CAAC,EAAE,QAAa,EAAE,QAAQ,EAAE,KAAkB,EAAE,EAAE,oBAAoB,2CA4BpG"}
@@ -0,0 +1,71 @@
1
+ import React from "react";
2
+ import type { IconName } from "../../core/icons";
3
+ export type ButtonBaseProps = {
4
+ label?: string;
5
+ onClick?: () => void;
6
+ bgColor?: string;
7
+ textColor?: string;
8
+ accentColor?: string;
9
+ borderColor?: string;
10
+ fontFamily?: string;
11
+ fontSize?: number;
12
+ fontWeight?: string;
13
+ letterSpacing?: number;
14
+ lineHeight?: number;
15
+ radius?: number;
16
+ paddingX?: number;
17
+ paddingY?: number;
18
+ gap?: number;
19
+ icon?: IconName;
20
+ iconNode?: React.ReactNode;
21
+ isLoading?: boolean;
22
+ disabled?: boolean;
23
+ width?: string | number;
24
+ height?: string | number;
25
+ opacity?: number;
26
+ shadow?: string;
27
+ transitionDuration?: number;
28
+ className?: string;
29
+ style?: React.CSSProperties;
30
+ };
31
+ export declare const baseBtn: (p: ButtonBaseProps) => React.CSSProperties;
32
+ export declare function PrimaryButton(p: ButtonBaseProps): import("react/jsx-runtime").JSX.Element;
33
+ export declare function SecondaryButton(p: ButtonBaseProps): import("react/jsx-runtime").JSX.Element;
34
+ export declare function TertiaryButton(p: ButtonBaseProps): import("react/jsx-runtime").JSX.Element;
35
+ export type IconButtonProps = ButtonBaseProps & {
36
+ size?: number;
37
+ };
38
+ export declare function IconButton(p: IconButtonProps): import("react/jsx-runtime").JSX.Element;
39
+ export type FabProps = ButtonBaseProps & {
40
+ position?: "bottom-right" | "bottom-left";
41
+ offset?: number;
42
+ fixed?: boolean;
43
+ };
44
+ export declare function FloatingActionButton(p: FabProps): import("react/jsx-runtime").JSX.Element;
45
+ export type GroupButtonItem = ButtonBaseProps & {
46
+ active?: boolean;
47
+ };
48
+ export type ButtonGroupProps = {
49
+ buttons: GroupButtonItem[];
50
+ toggle?: boolean;
51
+ onChange?: (index: number) => void;
52
+ bgColor?: string;
53
+ radius?: number;
54
+ accentColor?: string;
55
+ borderColor?: string;
56
+ gap?: number;
57
+ className?: string;
58
+ style?: React.CSSProperties;
59
+ };
60
+ export declare function ButtonGroup(p: ButtonGroupProps): import("react/jsx-runtime").JSX.Element;
61
+ export declare function LoadingButton(p: ButtonBaseProps): import("react/jsx-runtime").JSX.Element;
62
+ export type ShareButtonProps = ButtonBaseProps & {
63
+ url?: string;
64
+ };
65
+ export declare function ShareButton(p: ShareButtonProps): import("react/jsx-runtime").JSX.Element;
66
+ export type DownloadButtonProps = ButtonBaseProps & {
67
+ fileUrl?: string;
68
+ };
69
+ export declare function DownloadButton(p: DownloadButtonProps): import("react/jsx-runtime").JSX.Element;
70
+ export declare function PrintButton(p: ButtonBaseProps): import("react/jsx-runtime").JSX.Element;
71
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/buttons/index.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,24 @@
1
+ import React from "react";
2
+ export interface BlockquoteTestimonialProps {
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
+ quote?: string;
15
+ author?: string;
16
+ role?: string;
17
+ avatarUrl?: string;
18
+ borderColor?: string;
19
+ quoteSize?: number;
20
+ authorSize?: number;
21
+ accentColor?: string;
22
+ }
23
+ export declare function BlockquoteTestimonial({ as: Tag, bgColor, textColor, fontFamily, maxW, px, py, radius, gap, style, className, quote, author, role, avatarUrl, borderColor, quoteSize, authorSize, accentColor, }: BlockquoteTestimonialProps): import("react/jsx-runtime").JSX.Element;
24
+ //# sourceMappingURL=BlockquoteTestimonial.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BlockquoteTestimonial.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/content/BlockquoteTestimonial.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,MAAM,WAAW,0BAA0B;IACzC,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,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,wBAAgB,qBAAqB,CAAC,EACpC,EAAE,EAAE,GAAe,EACnB,OAAO,EACP,SAAS,EACT,UAAU,EACV,IAAU,EACV,EAAO,EACP,EAAO,EACP,MAAW,EACX,GAAQ,EACR,KAAU,EACV,SAAc,EACd,KAAyE,EACzE,MAAsB,EACtB,IAAyB,EACzB,SAAS,EACT,WAAW,EACX,SAAc,EACd,UAAe,EACf,WAAW,GACZ,EAAE,0BAA0B,2CAmG5B"}
@@ -0,0 +1,26 @@
1
+ import React from "react";
2
+ export type CalloutVariant = "info" | "success" | "warning" | "danger";
3
+ export interface CalloutBoxProps {
4
+ as?: React.ElementType;
5
+ bgColor?: string;
6
+ textColor?: string;
7
+ fontFamily?: string;
8
+ maxW?: number;
9
+ px?: number;
10
+ py?: number;
11
+ radius?: number;
12
+ gap?: number;
13
+ style?: React.CSSProperties;
14
+ className?: string;
15
+ variant?: CalloutVariant;
16
+ title?: string;
17
+ message?: string;
18
+ icon?: string;
19
+ titleSize?: number;
20
+ messageSize?: number;
21
+ border?: boolean;
22
+ dismissible?: boolean;
23
+ onDismiss?: () => void;
24
+ }
25
+ export declare function CalloutBox({ as: Tag, bgColor, textColor, fontFamily, maxW, px, py, radius, gap, style, className, variant, title, message, icon, titleSize, messageSize, border, dismissible, onDismiss, }: CalloutBoxProps): import("react/jsx-runtime").JSX.Element | null;
26
+ //# sourceMappingURL=CalloutBox.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CalloutBox.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/content/CalloutBox.tsx"],"names":[],"mappings":"AACA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAMxC,MAAM,MAAM,cAAc,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAC;AAEvE,MAAM,WAAW,eAAe;IAC9B,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,OAAO,CAAC,EAAE,cAAc,CAAC;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,IAAI,CAAC;CACxB;AAoCD,wBAAgB,UAAU,CAAC,EACzB,EAAE,EAAE,GAAe,EACnB,OAAO,EACP,SAAS,EACT,UAAU,EACV,IAAU,EACV,EAAM,EACN,EAAM,EACN,MAAU,EACV,GAAQ,EACR,KAAU,EACV,SAAc,EACd,OAAgB,EAChB,KAAc,EACd,OAAyC,EACzC,IAAI,EACJ,SAAc,EACd,WAAgB,EAChB,MAAa,EACb,WAAmB,EACnB,SAAS,GACV,EAAE,eAAe,kDAgIjB"}
@@ -0,0 +1,26 @@
1
+ import React from "react";
2
+ export interface HeadingSectionProps {
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
+ eyebrow?: string;
15
+ title?: string;
16
+ subtitle?: string;
17
+ align?: "left" | "center" | "right";
18
+ eyebrowSize?: number;
19
+ titleSize?: number;
20
+ subtitleSize?: number;
21
+ spacing?: number;
22
+ accentColor?: string;
23
+ showDecoration?: boolean;
24
+ }
25
+ export declare function HeadingSection({ as: Tag, bgColor, textColor, fontFamily, maxW, px, py, radius, gap, style, className, eyebrow, title, subtitle, align, eyebrowSize, titleSize, subtitleSize, spacing, accentColor, showDecoration, }: HeadingSectionProps): import("react/jsx-runtime").JSX.Element;
26
+ //# sourceMappingURL=HeadingSection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HeadingSection.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/content/HeadingSection.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,MAAM,WAAW,mBAAmB;IAClC,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,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAC;IACpC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED,wBAAgB,cAAc,CAAC,EAC7B,EAAE,EAAE,GAAe,EACnB,OAAO,EACP,SAAS,EACT,UAAU,EACV,IAAU,EACV,EAAO,EACP,EAAO,EACP,MAAW,EACX,GAAQ,EACR,KAAU,EACV,SAAc,EACd,OAAoB,EACpB,KAAuB,EACvB,QAAkE,EAClE,KAAc,EACd,WAAgB,EAChB,SAAc,EACd,YAAiB,EACjB,OAAY,EACZ,WAAW,EACX,cAAqB,GACtB,EAAE,mBAAmB,2CAiHrB"}
@@ -0,0 +1,24 @@
1
+ import React from "react";
2
+ export interface InlineCodeProps {
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
+ text: string;
15
+ codeBg?: string;
16
+ codeColor?: string;
17
+ codePx?: string;
18
+ codeRadius?: number;
19
+ size?: number;
20
+ accentColor?: string;
21
+ copyable?: boolean;
22
+ }
23
+ export declare function InlineCodeText({ as: Tag, bgColor, textColor, fontFamily, maxW, px, py, radius, gap, style, className, text, codeBg, codeColor, codePx, codeRadius, size, accentColor, copyable, }: InlineCodeProps): import("react/jsx-runtime").JSX.Element;
24
+ //# sourceMappingURL=InlineCodeText.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InlineCodeText.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/content/InlineCodeText.tsx"],"names":[],"mappings":"AACA,OAAO,KAA4B,MAAM,OAAO,CAAC;AAMjD,MAAM,WAAW,eAAe;IAC9B,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,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,wBAAgB,cAAc,CAAC,EAC7B,EAAE,EAAE,GAAe,EACnB,OAAO,EACP,SAAS,EACT,UAAU,EACV,IAAU,EACV,EAAO,EACP,EAAO,EACP,MAAW,EACX,GAAQ,EACR,KAAU,EACV,SAAc,EACd,IAA0F,EAC1F,MAAM,EACN,SAAS,EACT,MAAkB,EAClB,UAAc,EACd,IAAS,EACT,WAAW,EACX,QAAe,GAChB,EAAE,eAAe,2CA4GjB"}
@@ -0,0 +1,23 @@
1
+ import React from "react";
2
+ export interface ParagraphBlockProps {
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
+ paragraphs: string[];
15
+ size?: number;
16
+ leading?: number;
17
+ align?: "left" | "center" | "right" | "justify";
18
+ accentColor?: string;
19
+ showDropCap?: boolean;
20
+ title?: string;
21
+ }
22
+ export declare function ParagraphBlock({ as: Tag, bgColor, textColor, fontFamily, maxW, px, py, radius, gap, style, className, paragraphs, size, leading, align, accentColor, showDropCap, title, }: ParagraphBlockProps): import("react/jsx-runtime").JSX.Element;
23
+ //# sourceMappingURL=ParagraphBlock.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ParagraphBlock.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/content/ParagraphBlock.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,MAAM,WAAW,mBAAmB;IAClC,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,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,SAAS,CAAC;IAChD,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,wBAAgB,cAAc,CAAC,EAC7B,EAAE,EAAE,GAAe,EACnB,OAAO,EACP,SAAS,EACT,UAAU,EACV,IAAU,EACV,EAAO,EACP,EAAO,EACP,MAAW,EACX,GAAQ,EACR,KAAU,EACV,SAAc,EACd,UAGC,EACD,IAAS,EACT,OAAc,EACd,KAAc,EACd,WAAW,EACX,WAAmB,EACnB,KAAK,GACN,EAAE,mBAAmB,2CAgHrB"}
@@ -0,0 +1,20 @@
1
+ import React from "react";
2
+ export interface RichMarkdownProps {
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
+ markdown: string;
15
+ baseSize?: number;
16
+ accentColor?: string;
17
+ title?: string;
18
+ }
19
+ export declare function RichMarkdown({ as: Tag, bgColor, textColor, fontFamily, maxW, px, py, radius, gap, style, className, markdown, baseSize, accentColor, title, }: RichMarkdownProps): import("react/jsx-runtime").JSX.Element;
20
+ //# sourceMappingURL=RichMarkdown.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RichMarkdown.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/content/RichMarkdown.tsx"],"names":[],"mappings":"AACA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAqEvC,MAAM,WAAW,iBAAiB;IAChC,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,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,wBAAgB,YAAY,CAAC,EAC3B,EAAE,EAAE,GAAe,EACnB,OAAO,EACP,SAAS,EACT,UAAU,EACV,IAAU,EACV,EAAO,EACP,EAAO,EACP,MAAW,EACX,GAAQ,EACR,KAAU,EACV,SAAc,EACd,QAAoM,EACpM,QAAa,EACb,WAAW,EACX,KAAK,GACN,EAAE,iBAAiB,2CAkDnB"}
@@ -0,0 +1,7 @@
1
+ export { BlockquoteTestimonial, type BlockquoteTestimonialProps, } from "./BlockquoteTestimonial";
2
+ export { CalloutBox, type CalloutBoxProps, type CalloutVariant } from "./CalloutBox";
3
+ export { HeadingSection, type HeadingSectionProps } from "./HeadingSection";
4
+ export { InlineCodeText, type InlineCodeProps } from "./InlineCodeText";
5
+ export { ParagraphBlock, type ParagraphBlockProps } from "./ParagraphBlock";
6
+ export { RichMarkdown, type RichMarkdownProps } from "./RichMarkdown";
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/content/index.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,qBAAqB,EACrB,KAAK,0BAA0B,GAChC,MAAM,yBAAyB,CAAC;AACjC,OAAO,EAAE,UAAU,EAAE,KAAK,eAAe,EAAE,KAAK,cAAc,EAAE,MAAM,cAAc,CAAC;AACrF,OAAO,EAAE,cAAc,EAAE,KAAK,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAC5E,OAAO,EAAE,cAAc,EAAE,KAAK,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACxE,OAAO,EAAE,cAAc,EAAE,KAAK,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAC5E,OAAO,EAAE,YAAY,EAAE,KAAK,iBAAiB,EAAE,MAAM,gBAAgB,CAAC"}
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ export type BadgeTone = "neutral" | "success" | "warning" | "danger" | "info";
3
+ export interface BadgeProps {
4
+ children: React.ReactNode;
5
+ tone?: BadgeTone;
6
+ pill?: boolean;
7
+ }
8
+ export declare function Badge({ children, tone, pill }: BadgeProps): import("react/jsx-runtime").JSX.Element;
9
+ //# sourceMappingURL=Badge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Badge.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/data-display/Badge.tsx"],"names":[],"mappings":"AACA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAKxC,MAAM,MAAM,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,GAAG,MAAM,CAAC;AAE9E,MAAM,WAAW,UAAU;IACzB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB;AAUD,wBAAgB,KAAK,CAAC,EAAE,QAAQ,EAAE,IAAgB,EAAE,IAAW,EAAE,EAAE,UAAU,2CAwC5E"}
@@ -0,0 +1,8 @@
1
+ import { type BadgeTone } from "./Badge";
2
+ export interface BadgeGroupProps {
3
+ items: string[];
4
+ tone?: BadgeTone;
5
+ title?: string;
6
+ }
7
+ export declare function BadgeGroup({ items, tone, title }: BadgeGroupProps): import("react/jsx-runtime").JSX.Element;
8
+ //# sourceMappingURL=BadgeGroup.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BadgeGroup.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/data-display/BadgeGroup.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAS,KAAK,SAAS,EAAE,MAAM,SAAS,CAAC;AAIhD,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,wBAAgB,UAAU,CAAC,EAAE,KAAU,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,eAAe,2CAsEtE"}
@@ -0,0 +1,12 @@
1
+ export interface BarChartProps {
2
+ data: number[];
3
+ labels?: string[];
4
+ width?: number;
5
+ height?: number;
6
+ title?: string;
7
+ showGrid?: boolean;
8
+ padding?: number;
9
+ barRadius?: number;
10
+ }
11
+ export declare function BarChart({ data, labels, width, height, title, showGrid, padding, barRadius, }: BarChartProps): import("react/jsx-runtime").JSX.Element;
12
+ //# sourceMappingURL=BarChart.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BarChart.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/data-display/BarChart.tsx"],"names":[],"mappings":"AAOA,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,QAAQ,CAAC,EACvB,IAAS,EACT,MAAW,EACX,KAAW,EACX,MAAY,EACZ,KAAK,EACL,QAAe,EACf,OAAY,EACZ,SAAa,GACd,EAAE,aAAa,2CAkJf"}
@@ -0,0 +1,15 @@
1
+ export interface CalendarMark {
2
+ date: number;
3
+ label?: string;
4
+ tone?: "neutral" | "success" | "warning" | "danger" | "info";
5
+ }
6
+ export interface CalendarGridProps {
7
+ year: number;
8
+ month: number;
9
+ startOn?: 0 | 1;
10
+ marks?: CalendarMark[];
11
+ title?: string;
12
+ onDateClick?: (date: number) => void;
13
+ }
14
+ export declare function CalendarGrid({ year, month, startOn, marks, title, onDateClick, }: CalendarGridProps): import("react/jsx-runtime").JSX.Element;
15
+ //# sourceMappingURL=CalendarGrid.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CalendarGrid.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/data-display/CalendarGrid.tsx"],"names":[],"mappings":"AAQA,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,GAAG,MAAM,CAAC;CAC9D;AAED,MAAM,WAAW,iBAAiB;IAChC,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC;IAChB,KAAK,CAAC,EAAE,YAAY,EAAE,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;CACtC;AAED,wBAAgB,YAAY,CAAC,EAC3B,IAAI,EACJ,KAAK,EACL,OAAW,EACX,KAAU,EACV,KAAK,EACL,WAAW,GACZ,EAAE,iBAAiB,2CA4EnB"}
@@ -0,0 +1,24 @@
1
+ import React from "react";
2
+ export interface DataTableColumn<T> {
3
+ key: keyof T;
4
+ label: string;
5
+ width?: number | string;
6
+ align?: "left" | "center" | "right";
7
+ render?: (row: T) => React.ReactNode;
8
+ sortable?: boolean;
9
+ }
10
+ export interface DataTableProps<T> {
11
+ columns: DataTableColumn<T>[];
12
+ rows: T[];
13
+ pageSize?: number;
14
+ zebra?: boolean;
15
+ compact?: boolean;
16
+ caption?: string;
17
+ initialSort?: {
18
+ key: keyof T;
19
+ dir: "asc" | "desc";
20
+ };
21
+ searchable?: boolean;
22
+ }
23
+ export declare function DataTable<T extends Record<string, any>>({ columns, rows, pageSize, zebra, compact, caption, initialSort, searchable, }: DataTableProps<T>): import("react/jsx-runtime").JSX.Element;
24
+ //# sourceMappingURL=DataTable.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DataTable.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/data-display/DataTable.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA4B,MAAM,OAAO,CAAC;AAMjD,MAAM,WAAW,eAAe,CAAC,CAAC;IAChC,GAAG,EAAE,MAAM,CAAC,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAC;IACpC,MAAM,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,KAAK,KAAK,CAAC,SAAS,CAAC;IACrC,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,cAAc,CAAC,CAAC;IAC/B,OAAO,EAAE,eAAe,CAAC,CAAC,CAAC,EAAE,CAAC;IAC9B,IAAI,EAAE,CAAC,EAAE,CAAC;IACV,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC,CAAC;QAAC,GAAG,EAAE,KAAK,GAAG,MAAM,CAAA;KAAE,CAAC;IACpD,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,wBAAgB,SAAS,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,EACvD,OAAY,EACZ,IAAS,EACT,QAAY,EACZ,KAAY,EACZ,OAAe,EACf,OAAO,EACP,WAAW,EACX,UAAkB,GACnB,EAAE,cAAc,CAAC,CAAC,CAAC,2CA6JnB"}
@@ -0,0 +1,11 @@
1
+ export interface LineChartProps {
2
+ data: number[];
3
+ labels?: string[];
4
+ width?: number;
5
+ height?: number;
6
+ title?: string;
7
+ showGrid?: boolean;
8
+ padding?: number;
9
+ }
10
+ export declare function LineChart({ data, labels, width, height, title, showGrid, padding, }: LineChartProps): import("react/jsx-runtime").JSX.Element;
11
+ //# sourceMappingURL=LineChart.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LineChart.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/data-display/LineChart.tsx"],"names":[],"mappings":"AAOA,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,wBAAgB,SAAS,CAAC,EACxB,IAAS,EACT,MAAW,EACX,KAAW,EACX,MAAY,EACZ,KAAK,EACL,QAAe,EACf,OAAY,GACb,EAAE,cAAc,2CAoJhB"}
@@ -0,0 +1,9 @@
1
+ export interface PieChartProps {
2
+ data: number[];
3
+ labels?: string[];
4
+ width?: number;
5
+ height?: number;
6
+ title?: string;
7
+ }
8
+ export declare function PieChart({ data, labels, width, height, title }: PieChartProps): import("react/jsx-runtime").JSX.Element;
9
+ //# sourceMappingURL=PieChart.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PieChart.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/data-display/PieChart.tsx"],"names":[],"mappings":"AAOA,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAID,wBAAgB,QAAQ,CAAC,EAAE,IAAS,EAAE,MAAW,EAAE,KAAW,EAAE,MAAY,EAAE,KAAK,EAAE,EAAE,aAAa,2CAoFnG"}
@@ -0,0 +1,11 @@
1
+ export interface ProgressBarProps {
2
+ value: number;
3
+ showLabel?: boolean;
4
+ height?: number;
5
+ rounded?: boolean;
6
+ label?: string;
7
+ showTrend?: boolean;
8
+ previousValue?: number;
9
+ }
10
+ export declare function ProgressBar({ value, showLabel, height, rounded, label, showTrend, previousValue, }: ProgressBarProps): import("react/jsx-runtime").JSX.Element;
11
+ //# sourceMappingURL=ProgressBar.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ProgressBar.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/data-display/ProgressBar.tsx"],"names":[],"mappings":"AAOA,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,wBAAgB,WAAW,CAAC,EAC1B,KAAS,EACT,SAAgB,EAChB,MAAW,EACX,OAAc,EACd,KAAK,EACL,SAAiB,EACjB,aAAa,GACd,EAAE,gBAAgB,2CAmDlB"}
@@ -0,0 +1,10 @@
1
+ export interface RatingStarsProps {
2
+ value: number;
3
+ outOf?: number;
4
+ size?: number;
5
+ showValue?: boolean;
6
+ interactive?: boolean;
7
+ onChange?: (value: number) => void;
8
+ }
9
+ export declare function RatingStars({ value, outOf, size, showValue, interactive, onChange, }: RatingStarsProps): import("react/jsx-runtime").JSX.Element;
10
+ //# sourceMappingURL=RatingStars.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RatingStars.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/data-display/RatingStars.tsx"],"names":[],"mappings":"AA4CA,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACpC;AAED,wBAAgB,WAAW,CAAC,EAC1B,KAAS,EACT,KAAS,EACT,IAAS,EACT,SAAgB,EAChB,WAAmB,EACnB,QAAQ,GACT,EAAE,gBAAgB,2CAiClB"}
@@ -0,0 +1,7 @@
1
+ export interface SparklineProps {
2
+ data: number[];
3
+ width?: number;
4
+ height?: number;
5
+ }
6
+ export declare function Sparkline({ data, width, height }: SparklineProps): import("react/jsx-runtime").JSX.Element;
7
+ //# sourceMappingURL=Sparkline.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Sparkline.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/data-display/Sparkline.tsx"],"names":[],"mappings":"AAOA,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,wBAAgB,SAAS,CAAC,EAAE,IAAS,EAAE,KAAW,EAAE,MAAW,EAAE,EAAE,cAAc,2CAqDhF"}
@@ -0,0 +1,12 @@
1
+ export interface TimelineItem {
2
+ id: string;
3
+ title: string;
4
+ description?: string;
5
+ time?: string;
6
+ status?: "done" | "in_progress" | "blocked" | "todo";
7
+ }
8
+ export interface TimelineProps {
9
+ items: TimelineItem[];
10
+ }
11
+ export declare function Timeline({ items }: TimelineProps): import("react/jsx-runtime").JSX.Element;
12
+ //# sourceMappingURL=Timeline.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Timeline.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/data-display/Timeline.tsx"],"names":[],"mappings":"AAOA,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,GAAG,aAAa,GAAG,SAAS,GAAG,MAAM,CAAC;CACtD;AAED,MAAM,WAAW,aAAa;IAC5B,KAAK,EAAE,YAAY,EAAE,CAAC;CACvB;AA8ED,wBAAgB,QAAQ,CAAC,EAAE,KAAU,EAAE,EAAE,aAAa,2CAwBrD"}
@@ -0,0 +1,12 @@
1
+ export { Badge, type BadgeProps, type BadgeTone } from "./Badge";
2
+ export { BadgeGroup, type BadgeGroupProps } from "./BadgeGroup";
3
+ export { BarChart, type BarChartProps } from "./BarChart";
4
+ export { CalendarGrid, type CalendarGridProps, type CalendarMark } from "./CalendarGrid";
5
+ export { DataTable, type DataTableProps, type DataTableColumn } from "./DataTable";
6
+ export { LineChart, type LineChartProps } from "./LineChart";
7
+ export { PieChart, type PieChartProps } from "./PieChart";
8
+ export { ProgressBar, type ProgressBarProps } from "./ProgressBar";
9
+ export { RatingStars, type RatingStarsProps } from "./RatingStars";
10
+ export { Sparkline, type SparklineProps } from "./Sparkline";
11
+ export { Timeline, type TimelineProps, type TimelineItem } from "./Timeline";
12
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../packages/components/src/components/data-display/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,KAAK,UAAU,EAAE,KAAK,SAAS,EAAE,MAAM,SAAS,CAAC;AACjE,OAAO,EAAE,UAAU,EAAE,KAAK,eAAe,EAAE,MAAM,cAAc,CAAC;AAChE,OAAO,EAAE,QAAQ,EAAE,KAAK,aAAa,EAAE,MAAM,YAAY,CAAC;AAC1D,OAAO,EAAE,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACzF,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,KAAK,eAAe,EAAE,MAAM,aAAa,CAAC;AACnF,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,MAAM,aAAa,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,KAAK,aAAa,EAAE,MAAM,YAAY,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,KAAK,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACnE,OAAO,EAAE,WAAW,EAAE,KAAK,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACnE,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,MAAM,aAAa,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,KAAK,aAAa,EAAE,KAAK,YAAY,EAAE,MAAM,YAAY,CAAC"}