@opensite/ui 2.9.0 → 2.9.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/carousel-feature-badge.cjs +4 -3
- package/dist/carousel-feature-badge.d.cts +1 -1
- package/dist/carousel-feature-badge.d.ts +1 -1
- package/dist/carousel-feature-badge.js +4 -3
- package/dist/carousel-scrolling-feature-showcase.cjs +47 -38
- package/dist/carousel-scrolling-feature-showcase.js +47 -38
- package/dist/registry.cjs +454 -265
- package/dist/registry.js +454 -265
- package/dist/testimonials-grid-add-review.cjs +578 -39
- package/dist/testimonials-grid-add-review.d.cts +26 -26
- package/dist/testimonials-grid-add-review.d.ts +26 -26
- package/dist/testimonials-grid-add-review.js +577 -38
- package/dist/testimonials-images-helpful.cjs +85 -74
- package/dist/testimonials-images-helpful.js +85 -74
- package/dist/testimonials-list-verified.cjs +1 -0
- package/dist/testimonials-list-verified.js +1 -0
- package/dist/testimonials-logo-cards.cjs +8 -5
- package/dist/testimonials-logo-cards.js +8 -5
- package/dist/testimonials-masonry-grid.cjs +87 -11
- package/dist/testimonials-masonry-grid.d.cts +14 -1
- package/dist/testimonials-masonry-grid.d.ts +14 -1
- package/dist/testimonials-masonry-grid.js +88 -12
- package/dist/testimonials-mini-dividers.cjs +438 -26
- package/dist/testimonials-mini-dividers.js +434 -22
- package/dist/testimonials-minimal-numbered.cjs +1 -1
- package/dist/testimonials-minimal-numbered.js +1 -1
- package/dist/testimonials-parallax-number.cjs +1 -1
- package/dist/testimonials-parallax-number.js +1 -1
- package/dist/testimonials-quote-carousel.cjs +39 -37
- package/dist/testimonials-quote-carousel.d.cts +5 -1
- package/dist/testimonials-quote-carousel.d.ts +5 -1
- package/dist/testimonials-quote-carousel.js +39 -37
- package/dist/testimonials-scrolling-columns.cjs +438 -8
- package/dist/testimonials-scrolling-columns.js +436 -6
- package/dist/testimonials-simple-grid.cjs +82 -6
- package/dist/testimonials-simple-grid.d.cts +14 -1
- package/dist/testimonials-simple-grid.d.ts +14 -1
- package/dist/testimonials-simple-grid.js +83 -7
- package/dist/testimonials-stats-header.cjs +88 -8
- package/dist/testimonials-stats-header.d.cts +14 -1
- package/dist/testimonials-stats-header.d.ts +14 -1
- package/dist/testimonials-stats-header.js +89 -9
- package/dist/testimonials-twitter-cards.cjs +150 -25
- package/dist/testimonials-twitter-cards.d.cts +14 -1
- package/dist/testimonials-twitter-cards.d.ts +14 -1
- package/dist/testimonials-twitter-cards.js +151 -26
- package/dist/testimonials-wall-compact.cjs +529 -50
- package/dist/testimonials-wall-compact.d.cts +14 -1
- package/dist/testimonials-wall-compact.d.ts +14 -1
- package/dist/testimonials-wall-compact.js +526 -44
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { S as SectionBackground, s as SectionSpacing, t as PatternName } from './community-initiatives-B8KCpwXH.cjs';
|
|
3
|
+
import { ActionConfig } from '@page-speed/maps/components/geo-map';
|
|
3
4
|
import { T as TestimonialItem } from './blocks-BtDAbw8d.cjs';
|
|
4
5
|
import 'react/jsx-runtime';
|
|
5
6
|
import 'class-variance-authority';
|
|
@@ -89,6 +90,18 @@ interface TestimonialsWallCompactProps {
|
|
|
89
90
|
* Additional CSS classes for the container
|
|
90
91
|
*/
|
|
91
92
|
containerClassName?: string;
|
|
93
|
+
/**
|
|
94
|
+
* Array of action configurations for CTA buttons
|
|
95
|
+
*/
|
|
96
|
+
actions?: ActionConfig[];
|
|
97
|
+
/**
|
|
98
|
+
* Custom slot for rendering actions (overrides actions array)
|
|
99
|
+
*/
|
|
100
|
+
actionsSlot?: React.ReactNode;
|
|
101
|
+
/**
|
|
102
|
+
* Additional CSS classes for the actions container
|
|
103
|
+
*/
|
|
104
|
+
actionsClassName?: string;
|
|
92
105
|
}
|
|
93
106
|
/**
|
|
94
107
|
* TestimonialsWallCompact - A dense wall of compact testimonial cards arranged in
|
|
@@ -116,6 +129,6 @@ interface TestimonialsWallCompactProps {
|
|
|
116
129
|
* />
|
|
117
130
|
* ```
|
|
118
131
|
*/
|
|
119
|
-
declare function TestimonialsWallCompact({ testimonials, testimonialsSlot, heading, description, className, headerClassName, headingClassName, descriptionClassName, gridClassName, cardClassName, authorClassName, quoteClassName, background, containerClassName, spacing, pattern, patternOpacity, }: TestimonialsWallCompactProps): React.JSX.Element;
|
|
132
|
+
declare function TestimonialsWallCompact({ testimonials, testimonialsSlot, heading, description, className, headerClassName, headingClassName, descriptionClassName, gridClassName, cardClassName, authorClassName, quoteClassName, background, containerClassName, spacing, pattern, patternOpacity, actions, actionsSlot, actionsClassName, }: TestimonialsWallCompactProps): React.JSX.Element;
|
|
120
133
|
|
|
121
134
|
export { TestimonialsWallCompact, type TestimonialsWallCompactProps, type WallTestimonialItem };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { S as SectionBackground, s as SectionSpacing, t as PatternName } from './community-initiatives-rTRuDt0r.js';
|
|
3
|
+
import { ActionConfig } from '@page-speed/maps/components/geo-map';
|
|
3
4
|
import { T as TestimonialItem } from './blocks-BlWXj9GI.js';
|
|
4
5
|
import 'react/jsx-runtime';
|
|
5
6
|
import 'class-variance-authority';
|
|
@@ -89,6 +90,18 @@ interface TestimonialsWallCompactProps {
|
|
|
89
90
|
* Additional CSS classes for the container
|
|
90
91
|
*/
|
|
91
92
|
containerClassName?: string;
|
|
93
|
+
/**
|
|
94
|
+
* Array of action configurations for CTA buttons
|
|
95
|
+
*/
|
|
96
|
+
actions?: ActionConfig[];
|
|
97
|
+
/**
|
|
98
|
+
* Custom slot for rendering actions (overrides actions array)
|
|
99
|
+
*/
|
|
100
|
+
actionsSlot?: React.ReactNode;
|
|
101
|
+
/**
|
|
102
|
+
* Additional CSS classes for the actions container
|
|
103
|
+
*/
|
|
104
|
+
actionsClassName?: string;
|
|
92
105
|
}
|
|
93
106
|
/**
|
|
94
107
|
* TestimonialsWallCompact - A dense wall of compact testimonial cards arranged in
|
|
@@ -116,6 +129,6 @@ interface TestimonialsWallCompactProps {
|
|
|
116
129
|
* />
|
|
117
130
|
* ```
|
|
118
131
|
*/
|
|
119
|
-
declare function TestimonialsWallCompact({ testimonials, testimonialsSlot, heading, description, className, headerClassName, headingClassName, descriptionClassName, gridClassName, cardClassName, authorClassName, quoteClassName, background, containerClassName, spacing, pattern, patternOpacity, }: TestimonialsWallCompactProps): React.JSX.Element;
|
|
132
|
+
declare function TestimonialsWallCompact({ testimonials, testimonialsSlot, heading, description, className, headerClassName, headingClassName, descriptionClassName, gridClassName, cardClassName, authorClassName, quoteClassName, background, containerClassName, spacing, pattern, patternOpacity, actions, actionsSlot, actionsClassName, }: TestimonialsWallCompactProps): React.JSX.Element;
|
|
120
133
|
|
|
121
134
|
export { TestimonialsWallCompact, type TestimonialsWallCompactProps, type WallTestimonialItem };
|