@opensite/ui 3.3.0 → 3.3.2

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 (43) hide show
  1. package/dist/article-breadcrumb-social.cjs +4 -7
  2. package/dist/article-breadcrumb-social.d.cts +2 -11
  3. package/dist/article-breadcrumb-social.d.ts +2 -11
  4. package/dist/article-breadcrumb-social.js +4 -7
  5. package/dist/article-chapters-author.cjs +3 -6
  6. package/dist/article-chapters-author.d.cts +2 -11
  7. package/dist/article-chapters-author.d.ts +2 -11
  8. package/dist/article-chapters-author.js +3 -6
  9. package/dist/article-compact-toc.cjs +4 -7
  10. package/dist/article-compact-toc.d.cts +2 -11
  11. package/dist/article-compact-toc.d.ts +2 -11
  12. package/dist/article-compact-toc.js +4 -7
  13. package/dist/article-hero-prose.cjs +4 -7
  14. package/dist/article-hero-prose.d.cts +2 -11
  15. package/dist/article-hero-prose.d.ts +2 -11
  16. package/dist/article-hero-prose.js +4 -7
  17. package/dist/article-sidebar-sticky.cjs +3 -6
  18. package/dist/article-sidebar-sticky.d.cts +2 -11
  19. package/dist/article-sidebar-sticky.d.ts +2 -11
  20. package/dist/article-sidebar-sticky.js +3 -6
  21. package/dist/article-toc-sidebar.cjs +3 -6
  22. package/dist/article-toc-sidebar.d.cts +1 -10
  23. package/dist/article-toc-sidebar.d.ts +1 -10
  24. package/dist/article-toc-sidebar.js +3 -6
  25. package/dist/feature-capabilities-grid.cjs +10 -43
  26. package/dist/feature-capabilities-grid.d.cts +0 -4
  27. package/dist/feature-capabilities-grid.d.ts +0 -4
  28. package/dist/feature-capabilities-grid.js +10 -43
  29. package/dist/hero-conversation-intelligence.cjs +1 -1
  30. package/dist/hero-conversation-intelligence.js +1 -1
  31. package/dist/longform-content.cjs +1 -1
  32. package/dist/longform-content.d.cts +1 -1
  33. package/dist/longform-content.d.ts +1 -1
  34. package/dist/longform-content.js +1 -1
  35. package/dist/navbar-mega-menu.cjs +14 -5
  36. package/dist/navbar-mega-menu.js +14 -5
  37. package/dist/registry.cjs +64 -117
  38. package/dist/registry.js +64 -117
  39. package/dist/stats-growth-timeline.cjs +87 -64
  40. package/dist/stats-growth-timeline.d.cts +5 -1
  41. package/dist/stats-growth-timeline.d.ts +5 -1
  42. package/dist/stats-growth-timeline.js +88 -65
  43. package/package.json +1 -1
