@mescius/wijmo.react.viewer 5.20241.10-nightly.d20240612.t020401 → 5.20241.10-nightly.d20240614.t020210
Sign up to get free protection for your applications and to get access to all the features.
- package/es2015-commonjs.js +1 -1
- package/es2015-esm.js +1 -1
- package/es5-esm.js +1 -1
- package/index.d.ts +11 -7
- package/index.js +1 -1
- package/package.json +4 -4
package/es2015-commonjs.js
CHANGED
package/es2015-esm.js
CHANGED
package/es5-esm.js
CHANGED
package/index.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
2
|
*
|
3
|
-
* Wijmo Library 5.20241.10-nightly.
|
3
|
+
* Wijmo Library 5.20241.10-nightly.d20240614.t020210
|
4
4
|
* https://developer.mescius.com/wijmo
|
5
5
|
*
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
@@ -18,11 +18,11 @@
|
|
18
18
|
*
|
19
19
|
*/
|
20
20
|
export declare var ___keepComment: any;
|
21
|
-
import { ControlBaseEvents,
|
21
|
+
import { ControlBaseEvents, ControlBaseInputs, WjRef } from '@mescius/wijmo.react.base';
|
22
22
|
import * as React from 'react';
|
23
23
|
import * as wjcCore from '@mescius/wijmo';
|
24
24
|
import * as wjcViewer from '@mescius/wijmo.viewer';
|
25
|
-
export declare type
|
25
|
+
export declare type ViewerBaseInputs = ControlBaseInputs & {
|
26
26
|
filePath?: string;
|
27
27
|
fullScreen?: boolean;
|
28
28
|
mouseMode?: wjcViewer.MouseMode | string;
|
@@ -49,7 +49,7 @@ export declare const ViewerBaseMeta: {
|
|
49
49
|
inputs: string[];
|
50
50
|
events: string[];
|
51
51
|
};
|
52
|
-
export declare type
|
52
|
+
export declare type ReportViewerInputs = ViewerBaseInputs & {
|
53
53
|
paginated?: boolean;
|
54
54
|
parameters?: any;
|
55
55
|
reportName?: string;
|
@@ -59,6 +59,8 @@ export declare const ReportViewerMeta: {
|
|
59
59
|
inputs: string[];
|
60
60
|
events: string[];
|
61
61
|
};
|
62
|
+
export declare type ReportViewerProps = ReportViewerInputs & ReportViewerEvents<wjcViewer.ReportViewer>;
|
63
|
+
export declare type ReportViewerRef = WjRef<wjcViewer.ReportViewer>;
|
62
64
|
/**
|
63
65
|
* React component for the {@link wijmo.viewer.ReportViewer} control.
|
64
66
|
*
|
@@ -68,13 +70,15 @@ export declare const ReportViewerMeta: {
|
|
68
70
|
* You can use this event to perform further initialization in addition to setting properties in JSX.
|
69
71
|
* The signature of the handler function is the same as any other Wijmo event handlers.
|
70
72
|
*/
|
71
|
-
export declare const ReportViewer: React.ForwardRefExoticComponent<
|
72
|
-
export declare type
|
73
|
+
export declare const ReportViewer: React.ForwardRefExoticComponent<ReportViewerProps>;
|
74
|
+
export declare type PdfViewerInputs = ViewerBaseInputs & {};
|
73
75
|
export declare type PdfViewerEvents<T> = ViewerBaseEvents<T> & {};
|
74
76
|
export declare const PdfViewerMeta: {
|
75
77
|
inputs: string[];
|
76
78
|
events: string[];
|
77
79
|
};
|
80
|
+
export declare type PdfViewerProps = PdfViewerInputs & PdfViewerEvents<wjcViewer.PdfViewer>;
|
81
|
+
export declare type PdfViewerRef = WjRef<wjcViewer.PdfViewer>;
|
78
82
|
/**
|
79
83
|
* React component for the {@link wijmo.viewer.PdfViewer} control.
|
80
84
|
*
|
@@ -84,4 +88,4 @@ export declare const PdfViewerMeta: {
|
|
84
88
|
* You can use this event to perform further initialization in addition to setting properties in JSX.
|
85
89
|
* The signature of the handler function is the same as any other Wijmo event handlers.
|
86
90
|
*/
|
87
|
-
export declare const PdfViewer: React.ForwardRefExoticComponent<
|
91
|
+
export declare const PdfViewer: React.ForwardRefExoticComponent<PdfViewerProps>;
|
package/index.js
CHANGED
package/package.json
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
{
|
2
2
|
"name": "@mescius/wijmo.react.viewer",
|
3
|
-
"version": "5.20241.10-nightly.
|
3
|
+
"version": "5.20241.10-nightly.d20240614.t020210",
|
4
4
|
"description": "UI library for pure JS, Angular, React, Vue and more...",
|
5
5
|
"author": "MESCIUS inc",
|
6
6
|
"license": "Commercial",
|
7
7
|
"main": "./index.js",
|
8
8
|
"types": "./index.d.ts",
|
9
9
|
"dependencies": {
|
10
|
-
"@mescius/wijmo": "5.20241.10-nightly.
|
11
|
-
"@mescius/wijmo.viewer": "5.20241.10-nightly.
|
12
|
-
"@mescius/wijmo.react.base": "5.20241.10-nightly.
|
10
|
+
"@mescius/wijmo": "5.20241.10-nightly.d20240614.t020210",
|
11
|
+
"@mescius/wijmo.viewer": "5.20241.10-nightly.d20240614.t020210",
|
12
|
+
"@mescius/wijmo.react.base": "5.20241.10-nightly.d20240614.t020210"
|
13
13
|
},
|
14
14
|
"homepage": "https://developer.mescius.com/wijmo",
|
15
15
|
"bugs": {
|