@regulaforensics/idv-gui 3.2.240-nightly → 3.2.241-nightly
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.d.ts +5 -9
- package/dist/main.iife.js +4 -69
- package/dist/main.js +4985 -19664
- package/dist/main.umd.cjs +4 -69
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { FunctionComponent } from 'preact';
|
|
2
|
+
import { JSX } from 'preact';
|
|
2
3
|
|
|
3
4
|
declare function AgeIcon({ size }: {
|
|
4
5
|
size?: number;
|
|
@@ -61,8 +62,7 @@ declare function ErrorIcon({ size, color }: {
|
|
|
61
62
|
color?: string;
|
|
62
63
|
}): JSX.Element;
|
|
63
64
|
|
|
64
|
-
declare class GuiIdv extends BaseModule<GuiModuleProps, GuiModuleConfig> {
|
|
65
|
-
private _root;
|
|
65
|
+
export declare class GuiIdv extends BaseModule<GuiModuleProps, GuiModuleConfig> {
|
|
66
66
|
private _mounted;
|
|
67
67
|
props: IdvModuleProps<GuiModuleProps, GuiModuleConfig> | null;
|
|
68
68
|
constructor();
|
|
@@ -77,10 +77,8 @@ declare class GuiIdv extends BaseModule<GuiModuleProps, GuiModuleConfig> {
|
|
|
77
77
|
static deinitialize(): void;
|
|
78
78
|
static getIdentifier: () => string;
|
|
79
79
|
}
|
|
80
|
-
export { GuiIdv }
|
|
81
|
-
export default GuiIdv;
|
|
82
80
|
|
|
83
|
-
export declare const GuiIdvReactComponent:
|
|
81
|
+
export declare const GuiIdvReactComponent: FunctionComponent<IdvModuleProps<GuiModuleProps | GuiModulePropsUnknown, GuiModuleConfig>>;
|
|
84
82
|
|
|
85
83
|
export declare const GuiIdvSteps: {
|
|
86
84
|
readonly INFO: "INFO";
|
|
@@ -94,9 +92,7 @@ export declare const GuiIdvSteps: {
|
|
|
94
92
|
|
|
95
93
|
export declare type GuiIdvSteps = (typeof GuiIdvSteps)[keyof typeof GuiIdvSteps];
|
|
96
94
|
|
|
97
|
-
export declare const GuiIdvStyleInjectionWrapper:
|
|
98
|
-
children: React.ReactNode;
|
|
99
|
-
}>;
|
|
95
|
+
export declare const GuiIdvStyleInjectionWrapper: FunctionComponent;
|
|
100
96
|
|
|
101
97
|
declare type GuiModuleConfig = Record<string, any>;
|
|
102
98
|
|