robbyson-frontend-library 1.0.34 → 1.0.35

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "robbyson-frontend-library",
3
- "version": "1.0.34",
3
+ "version": "1.0.35",
4
4
  "description": "Robbyson frontend Library",
5
5
  "main": "./dist/index.js",
6
6
  "license": "MIT",
@@ -11,6 +11,7 @@ interface Title {
11
11
  interface Header {
12
12
  titleLocaleHandle: string | React.ReactNode;
13
13
  columnSize: number;
14
+ columnPadding?: string;
14
15
  dataField: string;
15
16
  icon?: {
16
17
  align: string;
@@ -9,7 +9,7 @@ import {
9
9
 
10
10
  export interface IGenerateNewAcessCodeRepository {
11
11
  identification: string;
12
- recaptchaResponse: string | null;
12
+ recaptchaResponse: string | null | undefined;
13
13
  system_id: number;
14
14
  }
15
15
 
@@ -18,14 +18,14 @@ export interface IUpdatePasswordRepository {
18
18
  code: string;
19
19
  password: string;
20
20
  confirmPassword: string;
21
- recaptchaResponse: string | null;
21
+ recaptchaResponse: string | null | undefined;
22
22
  system_id: number;
23
23
  }
24
24
 
25
25
  export interface IValidatePasswordCode {
26
26
  identification: string;
27
27
  code: string;
28
- recaptchaResponse: string | null;
28
+ recaptchaResponse: string | null | undefined;
29
29
  system_id: number;
30
30
  }
31
31
  export interface IAuthenticationRepository {
@@ -8,7 +8,7 @@ import {
8
8
 
9
9
  export interface IGenerateNewAcessCodeService {
10
10
  identification: string;
11
- recaptchaResponse: string | null;
11
+ recaptchaResponse: string | null | undefined;
12
12
  system_id: number;
13
13
  }
14
14
 
@@ -17,14 +17,14 @@ export interface IUpdatePasswordService {
17
17
  code: string;
18
18
  password: string;
19
19
  confirmPassword: string;
20
- recaptchaResponse: string | null;
20
+ recaptchaResponse: string | null | undefined;
21
21
  system_id: number;
22
22
  }
23
23
 
24
24
  export interface IValidatePasswordCode {
25
25
  identification: string;
26
26
  code: string;
27
- recaptchaResponse: string | null;
27
+ recaptchaResponse: string | null | undefined;
28
28
  system_id: number;
29
29
  }
30
30
  export interface IAuthenticationService {