@opensite/ui 0.6.3 → 0.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/about-startup-team.cjs +2 -2
- package/dist/about-startup-team.js +2 -2
- package/dist/article-breadcrumb-social.cjs +434 -215
- package/dist/article-breadcrumb-social.d.cts +19 -1
- package/dist/article-breadcrumb-social.d.ts +19 -1
- package/dist/article-breadcrumb-social.js +434 -214
- package/dist/article-chapters-author.cjs +422 -204
- package/dist/article-chapters-author.d.cts +19 -1
- package/dist/article-chapters-author.d.ts +19 -1
- package/dist/article-chapters-author.js +422 -203
- package/dist/article-compact-toc.cjs +429 -73
- package/dist/article-compact-toc.d.cts +19 -1
- package/dist/article-compact-toc.d.ts +19 -1
- package/dist/article-compact-toc.js +430 -73
- package/dist/article-hero-prose.cjs +394 -347
- package/dist/article-hero-prose.d.cts +19 -1
- package/dist/article-hero-prose.d.ts +19 -1
- package/dist/article-hero-prose.js +396 -348
- package/dist/article-sidebar-sticky.cjs +398 -152
- package/dist/article-sidebar-sticky.d.cts +19 -1
- package/dist/article-sidebar-sticky.d.ts +19 -1
- package/dist/article-sidebar-sticky.js +400 -153
- package/dist/article-split-animated.cjs +422 -35
- package/dist/article-split-animated.d.cts +19 -1
- package/dist/article-split-animated.d.ts +19 -1
- package/dist/article-split-animated.js +423 -35
- package/dist/article-toc-sidebar.cjs +417 -356
- package/dist/article-toc-sidebar.d.cts +19 -1
- package/dist/article-toc-sidebar.d.ts +19 -1
- package/dist/article-toc-sidebar.js +417 -355
- package/dist/blog-cards-read-time.cjs +66 -27
- package/dist/blog-cards-read-time.js +66 -27
- package/dist/blog-cards-tagline-cta.cjs +64 -14
- package/dist/blog-cards-tagline-cta.js +64 -14
- package/dist/blog-carousel-apple.cjs +1255 -0
- package/dist/blog-carousel-apple.d.cts +113 -0
- package/dist/blog-carousel-apple.d.ts +113 -0
- package/dist/blog-carousel-apple.js +1234 -0
- package/dist/blog-category-overlay.cjs +77 -15
- package/dist/blog-category-overlay.js +77 -15
- package/dist/blog-featured-popular.cjs +72 -14
- package/dist/blog-featured-popular.js +72 -14
- package/dist/blog-filtered-results.cjs +122 -39
- package/dist/blog-filtered-results.js +122 -39
- package/dist/blog-grid-author-cards.cjs +40 -6
- package/dist/blog-grid-author-cards.js +40 -6
- package/dist/blog-grid-nine-posts.cjs +40 -6
- package/dist/blog-grid-nine-posts.js +40 -6
- package/dist/blog-horizontal-cards.cjs +34 -6
- package/dist/blog-horizontal-cards.js +34 -6
- package/dist/blog-horizontal-timeline.cjs +41 -12
- package/dist/blog-horizontal-timeline.js +41 -12
- package/dist/blog-masonry-featured.cjs +96 -52
- package/dist/blog-masonry-featured.js +96 -52
- package/dist/blog-related-articles.cjs +47 -9
- package/dist/blog-related-articles.js +47 -9
- package/dist/blog-tech-insights.cjs +78 -14
- package/dist/blog-tech-insights.js +78 -14
- package/dist/registry.cjs +1036 -687
- package/dist/registry.js +1036 -687
- package/package.json +1 -1
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as React from 'react';
|
|
3
|
+
import { f as SectionBackground, g as SectionSpacing } from './community-initiatives-CODGexkN.cjs';
|
|
4
|
+
import { P as PatternName } from './pattern-background-a7gKHzHy.cjs';
|
|
3
5
|
import { A as ActionConfig, O as OptixFlowConfig } from './blocks-Cohq4eio.cjs';
|
|
4
6
|
import 'class-variance-authority';
|
|
5
7
|
import './button-variants-lRElsmTc.cjs';
|
|
@@ -157,7 +159,23 @@ interface ArticleTocSidebarProps {
|
|
|
157
159
|
* OptixFlow image optimization configuration
|
|
158
160
|
*/
|
|
159
161
|
optixFlowConfig?: OptixFlowConfig;
|
|
162
|
+
/**
|
|
163
|
+
* Background style for the section
|
|
164
|
+
*/
|
|
165
|
+
background?: SectionBackground;
|
|
166
|
+
/**
|
|
167
|
+
* Vertical spacing for the section
|
|
168
|
+
*/
|
|
169
|
+
spacing?: SectionSpacing;
|
|
170
|
+
/**
|
|
171
|
+
* Background pattern
|
|
172
|
+
*/
|
|
173
|
+
pattern?: PatternName;
|
|
174
|
+
/**
|
|
175
|
+
* Pattern opacity (0-1)
|
|
176
|
+
*/
|
|
177
|
+
patternOpacity?: number;
|
|
160
178
|
}
|
|
161
|
-
declare function ArticleTocSidebarComponent({ className, containerClassName, articleClassName, sidebarClassName, headerClassName, titleClassName, descriptionClassName, authorClassName, tocClassName, ctaClassName, heroImageClassName, title, description, authorName, authorImage, authorHref, publishDate, readTime, authorSlot, category, categorySlot, sections, tocSlot, renderSectionLink, heroImageSrc, heroImageAlt, heroMediaSlot, ctaTitle, ctaDescription, ctaActions: ctaActionsProp, ctaButtonText, ctaButtonHref, ctaSlot, children, enableTocTracking, optixFlowConfig, }: ArticleTocSidebarProps): react_jsx_runtime.JSX.Element;
|
|
179
|
+
declare function ArticleTocSidebarComponent({ className, containerClassName, articleClassName, sidebarClassName, headerClassName, titleClassName, descriptionClassName, authorClassName, tocClassName, ctaClassName, heroImageClassName, title, description, authorName, authorImage, authorHref, publishDate, readTime, authorSlot, category, categorySlot, sections, tocSlot, renderSectionLink, heroImageSrc, heroImageAlt, heroMediaSlot, ctaTitle, ctaDescription, ctaActions: ctaActionsProp, ctaButtonText, ctaButtonHref, ctaSlot, children, enableTocTracking, optixFlowConfig, background, spacing, pattern, patternOpacity, }: ArticleTocSidebarProps): react_jsx_runtime.JSX.Element;
|
|
162
180
|
|
|
163
181
|
export { type ArticleTocSection, ArticleTocSidebarComponent as ArticleTocSidebar, type ArticleTocSidebarProps };
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as React from 'react';
|
|
3
|
+
import { f as SectionBackground, g as SectionSpacing } from './community-initiatives-31vhKBa1.js';
|
|
4
|
+
import { P as PatternName } from './pattern-background-a7gKHzHy.js';
|
|
3
5
|
import { A as ActionConfig, O as OptixFlowConfig } from './blocks-k17uluAz.js';
|
|
4
6
|
import 'class-variance-authority';
|
|
5
7
|
import './button-variants-lRElsmTc.js';
|
|
@@ -157,7 +159,23 @@ interface ArticleTocSidebarProps {
|
|
|
157
159
|
* OptixFlow image optimization configuration
|
|
158
160
|
*/
|
|
159
161
|
optixFlowConfig?: OptixFlowConfig;
|
|
162
|
+
/**
|
|
163
|
+
* Background style for the section
|
|
164
|
+
*/
|
|
165
|
+
background?: SectionBackground;
|
|
166
|
+
/**
|
|
167
|
+
* Vertical spacing for the section
|
|
168
|
+
*/
|
|
169
|
+
spacing?: SectionSpacing;
|
|
170
|
+
/**
|
|
171
|
+
* Background pattern
|
|
172
|
+
*/
|
|
173
|
+
pattern?: PatternName;
|
|
174
|
+
/**
|
|
175
|
+
* Pattern opacity (0-1)
|
|
176
|
+
*/
|
|
177
|
+
patternOpacity?: number;
|
|
160
178
|
}
|
|
161
|
-
declare function ArticleTocSidebarComponent({ className, containerClassName, articleClassName, sidebarClassName, headerClassName, titleClassName, descriptionClassName, authorClassName, tocClassName, ctaClassName, heroImageClassName, title, description, authorName, authorImage, authorHref, publishDate, readTime, authorSlot, category, categorySlot, sections, tocSlot, renderSectionLink, heroImageSrc, heroImageAlt, heroMediaSlot, ctaTitle, ctaDescription, ctaActions: ctaActionsProp, ctaButtonText, ctaButtonHref, ctaSlot, children, enableTocTracking, optixFlowConfig, }: ArticleTocSidebarProps): react_jsx_runtime.JSX.Element;
|
|
179
|
+
declare function ArticleTocSidebarComponent({ className, containerClassName, articleClassName, sidebarClassName, headerClassName, titleClassName, descriptionClassName, authorClassName, tocClassName, ctaClassName, heroImageClassName, title, description, authorName, authorImage, authorHref, publishDate, readTime, authorSlot, category, categorySlot, sections, tocSlot, renderSectionLink, heroImageSrc, heroImageAlt, heroMediaSlot, ctaTitle, ctaDescription, ctaActions: ctaActionsProp, ctaButtonText, ctaButtonHref, ctaSlot, children, enableTocTracking, optixFlowConfig, background, spacing, pattern, patternOpacity, }: ArticleTocSidebarProps): react_jsx_runtime.JSX.Element;
|
|
162
180
|
|
|
163
181
|
export { type ArticleTocSection, ArticleTocSidebarComponent as ArticleTocSidebar, type ArticleTocSidebarProps };
|