@fewangsit/wangsvue-fats 1.0.0-alpha.93 → 1.0.0-alpha.95
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/dialoglinkedasset/DialogLinkedAsset.vue.d.ts +7 -4
- package/package.json +1 -1
- package/stats.html +1 -1
- package/wangsvue-fats.js +802 -805
- package/wangsvue-fats.system.js +52 -52
|
@@ -48,6 +48,12 @@ export interface DialogLinkedAssetProps extends DialogConfirmProps {
|
|
|
48
48
|
/**
|
|
49
49
|
* The list of selected asset to be transacted.
|
|
50
50
|
*/
|
|
51
|
+
list?: LinkedAsset[];
|
|
52
|
+
/**
|
|
53
|
+
* The list of selected asset to be transacted.
|
|
54
|
+
*
|
|
55
|
+
* @deprecated - no longer supported, use `list` instead
|
|
56
|
+
*/
|
|
51
57
|
lists?: LinkedAsset[];
|
|
52
58
|
/**
|
|
53
59
|
* The label of the dialog button.
|
|
@@ -86,13 +92,10 @@ export type DialogLinkedAssetEmit = {
|
|
|
86
92
|
};
|
|
87
93
|
|
|
88
94
|
/**
|
|
89
|
-
*
|
|
95
|
+
* Wangsvue - DialogLinkedAsset
|
|
90
96
|
*
|
|
91
97
|
* DialogLinkedAsset is a component for creating dialog confirmation of linked assets.
|
|
92
98
|
*
|
|
93
|
-
* --- ---
|
|
94
|
-
* 
|
|
95
|
-
*
|
|
96
99
|
* @group components
|
|
97
100
|
*/
|
|
98
101
|
declare const DialogLinkedAsset: DefineComponent<
|