@secondstaxorg/sscomp 2.0.98 → 2.1.1
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 +5 -5
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +51 -41
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +5 -5
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/ConsentCheckbox/style.d.ts +3 -1
- package/types/components/ConsentCheckbox/types.d.ts +4 -0
- package/types/components/DocumentViewer/type.d.ts +7 -0
package/package.json
CHANGED
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
export declare const MainContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
|
-
export declare const SelectorItem: import("styled-components").StyledComponent<"button", any, {
|
|
2
|
+
export declare const SelectorItem: import("styled-components").StyledComponent<"button", any, {
|
|
3
|
+
disabled?: boolean | undefined;
|
|
4
|
+
}, never>;
|
|
@@ -24,6 +24,13 @@ export interface PDFViewerProps {
|
|
|
24
24
|
* Specify the array index of the file you want to jump to on load
|
|
25
25
|
*/
|
|
26
26
|
jumpTo?: number;
|
|
27
|
+
/**
|
|
28
|
+
* Get the array index and file URL of the current document being viewed
|
|
29
|
+
* */
|
|
30
|
+
currentDocument?: (a: {
|
|
31
|
+
index: number;
|
|
32
|
+
fileUrl: string;
|
|
33
|
+
}) => void;
|
|
27
34
|
}
|
|
28
35
|
export type filesType = {
|
|
29
36
|
fileUrl: string;
|