@secondstaxorg/sscomp 1.2.91 → 1.3.0

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.2.91",
3
+ "version": "1.3.0",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -11,6 +11,8 @@ export interface RequestsProps {
11
11
  transactionId: string;
12
12
  status: 'NW' | 'PCP' | 'PLC' | 'PLP' | 'PBC' | 'CAN' | 'ST';
13
13
  date: string;
14
+ broker: string;
15
+ clientId: string;
14
16
  }[];
15
17
  callback: (a: {
16
18
  providerLogo?: string;
@@ -24,6 +26,10 @@ export interface RequestsProps {
24
26
  transactionId: string;
25
27
  status: string;
26
28
  date: string;
29
+ broker: string;
30
+ clientId: string;
27
31
  }) => void;
28
32
  newTransactionFxn: () => void;
33
+ showDetailsArrow: boolean;
34
+ showBroker?: boolean;
29
35
  }
@@ -4,4 +4,5 @@ export interface PasswordFieldProps {
4
4
  disabled?: boolean;
5
5
  errMsg?: string;
6
6
  setValue: (a: string) => void;
7
+ placeholder?: string;
7
8
  }
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { PopupModalProps } from "./type";
3
+ declare const PopupModal: (props: PopupModalProps) => JSX.Element;
4
+ export default PopupModal;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const SSXBar: (props: any) => JSX.Element;
3
+ export default SSXBar;
@@ -1,6 +1,7 @@
1
1
  export interface TxnDetsProps {
2
2
  requestedBy: string;
3
3
  requestDate: string;
4
+ clientID?: string;
4
5
  amount: {
5
6
  baseAmount: number;
6
7
  baseFlag: string;
@@ -14,4 +15,11 @@ export interface TxnDetsProps {
14
15
  name: string;
15
16
  logo?: string;
16
17
  };
18
+ destAcctDets?: {
19
+ bankLogo?: string;
20
+ acctNo: number;
21
+ bankName: string;
22
+ acctName: string;
23
+ acctCurr: string;
24
+ };
17
25
  }
@@ -59,3 +59,5 @@ export { default as UserActions } from './UserActions/UserActions';
59
59
  export { default as UserRolesTable } from './UserRolesTable/UserRolesTable';
60
60
  export { default as UsersTable } from './UsersTable/UsersTable';
61
61
  export { default as WidgetTitle } from './WidgetTitle/WidgetTitle';
62
+ export { default as SSXBar } from './SSXBar/SSXBar';
63
+ export { default as PopupModal } from './PopupModal/PopupModal';