@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,161 @@
|
|
|
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 { A as ActionConfig, 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
|
+
* CarouselProductFeatureShowcase
|
|
12
|
+
*
|
|
13
|
+
* An interactive product feature carousel with mobile-responsive design,
|
|
14
|
+
* color variant selectors, and animated transitions. Features a split layout
|
|
15
|
+
* with product imagery on one side and feature descriptions with navigation
|
|
16
|
+
* on the other.
|
|
17
|
+
*
|
|
18
|
+
* Use cases:
|
|
19
|
+
* - Product landing pages with feature highlights
|
|
20
|
+
* - E-commerce product showcases with variants
|
|
21
|
+
* - SaaS feature tours with visual demonstrations
|
|
22
|
+
* - Marketing pages with interactive product exploration
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
interface ProductColorVariant {
|
|
26
|
+
/**
|
|
27
|
+
* Color variant name
|
|
28
|
+
*/
|
|
29
|
+
name: string;
|
|
30
|
+
/**
|
|
31
|
+
* Color value (hex, rgb, etc.)
|
|
32
|
+
*/
|
|
33
|
+
value: string;
|
|
34
|
+
/**
|
|
35
|
+
* Optional image for this color variant
|
|
36
|
+
*/
|
|
37
|
+
image?: string;
|
|
38
|
+
}
|
|
39
|
+
interface ProductFeature {
|
|
40
|
+
/**
|
|
41
|
+
* Unique identifier for the feature
|
|
42
|
+
*/
|
|
43
|
+
id: string;
|
|
44
|
+
/**
|
|
45
|
+
* Feature title
|
|
46
|
+
*/
|
|
47
|
+
title?: React.ReactNode;
|
|
48
|
+
/**
|
|
49
|
+
* Feature description
|
|
50
|
+
*/
|
|
51
|
+
description?: React.ReactNode;
|
|
52
|
+
/**
|
|
53
|
+
* Image source URL
|
|
54
|
+
*/
|
|
55
|
+
image: string;
|
|
56
|
+
/**
|
|
57
|
+
* Color variants for the product
|
|
58
|
+
*/
|
|
59
|
+
colors?: ProductColorVariant[];
|
|
60
|
+
/**
|
|
61
|
+
* Additional CSS classes for the feature
|
|
62
|
+
*/
|
|
63
|
+
className?: string;
|
|
64
|
+
/**
|
|
65
|
+
* Additional CSS classes for the image
|
|
66
|
+
*/
|
|
67
|
+
imageClassName?: string;
|
|
68
|
+
}
|
|
69
|
+
interface CarouselProductFeatureShowcaseProps {
|
|
70
|
+
/**
|
|
71
|
+
* Main heading content
|
|
72
|
+
*/
|
|
73
|
+
heading?: React.ReactNode;
|
|
74
|
+
/**
|
|
75
|
+
* Subheading/description text
|
|
76
|
+
*/
|
|
77
|
+
subheading?: React.ReactNode;
|
|
78
|
+
/**
|
|
79
|
+
* Array of product features
|
|
80
|
+
*/
|
|
81
|
+
features?: ProductFeature[];
|
|
82
|
+
/**
|
|
83
|
+
* Custom slot for rendering features (overrides features array)
|
|
84
|
+
*/
|
|
85
|
+
featuresSlot?: React.ReactNode;
|
|
86
|
+
/**
|
|
87
|
+
* Array of action configurations for CTA buttons
|
|
88
|
+
*/
|
|
89
|
+
actions?: ActionConfig[];
|
|
90
|
+
/**
|
|
91
|
+
* Custom slot for rendering actions (overrides actions array)
|
|
92
|
+
*/
|
|
93
|
+
actionsSlot?: React.ReactNode;
|
|
94
|
+
/**
|
|
95
|
+
* Additional CSS classes for the section
|
|
96
|
+
*/
|
|
97
|
+
className?: string;
|
|
98
|
+
/**
|
|
99
|
+
* Additional CSS classes for the container
|
|
100
|
+
*/
|
|
101
|
+
containerClassName?: string;
|
|
102
|
+
/**
|
|
103
|
+
* Additional CSS classes for the header
|
|
104
|
+
*/
|
|
105
|
+
headerClassName?: string;
|
|
106
|
+
/**
|
|
107
|
+
* Additional CSS classes for the heading
|
|
108
|
+
*/
|
|
109
|
+
headingClassName?: string;
|
|
110
|
+
/**
|
|
111
|
+
* Additional CSS classes for the subheading
|
|
112
|
+
*/
|
|
113
|
+
subheadingClassName?: string;
|
|
114
|
+
/**
|
|
115
|
+
* Additional CSS classes for the content grid
|
|
116
|
+
*/
|
|
117
|
+
contentClassName?: string;
|
|
118
|
+
/**
|
|
119
|
+
* Additional CSS classes for the image container
|
|
120
|
+
*/
|
|
121
|
+
imageClassName?: string;
|
|
122
|
+
/**
|
|
123
|
+
* Additional CSS classes for the navigation arrows
|
|
124
|
+
*/
|
|
125
|
+
navigationClassName?: string;
|
|
126
|
+
/**
|
|
127
|
+
* Additional CSS classes for the color selectors
|
|
128
|
+
*/
|
|
129
|
+
colorSelectorClassName?: string;
|
|
130
|
+
/**
|
|
131
|
+
* Additional CSS classes for the actions container
|
|
132
|
+
*/
|
|
133
|
+
actionsClassName?: string;
|
|
134
|
+
/**
|
|
135
|
+
* Additional CSS classes for the dot indicators
|
|
136
|
+
*/
|
|
137
|
+
indicatorsClassName?: string;
|
|
138
|
+
/**
|
|
139
|
+
* OptixFlow image optimization configuration
|
|
140
|
+
*/
|
|
141
|
+
optixFlowConfig?: OptixFlowConfig;
|
|
142
|
+
/**
|
|
143
|
+
* Background style for the section
|
|
144
|
+
*/
|
|
145
|
+
background?: SectionBackground;
|
|
146
|
+
/**
|
|
147
|
+
* Vertical spacing for the section
|
|
148
|
+
*/
|
|
149
|
+
spacing?: SectionSpacing;
|
|
150
|
+
/**
|
|
151
|
+
* Optional background pattern name or URL
|
|
152
|
+
*/
|
|
153
|
+
pattern?: PatternName | undefined;
|
|
154
|
+
/**
|
|
155
|
+
* Pattern overlay opacity (0-1)
|
|
156
|
+
*/
|
|
157
|
+
patternOpacity?: number;
|
|
158
|
+
}
|
|
159
|
+
declare function CarouselProductFeatureShowcase({ heading, subheading, features, featuresSlot, actions, actionsSlot, className, containerClassName, headerClassName, headingClassName, subheadingClassName, contentClassName, imageClassName, navigationClassName, colorSelectorClassName, actionsClassName, indicatorsClassName, optixFlowConfig, background, spacing, pattern, patternOpacity, }: CarouselProductFeatureShowcaseProps): React.JSX.Element;
|
|
160
|
+
|
|
161
|
+
export { CarouselProductFeatureShowcase, type CarouselProductFeatureShowcaseProps, type ProductFeature };
|
|
@@ -0,0 +1,161 @@
|
|
|
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 { A as ActionConfig, 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
|
+
* CarouselProductFeatureShowcase
|
|
12
|
+
*
|
|
13
|
+
* An interactive product feature carousel with mobile-responsive design,
|
|
14
|
+
* color variant selectors, and animated transitions. Features a split layout
|
|
15
|
+
* with product imagery on one side and feature descriptions with navigation
|
|
16
|
+
* on the other.
|
|
17
|
+
*
|
|
18
|
+
* Use cases:
|
|
19
|
+
* - Product landing pages with feature highlights
|
|
20
|
+
* - E-commerce product showcases with variants
|
|
21
|
+
* - SaaS feature tours with visual demonstrations
|
|
22
|
+
* - Marketing pages with interactive product exploration
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
interface ProductColorVariant {
|
|
26
|
+
/**
|
|
27
|
+
* Color variant name
|
|
28
|
+
*/
|
|
29
|
+
name: string;
|
|
30
|
+
/**
|
|
31
|
+
* Color value (hex, rgb, etc.)
|
|
32
|
+
*/
|
|
33
|
+
value: string;
|
|
34
|
+
/**
|
|
35
|
+
* Optional image for this color variant
|
|
36
|
+
*/
|
|
37
|
+
image?: string;
|
|
38
|
+
}
|
|
39
|
+
interface ProductFeature {
|
|
40
|
+
/**
|
|
41
|
+
* Unique identifier for the feature
|
|
42
|
+
*/
|
|
43
|
+
id: string;
|
|
44
|
+
/**
|
|
45
|
+
* Feature title
|
|
46
|
+
*/
|
|
47
|
+
title?: React.ReactNode;
|
|
48
|
+
/**
|
|
49
|
+
* Feature description
|
|
50
|
+
*/
|
|
51
|
+
description?: React.ReactNode;
|
|
52
|
+
/**
|
|
53
|
+
* Image source URL
|
|
54
|
+
*/
|
|
55
|
+
image: string;
|
|
56
|
+
/**
|
|
57
|
+
* Color variants for the product
|
|
58
|
+
*/
|
|
59
|
+
colors?: ProductColorVariant[];
|
|
60
|
+
/**
|
|
61
|
+
* Additional CSS classes for the feature
|
|
62
|
+
*/
|
|
63
|
+
className?: string;
|
|
64
|
+
/**
|
|
65
|
+
* Additional CSS classes for the image
|
|
66
|
+
*/
|
|
67
|
+
imageClassName?: string;
|
|
68
|
+
}
|
|
69
|
+
interface CarouselProductFeatureShowcaseProps {
|
|
70
|
+
/**
|
|
71
|
+
* Main heading content
|
|
72
|
+
*/
|
|
73
|
+
heading?: React.ReactNode;
|
|
74
|
+
/**
|
|
75
|
+
* Subheading/description text
|
|
76
|
+
*/
|
|
77
|
+
subheading?: React.ReactNode;
|
|
78
|
+
/**
|
|
79
|
+
* Array of product features
|
|
80
|
+
*/
|
|
81
|
+
features?: ProductFeature[];
|
|
82
|
+
/**
|
|
83
|
+
* Custom slot for rendering features (overrides features array)
|
|
84
|
+
*/
|
|
85
|
+
featuresSlot?: React.ReactNode;
|
|
86
|
+
/**
|
|
87
|
+
* Array of action configurations for CTA buttons
|
|
88
|
+
*/
|
|
89
|
+
actions?: ActionConfig[];
|
|
90
|
+
/**
|
|
91
|
+
* Custom slot for rendering actions (overrides actions array)
|
|
92
|
+
*/
|
|
93
|
+
actionsSlot?: React.ReactNode;
|
|
94
|
+
/**
|
|
95
|
+
* Additional CSS classes for the section
|
|
96
|
+
*/
|
|
97
|
+
className?: string;
|
|
98
|
+
/**
|
|
99
|
+
* Additional CSS classes for the container
|
|
100
|
+
*/
|
|
101
|
+
containerClassName?: string;
|
|
102
|
+
/**
|
|
103
|
+
* Additional CSS classes for the header
|
|
104
|
+
*/
|
|
105
|
+
headerClassName?: string;
|
|
106
|
+
/**
|
|
107
|
+
* Additional CSS classes for the heading
|
|
108
|
+
*/
|
|
109
|
+
headingClassName?: string;
|
|
110
|
+
/**
|
|
111
|
+
* Additional CSS classes for the subheading
|
|
112
|
+
*/
|
|
113
|
+
subheadingClassName?: string;
|
|
114
|
+
/**
|
|
115
|
+
* Additional CSS classes for the content grid
|
|
116
|
+
*/
|
|
117
|
+
contentClassName?: string;
|
|
118
|
+
/**
|
|
119
|
+
* Additional CSS classes for the image container
|
|
120
|
+
*/
|
|
121
|
+
imageClassName?: string;
|
|
122
|
+
/**
|
|
123
|
+
* Additional CSS classes for the navigation arrows
|
|
124
|
+
*/
|
|
125
|
+
navigationClassName?: string;
|
|
126
|
+
/**
|
|
127
|
+
* Additional CSS classes for the color selectors
|
|
128
|
+
*/
|
|
129
|
+
colorSelectorClassName?: string;
|
|
130
|
+
/**
|
|
131
|
+
* Additional CSS classes for the actions container
|
|
132
|
+
*/
|
|
133
|
+
actionsClassName?: string;
|
|
134
|
+
/**
|
|
135
|
+
* Additional CSS classes for the dot indicators
|
|
136
|
+
*/
|
|
137
|
+
indicatorsClassName?: string;
|
|
138
|
+
/**
|
|
139
|
+
* OptixFlow image optimization configuration
|
|
140
|
+
*/
|
|
141
|
+
optixFlowConfig?: OptixFlowConfig;
|
|
142
|
+
/**
|
|
143
|
+
* Background style for the section
|
|
144
|
+
*/
|
|
145
|
+
background?: SectionBackground;
|
|
146
|
+
/**
|
|
147
|
+
* Vertical spacing for the section
|
|
148
|
+
*/
|
|
149
|
+
spacing?: SectionSpacing;
|
|
150
|
+
/**
|
|
151
|
+
* Optional background pattern name or URL
|
|
152
|
+
*/
|
|
153
|
+
pattern?: PatternName | undefined;
|
|
154
|
+
/**
|
|
155
|
+
* Pattern overlay opacity (0-1)
|
|
156
|
+
*/
|
|
157
|
+
patternOpacity?: number;
|
|
158
|
+
}
|
|
159
|
+
declare function CarouselProductFeatureShowcase({ heading, subheading, features, featuresSlot, actions, actionsSlot, className, containerClassName, headerClassName, headingClassName, subheadingClassName, contentClassName, imageClassName, navigationClassName, colorSelectorClassName, actionsClassName, indicatorsClassName, optixFlowConfig, background, spacing, pattern, patternOpacity, }: CarouselProductFeatureShowcaseProps): React.JSX.Element;
|
|
160
|
+
|
|
161
|
+
export { CarouselProductFeatureShowcase, type CarouselProductFeatureShowcaseProps, type ProductFeature };
|