@@ -547,7 +547,7 @@ var Section = React5__namespace.default.forwardRef(
547
547
  Section.displayName = "Section";
548
548
  function LongformContent({
549
549
  children,
550
- renderMode = "jsx",
550
+ renderMode = "markdown",
551
551
  markdownString,
552
552
  optixFlowConfig,
553
553
  markdownStyles
@@ -599,8 +599,6 @@ function ArticleBreadcrumbSocialComponent({
599
599
  heroImageSrc,
600
600
  heroImageAlt,
601
601
  heroMediaSlot,
602
- children,
603
- renderMode = "jsx",
604
602
  markdownString,
605
603
  markdownStyles,
606
604
  enableTocTracking,
@@ -746,7 +744,7 @@ function ArticleBreadcrumbSocialComponent({
746
744
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative", children: [
747
745
  breadcrumbsContent,
748
746
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid gap-10 lg:grid-cols-[minmax(0,1fr)_280px]", children: [
749
- (children || renderMode === "markdown" && markdownString) && /* @__PURE__ */ jsxRuntime.jsxs(
747
+ markdownString && /* @__PURE__ */ jsxRuntime.jsxs(
750
748
  "article",
751
749
  {
752
750
  className: cn(
@@ -769,11 +767,10 @@ function ArticleBreadcrumbSocialComponent({
769
767
  /* @__PURE__ */ jsxRuntime.jsx(
770
768
  LongformContent,
771
769
  {
772
- renderMode,
770
+ renderMode: "markdown",
773
771
  markdownString,
774
772
  optixFlowConfig,
775
- markdownStyles,
776
- children
773
+ markdownStyles
777
774
  }
778
775
  ),
779
776
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center justify-center py-12", children: /* @__PURE__ */ jsxRuntime.jsx(
@@ -118,16 +118,7 @@ interface ArticleBreadcrumbSocialProps {
118
118
  */
119
119
  heroMediaSlot?: React.ReactNode;
120
120
  /**
121
- * Article body content (replaces hardcoded prose)
122
- */
123
- children?: React.ReactNode;
124
- /**
125
- * Render mode for content
126
- * @default "jsx"
127
- */
128
- renderMode?: "jsx" | "markdown";
129
- /**
130
- * Markdown string to render (when renderMode is "markdown")
121
+ * Markdown string to render
131
122
  */
132
123
  markdownString?: string;
133
124
  /**
@@ -170,6 +161,6 @@ interface ArticleBreadcrumbSocialProps {
170
161
  /** Optional Section ID */
171
162
  sectionId?: string;
172
163
  }
173
- declare function ArticleBreadcrumbSocialComponent({ sectionId, className, breadcrumbClassName, articleClassName, sidebarClassName, titleClassName, authorClassName, heroImageClassName, tocClassName, breadcrumbs, breadcrumbsSlot, currentPage, title, description, author, authorSlot, publishDate, readTime, sections, tocSlot, renderSectionLink, heroImageSrc, heroImageAlt, heroMediaSlot, children, renderMode, markdownString, markdownStyles, enableTocTracking, enableBackToTop, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, patternClassName, }: ArticleBreadcrumbSocialProps): react_jsx_runtime.JSX.Element;
164
+ declare function ArticleBreadcrumbSocialComponent({ sectionId, className, breadcrumbClassName, articleClassName, sidebarClassName, titleClassName, authorClassName, heroImageClassName, tocClassName, breadcrumbs, breadcrumbsSlot, currentPage, title, description, author, authorSlot, publishDate, readTime, sections, tocSlot, renderSectionLink, heroImageSrc, heroImageAlt, heroMediaSlot, markdownString, markdownStyles, enableTocTracking, enableBackToTop, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, patternClassName, }: ArticleBreadcrumbSocialProps): react_jsx_runtime.JSX.Element;
174
165
 
175
166
  export { type ArticleBreadcrumbSection, ArticleBreadcrumbSocialComponent as ArticleBreadcrumbSocial, type ArticleBreadcrumbSocialProps };
@@ -118,16 +118,7 @@ interface ArticleBreadcrumbSocialProps {
118
118
  */
119
119
  heroMediaSlot?: React.ReactNode;
120
120
  /**
121
- * Article body content (replaces hardcoded prose)
122
- */
123
- children?: React.ReactNode;
124
- /**
125
- * Render mode for content
126
- * @default "jsx"
127
- */
128
- renderMode?: "jsx" | "markdown";
129
- /**
130
- * Markdown string to render (when renderMode is "markdown")
121
+ * Markdown string to render
131
122
  */
132
123
  markdownString?: string;
133
124
  /**
@@ -170,6 +161,6 @@ interface ArticleBreadcrumbSocialProps {
170
161
  /** Optional Section ID */
171
162
  sectionId?: string;
172
163
  }
173
- declare function ArticleBreadcrumbSocialComponent({ sectionId, className, breadcrumbClassName, articleClassName, sidebarClassName, titleClassName, authorClassName, heroImageClassName, tocClassName, breadcrumbs, breadcrumbsSlot, currentPage, title, description, author, authorSlot, publishDate, readTime, sections, tocSlot, renderSectionLink, heroImageSrc, heroImageAlt, heroMediaSlot, children, renderMode, markdownString, markdownStyles, enableTocTracking, enableBackToTop, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, patternClassName, }: ArticleBreadcrumbSocialProps): react_jsx_runtime.JSX.Element;
164
+ declare function ArticleBreadcrumbSocialComponent({ sectionId, className, breadcrumbClassName, articleClassName, sidebarClassName, titleClassName, authorClassName, heroImageClassName, tocClassName, breadcrumbs, breadcrumbsSlot, currentPage, title, description, author, authorSlot, publishDate, readTime, sections, tocSlot, renderSectionLink, heroImageSrc, heroImageAlt, heroMediaSlot, markdownString, markdownStyles, enableTocTracking, enableBackToTop, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, patternClassName, }: ArticleBreadcrumbSocialProps): react_jsx_runtime.JSX.Element;
174
165
 
175
166
  export { type ArticleBreadcrumbSection, ArticleBreadcrumbSocialComponent as ArticleBreadcrumbSocial, type ArticleBreadcrumbSocialProps };
@@ -525,7 +525,7 @@ var Section = React5__default.forwardRef(
525
525
  Section.displayName = "Section";
526
526
  function LongformContent({
527
527
  children,
528
- renderMode = "jsx",
528
+ renderMode = "markdown",
529
529
  markdownString,
530
530
  optixFlowConfig,
531
531
  markdownStyles
@@ -577,8 +577,6 @@ function ArticleBreadcrumbSocialComponent({
577
577
  heroImageSrc,
578
578
  heroImageAlt,
579
579
  heroMediaSlot,
580
- children,
581
- renderMode = "jsx",
582
580
  markdownString,
583
581
  markdownStyles,
584
582
  enableTocTracking,
@@ -724,7 +722,7 @@ function ArticleBreadcrumbSocialComponent({
724
722
  /* @__PURE__ */ jsxs("div", { className: "relative", children: [
725
723
  breadcrumbsContent,
726
724
  /* @__PURE__ */ jsxs("div", { className: "grid gap-10 lg:grid-cols-[minmax(0,1fr)_280px]", children: [
727
- (children || renderMode === "markdown" && markdownString) && /* @__PURE__ */ jsxs(
725
+ markdownString && /* @__PURE__ */ jsxs(
728
726
  "article",
729
727
  {
730
728
  className: cn(
@@ -747,11 +745,10 @@ function ArticleBreadcrumbSocialComponent({
747
745
  /* @__PURE__ */ jsx(
748
746
  LongformContent,
749
747
  {
750
- renderMode,
748
+ renderMode: "markdown",
751
749
  markdownString,
752
750
  optixFlowConfig,
753
- markdownStyles,
754
- children
751
+ markdownStyles
755
752
  }
756
753
  ),
757
754
  /* @__PURE__ */ jsx("div", { className: "flex items-center justify-center py-12", children: /* @__PURE__ */ jsx(
@@ -636,7 +636,7 @@ var SocialLinkIcon = React6__namespace.forwardRef(
636
636
  SocialLinkIcon.displayName = "SocialLinkIcon";
637
637
  function LongformContent({
638
638
  children,
639
- renderMode = "jsx",
639
+ renderMode = "markdown",
640
640
  markdownString,
641
641
  optixFlowConfig,
642
642
  markdownStyles
@@ -693,8 +693,6 @@ function ArticleChaptersAuthorComponent({
693
693
  conclusionDescription,
694
694
  conclusionActions,
695
695
  conclusionSlot,
696
- children,
697
- renderMode = "jsx",
698
696
  markdownString,
699
697
  markdownStyles,
700
698
  enableChapterTracking = true,
@@ -953,11 +951,10 @@ function ArticleChaptersAuthorComponent({
953
951
  /* @__PURE__ */ jsxRuntime.jsx(
954
952
  LongformContent,
955
953
  {
956
- renderMode,
954
+ renderMode: "markdown",
957
955
  markdownString,
958
956
  optixFlowConfig,
959
- markdownStyles,
960
- children
957
+ markdownStyles
961
958
  }
962
959
  ),
963
960
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center justify-center py-12", children: /* @__PURE__ */ jsxRuntime.jsx(
@@ -146,16 +146,7 @@ interface ArticleChaptersAuthorProps {
146
146
  */
147
147
  conclusionSlot?: React.ReactNode;
148
148
  /**
149
- * Article body content (replaces hardcoded prose)
150
- */
151
- children?: React.ReactNode;
152
- /**
153
- * Render mode for content
154
- * @default "jsx"
155
- */
156
- renderMode?: "jsx" | "markdown";
157
- /**
158
- * Markdown string to render (when renderMode is "markdown")
149
+ * Markdown string to render
159
150
  */
160
151
  markdownString?: string;
161
152
  /**
@@ -195,6 +186,6 @@ interface ArticleChaptersAuthorProps {
195
186
  /** Optional Section ID */
196
187
  sectionId?: string;
197
188
  }
198
- declare function ArticleChaptersAuthorComponent({ sectionId, className, breadcrumbClassName, headerClassName, titleClassName, subtitleClassName, sidebarClassName, articleClassName, chaptersClassName, authorClassName, conclusionClassName, heroImageClassName, breadcrumbs, breadcrumbsSlot, currentPage, title, subtitle, chapters, chaptersSlot, renderChapterLink, author, authorSlot, heroImageSrc, heroImageAlt, heroMediaSlot, conclusionTitle, conclusionDescription, conclusionActions, conclusionSlot, children, renderMode, markdownString, markdownStyles, enableChapterTracking, optixFlowConfig, background, containerClassName, spacing, patternClassName, pattern, patternOpacity, }: ArticleChaptersAuthorProps): react_jsx_runtime.JSX.Element;
189
+ declare function ArticleChaptersAuthorComponent({ sectionId, className, breadcrumbClassName, headerClassName, titleClassName, subtitleClassName, sidebarClassName, articleClassName, chaptersClassName, authorClassName, conclusionClassName, heroImageClassName, breadcrumbs, breadcrumbsSlot, currentPage, title, subtitle, chapters, chaptersSlot, renderChapterLink, author, authorSlot, heroImageSrc, heroImageAlt, heroMediaSlot, conclusionTitle, conclusionDescription, conclusionActions, conclusionSlot, markdownString, markdownStyles, enableChapterTracking, optixFlowConfig, background, containerClassName, spacing, patternClassName, pattern, patternOpacity, }: ArticleChaptersAuthorProps): react_jsx_runtime.JSX.Element;
199
190
 
200
191
  export { type ArticleAuthor, type ArticleChapter, ArticleChaptersAuthorComponent as ArticleChaptersAuthor, type ArticleChaptersAuthorProps };
@@ -146,16 +146,7 @@ interface ArticleChaptersAuthorProps {
146
146
  */
147
147
  conclusionSlot?: React.ReactNode;
148
148
  /**
149
- * Article body content (replaces hardcoded prose)
150
- */
151
- children?: React.ReactNode;
152
- /**
153
- * Render mode for content
154
- * @default "jsx"
155
- */
156
- renderMode?: "jsx" | "markdown";
157
- /**
158
- * Markdown string to render (when renderMode is "markdown")
149
+ * Markdown string to render
159
150
  */
160
151
  markdownString?: string;
161
152
  /**
@@ -195,6 +186,6 @@ interface ArticleChaptersAuthorProps {
195
186
  /** Optional Section ID */
196
187
  sectionId?: string;
197
188
  }
198
- declare function ArticleChaptersAuthorComponent({ sectionId, className, breadcrumbClassName, headerClassName, titleClassName, subtitleClassName, sidebarClassName, articleClassName, chaptersClassName, authorClassName, conclusionClassName, heroImageClassName, breadcrumbs, breadcrumbsSlot, currentPage, title, subtitle, chapters, chaptersSlot, renderChapterLink, author, authorSlot, heroImageSrc, heroImageAlt, heroMediaSlot, conclusionTitle, conclusionDescription, conclusionActions, conclusionSlot, children, renderMode, markdownString, markdownStyles, enableChapterTracking, optixFlowConfig, background, containerClassName, spacing, patternClassName, pattern, patternOpacity, }: ArticleChaptersAuthorProps): react_jsx_runtime.JSX.Element;
189
+ declare function ArticleChaptersAuthorComponent({ sectionId, className, breadcrumbClassName, headerClassName, titleClassName, subtitleClassName, sidebarClassName, articleClassName, chaptersClassName, authorClassName, conclusionClassName, heroImageClassName, breadcrumbs, breadcrumbsSlot, currentPage, title, subtitle, chapters, chaptersSlot, renderChapterLink, author, authorSlot, heroImageSrc, heroImageAlt, heroMediaSlot, conclusionTitle, conclusionDescription, conclusionActions, conclusionSlot, markdownString, markdownStyles, enableChapterTracking, optixFlowConfig, background, containerClassName, spacing, patternClassName, pattern, patternOpacity, }: ArticleChaptersAuthorProps): react_jsx_runtime.JSX.Element;
199
190
 
200
191
  export { type ArticleAuthor, type ArticleChapter, ArticleChaptersAuthorComponent as ArticleChaptersAuthor, type ArticleChaptersAuthorProps };
@@ -614,7 +614,7 @@ var SocialLinkIcon = React6.forwardRef(
614
614
  SocialLinkIcon.displayName = "SocialLinkIcon";
615
615
  function LongformContent({
616
616
  children,
617
- renderMode = "jsx",
617
+ renderMode = "markdown",
618
618
  markdownString,
619
619
  optixFlowConfig,
620
620
  markdownStyles
@@ -671,8 +671,6 @@ function ArticleChaptersAuthorComponent({
671
671
  conclusionDescription,
672
672
  conclusionActions,
673
673
  conclusionSlot,
674
- children,
675
- renderMode = "jsx",
676
674
  markdownString,
677
675
  markdownStyles,
678
676
  enableChapterTracking = true,
@@ -931,11 +929,10 @@ function ArticleChaptersAuthorComponent({
931
929
  /* @__PURE__ */ jsx(
932
930
  LongformContent,
933
931
  {
934
- renderMode,
932
+ renderMode: "markdown",
935
933
  markdownString,
936
934
  optixFlowConfig,
937
- markdownStyles,
938
- children
935
+ markdownStyles
939
936
  }
940
937
  ),
941
938
  /* @__PURE__ */ jsx("div", { className: "flex items-center justify-center py-12", children: /* @__PURE__ */ jsx(
@@ -554,7 +554,7 @@ function PopoverContent({
554
554
  }
555
555
  function LongformContent({
556
556
  children,
557
- renderMode = "jsx",
557
+ renderMode = "markdown",
558
558
  markdownString,
559
559
  optixFlowConfig,
560
560
  markdownStyles
@@ -606,8 +606,6 @@ function ArticleCompactTocComponent({
606
606
  heroImageSrc,
607
607
  heroImageAlt,
608
608
  heroMediaSlot,
609
- children,
610
- renderMode = "jsx",
611
609
  markdownString,
612
610
  markdownStyles,
613
611
  enableTocTracking = true,
@@ -784,7 +782,7 @@ function ArticleCompactTocComponent({
784
782
  }
785
783
  ),
786
784
  tocContent,
787
- (children || renderMode === "markdown" && markdownString) && /* @__PURE__ */ jsxRuntime.jsxs(
785
+ markdownString && /* @__PURE__ */ jsxRuntime.jsxs(
788
786
  "article",
789
787
  {
790
788
  className: cn(
@@ -796,11 +794,10 @@ function ArticleCompactTocComponent({
796
794
  /* @__PURE__ */ jsxRuntime.jsx(
797
795
  LongformContent,
798
796
  {
799
- renderMode,
797
+ renderMode: "markdown",
800
798
  markdownString,
801
799
  optixFlowConfig,
802
- markdownStyles,
803
- children
800
+ markdownStyles
804
801
  }
805
802
  ),
806
803
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center justify-center py-12", children: /* @__PURE__ */ jsxRuntime.jsx(
@@ -113,16 +113,7 @@ interface ArticleCompactTocProps {
113
113
  */
114
114
  heroMediaSlot?: React.ReactNode;
115
115
  /**
116
- * Article body content (replaces hardcoded prose)
117
- */
118
- children?: React.ReactNode;
119
- /**
120
- * Render mode for content
121
- * @default "jsx"
122
- */
123
- renderMode?: "jsx" | "markdown";
124
- /**
125
- * Markdown string to render (when renderMode is "markdown")
116
+ * Markdown string to render
126
117
  */
127
118
  markdownString?: string;
128
119
  /**
@@ -162,6 +153,6 @@ interface ArticleCompactTocProps {
162
153
  /** Optional Section ID */
163
154
  sectionId?: string;
164
155
  }
165
- declare function ArticleCompactTocComponent({ sectionId, className, breadcrumbClassName, contentClassName, titleClassName, metaClassName, tocClassName, articleClassName, heroImageClassName, breadcrumbs, breadcrumbsSlot, currentPage, title, authorName, authorHref, publishDate, readTime, sections, tocSlot, renderSectionLink, description, heroImageSrc, heroImageAlt, heroMediaSlot, children, renderMode, markdownString, markdownStyles, enableTocTracking, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, patternClassName, }: ArticleCompactTocProps): react_jsx_runtime.JSX.Element;
156
+ declare function ArticleCompactTocComponent({ sectionId, className, breadcrumbClassName, contentClassName, titleClassName, metaClassName, tocClassName, articleClassName, heroImageClassName, breadcrumbs, breadcrumbsSlot, currentPage, title, authorName, authorHref, publishDate, readTime, sections, tocSlot, renderSectionLink, description, heroImageSrc, heroImageAlt, heroMediaSlot, markdownString, markdownStyles, enableTocTracking, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, patternClassName, }: ArticleCompactTocProps): react_jsx_runtime.JSX.Element;
166
157
 
167
158
  export { ArticleCompactTocComponent as ArticleCompactToc, type ArticleCompactTocProps, type ArticleCompactTocSection };
@@ -113,16 +113,7 @@ interface ArticleCompactTocProps {
113
113
  */
114
114
  heroMediaSlot?: React.ReactNode;
115
115
  /**
116
- * Article body content (replaces hardcoded prose)
117
- */
118
- children?: React.ReactNode;
119
- /**
120
- * Render mode for content
121
- * @default "jsx"
122
- */
123
- renderMode?: "jsx" | "markdown";
124
- /**
125
- * Markdown string to render (when renderMode is "markdown")
116
+ * Markdown string to render
126
117
  */
127
118
  markdownString?: string;
128
119
  /**
@@ -162,6 +153,6 @@ interface ArticleCompactTocProps {
162
153
  /** Optional Section ID */
163
154
  sectionId?: string;
164
155
  }
165
- declare function ArticleCompactTocComponent({ sectionId, className, breadcrumbClassName, contentClassName, titleClassName, metaClassName, tocClassName, articleClassName, heroImageClassName, breadcrumbs, breadcrumbsSlot, currentPage, title, authorName, authorHref, publishDate, readTime, sections, tocSlot, renderSectionLink, description, heroImageSrc, heroImageAlt, heroMediaSlot, children, renderMode, markdownString, markdownStyles, enableTocTracking, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, patternClassName, }: ArticleCompactTocProps): react_jsx_runtime.JSX.Element;
156
+ declare function ArticleCompactTocComponent({ sectionId, className, breadcrumbClassName, contentClassName, titleClassName, metaClassName, tocClassName, articleClassName, heroImageClassName, breadcrumbs, breadcrumbsSlot, currentPage, title, authorName, authorHref, publishDate, readTime, sections, tocSlot, renderSectionLink, description, heroImageSrc, heroImageAlt, heroMediaSlot, markdownString, markdownStyles, enableTocTracking, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, patternClassName, }: ArticleCompactTocProps): react_jsx_runtime.JSX.Element;
166
157
 
167
158
  export { ArticleCompactTocComponent as ArticleCompactToc, type ArticleCompactTocProps, type ArticleCompactTocSection };
@@ -531,7 +531,7 @@ function PopoverContent({
531
531
  }
532
532
  function LongformContent({
533
533
  children,
534
- renderMode = "jsx",
534
+ renderMode = "markdown",
535
535
  markdownString,
536
536
  optixFlowConfig,
537
537
  markdownStyles
@@ -583,8 +583,6 @@ function ArticleCompactTocComponent({
583
583
  heroImageSrc,
584
584
  heroImageAlt,
585
585
  heroMediaSlot,
586
- children,
587
- renderMode = "jsx",
588
586
  markdownString,
589
587
  markdownStyles,
590
588
  enableTocTracking = true,
@@ -761,7 +759,7 @@ function ArticleCompactTocComponent({
761
759
  }
762
760
  ),
763
761
  tocContent,
764
- (children || renderMode === "markdown" && markdownString) && /* @__PURE__ */ jsxs(
762
+ markdownString && /* @__PURE__ */ jsxs(
765
763
  "article",
766
764
  {
767
765
  className: cn(
@@ -773,11 +771,10 @@ function ArticleCompactTocComponent({
773
771
  /* @__PURE__ */ jsx(
774
772
  LongformContent,
775
773
  {
776
- renderMode,
774
+ renderMode: "markdown",
777
775
  markdownString,
778
776
  optixFlowConfig,
779
- markdownStyles,
780
- children
777
+ markdownStyles
781
778
  }
782
779
  ),
783
780
  /* @__PURE__ */ jsx("div", { className: "flex items-center justify-center py-12", children: /* @__PURE__ */ jsx(
@@ -467,7 +467,7 @@ var Section = React4__namespace.default.forwardRef(
467
467
  Section.displayName = "Section";
468
468
  function LongformContent({
469
469
  children,
470
- renderMode = "jsx",
470
+ renderMode = "markdown",
471
471
  markdownString,
472
472
  optixFlowConfig,
473
473
  markdownStyles
@@ -506,8 +506,6 @@ function ArticleHeroProseComponent({
506
506
  proseClassName,
507
507
  heroMediaSlot,
508
508
  authorSlot,
509
- children,
510
- renderMode = "jsx",
511
509
  markdownString,
512
510
  markdownStyles,
513
511
  dateFormat = "MMMM d, yyyy",
@@ -621,7 +619,7 @@ function ArticleHeroProseComponent({
621
619
  ]
622
620
  }
623
621
  ) }),
624
- (children || renderMode === "markdown" && markdownString) && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-col items-center", children: /* @__PURE__ */ jsxRuntime.jsx(
622
+ markdownString && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-col items-center", children: /* @__PURE__ */ jsxRuntime.jsx(
625
623
  "div",
626
624
  {
627
625
  className: cn(
@@ -632,11 +630,10 @@ function ArticleHeroProseComponent({
632
630
  children: /* @__PURE__ */ jsxRuntime.jsx(
633
631
  LongformContent,
634
632
  {
635
- renderMode,
633
+ renderMode: "markdown",
636
634
  markdownString,
637
635
  optixFlowConfig,
638
- markdownStyles,
639
- children
636
+ markdownStyles
640
637
  }
641
638
  )
642
639
  }
@@ -62,16 +62,7 @@ interface ArticleHeroProseProps {
62
62
  */
63
63
  authorSlot?: React.ReactNode;
64
64
  /**
65
- * Main body content
66
- */
67
- children?: React.ReactNode;
68
- /**
69
- * Render mode for content
70
- * @default "jsx"
71
- */
72
- renderMode?: "jsx" | "markdown";
73
- /**
74
- * Markdown string to render (when renderMode is "markdown")
65
+ * Markdown string to render
75
66
  */
76
67
  markdownString?: string;
77
68
  /**
@@ -107,6 +98,6 @@ interface ArticleHeroProseProps {
107
98
  /** Optional Section ID */
108
99
  sectionId?: string;
109
100
  }
110
- declare function ArticleHeroProseComponent({ sectionId, post, className, headerClassName, titleClassName, descriptionClassName, authorClassName, heroImageClassName, proseClassName, heroMediaSlot, authorSlot, children, renderMode, markdownString, markdownStyles, dateFormat, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, }: ArticleHeroProseProps): react_jsx_runtime.JSX.Element;
101
+ declare function ArticleHeroProseComponent({ sectionId, post, className, headerClassName, titleClassName, descriptionClassName, authorClassName, heroImageClassName, proseClassName, heroMediaSlot, authorSlot, markdownString, markdownStyles, dateFormat, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, }: ArticleHeroProseProps): react_jsx_runtime.JSX.Element;
111
102
 
112
103
  export { ArticleHeroProseComponent as ArticleHeroProse, type ArticleHeroProsePost, type ArticleHeroProseProps };
@@ -62,16 +62,7 @@ interface ArticleHeroProseProps {
62
62
  */
63
63
  authorSlot?: React.ReactNode;
64
64
  /**
65
- * Main body content
66
- */
67
- children?: React.ReactNode;
68
- /**
69
- * Render mode for content
70
- * @default "jsx"
71
- */
72
- renderMode?: "jsx" | "markdown";
73
- /**
74
- * Markdown string to render (when renderMode is "markdown")
65
+ * Markdown string to render
75
66
  */
76
67
  markdownString?: string;
77
68
  /**
@@ -107,6 +98,6 @@ interface ArticleHeroProseProps {
107
98
  /** Optional Section ID */
108
99
  sectionId?: string;
109
100
  }
110
- declare function ArticleHeroProseComponent({ sectionId, post, className, headerClassName, titleClassName, descriptionClassName, authorClassName, heroImageClassName, proseClassName, heroMediaSlot, authorSlot, children, renderMode, markdownString, markdownStyles, dateFormat, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, }: ArticleHeroProseProps): react_jsx_runtime.JSX.Element;
101
+ declare function ArticleHeroProseComponent({ sectionId, post, className, headerClassName, titleClassName, descriptionClassName, authorClassName, heroImageClassName, proseClassName, heroMediaSlot, authorSlot, markdownString, markdownStyles, dateFormat, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, }: ArticleHeroProseProps): react_jsx_runtime.JSX.Element;
111
102
 
112
103
  export { ArticleHeroProseComponent as ArticleHeroProse, type ArticleHeroProsePost, type ArticleHeroProseProps };
@@ -445,7 +445,7 @@ var Section = React4__default.forwardRef(
445
445
  Section.displayName = "Section";
446
446
  function LongformContent({
447
447
  children,
448
- renderMode = "jsx",
448
+ renderMode = "markdown",
449
449
  markdownString,
450
450
  optixFlowConfig,
451
451
  markdownStyles
@@ -484,8 +484,6 @@ function ArticleHeroProseComponent({
484
484
  proseClassName,
485
485
  heroMediaSlot,
486
486
  authorSlot,
487
- children,
488
- renderMode = "jsx",
489
487
  markdownString,
490
488
  markdownStyles,
491
489
  dateFormat = "MMMM d, yyyy",
@@ -599,7 +597,7 @@ function ArticleHeroProseComponent({
599
597
  ]
600
598
  }
601
599
  ) }),
602
- (children || renderMode === "markdown" && markdownString) && /* @__PURE__ */ jsx("div", { className: "flex flex-col items-center", children: /* @__PURE__ */ jsx(
600
+ markdownString && /* @__PURE__ */ jsx("div", { className: "flex flex-col items-center", children: /* @__PURE__ */ jsx(
603
601
  "div",
604
602
  {
605
603
  className: cn(
@@ -610,11 +608,10 @@ function ArticleHeroProseComponent({
610
608
  children: /* @__PURE__ */ jsx(
611
609
  LongformContent,
612
610
  {
613
- renderMode,
611
+ renderMode: "markdown",
614
612
  markdownString,
615
613
  optixFlowConfig,
616
- markdownStyles,
617
- children
614
+ markdownStyles
618
615
  }
619
616
  )
620
617
  }
@@ -475,7 +475,7 @@ var Section = React5__namespace.default.forwardRef(
475
475
  Section.displayName = "Section";
476
476
  function LongformContent({
477
477
  children,
478
- renderMode = "jsx",
478
+ renderMode = "markdown",
479
479
  markdownString,
480
480
  optixFlowConfig,
481
481
  markdownStyles
@@ -526,8 +526,6 @@ function ArticleSidebarStickyComponent({
526
526
  heroImageSrc,
527
527
  heroImageAlt,
528
528
  heroMediaSlot,
529
- children,
530
- renderMode = "jsx",
531
529
  markdownString,
532
530
  markdownStyles,
533
531
  optixFlowConfig,
@@ -654,11 +652,10 @@ function ArticleSidebarStickyComponent({
654
652
  /* @__PURE__ */ jsxRuntime.jsx(
655
653
  LongformContent,
656
654
  {
657
- renderMode,
655
+ renderMode: "markdown",
658
656
  markdownString,
659
657
  optixFlowConfig,
660
- markdownStyles,
661
- children
658
+ markdownStyles
662
659
  }
663
660
  ),
664
661
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center justify-center py-12", children: /* @__PURE__ */ jsxRuntime.jsx(
@@ -101,16 +101,7 @@ interface ArticleSidebarStickyProps {
101
101
  */
102
102
  heroMediaSlot?: React.ReactNode;
103
103
  /**
104
- * Article body content (replaces hardcoded prose)
105
- */
106
- children?: React.ReactNode;
107
- /**
108
- * Render mode for content
109
- * @default "jsx"
110
- */
111
- renderMode?: "jsx" | "markdown";
112
- /**
113
- * Markdown string to render (when renderMode is "markdown")
104
+ * Markdown string to render
114
105
  */
115
106
  markdownString?: string;
116
107
  /**
@@ -145,6 +136,6 @@ interface ArticleSidebarStickyProps {
145
136
  /** Optional Section ID */
146
137
  sectionId?: string;
147
138
  }
148
- declare function ArticleSidebarStickyComponent({ sectionId, className, sidebarClassName, articleClassName, titleClassName, authorClassName, heroImageClassName, backLinkClassName, backHref, backText, backIcon, backLinkSlot, title, summary, summaryClassName, authorName, authorImage, authorHref, publishDate, authorSlot, heroImageSrc, heroImageAlt, heroMediaSlot, children, renderMode, markdownString, markdownStyles, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, sidebarContent, }: ArticleSidebarStickyProps): react_jsx_runtime.JSX.Element;
139
+ declare function ArticleSidebarStickyComponent({ sectionId, className, sidebarClassName, articleClassName, titleClassName, authorClassName, heroImageClassName, backLinkClassName, backHref, backText, backIcon, backLinkSlot, title, summary, summaryClassName, authorName, authorImage, authorHref, publishDate, authorSlot, heroImageSrc, heroImageAlt, heroMediaSlot, markdownString, markdownStyles, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, sidebarContent, }: ArticleSidebarStickyProps): react_jsx_runtime.JSX.Element;
149
140
 
150
141
  export { ArticleSidebarStickyComponent as ArticleSidebarSticky, type ArticleSidebarStickyProps };
@@ -101,16 +101,7 @@ interface ArticleSidebarStickyProps {
101
101
  */
102
102
  heroMediaSlot?: React.ReactNode;
103
103
  /**
104
- * Article body content (replaces hardcoded prose)
105
- */
106
- children?: React.ReactNode;
107
- /**
108
- * Render mode for content
109
- * @default "jsx"
110
- */
111
- renderMode?: "jsx" | "markdown";
112
- /**
113
- * Markdown string to render (when renderMode is "markdown")
104
+ * Markdown string to render
114
105
  */
115
106
  markdownString?: string;
116
107
  /**
@@ -145,6 +136,6 @@ interface ArticleSidebarStickyProps {
145
136
  /** Optional Section ID */
146
137
  sectionId?: string;
147
138
  }
148
- declare function ArticleSidebarStickyComponent({ sectionId, className, sidebarClassName, articleClassName, titleClassName, authorClassName, heroImageClassName, backLinkClassName, backHref, backText, backIcon, backLinkSlot, title, summary, summaryClassName, authorName, authorImage, authorHref, publishDate, authorSlot, heroImageSrc, heroImageAlt, heroMediaSlot, children, renderMode, markdownString, markdownStyles, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, sidebarContent, }: ArticleSidebarStickyProps): react_jsx_runtime.JSX.Element;
139
+ declare function ArticleSidebarStickyComponent({ sectionId, className, sidebarClassName, articleClassName, titleClassName, authorClassName, heroImageClassName, backLinkClassName, backHref, backText, backIcon, backLinkSlot, title, summary, summaryClassName, authorName, authorImage, authorHref, publishDate, authorSlot, heroImageSrc, heroImageAlt, heroMediaSlot, markdownString, markdownStyles, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, sidebarContent, }: ArticleSidebarStickyProps): react_jsx_runtime.JSX.Element;
149
140
 
150
141
  export { ArticleSidebarStickyComponent as ArticleSidebarSticky, type ArticleSidebarStickyProps };
@@ -453,7 +453,7 @@ var Section = React5__default.forwardRef(
453
453
  Section.displayName = "Section";
454
454
  function LongformContent({
455
455
  children,
456
- renderMode = "jsx",
456
+ renderMode = "markdown",
457
457
  markdownString,
458
458
  optixFlowConfig,
459
459
  markdownStyles
@@ -504,8 +504,6 @@ function ArticleSidebarStickyComponent({
504
504
  heroImageSrc,
505
505
  heroImageAlt,
506
506
  heroMediaSlot,
507
- children,
508
- renderMode = "jsx",
509
507
  markdownString,
510
508
  markdownStyles,
511
509
  optixFlowConfig,
@@ -632,11 +630,10 @@ function ArticleSidebarStickyComponent({
632
630
  /* @__PURE__ */ jsx(
633
631
  LongformContent,
634
632
  {
635
- renderMode,
633
+ renderMode: "markdown",
636
634
  markdownString,
637
635
  optixFlowConfig,
638
- markdownStyles,
639
- children
636
+ markdownStyles
640
637
  }
641
638
  ),
642
639
  /* @__PURE__ */ jsx("div", { className: "flex items-center justify-center py-12", children: /* @__PURE__ */ jsx(