@frontegg/types 5.61.1 → 5.62.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.
@@ -1,14 +1,11 @@
1
1
  import { CSSProperties, ExtendedCSSProperties } from '../Common';
2
2
  export declare type CustomComponent<T = {}> = null | string | ((props: T) => string | any);
3
- export interface ITestimonial {
4
- image: string;
5
- }
6
3
  export interface ITestimonialComponent {
7
- testimonial1: ITestimonial;
8
- testimonial2?: ITestimonial;
9
- testimonial3?: ITestimonial;
10
- testimonial4?: ITestimonial;
11
- testimonial5?: ITestimonial;
4
+ testimonial1: string;
5
+ testimonial2?: string;
6
+ testimonial3?: string;
7
+ testimonial4?: string;
8
+ testimonial5?: string;
12
9
  }
13
10
  export interface ILogosComponent {
14
11
  layout?: 'horizontal' | 'vertical';
@@ -40,12 +40,12 @@ export interface LayoutOptions {
40
40
  * side, floating right will display login box at the right element
41
41
  * with default width equal to 50% of the window width
42
42
  */
43
- type: 'float-right' | 'center' | 'float-left';
43
+ type?: 'float-right' | 'center' | 'float-left';
44
44
  /**
45
45
  * splitSize is for the side element to setup how much % of the window side elements wi'll take
46
46
  * default is 50 = 50%;
47
47
  */
48
- splitSize: number;
48
+ splitSize?: number;
49
49
  /**
50
50
  * Will be displayed if type is 'float-right' or 'float-left',
51
51
  * Accepts:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontegg/types",
3
- "version": "5.61.1",
3
+ "version": "5.62.2",
4
4
  "main": "./node/index.js",
5
5
  "module": "./index.js",
6
6
  "types": "./index.d.ts",