@secondstaxorg/sscomp 2.0.56 → 2.0.57
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 +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/AuditLog/type.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from "react";
|
|
1
2
|
export interface AuditProps {
|
|
2
3
|
/**
|
|
3
4
|
* An array containing objects detailing the timestamp, the user, the description of the action and an optional reference ID for the action.
|
|
@@ -12,4 +13,5 @@ export interface AuditProps {
|
|
|
12
13
|
hideTimestamp?: boolean;
|
|
13
14
|
hideUser?: boolean;
|
|
14
15
|
hideReference?: boolean;
|
|
16
|
+
jsxCode?: React.ReactNode;
|
|
15
17
|
}
|