@cntrl-site/components 1.0.7-alpha.2 → 1.0.7-alpha.4
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.
|
@@ -3,8 +3,9 @@ type TestimonialsProps = {
|
|
|
3
3
|
settings: TestimonialsSettings;
|
|
4
4
|
content?: TestimonialsItem[];
|
|
5
5
|
isEditor?: boolean;
|
|
6
|
+
isPreviewMode?: boolean;
|
|
6
7
|
} & CommonComponentProps;
|
|
7
|
-
export declare const Testimonials: ({ settings, content, isEditor }: TestimonialsProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare const Testimonials: ({ settings, content, isEditor, isPreviewMode }: TestimonialsProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
9
|
export type TestimonialsItem = {
|
|
9
10
|
image?: {
|
|
10
11
|
url?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ComponentSchemaV1 } from '../../types/SchemaV1';
|
|
2
2
|
export declare const TestimonialGridComponent: {
|
|
3
|
-
element: ({ settings, content, isEditor }: {
|
|
3
|
+
element: ({ settings, content, isEditor, isPreviewMode }: {
|
|
4
4
|
settings: {
|
|
5
5
|
type: "A" | "B";
|
|
6
6
|
autoplay: "on" | "off";
|
|
@@ -79,6 +79,7 @@ export declare const TestimonialGridComponent: {
|
|
|
79
79
|
};
|
|
80
80
|
content?: import('./TestimonialGrid').TestimonialsItem[];
|
|
81
81
|
isEditor?: boolean;
|
|
82
|
+
isPreviewMode?: boolean;
|
|
82
83
|
} & import('../props').CommonComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
83
84
|
id: string;
|
|
84
85
|
name: string;
|