@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.
@@ -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;
@@ -0,0 +1,2 @@
1
+ import { TableColumn } from '../../../components/datatable/DataTable.vue.d';
2
+ export declare const assetNameDetailColumns: () => TableColumn[];
@@ -0,0 +1,2 @@
1
+ import { FilterField } from 'components/filtercontainer/FilterContainer.vue.d';
2
+ export declare const filterFields: FilterField[];
@@ -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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fewangsit/wangsvue-fats",
3
- "version": "1.0.0-alpha.60",
3
+ "version": "1.0.0-alpha.62",
4
4
  "author": "Wangsit FE Developer",
5
5
  "description": "Fixed Asset Tagsamurai VueJS Component Library",
6
6
  "type": "module",