@opensite/ui 0.7.0 → 0.7.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.
- package/dist/blog-cards-read-time.cjs +1 -1
- package/dist/blog-cards-read-time.js +1 -1
- package/dist/blog-cards-tagline-cta.cjs +1 -1
- package/dist/blog-cards-tagline-cta.js +1 -1
- package/dist/blog-category-overlay.cjs +1 -1
- package/dist/blog-category-overlay.js +1 -1
- package/dist/blog-featured-popular.cjs +1 -1
- package/dist/blog-featured-popular.js +1 -1
- package/dist/blog-grid-author-cards.cjs +1 -1
- package/dist/blog-grid-author-cards.js +1 -1
- package/dist/blog-grid-nine-posts.cjs +1 -1
- package/dist/blog-grid-nine-posts.js +1 -1
- package/dist/blog-horizontal-cards.cjs +1 -1
- package/dist/blog-horizontal-cards.js +1 -1
- package/dist/blog-tech-insights.cjs +54 -45
- package/dist/blog-tech-insights.js +54 -45
- package/dist/carousel-animated-sections.cjs +1224 -0
- package/dist/carousel-animated-sections.d.cts +154 -0
- package/dist/carousel-animated-sections.d.ts +154 -0
- package/dist/carousel-animated-sections.js +1203 -0
- package/dist/carousel-auto-progress-slides.cjs +1156 -0
- package/dist/carousel-auto-progress-slides.d.cts +122 -0
- package/dist/carousel-auto-progress-slides.d.ts +122 -0
- package/dist/carousel-auto-progress-slides.js +1135 -0
- package/dist/carousel-autoplay-progress.cjs +1141 -0
- package/dist/carousel-autoplay-progress.d.cts +119 -0
- package/dist/carousel-autoplay-progress.d.ts +119 -0
- package/dist/carousel-autoplay-progress.js +1116 -0
- package/dist/carousel-feature-badge.cjs +1216 -0
- package/dist/carousel-feature-badge.d.cts +99 -0
- package/dist/carousel-feature-badge.d.ts +99 -0
- package/dist/carousel-feature-badge.js +1192 -0
- package/dist/carousel-fullscreen-scroll-fx.cjs +526 -0
- package/dist/carousel-fullscreen-scroll-fx.d.cts +122 -0
- package/dist/carousel-fullscreen-scroll-fx.d.ts +122 -0
- package/dist/carousel-fullscreen-scroll-fx.js +505 -0
- package/dist/carousel-gallery-thumbnails.cjs +1059 -0
- package/dist/carousel-gallery-thumbnails.d.cts +122 -0
- package/dist/carousel-gallery-thumbnails.d.ts +122 -0
- package/dist/carousel-gallery-thumbnails.js +1038 -0
- package/dist/carousel-horizontal-cards.cjs +1083 -0
- package/dist/carousel-horizontal-cards.d.cts +126 -0
- package/dist/carousel-horizontal-cards.d.ts +126 -0
- package/dist/carousel-horizontal-cards.js +1062 -0
- package/dist/carousel-image-hero.cjs +1075 -0
- package/dist/carousel-image-hero.d.cts +116 -0
- package/dist/carousel-image-hero.d.ts +116 -0
- package/dist/carousel-image-hero.js +1054 -0
- package/dist/carousel-multi-step-showcase.cjs +1146 -0
- package/dist/carousel-multi-step-showcase.d.cts +142 -0
- package/dist/carousel-multi-step-showcase.d.ts +142 -0
- package/dist/carousel-multi-step-showcase.js +1125 -0
- package/dist/carousel-portfolio-hero.cjs +1063 -0
- package/dist/carousel-portfolio-hero.d.cts +134 -0
- package/dist/carousel-portfolio-hero.d.ts +134 -0
- package/dist/carousel-portfolio-hero.js +1042 -0
- package/dist/carousel-product-feature-showcase.cjs +1127 -0
- package/dist/carousel-product-feature-showcase.d.cts +161 -0
- package/dist/carousel-product-feature-showcase.d.ts +161 -0
- package/dist/carousel-product-feature-showcase.js +1106 -0
- package/dist/carousel-progress-slider.cjs +597 -0
- package/dist/carousel-progress-slider.d.cts +122 -0
- package/dist/carousel-progress-slider.d.ts +122 -0
- package/dist/carousel-progress-slider.js +576 -0
- package/dist/carousel-scrolling-feature-showcase.cjs +530 -0
- package/dist/carousel-scrolling-feature-showcase.d.cts +126 -0
- package/dist/carousel-scrolling-feature-showcase.d.ts +126 -0
- package/dist/carousel-scrolling-feature-showcase.js +509 -0
- package/dist/registry.cjs +349 -238
- package/dist/registry.js +349 -238
- package/package.json +3 -2
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { P as PatternName } from './pattern-background-a7gKHzHy.cjs';
|
|
3
|
+
import { f as SectionBackground, g as SectionSpacing } from './community-initiatives-Sm_ZSgyv.cjs';
|
|
4
|
+
import { I as ImageItem, O as OptixFlowConfig } from './blocks-Cohq4eio.cjs';
|
|
5
|
+
import 'react/jsx-runtime';
|
|
6
|
+
import 'class-variance-authority';
|
|
7
|
+
import './button-variants-lRElsmTc.cjs';
|
|
8
|
+
import 'class-variance-authority/types';
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* CarouselFeatureBadge
|
|
12
|
+
*
|
|
13
|
+
* A two-column feature section with a badge label, headline, description text,
|
|
14
|
+
* and an interactive carousel showcasing platform screenshots or feature images.
|
|
15
|
+
* Includes previous/next navigation controls for browsing through carousel items.
|
|
16
|
+
*
|
|
17
|
+
* Use cases:
|
|
18
|
+
* - Product feature showcases with visual demonstrations
|
|
19
|
+
* - Platform overview sections with screenshot galleries
|
|
20
|
+
* - Marketing landing pages highlighting key capabilities
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
interface CarouselFeatureBadgeProps {
|
|
24
|
+
/**
|
|
25
|
+
* Badge/eyebrow content above heading
|
|
26
|
+
*/
|
|
27
|
+
badge?: React.ReactNode;
|
|
28
|
+
/**
|
|
29
|
+
* Main heading content
|
|
30
|
+
*/
|
|
31
|
+
heading?: React.ReactNode;
|
|
32
|
+
/**
|
|
33
|
+
* Description text below heading
|
|
34
|
+
*/
|
|
35
|
+
description?: React.ReactNode;
|
|
36
|
+
/**
|
|
37
|
+
* Array of image items for the carousel
|
|
38
|
+
*/
|
|
39
|
+
items?: ImageItem[];
|
|
40
|
+
/**
|
|
41
|
+
* Custom slot for rendering carousel items (overrides items array)
|
|
42
|
+
*/
|
|
43
|
+
itemsSlot?: React.ReactNode;
|
|
44
|
+
/**
|
|
45
|
+
* Additional CSS classes for the section
|
|
46
|
+
*/
|
|
47
|
+
className?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Additional CSS classes for the container
|
|
50
|
+
*/
|
|
51
|
+
containerClassName?: string;
|
|
52
|
+
/**
|
|
53
|
+
* Additional CSS classes for the content column
|
|
54
|
+
*/
|
|
55
|
+
contentClassName?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Additional CSS classes for the badge
|
|
58
|
+
*/
|
|
59
|
+
badgeClassName?: string;
|
|
60
|
+
/**
|
|
61
|
+
* Additional CSS classes for the heading
|
|
62
|
+
*/
|
|
63
|
+
headingClassName?: string;
|
|
64
|
+
/**
|
|
65
|
+
* Additional CSS classes for the description
|
|
66
|
+
*/
|
|
67
|
+
descriptionClassName?: string;
|
|
68
|
+
/**
|
|
69
|
+
* Additional CSS classes for the carousel container
|
|
70
|
+
*/
|
|
71
|
+
carouselClassName?: string;
|
|
72
|
+
/**
|
|
73
|
+
* Additional CSS classes for each carousel item
|
|
74
|
+
*/
|
|
75
|
+
carouselItemClassName?: string;
|
|
76
|
+
/**
|
|
77
|
+
* OptixFlow image optimization configuration
|
|
78
|
+
*/
|
|
79
|
+
optixFlowConfig?: OptixFlowConfig;
|
|
80
|
+
/**
|
|
81
|
+
* Background style for the section
|
|
82
|
+
*/
|
|
83
|
+
background?: SectionBackground;
|
|
84
|
+
/**
|
|
85
|
+
* Vertical spacing for the section
|
|
86
|
+
*/
|
|
87
|
+
spacing?: SectionSpacing;
|
|
88
|
+
/**
|
|
89
|
+
* Optional background pattern name or URL
|
|
90
|
+
*/
|
|
91
|
+
pattern?: PatternName | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* Pattern overlay opacity (0-1)
|
|
94
|
+
*/
|
|
95
|
+
patternOpacity?: number;
|
|
96
|
+
}
|
|
97
|
+
declare function CarouselFeatureBadge({ badge, heading, description, items, itemsSlot, className, containerClassName, contentClassName, badgeClassName, headingClassName, descriptionClassName, carouselClassName, carouselItemClassName, optixFlowConfig, background, spacing, pattern, patternOpacity, }: CarouselFeatureBadgeProps): React.JSX.Element;
|
|
98
|
+
|
|
99
|
+
export { CarouselFeatureBadge, type CarouselFeatureBadgeProps };
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { P as PatternName } from './pattern-background-a7gKHzHy.js';
|
|
3
|
+
import { f as SectionBackground, g as SectionSpacing } from './community-initiatives-BeWIIjA4.js';
|
|
4
|
+
import { I as ImageItem, O as OptixFlowConfig } from './blocks-k17uluAz.js';
|
|
5
|
+
import 'react/jsx-runtime';
|
|
6
|
+
import 'class-variance-authority';
|
|
7
|
+
import './button-variants-lRElsmTc.js';
|
|
8
|
+
import 'class-variance-authority/types';
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* CarouselFeatureBadge
|
|
12
|
+
*
|
|
13
|
+
* A two-column feature section with a badge label, headline, description text,
|
|
14
|
+
* and an interactive carousel showcasing platform screenshots or feature images.
|
|
15
|
+
* Includes previous/next navigation controls for browsing through carousel items.
|
|
16
|
+
*
|
|
17
|
+
* Use cases:
|
|
18
|
+
* - Product feature showcases with visual demonstrations
|
|
19
|
+
* - Platform overview sections with screenshot galleries
|
|
20
|
+
* - Marketing landing pages highlighting key capabilities
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
interface CarouselFeatureBadgeProps {
|
|
24
|
+
/**
|
|
25
|
+
* Badge/eyebrow content above heading
|
|
26
|
+
*/
|
|
27
|
+
badge?: React.ReactNode;
|
|
28
|
+
/**
|
|
29
|
+
* Main heading content
|
|
30
|
+
*/
|
|
31
|
+
heading?: React.ReactNode;
|
|
32
|
+
/**
|
|
33
|
+
* Description text below heading
|
|
34
|
+
*/
|
|
35
|
+
description?: React.ReactNode;
|
|
36
|
+
/**
|
|
37
|
+
* Array of image items for the carousel
|
|
38
|
+
*/
|
|
39
|
+
items?: ImageItem[];
|
|
40
|
+
/**
|
|
41
|
+
* Custom slot for rendering carousel items (overrides items array)
|
|
42
|
+
*/
|
|
43
|
+
itemsSlot?: React.ReactNode;
|
|
44
|
+
/**
|
|
45
|
+
* Additional CSS classes for the section
|
|
46
|
+
*/
|
|
47
|
+
className?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Additional CSS classes for the container
|
|
50
|
+
*/
|
|
51
|
+
containerClassName?: string;
|
|
52
|
+
/**
|
|
53
|
+
* Additional CSS classes for the content column
|
|
54
|
+
*/
|
|
55
|
+
contentClassName?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Additional CSS classes for the badge
|
|
58
|
+
*/
|
|
59
|
+
badgeClassName?: string;
|
|
60
|
+
/**
|
|
61
|
+
* Additional CSS classes for the heading
|
|
62
|
+
*/
|
|
63
|
+
headingClassName?: string;
|
|
64
|
+
/**
|
|
65
|
+
* Additional CSS classes for the description
|
|
66
|
+
*/
|
|
67
|
+
descriptionClassName?: string;
|
|
68
|
+
/**
|
|
69
|
+
* Additional CSS classes for the carousel container
|
|
70
|
+
*/
|
|
71
|
+
carouselClassName?: string;
|
|
72
|
+
/**
|
|
73
|
+
* Additional CSS classes for each carousel item
|
|
74
|
+
*/
|
|
75
|
+
carouselItemClassName?: string;
|
|
76
|
+
/**
|
|
77
|
+
* OptixFlow image optimization configuration
|
|
78
|
+
*/
|
|
79
|
+
optixFlowConfig?: OptixFlowConfig;
|
|
80
|
+
/**
|
|
81
|
+
* Background style for the section
|
|
82
|
+
*/
|
|
83
|
+
background?: SectionBackground;
|
|
84
|
+
/**
|
|
85
|
+
* Vertical spacing for the section
|
|
86
|
+
*/
|
|
87
|
+
spacing?: SectionSpacing;
|
|
88
|
+
/**
|
|
89
|
+
* Optional background pattern name or URL
|
|
90
|
+
*/
|
|
91
|
+
pattern?: PatternName | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* Pattern overlay opacity (0-1)
|
|
94
|
+
*/
|
|
95
|
+
patternOpacity?: number;
|
|
96
|
+
}
|
|
97
|
+
declare function CarouselFeatureBadge({ badge, heading, description, items, itemsSlot, className, containerClassName, contentClassName, badgeClassName, headingClassName, descriptionClassName, carouselClassName, carouselItemClassName, optixFlowConfig, background, spacing, pattern, patternOpacity, }: CarouselFeatureBadgeProps): React.JSX.Element;
|
|
98
|
+
|
|
99
|
+
export { CarouselFeatureBadge, type CarouselFeatureBadgeProps };
|