@fewangsit/wangsvue 1.5.194-alpha.2 → 1.5.194-alpha.4
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/components/buttonImportExcel/ButtonImportExcel.vue.d.ts +26 -0
- package/components/dialogdetailpbi/AssignMember.vue.d.ts +13 -6
- package/components/index.d.ts +1 -1
- package/event-bus/index.d.ts +3 -0
- package/package.json +1 -1
- package/style.css +2 -2
- package/wangsvue.es.js +45489 -36911
- package/wangsvue.system.js +147 -138
- package/components/pdfviewer/PDFViewer.vue.d.ts +0 -28
- package/services/dataManager.service.d.ts +0 -5
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { DefineComponent } from 'vue';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export interface PDFViewerProps {
|
|
5
|
-
/**
|
|
6
|
-
* Full response from backend, file name with its folder name
|
|
7
|
-
*
|
|
8
|
-
* @example '/elsa/file_1733395763186.pdf'
|
|
9
|
-
*/
|
|
10
|
-
fileName: string;
|
|
11
|
-
/**
|
|
12
|
-
* Add class into `iframe` element
|
|
13
|
-
*/
|
|
14
|
-
class?: string;
|
|
15
|
-
/**
|
|
16
|
-
* Add style into `iframe` element
|
|
17
|
-
*/
|
|
18
|
-
style?: string;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* **WangsVue - PDFViewer**
|
|
23
|
-
*
|
|
24
|
-
* @group components
|
|
25
|
-
*/
|
|
26
|
-
declare const PDFViewer: DefineComponent<PDFViewerProps, unknown, unknown>;
|
|
27
|
-
|
|
28
|
-
export default PDFViewer;
|