@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.
Files changed (71) hide show
  1. package/dist/blog-cards-read-time.cjs +1 -1
  2. package/dist/blog-cards-read-time.js +1 -1
  3. package/dist/blog-cards-tagline-cta.cjs +1 -1
  4. package/dist/blog-cards-tagline-cta.js +1 -1
  5. package/dist/blog-category-overlay.cjs +1 -1
  6. package/dist/blog-category-overlay.js +1 -1
  7. package/dist/blog-featured-popular.cjs +1 -1
  8. package/dist/blog-featured-popular.js +1 -1
  9. package/dist/blog-grid-author-cards.cjs +1 -1
  10. package/dist/blog-grid-author-cards.js +1 -1
  11. package/dist/blog-grid-nine-posts.cjs +1 -1
  12. package/dist/blog-grid-nine-posts.js +1 -1
  13. package/dist/blog-horizontal-cards.cjs +1 -1
  14. package/dist/blog-horizontal-cards.js +1 -1
  15. package/dist/blog-tech-insights.cjs +54 -45
  16. package/dist/blog-tech-insights.js +54 -45
  17. package/dist/carousel-animated-sections.cjs +1224 -0
  18. package/dist/carousel-animated-sections.d.cts +154 -0
  19. package/dist/carousel-animated-sections.d.ts +154 -0
  20. package/dist/carousel-animated-sections.js +1203 -0
  21. package/dist/carousel-auto-progress-slides.cjs +1156 -0
  22. package/dist/carousel-auto-progress-slides.d.cts +122 -0
  23. package/dist/carousel-auto-progress-slides.d.ts +122 -0
  24. package/dist/carousel-auto-progress-slides.js +1135 -0
  25. package/dist/carousel-autoplay-progress.cjs +1141 -0
  26. package/dist/carousel-autoplay-progress.d.cts +119 -0
  27. package/dist/carousel-autoplay-progress.d.ts +119 -0
  28. package/dist/carousel-autoplay-progress.js +1116 -0
  29. package/dist/carousel-feature-badge.cjs +1216 -0
  30. package/dist/carousel-feature-badge.d.cts +99 -0
  31. package/dist/carousel-feature-badge.d.ts +99 -0
  32. package/dist/carousel-feature-badge.js +1192 -0
  33. package/dist/carousel-fullscreen-scroll-fx.cjs +526 -0
  34. package/dist/carousel-fullscreen-scroll-fx.d.cts +122 -0
  35. package/dist/carousel-fullscreen-scroll-fx.d.ts +122 -0
  36. package/dist/carousel-fullscreen-scroll-fx.js +505 -0
  37. package/dist/carousel-gallery-thumbnails.cjs +1059 -0
  38. package/dist/carousel-gallery-thumbnails.d.cts +122 -0
  39. package/dist/carousel-gallery-thumbnails.d.ts +122 -0
  40. package/dist/carousel-gallery-thumbnails.js +1038 -0
  41. package/dist/carousel-horizontal-cards.cjs +1083 -0
  42. package/dist/carousel-horizontal-cards.d.cts +126 -0
  43. package/dist/carousel-horizontal-cards.d.ts +126 -0
  44. package/dist/carousel-horizontal-cards.js +1062 -0
  45. package/dist/carousel-image-hero.cjs +1075 -0
  46. package/dist/carousel-image-hero.d.cts +116 -0
  47. package/dist/carousel-image-hero.d.ts +116 -0
  48. package/dist/carousel-image-hero.js +1054 -0
  49. package/dist/carousel-multi-step-showcase.cjs +1146 -0
  50. package/dist/carousel-multi-step-showcase.d.cts +142 -0
  51. package/dist/carousel-multi-step-showcase.d.ts +142 -0
  52. package/dist/carousel-multi-step-showcase.js +1125 -0
  53. package/dist/carousel-portfolio-hero.cjs +1063 -0
  54. package/dist/carousel-portfolio-hero.d.cts +134 -0
  55. package/dist/carousel-portfolio-hero.d.ts +134 -0
  56. package/dist/carousel-portfolio-hero.js +1042 -0
  57. package/dist/carousel-product-feature-showcase.cjs +1127 -0
  58. package/dist/carousel-product-feature-showcase.d.cts +161 -0
  59. package/dist/carousel-product-feature-showcase.d.ts +161 -0
  60. package/dist/carousel-product-feature-showcase.js +1106 -0
  61. package/dist/carousel-progress-slider.cjs +597 -0
  62. package/dist/carousel-progress-slider.d.cts +122 -0
  63. package/dist/carousel-progress-slider.d.ts +122 -0
  64. package/dist/carousel-progress-slider.js +576 -0
  65. package/dist/carousel-scrolling-feature-showcase.cjs +530 -0
  66. package/dist/carousel-scrolling-feature-showcase.d.cts +126 -0
  67. package/dist/carousel-scrolling-feature-showcase.d.ts +126 -0
  68. package/dist/carousel-scrolling-feature-showcase.js +509 -0
  69. package/dist/registry.cjs +349 -238
  70. package/dist/registry.js +349 -238
  71. package/package.json +3 -2
