tsv2-library 1.1.1-dev-alpha.11 → 1.1.1-dev-alpha.13
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { DefineComponent, Slot } from 'vue';
|
|
2
2
|
import { FilterOption } from '../../../types/filterOption.type';
|
|
3
3
|
import { FilterField } from '../../../types/filterField.type';
|
|
4
|
+
import { AssetColField } from '../AssetTable/columns/assetColumns';
|
|
4
5
|
|
|
5
6
|
export interface DialogSelectAssetFilterModels {
|
|
6
7
|
assetName?: string[];
|
|
@@ -142,11 +143,9 @@ export interface DialogSelectAssetProps {
|
|
|
142
143
|
*/
|
|
143
144
|
withButton?: boolean;
|
|
144
145
|
/**
|
|
145
|
-
*
|
|
146
|
-
*
|
|
147
|
-
* @default false
|
|
146
|
+
* Define the columns to show
|
|
148
147
|
*/
|
|
149
|
-
|
|
148
|
+
showColumns?: AssetColField[];
|
|
150
149
|
/**
|
|
151
150
|
* Dialog visibility model when not using default button.
|
|
152
151
|
*/
|