@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,119 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { EmblaOptionsType } from 'embla-carousel';
|
|
3
|
+
import { P as PatternName } from './pattern-background-a7gKHzHy.cjs';
|
|
4
|
+
import { f as SectionBackground, g as SectionSpacing } from './community-initiatives-Sm_ZSgyv.cjs';
|
|
5
|
+
import { O as OptixFlowConfig } from './blocks-Cohq4eio.cjs';
|
|
6
|
+
import 'react/jsx-runtime';
|
|
7
|
+
import 'class-variance-authority';
|
|
8
|
+
import './button-variants-lRElsmTc.cjs';
|
|
9
|
+
import 'class-variance-authority/types';
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* CarouselAutoplayProgress
|
|
13
|
+
*
|
|
14
|
+
* An Embla-powered carousel with autoplay functionality, animated progress bar,
|
|
15
|
+
* dot navigation, and play/pause controls. Features smooth transitions with
|
|
16
|
+
* visual feedback for autoplay timing.
|
|
17
|
+
*
|
|
18
|
+
* Use cases:
|
|
19
|
+
* - Hero sections with timed content rotation
|
|
20
|
+
* - Product showcases with automatic advancement
|
|
21
|
+
* - Testimonial carousels with progress indication
|
|
22
|
+
* - Feature highlight sections
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
interface AutoplaySlide {
|
|
26
|
+
/**
|
|
27
|
+
* Image source URL
|
|
28
|
+
*/
|
|
29
|
+
src: string;
|
|
30
|
+
/**
|
|
31
|
+
* Image alt text
|
|
32
|
+
*/
|
|
33
|
+
alt?: React.ReactNode;
|
|
34
|
+
/**
|
|
35
|
+
* Additional content below the image
|
|
36
|
+
*/
|
|
37
|
+
content?: React.ReactNode;
|
|
38
|
+
/**
|
|
39
|
+
* Additional CSS classes for the slide
|
|
40
|
+
*/
|
|
41
|
+
className?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Additional CSS classes for the image
|
|
44
|
+
*/
|
|
45
|
+
imageClassName?: string;
|
|
46
|
+
}
|
|
47
|
+
interface CarouselAutoplayProgressProps {
|
|
48
|
+
/**
|
|
49
|
+
* Array of slides
|
|
50
|
+
*/
|
|
51
|
+
slides?: AutoplaySlide[];
|
|
52
|
+
/**
|
|
53
|
+
* Custom slot for rendering slides (overrides slides array)
|
|
54
|
+
*/
|
|
55
|
+
slidesSlot?: React.ReactNode;
|
|
56
|
+
/**
|
|
57
|
+
* Embla carousel options
|
|
58
|
+
*/
|
|
59
|
+
options?: EmblaOptionsType;
|
|
60
|
+
/**
|
|
61
|
+
* Autoplay delay in milliseconds
|
|
62
|
+
*/
|
|
63
|
+
autoplayDelay?: number;
|
|
64
|
+
/**
|
|
65
|
+
* Additional CSS classes for the section
|
|
66
|
+
*/
|
|
67
|
+
className?: string;
|
|
68
|
+
/**
|
|
69
|
+
* Additional CSS classes for the carousel container
|
|
70
|
+
*/
|
|
71
|
+
containerClassName?: string;
|
|
72
|
+
/**
|
|
73
|
+
* Additional CSS classes for the slides track
|
|
74
|
+
*/
|
|
75
|
+
trackClassName?: string;
|
|
76
|
+
/**
|
|
77
|
+
* Additional CSS classes for individual slides
|
|
78
|
+
*/
|
|
79
|
+
slideClassName?: string;
|
|
80
|
+
/**
|
|
81
|
+
* Additional CSS classes for the image
|
|
82
|
+
*/
|
|
83
|
+
imageClassName?: string;
|
|
84
|
+
/**
|
|
85
|
+
* Additional CSS classes for the controls area
|
|
86
|
+
*/
|
|
87
|
+
controlsClassName?: string;
|
|
88
|
+
/**
|
|
89
|
+
* Additional CSS classes for the dots navigation
|
|
90
|
+
*/
|
|
91
|
+
dotsClassName?: string;
|
|
92
|
+
/**
|
|
93
|
+
* Additional CSS classes for the progress bar
|
|
94
|
+
*/
|
|
95
|
+
progressClassName?: string;
|
|
96
|
+
/**
|
|
97
|
+
* OptixFlow image optimization configuration
|
|
98
|
+
*/
|
|
99
|
+
optixFlowConfig?: OptixFlowConfig;
|
|
100
|
+
/**
|
|
101
|
+
* Background style for the section
|
|
102
|
+
*/
|
|
103
|
+
background?: SectionBackground;
|
|
104
|
+
/**
|
|
105
|
+
* Vertical spacing for the section
|
|
106
|
+
*/
|
|
107
|
+
spacing?: SectionSpacing;
|
|
108
|
+
/**
|
|
109
|
+
* Optional background pattern name or URL
|
|
110
|
+
*/
|
|
111
|
+
pattern?: PatternName | undefined;
|
|
112
|
+
/**
|
|
113
|
+
* Pattern overlay opacity (0-1)
|
|
114
|
+
*/
|
|
115
|
+
patternOpacity?: number;
|
|
116
|
+
}
|
|
117
|
+
declare function CarouselAutoplayProgress({ slides, slidesSlot, options, autoplayDelay, className, containerClassName, trackClassName, slideClassName, imageClassName, controlsClassName, dotsClassName, progressClassName, optixFlowConfig, background, spacing, pattern, patternOpacity, }: CarouselAutoplayProgressProps): React.JSX.Element;
|
|
118
|
+
|
|
119
|
+
export { CarouselAutoplayProgress, type CarouselAutoplayProgressProps };
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { EmblaOptionsType } from 'embla-carousel';
|
|
3
|
+
import { P as PatternName } from './pattern-background-a7gKHzHy.js';
|
|
4
|
+
import { f as SectionBackground, g as SectionSpacing } from './community-initiatives-BeWIIjA4.js';
|
|
5
|
+
import { O as OptixFlowConfig } from './blocks-k17uluAz.js';
|
|
6
|
+
import 'react/jsx-runtime';
|
|
7
|
+
import 'class-variance-authority';
|
|
8
|
+
import './button-variants-lRElsmTc.js';
|
|
9
|
+
import 'class-variance-authority/types';
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* CarouselAutoplayProgress
|
|
13
|
+
*
|
|
14
|
+
* An Embla-powered carousel with autoplay functionality, animated progress bar,
|
|
15
|
+
* dot navigation, and play/pause controls. Features smooth transitions with
|
|
16
|
+
* visual feedback for autoplay timing.
|
|
17
|
+
*
|
|
18
|
+
* Use cases:
|
|
19
|
+
* - Hero sections with timed content rotation
|
|
20
|
+
* - Product showcases with automatic advancement
|
|
21
|
+
* - Testimonial carousels with progress indication
|
|
22
|
+
* - Feature highlight sections
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
interface AutoplaySlide {
|
|
26
|
+
/**
|
|
27
|
+
* Image source URL
|
|
28
|
+
*/
|
|
29
|
+
src: string;
|
|
30
|
+
/**
|
|
31
|
+
* Image alt text
|
|
32
|
+
*/
|
|
33
|
+
alt?: React.ReactNode;
|
|
34
|
+
/**
|
|
35
|
+
* Additional content below the image
|
|
36
|
+
*/
|
|
37
|
+
content?: React.ReactNode;
|
|
38
|
+
/**
|
|
39
|
+
* Additional CSS classes for the slide
|
|
40
|
+
*/
|
|
41
|
+
className?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Additional CSS classes for the image
|
|
44
|
+
*/
|
|
45
|
+
imageClassName?: string;
|
|
46
|
+
}
|
|
47
|
+
interface CarouselAutoplayProgressProps {
|
|
48
|
+
/**
|
|
49
|
+
* Array of slides
|
|
50
|
+
*/
|
|
51
|
+
slides?: AutoplaySlide[];
|
|
52
|
+
/**
|
|
53
|
+
* Custom slot for rendering slides (overrides slides array)
|
|
54
|
+
*/
|
|
55
|
+
slidesSlot?: React.ReactNode;
|
|
56
|
+
/**
|
|
57
|
+
* Embla carousel options
|
|
58
|
+
*/
|
|
59
|
+
options?: EmblaOptionsType;
|
|
60
|
+
/**
|
|
61
|
+
* Autoplay delay in milliseconds
|
|
62
|
+
*/
|
|
63
|
+
autoplayDelay?: number;
|
|
64
|
+
/**
|
|
65
|
+
* Additional CSS classes for the section
|
|
66
|
+
*/
|
|
67
|
+
className?: string;
|
|
68
|
+
/**
|
|
69
|
+
* Additional CSS classes for the carousel container
|
|
70
|
+
*/
|
|
71
|
+
containerClassName?: string;
|
|
72
|
+
/**
|
|
73
|
+
* Additional CSS classes for the slides track
|
|
74
|
+
*/
|
|
75
|
+
trackClassName?: string;
|
|
76
|
+
/**
|
|
77
|
+
* Additional CSS classes for individual slides
|
|
78
|
+
*/
|
|
79
|
+
slideClassName?: string;
|
|
80
|
+
/**
|
|
81
|
+
* Additional CSS classes for the image
|
|
82
|
+
*/
|
|
83
|
+
imageClassName?: string;
|
|
84
|
+
/**
|
|
85
|
+
* Additional CSS classes for the controls area
|
|
86
|
+
*/
|
|
87
|
+
controlsClassName?: string;
|
|
88
|
+
/**
|
|
89
|
+
* Additional CSS classes for the dots navigation
|
|
90
|
+
*/
|
|
91
|
+
dotsClassName?: string;
|
|
92
|
+
/**
|
|
93
|
+
* Additional CSS classes for the progress bar
|
|
94
|
+
*/
|
|
95
|
+
progressClassName?: string;
|
|
96
|
+
/**
|
|
97
|
+
* OptixFlow image optimization configuration
|
|
98
|
+
*/
|
|
99
|
+
optixFlowConfig?: OptixFlowConfig;
|
|
100
|
+
/**
|
|
101
|
+
* Background style for the section
|
|
102
|
+
*/
|
|
103
|
+
background?: SectionBackground;
|
|
104
|
+
/**
|
|
105
|
+
* Vertical spacing for the section
|
|
106
|
+
*/
|
|
107
|
+
spacing?: SectionSpacing;
|
|
108
|
+
/**
|
|
109
|
+
* Optional background pattern name or URL
|
|
110
|
+
*/
|
|
111
|
+
pattern?: PatternName | undefined;
|
|
112
|
+
/**
|
|
113
|
+
* Pattern overlay opacity (0-1)
|
|
114
|
+
*/
|
|
115
|
+
patternOpacity?: number;
|
|
116
|
+
}
|
|
117
|
+
declare function CarouselAutoplayProgress({ slides, slidesSlot, options, autoplayDelay, className, containerClassName, trackClassName, slideClassName, imageClassName, controlsClassName, dotsClassName, progressClassName, optixFlowConfig, background, spacing, pattern, patternOpacity, }: CarouselAutoplayProgressProps): React.JSX.Element;
|
|
118
|
+
|
|
119
|
+
export { CarouselAutoplayProgress, type CarouselAutoplayProgressProps };
|