@@ -0,0 +1,116 @@
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, 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
+ * CarouselImageHero
12
+ *
13
+ * A full-width hero section with an auto-advancing background image carousel,
14
+ * overlay content with headline, description, and call-to-action button.
15
+ * Includes navigation arrows and dot indicators for manual slide control.
16
+ *
17
+ * Use cases:
18
+ * - Landing page hero sections with rotating imagery
19
+ * - Product launch pages with visual storytelling
20
+ * - Portfolio showcases with featured work
21
+ * - Marketing campaigns with dynamic backgrounds
22
+ */
23
+
24
+ interface CarouselImageHeroProps {
25
+ /**
26
+ * Badge/eyebrow content above heading
27
+ */
28
+ badge?: React.ReactNode;
29
+ /**
30
+ * Main heading content
31
+ */
32
+ heading?: React.ReactNode;
33
+ /**
34
+ * Description text below heading
35
+ */
36
+ description?: React.ReactNode;
37
+ /**
38
+ * Array of action configurations for CTA buttons
39
+ */
40
+ actions?: ActionConfig[];
41
+ /**
42
+ * Custom slot for rendering actions (overrides actions array)
43
+ */
44
+ actionsSlot?: React.ReactNode;
45
+ /**
46
+ * Array of image items for the carousel
47
+ */
48
+ images?: ImageItem[];
49
+ /**
50
+ * Auto-play interval in milliseconds
51
+ */
52
+ autoPlayInterval?: number;
53
+ /**
54
+ * Additional CSS classes for the section
55
+ */
56
+ className?: string;
57
+ /**
58
+ * Additional CSS classes for the container
59
+ */
60
+ containerClassName?: string;
61
+ /**
62
+ * Additional CSS classes for the content wrapper
63
+ */
64
+ contentClassName?: string;
65
+ /**
66
+ * Additional CSS classes for the badge
67
+ */
68
+ badgeClassName?: string;
69
+ /**
70
+ * Additional CSS classes for the heading
71
+ */
72
+ headingClassName?: string;
73
+ /**
74
+ * Additional CSS classes for the description
75
+ */
76
+ descriptionClassName?: string;
77
+ /**
78
+ * Additional CSS classes for the actions container
79
+ */
80
+ actionsClassName?: string;
81
+ /**
82
+ * Additional CSS classes for the image container
83
+ */
84
+ imageClassName?: string;
85
+ /**
86
+ * Additional CSS classes for the navigation arrows
87
+ */
88
+ navigationClassName?: string;
89
+ /**
90
+ * Additional CSS classes for the indicators
91
+ */
92
+ indicatorsClassName?: string;
93
+ /**
94
+ * OptixFlow image optimization configuration
95
+ */
96
+ optixFlowConfig?: OptixFlowConfig;
97
+ /**
98
+ * Background style for the section
99
+ */
100
+ background?: SectionBackground;
101
+ /**
102
+ * Vertical spacing for the section
103
+ */
104
+ spacing?: SectionSpacing;
105
+ /**
106
+ * Optional background pattern name or URL
107
+ */
108
+ pattern?: PatternName | undefined;
109
+ /**
110
+ * Pattern overlay opacity (0-1)
111
+ */
112
+ patternOpacity?: number;
113
+ }
114
+ declare function CarouselImageHero({ badge, heading, description, actions, actionsSlot, images, autoPlayInterval, className, containerClassName, contentClassName, badgeClassName, headingClassName, descriptionClassName, actionsClassName, imageClassName, navigationClassName, indicatorsClassName, optixFlowConfig, background, spacing, pattern, patternOpacity, }: CarouselImageHeroProps): React.JSX.Element;
115
+
116
+ export { CarouselImageHero, type CarouselImageHeroProps };
@@ -0,0 +1,116 @@
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, 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
+ * CarouselImageHero
12
+ *
13
+ * A full-width hero section with an auto-advancing background image carousel,
14
+ * overlay content with headline, description, and call-to-action button.
15
+ * Includes navigation arrows and dot indicators for manual slide control.
16
+ *
17
+ * Use cases:
18
+ * - Landing page hero sections with rotating imagery
19
+ * - Product launch pages with visual storytelling
20
+ * - Portfolio showcases with featured work
21
+ * - Marketing campaigns with dynamic backgrounds
22
+ */
23
+
24
+ interface CarouselImageHeroProps {
25
+ /**
26
+ * Badge/eyebrow content above heading
27
+ */
28
+ badge?: React.ReactNode;
29
+ /**
30
+ * Main heading content
31
+ */
32
+ heading?: React.ReactNode;
33
+ /**
34
+ * Description text below heading
35
+ */
36
+ description?: React.ReactNode;
37
+ /**
38
+ * Array of action configurations for CTA buttons
39
+ */
40
+ actions?: ActionConfig[];
41
+ /**
42
+ * Custom slot for rendering actions (overrides actions array)
43
+ */
44
+ actionsSlot?: React.ReactNode;
45
+ /**
46
+ * Array of image items for the carousel
47
+ */
48
+ images?: ImageItem[];
49
+ /**
50
+ * Auto-play interval in milliseconds
51
+ */
52
+ autoPlayInterval?: number;
53
+ /**
54
+ * Additional CSS classes for the section
55
+ */
56
+ className?: string;
57
+ /**
58
+ * Additional CSS classes for the container
59
+ */
60
+ containerClassName?: string;
61
+ /**
62
+ * Additional CSS classes for the content wrapper
63
+ */
64
+ contentClassName?: string;
65
+ /**
66
+ * Additional CSS classes for the badge
67
+ */
68
+ badgeClassName?: string;
69
+ /**
70
+ * Additional CSS classes for the heading
71
+ */
72
+ headingClassName?: string;
73
+ /**
74
+ * Additional CSS classes for the description
75
+ */
76
+ descriptionClassName?: string;
77
+ /**
78
+ * Additional CSS classes for the actions container
79
+ */
80
+ actionsClassName?: string;
81
+ /**
82
+ * Additional CSS classes for the image container
83
+ */
84
+ imageClassName?: string;
85
+ /**
86
+ * Additional CSS classes for the navigation arrows
87
+ */
88
+ navigationClassName?: string;
89
+ /**
90
+ * Additional CSS classes for the indicators
91
+ */
92
+ indicatorsClassName?: string;
93
+ /**
94
+ * OptixFlow image optimization configuration
95
+ */
96
+ optixFlowConfig?: OptixFlowConfig;
97
+ /**
98
+ * Background style for the section
99
+ */
100
+ background?: SectionBackground;
101
+ /**
102
+ * Vertical spacing for the section
103
+ */
104
+ spacing?: SectionSpacing;
105
+ /**
106
+ * Optional background pattern name or URL
107
+ */
108
+ pattern?: PatternName | undefined;
109
+ /**
110
+ * Pattern overlay opacity (0-1)
111
+ */
112
+ patternOpacity?: number;
113
+ }
114
+ declare function CarouselImageHero({ badge, heading, description, actions, actionsSlot, images, autoPlayInterval, className, containerClassName, contentClassName, badgeClassName, headingClassName, descriptionClassName, actionsClassName, imageClassName, navigationClassName, indicatorsClassName, optixFlowConfig, background, spacing, pattern, patternOpacity, }: CarouselImageHeroProps): React.JSX.Element;
115
+
116
+ export { CarouselImageHero, type CarouselImageHeroProps };