@secondstaxorg/sscomp 2.0.57 → 2.0.59
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/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +13 -17
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +2 -2
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/AuditLog/type.d.ts +8 -7
- package/types/components/index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -3,15 +3,16 @@ export interface AuditProps {
|
|
|
3
3
|
/**
|
|
4
4
|
* An array containing objects detailing the timestamp, the user, the description of the action and an optional reference ID for the action.
|
|
5
5
|
*/
|
|
6
|
-
logDetails:
|
|
7
|
-
timestamp: string;
|
|
8
|
-
user: string;
|
|
9
|
-
logDescription: string;
|
|
10
|
-
reference?: string;
|
|
11
|
-
}[];
|
|
6
|
+
logDetails: logDetsType[];
|
|
12
7
|
variant?: 'default' | 'grey';
|
|
13
8
|
hideTimestamp?: boolean;
|
|
14
9
|
hideUser?: boolean;
|
|
15
10
|
hideReference?: boolean;
|
|
16
|
-
jsxCode?: React.ReactNode;
|
|
17
11
|
}
|
|
12
|
+
export type logDetsType = {
|
|
13
|
+
timestamp: string;
|
|
14
|
+
user: string;
|
|
15
|
+
logDescription: string;
|
|
16
|
+
reference?: string;
|
|
17
|
+
jsxCode?: React.ReactNode;
|
|
18
|
+
};
|
|
@@ -87,3 +87,4 @@ export { default as AmountInput } from './AmountInput/AmountInput';
|
|
|
87
87
|
export { default as ForgotPasswordForm } from './ForgotPasswordForm/ForgotPasswordForm';
|
|
88
88
|
export { default as SetPassword } from './SetPassword/SetPassword';
|
|
89
89
|
export { default as IconButton } from './IconButton/IconButton';
|
|
90
|
+
export { default as PasswordMeter } from './PasswordMeter/PasswordMeter';
|