@cntrl-site/components 1.0.7-alpha.1 → 1.0.7-alpha.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.
@@ -11,7 +11,7 @@ export type TestimonialsItem = {
11
11
  name?: string;
12
12
  objectFit?: 'cover' | 'contain';
13
13
  };
14
- icon?: {
14
+ logo?: {
15
15
  url?: string;
16
16
  name?: string;
17
17
  objectFit?: 'cover' | 'contain';
@@ -29,6 +29,7 @@ type TestimonialsSettings = {
29
29
  type: 'A' | 'B';
30
30
  autoplay: 'on' | 'off';
31
31
  speed: number;
32
+ align: 'start' | 'center' | 'end';
32
33
  direction: 'left' | 'right';
33
34
  pauseOnHover: 'on' | 'off';
34
35
  gap: number;
@@ -39,8 +40,8 @@ type TestimonialsSettings = {
39
40
  strokeColor: string;
40
41
  bgColor: string;
41
42
  padding: Padding;
42
- iconMarginTop: number;
43
- iconWidth: number;
43
+ logoMarginTop: number;
44
+ logoWidth: number;
44
45
  textMarginTop: number;
45
46
  textMinHeight: number;
46
47
  captionMarginTop: number;
@@ -5,6 +5,7 @@ export declare const TestimonialGridComponent: {
5
5
  type: "A" | "B";
6
6
  autoplay: "on" | "off";
7
7
  speed: number;
8
+ align: "start" | "center" | "end";
8
9
  direction: "left" | "right";
9
10
  pauseOnHover: "on" | "off";
10
11
  gap: number;
@@ -20,8 +21,8 @@ export declare const TestimonialGridComponent: {
20
21
  bottom: number;
21
22
  left: number;
22
23
  };
23
- iconMarginTop: number;
24
- iconWidth: number;
24
+ logoMarginTop: number;
25
+ logoWidth: number;
25
26
  textMarginTop: number;
26
27
  textMinHeight: number;
27
28
  captionMarginTop: number;
@@ -11,32 +11,18 @@ export type TestimonialsItem = {
11
11
  name?: string;
12
12
  objectFit?: 'cover' | 'contain';
13
13
  };
14
- icon?: {
15
- url?: string;
16
- name?: string;
17
- objectFit?: 'cover' | 'contain';
18
- };
19
14
  text: any[];
20
- imageCaption?: any[];
21
15
  caption: any[];
22
16
  };
23
- type Padding = {
24
- top: number;
25
- right: number;
26
- bottom: number;
27
- left: number;
28
- };
29
17
  type TestimonialsSettings = {
30
18
  autoplay: 'on' | 'off';
31
19
  speed: number;
32
20
  width: number;
33
- iconMarginTop?: number;
34
- iconAlign?: 'left' | 'center' | 'right';
35
- iconScale?: number;
21
+ imageMarginTop?: number;
22
+ imageWidth?: number;
36
23
  textMarginTop?: number;
37
24
  textMinHeight?: number;
38
25
  captionMarginTop?: number;
39
- padding: Padding;
40
26
  styles: TestimonialsStyles;
41
27
  controls: {
42
28
  isActive: 'visible' | 'hidden';
@@ -73,7 +59,6 @@ type CaptionStyles = {
73
59
  color: string;
74
60
  };
75
61
  type TestimonialsStyles = {
76
- imageCaption?: CaptionStyles;
77
62
  text: CaptionStyles;
78
63
  caption: CaptionStyles;
79
64
  };
@@ -5,43 +5,12 @@ export declare const TestimonialSingleComponent: {
5
5
  autoplay: "on" | "off";
6
6
  speed: number;
7
7
  width: number;
8
- iconMarginTop?: number;
9
- iconAlign?: "left" | "center" | "right";
10
- iconScale?: number;
8
+ imageMarginTop?: number;
9
+ imageWidth?: number;
11
10
  textMarginTop?: number;
12
11
  textMinHeight?: number;
13
12
  captionMarginTop?: number;
14
- padding: {
15
- top: number;
16
- right: number;
17
- bottom: number;
18
- left: number;
19
- };
20
13
  styles: {
21
- imageCaption?: {
22
- fontSettings: {
23
- fontFamily: string;
24
- fontWeight: number;
25
- fontStyle: string;
26
- };
27
- widthSettings: {
28
- width: number;
29
- sizing: "auto" | "manual";
30
- };
31
- letterSpacing: number;
32
- textAlign: "left" | "center" | "right";
33
- wordSpacing: number;
34
- fontSizeLineHeight: {
35
- fontSize: number;
36
- lineHeight: number;
37
- };
38
- textAppearance: {
39
- textTransform: "none" | "uppercase" | "lowercase";
40
- textDecoration: "none" | "underline";
41
- fontVariant: "normal" | "small-caps";
42
- };
43
- color: string;
44
- };
45
14
  text: {
46
15
  fontSettings: {
47
16
  fontFamily: string;