@secondstaxorg/sscomp 1.7.91 → 1.7.93

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": "@secondstaxorg/sscomp",
3
- "version": "1.7.91",
3
+ "version": "1.7.93",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -17,5 +17,4 @@ export interface AppActionsProps {
17
17
  clearanceLevel: number;
18
18
  actionCode: string;
19
19
  }) => void;
20
- srchActive?: boolean;
21
20
  }
@@ -1,7 +1,4 @@
1
1
  /// <reference types="react" />
2
2
  import { AppFormsProps } from "./type";
3
- /**
4
- * SDataTable view of App Actions on Code Maintenance in LP Application
5
- */
6
3
  declare const AppFormsTable: (props: AppFormsProps) => JSX.Element;
7
4
  export default AppFormsTable;
@@ -15,5 +15,4 @@ export interface AppFormsProps {
15
15
  formCode: string;
16
16
  userType: string;
17
17
  }) => void;
18
- srchActive?: boolean;
19
18
  }
@@ -1,7 +1,4 @@
1
1
  /// <reference types="react" />
2
2
  import { AppModulesProps } from "./type";
3
- /**
4
- * SDataTable view of App Modules in Code Maintenance in LP Application
5
- */
6
3
  declare const AppModulesTable: (props: AppModulesProps) => JSX.Element;
7
4
  export default AppModulesTable;
@@ -15,5 +15,4 @@ export interface AppModulesProps {
15
15
  moduleCode: string;
16
16
  remarks: string;
17
17
  }) => void;
18
- srchActive?: boolean;
19
18
  }
@@ -21,5 +21,4 @@ export interface BrokersProps {
21
21
  country: string;
22
22
  countryFlag?: string;
23
23
  }) => void;
24
- srchActive?: boolean;
25
24
  }
@@ -21,5 +21,4 @@ export interface CurrencyPairsProps {
21
21
  exchangeFlag: string;
22
22
  pairName: string;
23
23
  }) => void;
24
- srchActive?: boolean;
25
24
  }
@@ -17,5 +17,4 @@ export interface PaymentMethodsProps {
17
17
  pymtModeShortName: string;
18
18
  remarks: string;
19
19
  }) => void;
20
- srchActive?: boolean;
21
20
  }
@@ -2,23 +2,17 @@ export interface ProvidersProps {
2
2
  /**
3
3
  * Array containing a list of providers to be listed in the table
4
4
  */
5
- providers: {
6
- providerId: string;
7
- name: string;
8
- email: string;
9
- phone: string;
10
- status: Status;
11
- }[];
5
+ providers: providersType[];
12
6
  /**
13
7
  * Callback function to receive the selected provider when clicked
14
8
  */
15
- callback: (a: {
16
- providerId: string;
17
- name: string;
18
- email: string;
19
- phone: string;
20
- status: Status;
21
- }) => void;
22
- srchActive?: boolean;
9
+ callback: (a: providersType) => void;
23
10
  }
24
11
  export declare type Status = "active" | "inactive";
12
+ export declare type providersType = {
13
+ providerId: string;
14
+ name: string;
15
+ email: string;
16
+ phone: string;
17
+ status: Status;
18
+ };
@@ -17,5 +17,4 @@ export interface SystemConfigProps {
17
17
  configValue: string;
18
18
  remarks: string;
19
19
  }) => void;
20
- srchActive?: boolean;
21
20
  }
@@ -15,5 +15,4 @@ export interface UserRolesProps {
15
15
  roleCode: string;
16
16
  clearanceLevel: number;
17
17
  }) => void;
18
- srchActive?: boolean;
19
18
  }
@@ -20,5 +20,4 @@ export interface UserTableType {
20
20
  role: string;
21
21
  status: string;
22
22
  }) => void;
23
- srchActive?: boolean;
24
23
  }