@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,122 @@
|
|
|
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 { 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
|
+
* CarouselAutoProgressSlides
|
|
12
|
+
*
|
|
13
|
+
* An auto-advancing carousel with animated progress indicators and smooth blur
|
|
14
|
+
* transitions between slides. Features a centered headline, navigation controls,
|
|
15
|
+
* and visual progress dots that fill as each slide auto-advances.
|
|
16
|
+
*
|
|
17
|
+
* Use cases:
|
|
18
|
+
* - Hero sections with rotating feature highlights
|
|
19
|
+
* - Product showcases with timed transitions
|
|
20
|
+
* - Marketing landing pages with auto-playing content
|
|
21
|
+
* - Onboarding flows with step-by-step visuals
|
|
22
|
+
*/
|
|
23
|
+
|
|
24
|
+
interface SlideItem {
|
|
25
|
+
/**
|
|
26
|
+
* Image source URL
|
|
27
|
+
*/
|
|
28
|
+
src: string;
|
|
29
|
+
/**
|
|
30
|
+
* Slide label/alt text
|
|
31
|
+
*/
|
|
32
|
+
label?: React.ReactNode;
|
|
33
|
+
/**
|
|
34
|
+
* Additional CSS classes for the slide
|
|
35
|
+
*/
|
|
36
|
+
className?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Additional CSS classes for the image
|
|
39
|
+
*/
|
|
40
|
+
imageClassName?: string;
|
|
41
|
+
}
|
|
42
|
+
interface CarouselAutoProgressSlidesProps {
|
|
43
|
+
/**
|
|
44
|
+
* Main heading content
|
|
45
|
+
*/
|
|
46
|
+
heading?: React.ReactNode;
|
|
47
|
+
/**
|
|
48
|
+
* Subheading/description text
|
|
49
|
+
*/
|
|
50
|
+
subheading?: React.ReactNode;
|
|
51
|
+
/**
|
|
52
|
+
* Array of slide items
|
|
53
|
+
*/
|
|
54
|
+
items?: SlideItem[];
|
|
55
|
+
/**
|
|
56
|
+
* Custom slot for rendering slides (overrides items array)
|
|
57
|
+
*/
|
|
58
|
+
slidesSlot?: React.ReactNode;
|
|
59
|
+
/**
|
|
60
|
+
* Auto advance interval in milliseconds
|
|
61
|
+
*/
|
|
62
|
+
autoAdvanceInterval?: number;
|
|
63
|
+
/**
|
|
64
|
+
* Additional CSS classes for the section
|
|
65
|
+
*/
|
|
66
|
+
className?: string;
|
|
67
|
+
/**
|
|
68
|
+
* Additional CSS classes for the container
|
|
69
|
+
*/
|
|
70
|
+
containerClassName?: string;
|
|
71
|
+
/**
|
|
72
|
+
* Additional CSS classes for the header area
|
|
73
|
+
*/
|
|
74
|
+
headerClassName?: string;
|
|
75
|
+
/**
|
|
76
|
+
* Additional CSS classes for the heading
|
|
77
|
+
*/
|
|
78
|
+
headingClassName?: string;
|
|
79
|
+
/**
|
|
80
|
+
* Additional CSS classes for the subheading
|
|
81
|
+
*/
|
|
82
|
+
subheadingClassName?: string;
|
|
83
|
+
/**
|
|
84
|
+
* Additional CSS classes for the navigation area
|
|
85
|
+
*/
|
|
86
|
+
navigationClassName?: string;
|
|
87
|
+
/**
|
|
88
|
+
* Additional CSS classes for the slide label
|
|
89
|
+
*/
|
|
90
|
+
slideLabelClassName?: string;
|
|
91
|
+
/**
|
|
92
|
+
* Additional CSS classes for the slide container
|
|
93
|
+
*/
|
|
94
|
+
slideContainerClassName?: string;
|
|
95
|
+
/**
|
|
96
|
+
* Additional CSS classes for the image
|
|
97
|
+
*/
|
|
98
|
+
imageClassName?: string;
|
|
99
|
+
/**
|
|
100
|
+
* OptixFlow image optimization configuration
|
|
101
|
+
*/
|
|
102
|
+
optixFlowConfig?: OptixFlowConfig;
|
|
103
|
+
/**
|
|
104
|
+
* Background style for the section
|
|
105
|
+
*/
|
|
106
|
+
background?: SectionBackground;
|
|
107
|
+
/**
|
|
108
|
+
* Vertical spacing for the section
|
|
109
|
+
*/
|
|
110
|
+
spacing?: SectionSpacing;
|
|
111
|
+
/**
|
|
112
|
+
* Optional background pattern name or URL
|
|
113
|
+
*/
|
|
114
|
+
pattern?: PatternName | undefined;
|
|
115
|
+
/**
|
|
116
|
+
* Pattern overlay opacity (0-1)
|
|
117
|
+
*/
|
|
118
|
+
patternOpacity?: number;
|
|
119
|
+
}
|
|
120
|
+
declare function CarouselAutoProgressSlides({ heading, subheading, items, slidesSlot, autoAdvanceInterval, className, containerClassName, headerClassName, headingClassName, subheadingClassName, navigationClassName, slideLabelClassName, slideContainerClassName, imageClassName, optixFlowConfig, background, spacing, pattern, patternOpacity, }: CarouselAutoProgressSlidesProps): React.JSX.Element;
|
|
121
|
+
|
|
122
|
+
export { CarouselAutoProgressSlides, type CarouselAutoProgressSlidesProps };
|
|
@@ -0,0 +1,122 @@
|
|
|
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 { 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
|
+
* CarouselAutoProgressSlides
|
|
12
|
+
*
|
|
13
|
+
* An auto-advancing carousel with animated progress indicators and smooth blur
|
|
14
|
+
* transitions between slides. Features a centered headline, navigation controls,
|
|
15
|
+
* and visual progress dots that fill as each slide auto-advances.
|
|
16
|
+
*
|
|
17
|
+
* Use cases:
|
|
18
|
+
* - Hero sections with rotating feature highlights
|
|
19
|
+
* - Product showcases with timed transitions
|
|
20
|
+
* - Marketing landing pages with auto-playing content
|
|
21
|
+
* - Onboarding flows with step-by-step visuals
|
|
22
|
+
*/
|
|
23
|
+
|
|
24
|
+
interface SlideItem {
|
|
25
|
+
/**
|
|
26
|
+
* Image source URL
|
|
27
|
+
*/
|
|
28
|
+
src: string;
|
|
29
|
+
/**
|
|
30
|
+
* Slide label/alt text
|
|
31
|
+
*/
|
|
32
|
+
label?: React.ReactNode;
|
|
33
|
+
/**
|
|
34
|
+
* Additional CSS classes for the slide
|
|
35
|
+
*/
|
|
36
|
+
className?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Additional CSS classes for the image
|
|
39
|
+
*/
|
|
40
|
+
imageClassName?: string;
|
|
41
|
+
}
|
|
42
|
+
interface CarouselAutoProgressSlidesProps {
|
|
43
|
+
/**
|
|
44
|
+
* Main heading content
|
|
45
|
+
*/
|
|
46
|
+
heading?: React.ReactNode;
|
|
47
|
+
/**
|
|
48
|
+
* Subheading/description text
|
|
49
|
+
*/
|
|
50
|
+
subheading?: React.ReactNode;
|
|
51
|
+
/**
|
|
52
|
+
* Array of slide items
|
|
53
|
+
*/
|
|
54
|
+
items?: SlideItem[];
|
|
55
|
+
/**
|
|
56
|
+
* Custom slot for rendering slides (overrides items array)
|
|
57
|
+
*/
|
|
58
|
+
slidesSlot?: React.ReactNode;
|
|
59
|
+
/**
|
|
60
|
+
* Auto advance interval in milliseconds
|
|
61
|
+
*/
|
|
62
|
+
autoAdvanceInterval?: number;
|
|
63
|
+
/**
|
|
64
|
+
* Additional CSS classes for the section
|
|
65
|
+
*/
|
|
66
|
+
className?: string;
|
|
67
|
+
/**
|
|
68
|
+
* Additional CSS classes for the container
|
|
69
|
+
*/
|
|
70
|
+
containerClassName?: string;
|
|
71
|
+
/**
|
|
72
|
+
* Additional CSS classes for the header area
|
|
73
|
+
*/
|
|
74
|
+
headerClassName?: string;
|
|
75
|
+
/**
|
|
76
|
+
* Additional CSS classes for the heading
|
|
77
|
+
*/
|
|
78
|
+
headingClassName?: string;
|
|
79
|
+
/**
|
|
80
|
+
* Additional CSS classes for the subheading
|
|
81
|
+
*/
|
|
82
|
+
subheadingClassName?: string;
|
|
83
|
+
/**
|
|
84
|
+
* Additional CSS classes for the navigation area
|
|
85
|
+
*/
|
|
86
|
+
navigationClassName?: string;
|
|
87
|
+
/**
|
|
88
|
+
* Additional CSS classes for the slide label
|
|
89
|
+
*/
|
|
90
|
+
slideLabelClassName?: string;
|
|
91
|
+
/**
|
|
92
|
+
* Additional CSS classes for the slide container
|
|
93
|
+
*/
|
|
94
|
+
slideContainerClassName?: string;
|
|
95
|
+
/**
|
|
96
|
+
* Additional CSS classes for the image
|
|
97
|
+
*/
|
|
98
|
+
imageClassName?: string;
|
|
99
|
+
/**
|
|
100
|
+
* OptixFlow image optimization configuration
|
|
101
|
+
*/
|
|
102
|
+
optixFlowConfig?: OptixFlowConfig;
|
|
103
|
+
/**
|
|
104
|
+
* Background style for the section
|
|
105
|
+
*/
|
|
106
|
+
background?: SectionBackground;
|
|
107
|
+
/**
|
|
108
|
+
* Vertical spacing for the section
|
|
109
|
+
*/
|
|
110
|
+
spacing?: SectionSpacing;
|
|
111
|
+
/**
|
|
112
|
+
* Optional background pattern name or URL
|
|
113
|
+
*/
|
|
114
|
+
pattern?: PatternName | undefined;
|
|
115
|
+
/**
|
|
116
|
+
* Pattern overlay opacity (0-1)
|
|
117
|
+
*/
|
|
118
|
+
patternOpacity?: number;
|
|
119
|
+
}
|
|
120
|
+
declare function CarouselAutoProgressSlides({ heading, subheading, items, slidesSlot, autoAdvanceInterval, className, containerClassName, headerClassName, headingClassName, subheadingClassName, navigationClassName, slideLabelClassName, slideContainerClassName, imageClassName, optixFlowConfig, background, spacing, pattern, patternOpacity, }: CarouselAutoProgressSlidesProps): React.JSX.Element;
|
|
121
|
+
|
|
122
|
+
export { CarouselAutoProgressSlides, type CarouselAutoProgressSlidesProps };
|