@opensite/ui 1.2.4 → 1.2.6
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/feature-accordion-image.cjs +101 -27
- package/dist/feature-accordion-image.js +101 -27
- package/dist/feature-animated-carousel.cjs +809 -321
- package/dist/feature-animated-carousel.d.cts +29 -1
- package/dist/feature-animated-carousel.d.ts +29 -1
- package/dist/feature-animated-carousel.js +807 -319
- package/dist/feature-card-grid-linked.cjs +1 -1
- package/dist/feature-card-grid-linked.js +1 -1
- package/dist/feature-carousel-progress.cjs +35 -10
- package/dist/feature-carousel-progress.js +35 -10
- package/dist/feature-checklist-image.cjs +1 -1
- package/dist/feature-checklist-image.js +1 -1
- package/dist/feature-icon-grid-muted.cjs +521 -15
- package/dist/feature-icon-grid-muted.d.cts +5 -1
- package/dist/feature-icon-grid-muted.d.ts +5 -1
- package/dist/feature-icon-grid-muted.js +521 -15
- package/dist/feature-image-cards-three-column.cjs +146 -75
- package/dist/feature-image-cards-three-column.d.cts +5 -1
- package/dist/feature-image-cards-three-column.d.ts +5 -1
- package/dist/feature-image-cards-three-column.js +146 -75
- package/dist/feature-numbered-cards.cjs +1 -1
- package/dist/feature-numbered-cards.js +1 -1
- package/dist/feature-stats-highlight.cjs +25 -39
- package/dist/feature-stats-highlight.js +25 -39
- package/dist/registry.cjs +767 -402
- package/dist/registry.js +767 -402
- package/package.json +1 -1
|
@@ -31,8 +31,32 @@ interface FeatureAnimatedCarouselItem {
|
|
|
31
31
|
* Additional CSS classes for the item
|
|
32
32
|
*/
|
|
33
33
|
className?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Optional href for item
|
|
36
|
+
*/
|
|
37
|
+
href?: string;
|
|
34
38
|
}
|
|
35
39
|
interface FeatureAnimatedCarouselProps {
|
|
40
|
+
/**
|
|
41
|
+
* Main heading content
|
|
42
|
+
*/
|
|
43
|
+
title?: React.ReactNode;
|
|
44
|
+
/**
|
|
45
|
+
* Supporting description content
|
|
46
|
+
*/
|
|
47
|
+
description?: React.ReactNode;
|
|
48
|
+
/**
|
|
49
|
+
* Additional CSS classes for the title
|
|
50
|
+
*/
|
|
51
|
+
titleClassName?: string;
|
|
52
|
+
/**
|
|
53
|
+
* Additional CSS classes for the description
|
|
54
|
+
*/
|
|
55
|
+
descriptionClassName?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Additional CSS classes for the header
|
|
58
|
+
*/
|
|
59
|
+
headerClassName?: string;
|
|
36
60
|
/**
|
|
37
61
|
* Array of feature items to display
|
|
38
62
|
*/
|
|
@@ -53,6 +77,10 @@ interface FeatureAnimatedCarouselProps {
|
|
|
53
77
|
* Additional CSS classes for the content wrapper
|
|
54
78
|
*/
|
|
55
79
|
contentClassName?: string;
|
|
80
|
+
/**
|
|
81
|
+
* CSS classes for the block's card container
|
|
82
|
+
*/
|
|
83
|
+
blockCardClassName?: string;
|
|
56
84
|
/**
|
|
57
85
|
* OptixFlow image optimization configuration
|
|
58
86
|
*/
|
|
@@ -99,6 +127,6 @@ interface FeatureAnimatedCarouselProps {
|
|
|
99
127
|
* />
|
|
100
128
|
* ```
|
|
101
129
|
*/
|
|
102
|
-
declare function FeatureAnimatedCarousel({ features, className, optixFlowConfig, background,
|
|
130
|
+
declare function FeatureAnimatedCarousel({ title, description, titleClassName, descriptionClassName, features, className, optixFlowConfig, background, pattern, patternOpacity, patternClassName, headerClassName, blockCardClassName, spacing, containerClassName, }: FeatureAnimatedCarouselProps): react_jsx_runtime.JSX.Element;
|
|
103
131
|
|
|
104
132
|
export { FeatureAnimatedCarousel, type FeatureAnimatedCarouselItem, type FeatureAnimatedCarouselProps };
|
|
@@ -31,8 +31,32 @@ interface FeatureAnimatedCarouselItem {
|
|
|
31
31
|
* Additional CSS classes for the item
|
|
32
32
|
*/
|
|
33
33
|
className?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Optional href for item
|
|
36
|
+
*/
|
|
37
|
+
href?: string;
|
|
34
38
|
}
|
|
35
39
|
interface FeatureAnimatedCarouselProps {
|
|
40
|
+
/**
|
|
41
|
+
* Main heading content
|
|
42
|
+
*/
|
|
43
|
+
title?: React.ReactNode;
|
|
44
|
+
/**
|
|
45
|
+
* Supporting description content
|
|
46
|
+
*/
|
|
47
|
+
description?: React.ReactNode;
|
|
48
|
+
/**
|
|
49
|
+
* Additional CSS classes for the title
|
|
50
|
+
*/
|
|
51
|
+
titleClassName?: string;
|
|
52
|
+
/**
|
|
53
|
+
* Additional CSS classes for the description
|
|
54
|
+
*/
|
|
55
|
+
descriptionClassName?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Additional CSS classes for the header
|
|
58
|
+
*/
|
|
59
|
+
headerClassName?: string;
|
|
36
60
|
/**
|
|
37
61
|
* Array of feature items to display
|
|
38
62
|
*/
|
|
@@ -53,6 +77,10 @@ interface FeatureAnimatedCarouselProps {
|
|
|
53
77
|
* Additional CSS classes for the content wrapper
|
|
54
78
|
*/
|
|
55
79
|
contentClassName?: string;
|
|
80
|
+
/**
|
|
81
|
+
* CSS classes for the block's card container
|
|
82
|
+
*/
|
|
83
|
+
blockCardClassName?: string;
|
|
56
84
|
/**
|
|
57
85
|
* OptixFlow image optimization configuration
|
|
58
86
|
*/
|
|
@@ -99,6 +127,6 @@ interface FeatureAnimatedCarouselProps {
|
|
|
99
127
|
* />
|
|
100
128
|
* ```
|
|
101
129
|
*/
|
|
102
|
-
declare function FeatureAnimatedCarousel({ features, className, optixFlowConfig, background,
|
|
130
|
+
declare function FeatureAnimatedCarousel({ title, description, titleClassName, descriptionClassName, features, className, optixFlowConfig, background, pattern, patternOpacity, patternClassName, headerClassName, blockCardClassName, spacing, containerClassName, }: FeatureAnimatedCarouselProps): react_jsx_runtime.JSX.Element;
|
|
103
131
|
|
|
104
132
|
export { FeatureAnimatedCarousel, type FeatureAnimatedCarouselItem, type FeatureAnimatedCarouselProps };
|