@fewangsit/wangsvue-fats 1.0.0-alpha.60 → 1.0.0-alpha.62
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/dialogassetnamedetail/DialogAssetNameDetail.vue.d.ts +46 -0
- package/components/dialogassetnamedetail/options/columns.d.ts +2 -0
- package/components/dialogassetnamedetail/options/filter.d.ts +2 -0
- package/components/index.d.ts +1 -0
- package/package.json +1 -1
- package/stats.html +1 -1
- package/style.css +1 -1
- package/wangsvue-fats.js +5591 -5359
- package/wangsvue-fats.system.js +69 -69
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { DefineComponent } from 'vue';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Props for DialogAssetNameDetail component
|
|
5
|
+
*/
|
|
6
|
+
export interface DialogAssetNameDetailProps {
|
|
7
|
+
/**
|
|
8
|
+
* The header of the dialog.
|
|
9
|
+
*
|
|
10
|
+
* @defaultValue "Asset Name Detail"
|
|
11
|
+
*/
|
|
12
|
+
header?: string;
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* The ID of the asset.
|
|
16
|
+
*/
|
|
17
|
+
id: string;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* The query params for fetching assets.
|
|
21
|
+
*/
|
|
22
|
+
params?: { [key: string]: string };
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Specifies the visibility of the dialog.
|
|
26
|
+
* @defaultValue false
|
|
27
|
+
*/
|
|
28
|
+
visible?: boolean | undefined;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Emits for DialogAssetNameDetail component
|
|
33
|
+
*/
|
|
34
|
+
export type DialogAssetNameDetailEmits = {
|
|
35
|
+
/**
|
|
36
|
+
* Emits when the dialog is closed. Wether from cancel button, close button, or ESC button pressed.
|
|
37
|
+
*/
|
|
38
|
+
'update:visible': [state: boolean];
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
declare const DialogAssetNameDetail: DefineComponent<
|
|
42
|
+
DialogAssetNameDetailProps,
|
|
43
|
+
DialogAssetNameDetailEmits
|
|
44
|
+
>;
|
|
45
|
+
|
|
46
|
+
export default DialogAssetNameDetail;
|
package/components/index.d.ts
CHANGED
|
@@ -64,3 +64,4 @@ export { default as FilterContainer } from './filtercontainer/FilterContainer.vu
|
|
|
64
64
|
export { default as InputSearch } from './inputsearch/InputSearch.vue';
|
|
65
65
|
export { default as TransactionRoles } from './transactionroles/TransactionRoles.vue';
|
|
66
66
|
export { default as DialogPrintQR } from './dialogprintqr/DialogPrintQR.vue';
|
|
67
|
+
export { default as DialogAssetNameDetail } from './dialogassetnamedetail/DialogAssetNameDetail.vue';
|