@fewangsit/wangsvue-fats 1.0.0-alpha.117 → 1.0.0-alpha.118

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.
@@ -0,0 +1,16 @@
1
+ import { ClassComponent } from '../../components/ts-helpers.d';
2
+
3
+ // You need to provide requestIds with Ref<string[]> to enable prev and next buttons
4
+
5
+ export interface DialogTransferLogProps {
6
+ id: string;
7
+ visible?: boolean;
8
+ }
9
+
10
+ declare class DialogTransferLog extends ClassComponent<
11
+ DialogTransferLogProps,
12
+ unknown,
13
+ unknown
14
+ > {}
15
+
16
+ export default DialogTransferLog;
@@ -73,4 +73,5 @@ export { default as DialogAssetNameDetail } from './dialogassetnamedetail/Dialog
73
73
  export { default as DialogReportTag } from './dialogreporttag/DialogReportTag.vue';
74
74
  export { default as DialogReportDamage } from './dialogreportdamage/DialogReportDamage.vue';
75
75
  export { default as DialogReportMissing } from './dialogreportmissing/DialogReportMissing.vue';
76
+ export { default as DialogTransferLog } from './dialogtransferlog/DialogTransferLog.vue';
76
77
  export { default as DisposalReport } from './disposalreport/DisposalReport.vue';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fewangsit/wangsvue-fats",
3
- "version": "1.0.0-alpha.117",
3
+ "version": "1.0.0-alpha.118",
4
4
  "author": "Wangsit FE Developer",
5
5
  "description": "Fixed Asset Tagsamurai VueJS Component Library",
6
6
  "type": "module",