tsv2-library 0.1.88 → 0.1.90

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.
@@ -12,9 +12,9 @@ export type FetchUserOptionResponse = {
12
12
  };
13
13
 
14
14
  /**
15
- * Props for DialogAssetNameDetail component
15
+ * Props for DialogSelectUser component
16
16
  */
17
- export interface DialogAssetNameDetailProps {
17
+ export interface DialogSelectUserProps {
18
18
  /**
19
19
  * The header of the dialog.
20
20
  *
@@ -41,6 +41,12 @@ export interface DialogAssetNameDetailProps {
41
41
  */
42
42
  list?: string[];
43
43
 
44
+ /**
45
+ * Table's selection type
46
+ * @defaultValue single
47
+ */
48
+ selectionType?: 'single' | 'checkbox';
49
+
44
50
  /**
45
51
  * The function to fetch data on DataTable mounted and on queryParams dependencies updated.
46
52
  *
@@ -56,9 +62,9 @@ export interface DialogAssetNameDetailProps {
56
62
  }
57
63
 
58
64
  /**
59
- * Emits for DialogAssetNameDetail component
65
+ * Emits for DialogSelectUser component
60
66
  */
61
- export type DialogAssetNameDetailEmits = {
67
+ export type DialogSelectUserEmits = {
62
68
  /**
63
69
  * Emits when the dialog is closed. Wether from cancel button, close button, or ESC button pressed.
64
70
  */
@@ -71,18 +77,16 @@ export type DialogAssetNameDetailEmits = {
71
77
  };
72
78
 
73
79
  /**
74
- * **TSVue - DialogAssetNameDetail**
75
- *
76
- * _DialogAssetNameDetail is a component for displaying asset name detail._
80
+ * **TSVue - DialogSelectUser**
77
81
  *
78
82
  * --- ---
79
83
  * ![TSVue](https://ik.imagekit.io/kurniadev/TS-HEAD-BLACK.png)
80
84
  *
81
85
  * @group components
82
86
  */
83
- declare const DialogAssetNameDetail: DefineComponent<
84
- DialogAssetNameDetailProps,
85
- DialogAssetNameDetailEmits
87
+ declare const DialogSelectUser: DefineComponent<
88
+ DialogSelectUserProps,
89
+ DialogSelectUserEmits
86
90
  >;
87
91
 
88
- export default DialogAssetNameDetail;
92
+ export default DialogSelectUser;