@ironsource/shared-ui 2.1.12-rc.31 → 2.1.12-rc.33
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/Chart.vue_vue_type_style_index_0_scoped_3da25a36_lang.css +1 -0
- package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_2f916aeb_lang.css +1 -0
- package/ChartPlane.vue_vue_type_style_index_0_scoped_f871962e_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_36ec94a7_lang.css +1 -0
- package/DataGridHeader.vue_vue_type_style_index_0_scoped_840e700c_lang.css +1 -0
- package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_e38c881a_lang.css +1 -0
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_3caa1d7b_lang.css +1 -0
- package/RadioButton.vue_vue_type_style_index_0_scoped_dac25b9f_lang.css +1 -0
- package/TooltipHeader.vue_vue_type_style_index_0_scoped_5160f12d_lang.css +1 -0
- package/components/chart/Chart.vue.d.ts +10 -0
- package/components/chart/Chart.vue.js +2 -2
- package/components/chart/Chart.vue2.js +29 -25
- package/components/chart/ChartHeaderTrend.vue.js +2 -2
- package/components/chart/ChartHeaderTrend.vue2.js +34 -33
- package/components/chart/ChartPlane.vue.d.ts +10 -0
- package/components/chart/ChartPlane.vue.js +4 -4
- package/components/chart/ChartPlane.vue2.js +158 -147
- package/components/chart/ChartStoryArgs.d.ts +12 -0
- package/components/chart/TooltipHeader.vue.js +2 -2
- package/components/chart/TooltipHeader.vue2.js +21 -20
- package/components/chart/consts.d.ts +4 -0
- package/components/chart/consts.js +30 -26
- package/components/chart/index.d.ts +39 -1
- package/components/chart/mockData.d.ts +15 -0
- package/components/chart/types.d.ts +2 -1
- package/components/chart/types.js +5 -5
- package/components/chart/utils/utils.js +14 -13
- package/components/dateRange/common/DateRange.common.js +60 -60
- package/components/radioButton/v3/RadioButton.vue.d.ts +5 -0
- package/components/radioButton/v3/RadioButton.vue.js +3 -3
- package/components/radioButton/v3/RadioButton.vue2.js +42 -39
- package/components/radioButton/v3/index.d.ts +20 -1
- package/components/table/v4/DataGrid.vue.d.ts +4 -4
- package/components/table/v4/DataGrid.vue.js +3 -3
- package/components/table/v4/DataGrid.vue2.js +237 -245
- package/components/table/v4/DataGridHeader.vue.d.ts +85 -0
- package/components/table/v4/DataGridHeader.vue.js +7 -0
- package/components/table/v4/DataGridHeader.vue2.js +82 -0
- package/components/table/v4/DataGridRowsCounter.vue.js +3 -3
- package/components/table/v4/DataGridRowsCounter.vue2.js +12 -12
- package/components/table/v4/MultipleDataGrid.vue.d.ts +6 -5
- package/components/table/v4/MultipleDataGrid.vue.js +2 -2
- package/components/table/v4/MultipleDataGrid.vue2.js +91 -90
- package/components/table/v4/index.d.ts +552 -305
- package/components/table/v4/index.js +7 -4
- package/components/table/v4/storyUtils.d.ts +8 -0
- package/index.d.ts +1578 -1085
- package/index.js +1 -1
- package/package.json +1 -1
- package/utils/date.d.ts +1 -0
- package/utils/date.js +9 -0
- package/utils/formatNumbers.d.ts +1 -1
- package/utils/formatNumbers.js +38 -21
- package/Chart.vue_vue_type_style_index_0_scoped_fa533a3d_lang.css +0 -1
- package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_db8a902c_lang.css +0 -1
- package/ChartPlane.vue_vue_type_style_index_0_scoped_4f67d41d_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_8e8df067_lang.css +0 -1
- package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_ef699ec5_lang.css +0 -1
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_020a9896_lang.css +0 -1
- package/RadioButton.vue_vue_type_style_index_0_scoped_3c6b715c_lang.css +0 -1
- package/TooltipHeader.vue_vue_type_style_index_0_scoped_3b15c693_lang.css +0 -1
package/index.d.ts
CHANGED
|
@@ -19,8 +19,8 @@ import * as tableV4 from '@/components/table/v4';
|
|
|
19
19
|
import * as tableCellsV3 from '@/components/table-cells/v3';
|
|
20
20
|
import * as snackbarV3 from '@/components/snackbar/v3';
|
|
21
21
|
declare const _default: {
|
|
22
|
-
nFormatter(num: number, formatLowDigits?: boolean): string;
|
|
23
22
|
DEFAULT_FALLBACK: "N/A";
|
|
23
|
+
nFormatter: (num: string | number, formatLowDigits?: boolean, fallback?: string, withSuffixSpace?: boolean) => string;
|
|
24
24
|
diffInPersentage: (valueA: string | number, valueB: string | number, fallback?: string) => string | number;
|
|
25
25
|
formatNumberWithCommas: (num: string | number, fallback?: string) => string;
|
|
26
26
|
Popover: {
|
|
@@ -5866,11 +5866,11 @@ declare const _default: {
|
|
|
5866
5866
|
defaultScrollPosition: number;
|
|
5867
5867
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
5868
5868
|
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
5869
|
-
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
5870
5869
|
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
5871
|
-
helpTooltipVariant: "icon" | "underline";
|
|
5872
5870
|
rowCustomClassKey: string;
|
|
5873
5871
|
rowDataKey: string;
|
|
5872
|
+
helpTooltipVariant: "icon" | "underline";
|
|
5873
|
+
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
5874
5874
|
isSelectionSticky: boolean;
|
|
5875
5875
|
isSelectionBordered: boolean;
|
|
5876
5876
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -5970,21 +5970,10 @@ declare const _default: {
|
|
|
5970
5970
|
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
5971
5971
|
default: (row: any, index: any) => any;
|
|
5972
5972
|
};
|
|
5973
|
-
selectedMatcher: {
|
|
5974
|
-
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
5975
|
-
default: (rowId: any, selectedItem: any) => boolean;
|
|
5976
|
-
};
|
|
5977
5973
|
emptyStateVariant: {
|
|
5978
5974
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
5979
5975
|
default: any;
|
|
5980
5976
|
};
|
|
5981
|
-
showTotalsRow: {
|
|
5982
|
-
type: import("vue").PropType<boolean>;
|
|
5983
|
-
};
|
|
5984
|
-
helpTooltipVariant: {
|
|
5985
|
-
type: import("vue").PropType<"icon" | "underline">;
|
|
5986
|
-
default: string;
|
|
5987
|
-
};
|
|
5988
5977
|
rowCustomClassKey: {
|
|
5989
5978
|
type: import("vue").PropType<string>;
|
|
5990
5979
|
default: string;
|
|
@@ -5993,6 +5982,14 @@ declare const _default: {
|
|
|
5993
5982
|
type: import("vue").PropType<string>;
|
|
5994
5983
|
default: string;
|
|
5995
5984
|
};
|
|
5985
|
+
helpTooltipVariant: {
|
|
5986
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
5987
|
+
default: string;
|
|
5988
|
+
};
|
|
5989
|
+
selectedMatcher: {
|
|
5990
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
5991
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
5992
|
+
};
|
|
5996
5993
|
isSelectionSticky: {
|
|
5997
5994
|
type: import("vue").PropType<boolean>;
|
|
5998
5995
|
default: boolean;
|
|
@@ -6001,6 +5998,9 @@ declare const _default: {
|
|
|
6001
5998
|
type: import("vue").PropType<boolean>;
|
|
6002
5999
|
default: boolean;
|
|
6003
6000
|
};
|
|
6001
|
+
showTotalsRow: {
|
|
6002
|
+
type: import("vue").PropType<boolean>;
|
|
6003
|
+
};
|
|
6004
6004
|
}>> & {
|
|
6005
6005
|
onSelectAll?: (value: boolean) => any;
|
|
6006
6006
|
onLoadMore?: () => any;
|
|
@@ -6009,10 +6009,10 @@ declare const _default: {
|
|
|
6009
6009
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
6010
6010
|
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
6011
6011
|
onOnClearSearch?: () => any;
|
|
6012
|
+
onClickRow?: (rowIndex: number) => any;
|
|
6012
6013
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
6013
6014
|
onSelectRow?: (value: boolean) => any;
|
|
6014
|
-
|
|
6015
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "emptyStateVariant" | "helpTooltipVariant" | "rowCustomClassKey" | "rowDataKey" | "isSelectionSticky" | "isSelectionBordered">;
|
|
6015
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "emptyStateVariant" | "rowCustomClassKey" | "rowDataKey" | "helpTooltipVariant" | "selectedMatcher" | "isSelectionSticky" | "isSelectionBordered">;
|
|
6016
6016
|
$attrs: {
|
|
6017
6017
|
[x: string]: unknown;
|
|
6018
6018
|
};
|
|
@@ -6024,7 +6024,7 @@ declare const _default: {
|
|
|
6024
6024
|
}>;
|
|
6025
6025
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
6026
6026
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
6027
|
-
$emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "loadMore") => void) & ((event: "onClearSearch") => void) & ((event: "update:search", query: string) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "
|
|
6027
|
+
$emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "loadMore") => void) & ((event: "onClearSearch") => void) & ((event: "update:search", query: string) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "clickRow", rowIndex: number) => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void);
|
|
6028
6028
|
$el: any;
|
|
6029
6029
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
6030
6030
|
sort: {
|
|
@@ -6123,21 +6123,10 @@ declare const _default: {
|
|
|
6123
6123
|
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
6124
6124
|
default: (row: any, index: any) => any;
|
|
6125
6125
|
};
|
|
6126
|
-
selectedMatcher: {
|
|
6127
|
-
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
6128
|
-
default: (rowId: any, selectedItem: any) => boolean;
|
|
6129
|
-
};
|
|
6130
6126
|
emptyStateVariant: {
|
|
6131
6127
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
6132
6128
|
default: any;
|
|
6133
6129
|
};
|
|
6134
|
-
showTotalsRow: {
|
|
6135
|
-
type: import("vue").PropType<boolean>;
|
|
6136
|
-
};
|
|
6137
|
-
helpTooltipVariant: {
|
|
6138
|
-
type: import("vue").PropType<"icon" | "underline">;
|
|
6139
|
-
default: string;
|
|
6140
|
-
};
|
|
6141
6130
|
rowCustomClassKey: {
|
|
6142
6131
|
type: import("vue").PropType<string>;
|
|
6143
6132
|
default: string;
|
|
@@ -6146,6 +6135,14 @@ declare const _default: {
|
|
|
6146
6135
|
type: import("vue").PropType<string>;
|
|
6147
6136
|
default: string;
|
|
6148
6137
|
};
|
|
6138
|
+
helpTooltipVariant: {
|
|
6139
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
6140
|
+
default: string;
|
|
6141
|
+
};
|
|
6142
|
+
selectedMatcher: {
|
|
6143
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
6144
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
6145
|
+
};
|
|
6149
6146
|
isSelectionSticky: {
|
|
6150
6147
|
type: import("vue").PropType<boolean>;
|
|
6151
6148
|
default: boolean;
|
|
@@ -6154,6 +6151,9 @@ declare const _default: {
|
|
|
6154
6151
|
type: import("vue").PropType<boolean>;
|
|
6155
6152
|
default: boolean;
|
|
6156
6153
|
};
|
|
6154
|
+
showTotalsRow: {
|
|
6155
|
+
type: import("vue").PropType<boolean>;
|
|
6156
|
+
};
|
|
6157
6157
|
}>> & {
|
|
6158
6158
|
onSelectAll?: (value: boolean) => any;
|
|
6159
6159
|
onLoadMore?: () => any;
|
|
@@ -6162,9 +6162,9 @@ declare const _default: {
|
|
|
6162
6162
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
6163
6163
|
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
6164
6164
|
onOnClearSearch?: () => any;
|
|
6165
|
+
onClickRow?: (rowIndex: number) => any;
|
|
6165
6166
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
6166
6167
|
onSelectRow?: (value: boolean) => any;
|
|
6167
|
-
onClickRow?: (rowIndex: number) => any;
|
|
6168
6168
|
}, {
|
|
6169
6169
|
scrollTo: (index: number) => void;
|
|
6170
6170
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -6201,11 +6201,11 @@ declare const _default: {
|
|
|
6201
6201
|
defaultScrollPosition: number;
|
|
6202
6202
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
6203
6203
|
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
6204
|
-
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6205
6204
|
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
6206
|
-
helpTooltipVariant: "icon" | "underline";
|
|
6207
6205
|
rowCustomClassKey: string;
|
|
6208
6206
|
rowDataKey: string;
|
|
6207
|
+
helpTooltipVariant: "icon" | "underline";
|
|
6208
|
+
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6209
6209
|
isSelectionSticky: boolean;
|
|
6210
6210
|
isSelectionBordered: boolean;
|
|
6211
6211
|
}, {}, string> & {
|
|
@@ -6325,21 +6325,10 @@ declare const _default: {
|
|
|
6325
6325
|
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
6326
6326
|
default: (row: any, index: any) => any;
|
|
6327
6327
|
};
|
|
6328
|
-
selectedMatcher: {
|
|
6329
|
-
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
6330
|
-
default: (rowId: any, selectedItem: any) => boolean;
|
|
6331
|
-
};
|
|
6332
6328
|
emptyStateVariant: {
|
|
6333
6329
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
6334
6330
|
default: any;
|
|
6335
6331
|
};
|
|
6336
|
-
showTotalsRow: {
|
|
6337
|
-
type: import("vue").PropType<boolean>;
|
|
6338
|
-
};
|
|
6339
|
-
helpTooltipVariant: {
|
|
6340
|
-
type: import("vue").PropType<"icon" | "underline">;
|
|
6341
|
-
default: string;
|
|
6342
|
-
};
|
|
6343
6332
|
rowCustomClassKey: {
|
|
6344
6333
|
type: import("vue").PropType<string>;
|
|
6345
6334
|
default: string;
|
|
@@ -6348,6 +6337,14 @@ declare const _default: {
|
|
|
6348
6337
|
type: import("vue").PropType<string>;
|
|
6349
6338
|
default: string;
|
|
6350
6339
|
};
|
|
6340
|
+
helpTooltipVariant: {
|
|
6341
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
6342
|
+
default: string;
|
|
6343
|
+
};
|
|
6344
|
+
selectedMatcher: {
|
|
6345
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
6346
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
6347
|
+
};
|
|
6351
6348
|
isSelectionSticky: {
|
|
6352
6349
|
type: import("vue").PropType<boolean>;
|
|
6353
6350
|
default: boolean;
|
|
@@ -6356,6 +6353,9 @@ declare const _default: {
|
|
|
6356
6353
|
type: import("vue").PropType<boolean>;
|
|
6357
6354
|
default: boolean;
|
|
6358
6355
|
};
|
|
6356
|
+
showTotalsRow: {
|
|
6357
|
+
type: import("vue").PropType<boolean>;
|
|
6358
|
+
};
|
|
6359
6359
|
}>> & {
|
|
6360
6360
|
onSelectAll?: (value: boolean) => any;
|
|
6361
6361
|
onLoadMore?: () => any;
|
|
@@ -6364,9 +6364,9 @@ declare const _default: {
|
|
|
6364
6364
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
6365
6365
|
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
6366
6366
|
onOnClearSearch?: () => any;
|
|
6367
|
+
onClickRow?: (rowIndex: number) => any;
|
|
6367
6368
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
6368
6369
|
onSelectRow?: (value: boolean) => any;
|
|
6369
|
-
onClickRow?: (rowIndex: number) => any;
|
|
6370
6370
|
} & import("vue").ShallowUnwrapRef<{
|
|
6371
6371
|
scrollTo: (index: number) => void;
|
|
6372
6372
|
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
@@ -6470,21 +6470,10 @@ declare const _default: {
|
|
|
6470
6470
|
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
6471
6471
|
default: (row: any, index: any) => any;
|
|
6472
6472
|
};
|
|
6473
|
-
selectedMatcher: {
|
|
6474
|
-
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
6475
|
-
default: (rowId: any, selectedItem: any) => boolean;
|
|
6476
|
-
};
|
|
6477
6473
|
emptyStateVariant: {
|
|
6478
6474
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
6479
6475
|
default: any;
|
|
6480
6476
|
};
|
|
6481
|
-
showTotalsRow: {
|
|
6482
|
-
type: import("vue").PropType<boolean>;
|
|
6483
|
-
};
|
|
6484
|
-
helpTooltipVariant: {
|
|
6485
|
-
type: import("vue").PropType<"icon" | "underline">;
|
|
6486
|
-
default: string;
|
|
6487
|
-
};
|
|
6488
6477
|
rowCustomClassKey: {
|
|
6489
6478
|
type: import("vue").PropType<string>;
|
|
6490
6479
|
default: string;
|
|
@@ -6493,6 +6482,14 @@ declare const _default: {
|
|
|
6493
6482
|
type: import("vue").PropType<string>;
|
|
6494
6483
|
default: string;
|
|
6495
6484
|
};
|
|
6485
|
+
helpTooltipVariant: {
|
|
6486
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
6487
|
+
default: string;
|
|
6488
|
+
};
|
|
6489
|
+
selectedMatcher: {
|
|
6490
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
6491
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
6492
|
+
};
|
|
6496
6493
|
isSelectionSticky: {
|
|
6497
6494
|
type: import("vue").PropType<boolean>;
|
|
6498
6495
|
default: boolean;
|
|
@@ -6501,6 +6498,9 @@ declare const _default: {
|
|
|
6501
6498
|
type: import("vue").PropType<boolean>;
|
|
6502
6499
|
default: boolean;
|
|
6503
6500
|
};
|
|
6501
|
+
showTotalsRow: {
|
|
6502
|
+
type: import("vue").PropType<boolean>;
|
|
6503
|
+
};
|
|
6504
6504
|
}>> & {
|
|
6505
6505
|
onSelectAll?: (value: boolean) => any;
|
|
6506
6506
|
onLoadMore?: () => any;
|
|
@@ -6509,9 +6509,9 @@ declare const _default: {
|
|
|
6509
6509
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
6510
6510
|
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
6511
6511
|
onOnClearSearch?: () => any;
|
|
6512
|
+
onClickRow?: (rowIndex: number) => any;
|
|
6512
6513
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
6513
6514
|
onSelectRow?: (value: boolean) => any;
|
|
6514
|
-
onClickRow?: (rowIndex: number) => any;
|
|
6515
6515
|
}, {
|
|
6516
6516
|
scrollTo: (index: number) => void;
|
|
6517
6517
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -6548,11 +6548,11 @@ declare const _default: {
|
|
|
6548
6548
|
defaultScrollPosition: number;
|
|
6549
6549
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
6550
6550
|
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
6551
|
-
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6552
6551
|
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
6553
|
-
helpTooltipVariant: "icon" | "underline";
|
|
6554
6552
|
rowCustomClassKey: string;
|
|
6555
6553
|
rowDataKey: string;
|
|
6554
|
+
helpTooltipVariant: "icon" | "underline";
|
|
6555
|
+
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6556
6556
|
isSelectionSticky: boolean;
|
|
6557
6557
|
isSelectionBordered: boolean;
|
|
6558
6558
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -6570,8 +6570,8 @@ declare const _default: {
|
|
|
6570
6570
|
rowIndex: number;
|
|
6571
6571
|
}) => any>> & {
|
|
6572
6572
|
title?(_: {}): any;
|
|
6573
|
-
"table-header-pre-search"?(_: {}): any;
|
|
6574
6573
|
search?(_: {}): any;
|
|
6574
|
+
"table-header-pre-search"?(_: {}): any;
|
|
6575
6575
|
"table-header-actions"?(_: {}): any;
|
|
6576
6576
|
"select-all-checkbox"?(_: {}): any;
|
|
6577
6577
|
loader?(_: {}): any;
|
|
@@ -6682,45 +6682,114 @@ declare const _default: {
|
|
|
6682
6682
|
outOfText: string;
|
|
6683
6683
|
totalText: string;
|
|
6684
6684
|
}>;
|
|
6685
|
-
DataGridTypes: () => (({
|
|
6685
|
+
DataGridTypes: () => (import("vue").DefineComponent<{
|
|
6686
|
+
placement: {
|
|
6687
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
6688
|
+
default: string;
|
|
6689
|
+
};
|
|
6690
|
+
rowIndex: {
|
|
6691
|
+
type: import("vue").PropType<number>;
|
|
6692
|
+
default: any;
|
|
6693
|
+
};
|
|
6694
|
+
menuItems: {
|
|
6695
|
+
type: import("vue").PropType<tableV4.MenuItem[]>;
|
|
6696
|
+
required: true;
|
|
6697
|
+
default: () => any[];
|
|
6698
|
+
};
|
|
6699
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6700
|
+
selected: (option: unknown) => void;
|
|
6701
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6702
|
+
placement: {
|
|
6703
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
6704
|
+
default: string;
|
|
6705
|
+
};
|
|
6706
|
+
rowIndex: {
|
|
6707
|
+
type: import("vue").PropType<number>;
|
|
6708
|
+
default: any;
|
|
6709
|
+
};
|
|
6710
|
+
menuItems: {
|
|
6711
|
+
type: import("vue").PropType<tableV4.MenuItem[]>;
|
|
6712
|
+
required: true;
|
|
6713
|
+
default: () => any[];
|
|
6714
|
+
};
|
|
6715
|
+
}>> & {
|
|
6716
|
+
onSelected?: (option: unknown) => any;
|
|
6717
|
+
}, {
|
|
6718
|
+
placement: import("floating-vue").Placement;
|
|
6719
|
+
rowIndex: number;
|
|
6720
|
+
menuItems: tableV4.MenuItem[];
|
|
6721
|
+
}> | import("vue").DefineComponent<{
|
|
6722
|
+
testId: {
|
|
6723
|
+
type: import("vue").PropType<string>;
|
|
6724
|
+
default: string;
|
|
6725
|
+
};
|
|
6726
|
+
count: {
|
|
6727
|
+
type: import("vue").PropType<number>;
|
|
6728
|
+
default: number;
|
|
6729
|
+
};
|
|
6730
|
+
totalCount: {
|
|
6731
|
+
type: import("vue").PropType<number>;
|
|
6732
|
+
default: number;
|
|
6733
|
+
};
|
|
6734
|
+
displayingText: {
|
|
6735
|
+
type: import("vue").PropType<string>;
|
|
6736
|
+
default: string;
|
|
6737
|
+
};
|
|
6738
|
+
outOfText: {
|
|
6739
|
+
type: import("vue").PropType<string>;
|
|
6740
|
+
default: string;
|
|
6741
|
+
};
|
|
6742
|
+
totalText: {
|
|
6743
|
+
type: import("vue").PropType<string>;
|
|
6744
|
+
default: string;
|
|
6745
|
+
};
|
|
6746
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6747
|
+
testId: {
|
|
6748
|
+
type: import("vue").PropType<string>;
|
|
6749
|
+
default: string;
|
|
6750
|
+
};
|
|
6751
|
+
count: {
|
|
6752
|
+
type: import("vue").PropType<number>;
|
|
6753
|
+
default: number;
|
|
6754
|
+
};
|
|
6755
|
+
totalCount: {
|
|
6756
|
+
type: import("vue").PropType<number>;
|
|
6757
|
+
default: number;
|
|
6758
|
+
};
|
|
6759
|
+
displayingText: {
|
|
6760
|
+
type: import("vue").PropType<string>;
|
|
6761
|
+
default: string;
|
|
6762
|
+
};
|
|
6763
|
+
outOfText: {
|
|
6764
|
+
type: import("vue").PropType<string>;
|
|
6765
|
+
default: string;
|
|
6766
|
+
};
|
|
6767
|
+
totalText: {
|
|
6768
|
+
type: import("vue").PropType<string>;
|
|
6769
|
+
default: string;
|
|
6770
|
+
};
|
|
6771
|
+
}>>, {
|
|
6772
|
+
testId: string;
|
|
6773
|
+
count: number;
|
|
6774
|
+
totalCount: number;
|
|
6775
|
+
displayingText: string;
|
|
6776
|
+
outOfText: string;
|
|
6777
|
+
totalText: string;
|
|
6778
|
+
}> | ({
|
|
6686
6779
|
new (...args: any[]): {
|
|
6687
6780
|
$: import("vue").ComponentInternalInstance;
|
|
6688
6781
|
$data: {};
|
|
6689
6782
|
$props: Partial<{
|
|
6690
|
-
sort: tableV3.Sort;
|
|
6691
6783
|
title: string;
|
|
6692
6784
|
search: string;
|
|
6693
6785
|
testId: string;
|
|
6694
|
-
isLoading: boolean;
|
|
6695
6786
|
searchAutoFocus: boolean;
|
|
6696
6787
|
searchPlaceholder: string;
|
|
6697
|
-
selection: unknown[];
|
|
6698
6788
|
showSearch: boolean;
|
|
6699
|
-
loadingRowCount: number;
|
|
6700
|
-
emptyStateTitle: string;
|
|
6701
6789
|
isSticky: boolean;
|
|
6702
6790
|
zIndexBase: number;
|
|
6703
|
-
|
|
6704
|
-
isStickyHeader: boolean;
|
|
6705
|
-
emptyStateSubtitle: string;
|
|
6706
|
-
isInfiniteScroll: boolean;
|
|
6707
|
-
infiniteScrollThreshold: number;
|
|
6708
|
-
rowHeight: number | ((index: number) => number);
|
|
6709
|
-
defaultScrollPosition: number;
|
|
6710
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
6711
|
-
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
6712
|
-
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6713
|
-
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
6714
|
-
helpTooltipVariant: "icon" | "underline";
|
|
6715
|
-
rowCustomClassKey: string;
|
|
6716
|
-
rowDataKey: string;
|
|
6717
|
-
isSelectionSticky: boolean;
|
|
6718
|
-
isSelectionBordered: boolean;
|
|
6791
|
+
standalone: boolean;
|
|
6719
6792
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
6720
|
-
sort: {
|
|
6721
|
-
type: import("vue").PropType<tableV3.Sort>;
|
|
6722
|
-
default: any;
|
|
6723
|
-
};
|
|
6724
6793
|
title: {
|
|
6725
6794
|
type: import("vue").PropType<string>;
|
|
6726
6795
|
default: string;
|
|
@@ -6733,14 +6802,6 @@ declare const _default: {
|
|
|
6733
6802
|
type: import("vue").PropType<string>;
|
|
6734
6803
|
default: string;
|
|
6735
6804
|
};
|
|
6736
|
-
columns: {
|
|
6737
|
-
type: import("vue").PropType<tableV3.Column[]>;
|
|
6738
|
-
required: true;
|
|
6739
|
-
};
|
|
6740
|
-
isLoading: {
|
|
6741
|
-
type: import("vue").PropType<boolean>;
|
|
6742
|
-
default: boolean;
|
|
6743
|
-
};
|
|
6744
6805
|
searchAutoFocus: {
|
|
6745
6806
|
type: import("vue").PropType<boolean>;
|
|
6746
6807
|
default: boolean;
|
|
@@ -6749,22 +6810,10 @@ declare const _default: {
|
|
|
6749
6810
|
type: import("vue").PropType<string>;
|
|
6750
6811
|
default: string;
|
|
6751
6812
|
};
|
|
6752
|
-
selection: {
|
|
6753
|
-
type: import("vue").PropType<unknown[]>;
|
|
6754
|
-
default: any;
|
|
6755
|
-
};
|
|
6756
6813
|
showSearch: {
|
|
6757
6814
|
type: import("vue").PropType<boolean>;
|
|
6758
6815
|
default: boolean;
|
|
6759
6816
|
};
|
|
6760
|
-
loadingRowCount: {
|
|
6761
|
-
type: import("vue").PropType<number>;
|
|
6762
|
-
default: number;
|
|
6763
|
-
};
|
|
6764
|
-
emptyStateTitle: {
|
|
6765
|
-
type: import("vue").PropType<string>;
|
|
6766
|
-
default: string;
|
|
6767
|
-
};
|
|
6768
6817
|
isSticky: {
|
|
6769
6818
|
type: import("vue").PropType<boolean>;
|
|
6770
6819
|
default: boolean;
|
|
@@ -6773,89 +6822,14 @@ declare const _default: {
|
|
|
6773
6822
|
type: import("vue").PropType<number>;
|
|
6774
6823
|
default: number;
|
|
6775
6824
|
};
|
|
6776
|
-
|
|
6777
|
-
type: import("vue").PropType<
|
|
6778
|
-
|
|
6779
|
-
};
|
|
6780
|
-
sections: {
|
|
6781
|
-
type: import("vue").PropType<import("./components/table/common/Table.types").Section[]>;
|
|
6782
|
-
default: any;
|
|
6783
|
-
};
|
|
6784
|
-
isStickyHeader: {
|
|
6785
|
-
type: import("vue").PropType<boolean>;
|
|
6786
|
-
default: boolean;
|
|
6787
|
-
};
|
|
6788
|
-
emptyStateSubtitle: {
|
|
6789
|
-
type: import("vue").PropType<string>;
|
|
6790
|
-
default: string;
|
|
6791
|
-
};
|
|
6792
|
-
isInfiniteScroll: {
|
|
6793
|
-
type: import("vue").PropType<boolean>;
|
|
6794
|
-
default: boolean;
|
|
6795
|
-
};
|
|
6796
|
-
infiniteScrollThreshold: {
|
|
6797
|
-
type: import("vue").PropType<number>;
|
|
6798
|
-
default: number;
|
|
6799
|
-
};
|
|
6800
|
-
rowHeight: {
|
|
6801
|
-
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
6802
|
-
default: number;
|
|
6803
|
-
};
|
|
6804
|
-
defaultScrollPosition: {
|
|
6805
|
-
type: import("vue").PropType<number>;
|
|
6806
|
-
default: any;
|
|
6807
|
-
};
|
|
6808
|
-
getRowId: {
|
|
6809
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
6810
|
-
default: (row: any, index: any) => any;
|
|
6811
|
-
};
|
|
6812
|
-
getRowKey: {
|
|
6813
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
6814
|
-
default: (row: any, index: any) => any;
|
|
6815
|
-
};
|
|
6816
|
-
selectedMatcher: {
|
|
6817
|
-
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
6818
|
-
default: (rowId: any, selectedItem: any) => boolean;
|
|
6819
|
-
};
|
|
6820
|
-
emptyStateVariant: {
|
|
6821
|
-
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
6822
|
-
default: any;
|
|
6823
|
-
};
|
|
6824
|
-
showTotalsRow: {
|
|
6825
|
-
type: import("vue").PropType<boolean>;
|
|
6826
|
-
};
|
|
6827
|
-
helpTooltipVariant: {
|
|
6828
|
-
type: import("vue").PropType<"icon" | "underline">;
|
|
6829
|
-
default: string;
|
|
6830
|
-
};
|
|
6831
|
-
rowCustomClassKey: {
|
|
6832
|
-
type: import("vue").PropType<string>;
|
|
6833
|
-
default: string;
|
|
6834
|
-
};
|
|
6835
|
-
rowDataKey: {
|
|
6836
|
-
type: import("vue").PropType<string>;
|
|
6837
|
-
default: string;
|
|
6838
|
-
};
|
|
6839
|
-
isSelectionSticky: {
|
|
6840
|
-
type: import("vue").PropType<boolean>;
|
|
6841
|
-
default: boolean;
|
|
6842
|
-
};
|
|
6843
|
-
isSelectionBordered: {
|
|
6844
|
-
type: import("vue").PropType<boolean>;
|
|
6845
|
-
default: boolean;
|
|
6825
|
+
standalone: {
|
|
6826
|
+
type: import("vue").PropType<boolean>;
|
|
6827
|
+
default: boolean;
|
|
6846
6828
|
};
|
|
6847
6829
|
}>> & {
|
|
6848
|
-
onSelectAll?: (value: boolean) => any;
|
|
6849
|
-
onLoadMore?: () => any;
|
|
6850
6830
|
"onUpdate:search"?: (query: string) => any;
|
|
6851
|
-
onOnScroll?: (event: Event) => any;
|
|
6852
|
-
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
6853
|
-
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
6854
6831
|
onOnClearSearch?: () => any;
|
|
6855
|
-
|
|
6856
|
-
onSelectRow?: (value: boolean) => any;
|
|
6857
|
-
onClickRow?: (rowIndex: number) => any;
|
|
6858
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "emptyStateVariant" | "helpTooltipVariant" | "rowCustomClassKey" | "rowDataKey" | "isSelectionSticky" | "isSelectionBordered">;
|
|
6832
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "search" | "testId" | "searchAutoFocus" | "searchPlaceholder" | "showSearch" | "isSticky" | "zIndexBase" | "standalone">;
|
|
6859
6833
|
$attrs: {
|
|
6860
6834
|
[x: string]: unknown;
|
|
6861
6835
|
};
|
|
@@ -6867,13 +6841,9 @@ declare const _default: {
|
|
|
6867
6841
|
}>;
|
|
6868
6842
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
6869
6843
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
6870
|
-
$emit: ((event: "
|
|
6844
|
+
$emit: ((event: "onClearSearch") => void) & ((event: "update:search", query: string) => void);
|
|
6871
6845
|
$el: any;
|
|
6872
6846
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
6873
|
-
sort: {
|
|
6874
|
-
type: import("vue").PropType<tableV3.Sort>;
|
|
6875
|
-
default: any;
|
|
6876
|
-
};
|
|
6877
6847
|
title: {
|
|
6878
6848
|
type: import("vue").PropType<string>;
|
|
6879
6849
|
default: string;
|
|
@@ -6886,14 +6856,6 @@ declare const _default: {
|
|
|
6886
6856
|
type: import("vue").PropType<string>;
|
|
6887
6857
|
default: string;
|
|
6888
6858
|
};
|
|
6889
|
-
columns: {
|
|
6890
|
-
type: import("vue").PropType<tableV3.Column[]>;
|
|
6891
|
-
required: true;
|
|
6892
|
-
};
|
|
6893
|
-
isLoading: {
|
|
6894
|
-
type: import("vue").PropType<boolean>;
|
|
6895
|
-
default: boolean;
|
|
6896
|
-
};
|
|
6897
6859
|
searchAutoFocus: {
|
|
6898
6860
|
type: import("vue").PropType<boolean>;
|
|
6899
6861
|
default: boolean;
|
|
@@ -6902,22 +6864,10 @@ declare const _default: {
|
|
|
6902
6864
|
type: import("vue").PropType<string>;
|
|
6903
6865
|
default: string;
|
|
6904
6866
|
};
|
|
6905
|
-
selection: {
|
|
6906
|
-
type: import("vue").PropType<unknown[]>;
|
|
6907
|
-
default: any;
|
|
6908
|
-
};
|
|
6909
6867
|
showSearch: {
|
|
6910
6868
|
type: import("vue").PropType<boolean>;
|
|
6911
6869
|
default: boolean;
|
|
6912
6870
|
};
|
|
6913
|
-
loadingRowCount: {
|
|
6914
|
-
type: import("vue").PropType<number>;
|
|
6915
|
-
default: number;
|
|
6916
|
-
};
|
|
6917
|
-
emptyStateTitle: {
|
|
6918
|
-
type: import("vue").PropType<string>;
|
|
6919
|
-
default: string;
|
|
6920
|
-
};
|
|
6921
6871
|
isSticky: {
|
|
6922
6872
|
type: import("vue").PropType<boolean>;
|
|
6923
6873
|
default: boolean;
|
|
@@ -6926,131 +6876,26 @@ declare const _default: {
|
|
|
6926
6876
|
type: import("vue").PropType<number>;
|
|
6927
6877
|
default: number;
|
|
6928
6878
|
};
|
|
6929
|
-
|
|
6930
|
-
type: import("vue").PropType<import("./components/table/common/Table.types").Row[]>;
|
|
6931
|
-
required: true;
|
|
6932
|
-
};
|
|
6933
|
-
sections: {
|
|
6934
|
-
type: import("vue").PropType<import("./components/table/common/Table.types").Section[]>;
|
|
6935
|
-
default: any;
|
|
6936
|
-
};
|
|
6937
|
-
isStickyHeader: {
|
|
6938
|
-
type: import("vue").PropType<boolean>;
|
|
6939
|
-
default: boolean;
|
|
6940
|
-
};
|
|
6941
|
-
emptyStateSubtitle: {
|
|
6942
|
-
type: import("vue").PropType<string>;
|
|
6943
|
-
default: string;
|
|
6944
|
-
};
|
|
6945
|
-
isInfiniteScroll: {
|
|
6946
|
-
type: import("vue").PropType<boolean>;
|
|
6947
|
-
default: boolean;
|
|
6948
|
-
};
|
|
6949
|
-
infiniteScrollThreshold: {
|
|
6950
|
-
type: import("vue").PropType<number>;
|
|
6951
|
-
default: number;
|
|
6952
|
-
};
|
|
6953
|
-
rowHeight: {
|
|
6954
|
-
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
6955
|
-
default: number;
|
|
6956
|
-
};
|
|
6957
|
-
defaultScrollPosition: {
|
|
6958
|
-
type: import("vue").PropType<number>;
|
|
6959
|
-
default: any;
|
|
6960
|
-
};
|
|
6961
|
-
getRowId: {
|
|
6962
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
6963
|
-
default: (row: any, index: any) => any;
|
|
6964
|
-
};
|
|
6965
|
-
getRowKey: {
|
|
6966
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
6967
|
-
default: (row: any, index: any) => any;
|
|
6968
|
-
};
|
|
6969
|
-
selectedMatcher: {
|
|
6970
|
-
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
6971
|
-
default: (rowId: any, selectedItem: any) => boolean;
|
|
6972
|
-
};
|
|
6973
|
-
emptyStateVariant: {
|
|
6974
|
-
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
6975
|
-
default: any;
|
|
6976
|
-
};
|
|
6977
|
-
showTotalsRow: {
|
|
6978
|
-
type: import("vue").PropType<boolean>;
|
|
6979
|
-
};
|
|
6980
|
-
helpTooltipVariant: {
|
|
6981
|
-
type: import("vue").PropType<"icon" | "underline">;
|
|
6982
|
-
default: string;
|
|
6983
|
-
};
|
|
6984
|
-
rowCustomClassKey: {
|
|
6985
|
-
type: import("vue").PropType<string>;
|
|
6986
|
-
default: string;
|
|
6987
|
-
};
|
|
6988
|
-
rowDataKey: {
|
|
6989
|
-
type: import("vue").PropType<string>;
|
|
6990
|
-
default: string;
|
|
6991
|
-
};
|
|
6992
|
-
isSelectionSticky: {
|
|
6993
|
-
type: import("vue").PropType<boolean>;
|
|
6994
|
-
default: boolean;
|
|
6995
|
-
};
|
|
6996
|
-
isSelectionBordered: {
|
|
6879
|
+
standalone: {
|
|
6997
6880
|
type: import("vue").PropType<boolean>;
|
|
6998
6881
|
default: boolean;
|
|
6999
6882
|
};
|
|
7000
6883
|
}>> & {
|
|
7001
|
-
onSelectAll?: (value: boolean) => any;
|
|
7002
|
-
onLoadMore?: () => any;
|
|
7003
6884
|
"onUpdate:search"?: (query: string) => any;
|
|
7004
|
-
onOnScroll?: (event: Event) => any;
|
|
7005
|
-
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
7006
|
-
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
7007
6885
|
onOnClearSearch?: () => any;
|
|
7008
|
-
|
|
7009
|
-
onSelectRow?: (value: boolean) => any;
|
|
7010
|
-
onClickRow?: (rowIndex: number) => any;
|
|
7011
|
-
}, {
|
|
7012
|
-
scrollTo: (index: number) => void;
|
|
7013
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7014
|
-
"update:sort": (newSort: tableV3.Sort) => void;
|
|
6886
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7015
6887
|
"update:search": (query: string) => void;
|
|
7016
|
-
"update:selection": (selection: unknown[]) => void;
|
|
7017
|
-
onScroll: (event: Event) => void;
|
|
7018
6888
|
onClearSearch: () => void;
|
|
7019
|
-
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
|
|
7020
|
-
loadMore: () => void;
|
|
7021
|
-
selectAll: (value: boolean) => void;
|
|
7022
|
-
selectRow: (value: boolean) => void;
|
|
7023
|
-
clickRow: (rowIndex: number) => void;
|
|
7024
6889
|
}, string, {
|
|
7025
|
-
sort: tableV3.Sort;
|
|
7026
6890
|
title: string;
|
|
7027
6891
|
search: string;
|
|
7028
6892
|
testId: string;
|
|
7029
|
-
isLoading: boolean;
|
|
7030
6893
|
searchAutoFocus: boolean;
|
|
7031
6894
|
searchPlaceholder: string;
|
|
7032
|
-
selection: unknown[];
|
|
7033
6895
|
showSearch: boolean;
|
|
7034
|
-
loadingRowCount: number;
|
|
7035
|
-
emptyStateTitle: string;
|
|
7036
6896
|
isSticky: boolean;
|
|
7037
6897
|
zIndexBase: number;
|
|
7038
|
-
|
|
7039
|
-
isStickyHeader: boolean;
|
|
7040
|
-
emptyStateSubtitle: string;
|
|
7041
|
-
isInfiniteScroll: boolean;
|
|
7042
|
-
infiniteScrollThreshold: number;
|
|
7043
|
-
rowHeight: number | ((index: number) => number);
|
|
7044
|
-
defaultScrollPosition: number;
|
|
7045
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
7046
|
-
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
7047
|
-
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
7048
|
-
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
7049
|
-
helpTooltipVariant: "icon" | "underline";
|
|
7050
|
-
rowCustomClassKey: string;
|
|
7051
|
-
rowDataKey: string;
|
|
7052
|
-
isSelectionSticky: boolean;
|
|
7053
|
-
isSelectionBordered: boolean;
|
|
6898
|
+
standalone: boolean;
|
|
7054
6899
|
}, {}, string> & {
|
|
7055
6900
|
beforeCreate?: (() => void) | (() => void)[];
|
|
7056
6901
|
created?: (() => void) | (() => void)[];
|
|
@@ -7072,10 +6917,6 @@ declare const _default: {
|
|
|
7072
6917
|
$nextTick: typeof import("vue").nextTick;
|
|
7073
6918
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
7074
6919
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
7075
|
-
sort: {
|
|
7076
|
-
type: import("vue").PropType<tableV3.Sort>;
|
|
7077
|
-
default: any;
|
|
7078
|
-
};
|
|
7079
6920
|
title: {
|
|
7080
6921
|
type: import("vue").PropType<string>;
|
|
7081
6922
|
default: string;
|
|
@@ -7088,14 +6929,6 @@ declare const _default: {
|
|
|
7088
6929
|
type: import("vue").PropType<string>;
|
|
7089
6930
|
default: string;
|
|
7090
6931
|
};
|
|
7091
|
-
columns: {
|
|
7092
|
-
type: import("vue").PropType<tableV3.Column[]>;
|
|
7093
|
-
required: true;
|
|
7094
|
-
};
|
|
7095
|
-
isLoading: {
|
|
7096
|
-
type: import("vue").PropType<boolean>;
|
|
7097
|
-
default: boolean;
|
|
7098
|
-
};
|
|
7099
6932
|
searchAutoFocus: {
|
|
7100
6933
|
type: import("vue").PropType<boolean>;
|
|
7101
6934
|
default: boolean;
|
|
@@ -7104,22 +6937,10 @@ declare const _default: {
|
|
|
7104
6937
|
type: import("vue").PropType<string>;
|
|
7105
6938
|
default: string;
|
|
7106
6939
|
};
|
|
7107
|
-
selection: {
|
|
7108
|
-
type: import("vue").PropType<unknown[]>;
|
|
7109
|
-
default: any;
|
|
7110
|
-
};
|
|
7111
6940
|
showSearch: {
|
|
7112
6941
|
type: import("vue").PropType<boolean>;
|
|
7113
6942
|
default: boolean;
|
|
7114
6943
|
};
|
|
7115
|
-
loadingRowCount: {
|
|
7116
|
-
type: import("vue").PropType<number>;
|
|
7117
|
-
default: number;
|
|
7118
|
-
};
|
|
7119
|
-
emptyStateTitle: {
|
|
7120
|
-
type: import("vue").PropType<string>;
|
|
7121
|
-
default: string;
|
|
7122
|
-
};
|
|
7123
6944
|
isSticky: {
|
|
7124
6945
|
type: import("vue").PropType<boolean>;
|
|
7125
6946
|
default: boolean;
|
|
@@ -7128,99 +6949,18 @@ declare const _default: {
|
|
|
7128
6949
|
type: import("vue").PropType<number>;
|
|
7129
6950
|
default: number;
|
|
7130
6951
|
};
|
|
7131
|
-
|
|
7132
|
-
type: import("vue").PropType<import("./components/table/common/Table.types").Row[]>;
|
|
7133
|
-
required: true;
|
|
7134
|
-
};
|
|
7135
|
-
sections: {
|
|
7136
|
-
type: import("vue").PropType<import("./components/table/common/Table.types").Section[]>;
|
|
7137
|
-
default: any;
|
|
7138
|
-
};
|
|
7139
|
-
isStickyHeader: {
|
|
7140
|
-
type: import("vue").PropType<boolean>;
|
|
7141
|
-
default: boolean;
|
|
7142
|
-
};
|
|
7143
|
-
emptyStateSubtitle: {
|
|
7144
|
-
type: import("vue").PropType<string>;
|
|
7145
|
-
default: string;
|
|
7146
|
-
};
|
|
7147
|
-
isInfiniteScroll: {
|
|
7148
|
-
type: import("vue").PropType<boolean>;
|
|
7149
|
-
default: boolean;
|
|
7150
|
-
};
|
|
7151
|
-
infiniteScrollThreshold: {
|
|
7152
|
-
type: import("vue").PropType<number>;
|
|
7153
|
-
default: number;
|
|
7154
|
-
};
|
|
7155
|
-
rowHeight: {
|
|
7156
|
-
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7157
|
-
default: number;
|
|
7158
|
-
};
|
|
7159
|
-
defaultScrollPosition: {
|
|
7160
|
-
type: import("vue").PropType<number>;
|
|
7161
|
-
default: any;
|
|
7162
|
-
};
|
|
7163
|
-
getRowId: {
|
|
7164
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
7165
|
-
default: (row: any, index: any) => any;
|
|
7166
|
-
};
|
|
7167
|
-
getRowKey: {
|
|
7168
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7169
|
-
default: (row: any, index: any) => any;
|
|
7170
|
-
};
|
|
7171
|
-
selectedMatcher: {
|
|
7172
|
-
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
7173
|
-
default: (rowId: any, selectedItem: any) => boolean;
|
|
7174
|
-
};
|
|
7175
|
-
emptyStateVariant: {
|
|
7176
|
-
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
7177
|
-
default: any;
|
|
7178
|
-
};
|
|
7179
|
-
showTotalsRow: {
|
|
7180
|
-
type: import("vue").PropType<boolean>;
|
|
7181
|
-
};
|
|
7182
|
-
helpTooltipVariant: {
|
|
7183
|
-
type: import("vue").PropType<"icon" | "underline">;
|
|
7184
|
-
default: string;
|
|
7185
|
-
};
|
|
7186
|
-
rowCustomClassKey: {
|
|
7187
|
-
type: import("vue").PropType<string>;
|
|
7188
|
-
default: string;
|
|
7189
|
-
};
|
|
7190
|
-
rowDataKey: {
|
|
7191
|
-
type: import("vue").PropType<string>;
|
|
7192
|
-
default: string;
|
|
7193
|
-
};
|
|
7194
|
-
isSelectionSticky: {
|
|
7195
|
-
type: import("vue").PropType<boolean>;
|
|
7196
|
-
default: boolean;
|
|
7197
|
-
};
|
|
7198
|
-
isSelectionBordered: {
|
|
6952
|
+
standalone: {
|
|
7199
6953
|
type: import("vue").PropType<boolean>;
|
|
7200
6954
|
default: boolean;
|
|
7201
6955
|
};
|
|
7202
6956
|
}>> & {
|
|
7203
|
-
onSelectAll?: (value: boolean) => any;
|
|
7204
|
-
onLoadMore?: () => any;
|
|
7205
6957
|
"onUpdate:search"?: (query: string) => any;
|
|
7206
|
-
onOnScroll?: (event: Event) => any;
|
|
7207
|
-
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
7208
|
-
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
7209
6958
|
onOnClearSearch?: () => any;
|
|
7210
|
-
|
|
7211
|
-
onSelectRow?: (value: boolean) => any;
|
|
7212
|
-
onClickRow?: (rowIndex: number) => any;
|
|
7213
|
-
} & import("vue").ShallowUnwrapRef<{
|
|
7214
|
-
scrollTo: (index: number) => void;
|
|
7215
|
-
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
6959
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
7216
6960
|
__isFragment?: never;
|
|
7217
6961
|
__isTeleport?: never;
|
|
7218
6962
|
__isSuspense?: never;
|
|
7219
6963
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
7220
|
-
sort: {
|
|
7221
|
-
type: import("vue").PropType<tableV3.Sort>;
|
|
7222
|
-
default: any;
|
|
7223
|
-
};
|
|
7224
6964
|
title: {
|
|
7225
6965
|
type: import("vue").PropType<string>;
|
|
7226
6966
|
default: string;
|
|
@@ -7233,14 +6973,6 @@ declare const _default: {
|
|
|
7233
6973
|
type: import("vue").PropType<string>;
|
|
7234
6974
|
default: string;
|
|
7235
6975
|
};
|
|
7236
|
-
columns: {
|
|
7237
|
-
type: import("vue").PropType<tableV3.Column[]>;
|
|
7238
|
-
required: true;
|
|
7239
|
-
};
|
|
7240
|
-
isLoading: {
|
|
7241
|
-
type: import("vue").PropType<boolean>;
|
|
7242
|
-
default: boolean;
|
|
7243
|
-
};
|
|
7244
6976
|
searchAutoFocus: {
|
|
7245
6977
|
type: import("vue").PropType<boolean>;
|
|
7246
6978
|
default: boolean;
|
|
@@ -7249,22 +6981,10 @@ declare const _default: {
|
|
|
7249
6981
|
type: import("vue").PropType<string>;
|
|
7250
6982
|
default: string;
|
|
7251
6983
|
};
|
|
7252
|
-
selection: {
|
|
7253
|
-
type: import("vue").PropType<unknown[]>;
|
|
7254
|
-
default: any;
|
|
7255
|
-
};
|
|
7256
6984
|
showSearch: {
|
|
7257
6985
|
type: import("vue").PropType<boolean>;
|
|
7258
6986
|
default: boolean;
|
|
7259
6987
|
};
|
|
7260
|
-
loadingRowCount: {
|
|
7261
|
-
type: import("vue").PropType<number>;
|
|
7262
|
-
default: number;
|
|
7263
|
-
};
|
|
7264
|
-
emptyStateTitle: {
|
|
7265
|
-
type: import("vue").PropType<string>;
|
|
7266
|
-
default: string;
|
|
7267
|
-
};
|
|
7268
6988
|
isSticky: {
|
|
7269
6989
|
type: import("vue").PropType<boolean>;
|
|
7270
6990
|
default: boolean;
|
|
@@ -7273,207 +6993,1220 @@ declare const _default: {
|
|
|
7273
6993
|
type: import("vue").PropType<number>;
|
|
7274
6994
|
default: number;
|
|
7275
6995
|
};
|
|
7276
|
-
|
|
7277
|
-
type: import("vue").PropType<import("./components/table/common/Table.types").Row[]>;
|
|
7278
|
-
required: true;
|
|
7279
|
-
};
|
|
7280
|
-
sections: {
|
|
7281
|
-
type: import("vue").PropType<import("./components/table/common/Table.types").Section[]>;
|
|
7282
|
-
default: any;
|
|
7283
|
-
};
|
|
7284
|
-
isStickyHeader: {
|
|
7285
|
-
type: import("vue").PropType<boolean>;
|
|
7286
|
-
default: boolean;
|
|
7287
|
-
};
|
|
7288
|
-
emptyStateSubtitle: {
|
|
7289
|
-
type: import("vue").PropType<string>;
|
|
7290
|
-
default: string;
|
|
7291
|
-
};
|
|
7292
|
-
isInfiniteScroll: {
|
|
7293
|
-
type: import("vue").PropType<boolean>;
|
|
7294
|
-
default: boolean;
|
|
7295
|
-
};
|
|
7296
|
-
infiniteScrollThreshold: {
|
|
7297
|
-
type: import("vue").PropType<number>;
|
|
7298
|
-
default: number;
|
|
7299
|
-
};
|
|
7300
|
-
rowHeight: {
|
|
7301
|
-
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7302
|
-
default: number;
|
|
7303
|
-
};
|
|
7304
|
-
defaultScrollPosition: {
|
|
7305
|
-
type: import("vue").PropType<number>;
|
|
7306
|
-
default: any;
|
|
7307
|
-
};
|
|
7308
|
-
getRowId: {
|
|
7309
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
7310
|
-
default: (row: any, index: any) => any;
|
|
7311
|
-
};
|
|
7312
|
-
getRowKey: {
|
|
7313
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7314
|
-
default: (row: any, index: any) => any;
|
|
7315
|
-
};
|
|
7316
|
-
selectedMatcher: {
|
|
7317
|
-
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
7318
|
-
default: (rowId: any, selectedItem: any) => boolean;
|
|
7319
|
-
};
|
|
7320
|
-
emptyStateVariant: {
|
|
7321
|
-
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
7322
|
-
default: any;
|
|
7323
|
-
};
|
|
7324
|
-
showTotalsRow: {
|
|
7325
|
-
type: import("vue").PropType<boolean>;
|
|
7326
|
-
};
|
|
7327
|
-
helpTooltipVariant: {
|
|
7328
|
-
type: import("vue").PropType<"icon" | "underline">;
|
|
7329
|
-
default: string;
|
|
7330
|
-
};
|
|
7331
|
-
rowCustomClassKey: {
|
|
7332
|
-
type: import("vue").PropType<string>;
|
|
7333
|
-
default: string;
|
|
7334
|
-
};
|
|
7335
|
-
rowDataKey: {
|
|
7336
|
-
type: import("vue").PropType<string>;
|
|
7337
|
-
default: string;
|
|
7338
|
-
};
|
|
7339
|
-
isSelectionSticky: {
|
|
7340
|
-
type: import("vue").PropType<boolean>;
|
|
7341
|
-
default: boolean;
|
|
7342
|
-
};
|
|
7343
|
-
isSelectionBordered: {
|
|
6996
|
+
standalone: {
|
|
7344
6997
|
type: import("vue").PropType<boolean>;
|
|
7345
6998
|
default: boolean;
|
|
7346
6999
|
};
|
|
7347
7000
|
}>> & {
|
|
7348
|
-
onSelectAll?: (value: boolean) => any;
|
|
7349
|
-
onLoadMore?: () => any;
|
|
7350
7001
|
"onUpdate:search"?: (query: string) => any;
|
|
7351
|
-
onOnScroll?: (event: Event) => any;
|
|
7352
|
-
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
7353
|
-
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
7354
7002
|
onOnClearSearch?: () => any;
|
|
7355
|
-
|
|
7356
|
-
onSelectRow?: (value: boolean) => any;
|
|
7357
|
-
onClickRow?: (rowIndex: number) => any;
|
|
7358
|
-
}, {
|
|
7359
|
-
scrollTo: (index: number) => void;
|
|
7360
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7361
|
-
"update:sort": (newSort: tableV3.Sort) => void;
|
|
7003
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7362
7004
|
"update:search": (query: string) => void;
|
|
7363
|
-
"update:selection": (selection: unknown[]) => void;
|
|
7364
|
-
onScroll: (event: Event) => void;
|
|
7365
7005
|
onClearSearch: () => void;
|
|
7366
|
-
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
|
|
7367
|
-
loadMore: () => void;
|
|
7368
|
-
selectAll: (value: boolean) => void;
|
|
7369
|
-
selectRow: (value: boolean) => void;
|
|
7370
|
-
clickRow: (rowIndex: number) => void;
|
|
7371
7006
|
}, string, {
|
|
7372
|
-
sort: tableV3.Sort;
|
|
7373
7007
|
title: string;
|
|
7374
7008
|
search: string;
|
|
7375
7009
|
testId: string;
|
|
7376
|
-
isLoading: boolean;
|
|
7377
7010
|
searchAutoFocus: boolean;
|
|
7378
7011
|
searchPlaceholder: string;
|
|
7379
|
-
selection: unknown[];
|
|
7380
7012
|
showSearch: boolean;
|
|
7381
|
-
loadingRowCount: number;
|
|
7382
|
-
emptyStateTitle: string;
|
|
7383
7013
|
isSticky: boolean;
|
|
7384
7014
|
zIndexBase: number;
|
|
7385
|
-
|
|
7386
|
-
isStickyHeader: boolean;
|
|
7387
|
-
emptyStateSubtitle: string;
|
|
7388
|
-
isInfiniteScroll: boolean;
|
|
7389
|
-
infiniteScrollThreshold: number;
|
|
7390
|
-
rowHeight: number | ((index: number) => number);
|
|
7391
|
-
defaultScrollPosition: number;
|
|
7392
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
7393
|
-
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
7394
|
-
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
7395
|
-
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
7396
|
-
helpTooltipVariant: "icon" | "underline";
|
|
7397
|
-
rowCustomClassKey: string;
|
|
7398
|
-
rowDataKey: string;
|
|
7399
|
-
isSelectionSticky: boolean;
|
|
7400
|
-
isSelectionBordered: boolean;
|
|
7015
|
+
standalone: boolean;
|
|
7401
7016
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
7402
|
-
$slots:
|
|
7403
|
-
column: tableV3.Column;
|
|
7404
|
-
}) => any>> & Partial<Record<`after-header-${string}`, (_: {
|
|
7405
|
-
column: tableV3.Column;
|
|
7406
|
-
}) => any>> & Partial<Record<`total-${string}`, (_: {
|
|
7407
|
-
column: tableV3.Column;
|
|
7408
|
-
}) => any>> & Partial<Record<`cell-${string}`, (_: {
|
|
7409
|
-
cell: unknown;
|
|
7410
|
-
isLoading: boolean;
|
|
7411
|
-
cellIndex: number;
|
|
7412
|
-
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
7413
|
-
rowIndex: number;
|
|
7414
|
-
}) => any>> & {
|
|
7017
|
+
$slots: {
|
|
7415
7018
|
title?(_: {}): any;
|
|
7416
7019
|
"table-header-pre-search"?(_: {}): any;
|
|
7417
7020
|
search?(_: {}): any;
|
|
7418
7021
|
"table-header-actions"?(_: {}): any;
|
|
7419
|
-
"select-all-checkbox"?(_: {}): any;
|
|
7420
|
-
loader?(_: {}): any;
|
|
7421
|
-
expanded?(_: {
|
|
7422
|
-
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
7423
|
-
gridColumnTemplate: any;
|
|
7424
|
-
}): any;
|
|
7425
|
-
"floating-row"?(_: {
|
|
7426
|
-
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
7427
|
-
rowIndex: number;
|
|
7428
|
-
}): any;
|
|
7429
|
-
"empty-state"?(_: {}): any;
|
|
7430
|
-
footer?(_: {}): any;
|
|
7431
7022
|
};
|
|
7432
|
-
})) |
|
|
7433
|
-
|
|
7434
|
-
|
|
7023
|
+
})) | ({
|
|
7024
|
+
new (...args: any[]): {
|
|
7025
|
+
$: import("vue").ComponentInternalInstance;
|
|
7026
|
+
$data: {};
|
|
7027
|
+
$props: Partial<{
|
|
7028
|
+
sort: tableV3.Sort;
|
|
7029
|
+
title: string;
|
|
7030
|
+
search: string;
|
|
7031
|
+
testId: string;
|
|
7032
|
+
isLoading: boolean;
|
|
7033
|
+
searchAutoFocus: boolean;
|
|
7034
|
+
searchPlaceholder: string;
|
|
7035
|
+
selection: unknown[];
|
|
7036
|
+
showSearch: boolean;
|
|
7037
|
+
loadingRowCount: number;
|
|
7038
|
+
emptyStateTitle: string;
|
|
7039
|
+
isSticky: boolean;
|
|
7040
|
+
zIndexBase: number;
|
|
7041
|
+
sections: import("./components/table/common/Table.types").Section[];
|
|
7042
|
+
isStickyHeader: boolean;
|
|
7043
|
+
emptyStateSubtitle: string;
|
|
7044
|
+
isInfiniteScroll: boolean;
|
|
7045
|
+
infiniteScrollThreshold: number;
|
|
7046
|
+
rowHeight: number | ((index: number) => number);
|
|
7047
|
+
defaultScrollPosition: number;
|
|
7048
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
7049
|
+
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
7050
|
+
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
7051
|
+
rowCustomClassKey: string;
|
|
7052
|
+
rowDataKey: string;
|
|
7053
|
+
helpTooltipVariant: "icon" | "underline";
|
|
7054
|
+
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
7055
|
+
isSelectionSticky: boolean;
|
|
7056
|
+
isSelectionBordered: boolean;
|
|
7057
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
7058
|
+
sort: {
|
|
7059
|
+
type: import("vue").PropType<tableV3.Sort>;
|
|
7060
|
+
default: any;
|
|
7061
|
+
};
|
|
7062
|
+
title: {
|
|
7063
|
+
type: import("vue").PropType<string>;
|
|
7064
|
+
default: string;
|
|
7065
|
+
};
|
|
7066
|
+
search: {
|
|
7067
|
+
type: import("vue").PropType<string>;
|
|
7068
|
+
default: any;
|
|
7069
|
+
};
|
|
7070
|
+
testId: {
|
|
7071
|
+
type: import("vue").PropType<string>;
|
|
7072
|
+
default: string;
|
|
7073
|
+
};
|
|
7074
|
+
columns: {
|
|
7075
|
+
type: import("vue").PropType<tableV3.Column[]>;
|
|
7076
|
+
required: true;
|
|
7077
|
+
};
|
|
7078
|
+
isLoading: {
|
|
7079
|
+
type: import("vue").PropType<boolean>;
|
|
7080
|
+
default: boolean;
|
|
7081
|
+
};
|
|
7082
|
+
searchAutoFocus: {
|
|
7083
|
+
type: import("vue").PropType<boolean>;
|
|
7084
|
+
default: boolean;
|
|
7085
|
+
};
|
|
7086
|
+
searchPlaceholder: {
|
|
7087
|
+
type: import("vue").PropType<string>;
|
|
7088
|
+
default: string;
|
|
7089
|
+
};
|
|
7090
|
+
selection: {
|
|
7091
|
+
type: import("vue").PropType<unknown[]>;
|
|
7092
|
+
default: any;
|
|
7093
|
+
};
|
|
7094
|
+
showSearch: {
|
|
7095
|
+
type: import("vue").PropType<boolean>;
|
|
7096
|
+
default: boolean;
|
|
7097
|
+
};
|
|
7098
|
+
loadingRowCount: {
|
|
7099
|
+
type: import("vue").PropType<number>;
|
|
7100
|
+
default: number;
|
|
7101
|
+
};
|
|
7102
|
+
emptyStateTitle: {
|
|
7103
|
+
type: import("vue").PropType<string>;
|
|
7104
|
+
default: string;
|
|
7105
|
+
};
|
|
7106
|
+
isSticky: {
|
|
7107
|
+
type: import("vue").PropType<boolean>;
|
|
7108
|
+
default: boolean;
|
|
7109
|
+
};
|
|
7110
|
+
zIndexBase: {
|
|
7111
|
+
type: import("vue").PropType<number>;
|
|
7112
|
+
default: number;
|
|
7113
|
+
};
|
|
7114
|
+
rows: {
|
|
7115
|
+
type: import("vue").PropType<import("./components/table/common/Table.types").Row[]>;
|
|
7116
|
+
required: true;
|
|
7117
|
+
};
|
|
7118
|
+
sections: {
|
|
7119
|
+
type: import("vue").PropType<import("./components/table/common/Table.types").Section[]>;
|
|
7120
|
+
default: any;
|
|
7121
|
+
};
|
|
7122
|
+
isStickyHeader: {
|
|
7123
|
+
type: import("vue").PropType<boolean>;
|
|
7124
|
+
default: boolean;
|
|
7125
|
+
};
|
|
7126
|
+
emptyStateSubtitle: {
|
|
7127
|
+
type: import("vue").PropType<string>;
|
|
7128
|
+
default: string;
|
|
7129
|
+
};
|
|
7130
|
+
isInfiniteScroll: {
|
|
7131
|
+
type: import("vue").PropType<boolean>;
|
|
7132
|
+
default: boolean;
|
|
7133
|
+
};
|
|
7134
|
+
infiniteScrollThreshold: {
|
|
7135
|
+
type: import("vue").PropType<number>;
|
|
7136
|
+
default: number;
|
|
7137
|
+
};
|
|
7138
|
+
rowHeight: {
|
|
7139
|
+
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7140
|
+
default: number;
|
|
7141
|
+
};
|
|
7142
|
+
defaultScrollPosition: {
|
|
7143
|
+
type: import("vue").PropType<number>;
|
|
7144
|
+
default: any;
|
|
7145
|
+
};
|
|
7146
|
+
getRowId: {
|
|
7147
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
7148
|
+
default: (row: any, index: any) => any;
|
|
7149
|
+
};
|
|
7150
|
+
getRowKey: {
|
|
7151
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7152
|
+
default: (row: any, index: any) => any;
|
|
7153
|
+
};
|
|
7154
|
+
emptyStateVariant: {
|
|
7155
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
7156
|
+
default: any;
|
|
7157
|
+
};
|
|
7158
|
+
rowCustomClassKey: {
|
|
7159
|
+
type: import("vue").PropType<string>;
|
|
7160
|
+
default: string;
|
|
7161
|
+
};
|
|
7162
|
+
rowDataKey: {
|
|
7163
|
+
type: import("vue").PropType<string>;
|
|
7164
|
+
default: string;
|
|
7165
|
+
};
|
|
7166
|
+
helpTooltipVariant: {
|
|
7167
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
7168
|
+
default: string;
|
|
7169
|
+
};
|
|
7170
|
+
selectedMatcher: {
|
|
7171
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
7172
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
7173
|
+
};
|
|
7174
|
+
isSelectionSticky: {
|
|
7175
|
+
type: import("vue").PropType<boolean>;
|
|
7176
|
+
default: boolean;
|
|
7177
|
+
};
|
|
7178
|
+
isSelectionBordered: {
|
|
7179
|
+
type: import("vue").PropType<boolean>;
|
|
7180
|
+
default: boolean;
|
|
7181
|
+
};
|
|
7182
|
+
showTotalsRow: {
|
|
7183
|
+
type: import("vue").PropType<boolean>;
|
|
7184
|
+
};
|
|
7185
|
+
}>> & {
|
|
7186
|
+
onSelectAll?: (value: boolean) => any;
|
|
7187
|
+
onLoadMore?: () => any;
|
|
7188
|
+
"onUpdate:search"?: (query: string) => any;
|
|
7189
|
+
onOnScroll?: (event: Event) => any;
|
|
7190
|
+
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
7191
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
7192
|
+
onOnClearSearch?: () => any;
|
|
7193
|
+
onClickRow?: (rowIndex: number) => any;
|
|
7194
|
+
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
7195
|
+
onSelectRow?: (value: boolean) => any;
|
|
7196
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "emptyStateVariant" | "rowCustomClassKey" | "rowDataKey" | "helpTooltipVariant" | "selectedMatcher" | "isSelectionSticky" | "isSelectionBordered">;
|
|
7197
|
+
$attrs: {
|
|
7198
|
+
[x: string]: unknown;
|
|
7199
|
+
};
|
|
7200
|
+
$refs: {
|
|
7201
|
+
[x: string]: unknown;
|
|
7202
|
+
};
|
|
7203
|
+
$slots: Readonly<{
|
|
7204
|
+
[name: string]: import("vue").Slot;
|
|
7205
|
+
}>;
|
|
7206
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
7207
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
7208
|
+
$emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "loadMore") => void) & ((event: "onClearSearch") => void) & ((event: "update:search", query: string) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "clickRow", rowIndex: number) => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void);
|
|
7209
|
+
$el: any;
|
|
7210
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
7211
|
+
sort: {
|
|
7212
|
+
type: import("vue").PropType<tableV3.Sort>;
|
|
7213
|
+
default: any;
|
|
7214
|
+
};
|
|
7215
|
+
title: {
|
|
7216
|
+
type: import("vue").PropType<string>;
|
|
7217
|
+
default: string;
|
|
7218
|
+
};
|
|
7219
|
+
search: {
|
|
7220
|
+
type: import("vue").PropType<string>;
|
|
7221
|
+
default: any;
|
|
7222
|
+
};
|
|
7223
|
+
testId: {
|
|
7224
|
+
type: import("vue").PropType<string>;
|
|
7225
|
+
default: string;
|
|
7226
|
+
};
|
|
7227
|
+
columns: {
|
|
7228
|
+
type: import("vue").PropType<tableV3.Column[]>;
|
|
7229
|
+
required: true;
|
|
7230
|
+
};
|
|
7231
|
+
isLoading: {
|
|
7232
|
+
type: import("vue").PropType<boolean>;
|
|
7233
|
+
default: boolean;
|
|
7234
|
+
};
|
|
7235
|
+
searchAutoFocus: {
|
|
7236
|
+
type: import("vue").PropType<boolean>;
|
|
7237
|
+
default: boolean;
|
|
7238
|
+
};
|
|
7239
|
+
searchPlaceholder: {
|
|
7240
|
+
type: import("vue").PropType<string>;
|
|
7241
|
+
default: string;
|
|
7242
|
+
};
|
|
7243
|
+
selection: {
|
|
7244
|
+
type: import("vue").PropType<unknown[]>;
|
|
7245
|
+
default: any;
|
|
7246
|
+
};
|
|
7247
|
+
showSearch: {
|
|
7248
|
+
type: import("vue").PropType<boolean>;
|
|
7249
|
+
default: boolean;
|
|
7250
|
+
};
|
|
7251
|
+
loadingRowCount: {
|
|
7252
|
+
type: import("vue").PropType<number>;
|
|
7253
|
+
default: number;
|
|
7254
|
+
};
|
|
7255
|
+
emptyStateTitle: {
|
|
7256
|
+
type: import("vue").PropType<string>;
|
|
7257
|
+
default: string;
|
|
7258
|
+
};
|
|
7259
|
+
isSticky: {
|
|
7260
|
+
type: import("vue").PropType<boolean>;
|
|
7261
|
+
default: boolean;
|
|
7262
|
+
};
|
|
7263
|
+
zIndexBase: {
|
|
7264
|
+
type: import("vue").PropType<number>;
|
|
7265
|
+
default: number;
|
|
7266
|
+
};
|
|
7267
|
+
rows: {
|
|
7268
|
+
type: import("vue").PropType<import("./components/table/common/Table.types").Row[]>;
|
|
7269
|
+
required: true;
|
|
7270
|
+
};
|
|
7271
|
+
sections: {
|
|
7272
|
+
type: import("vue").PropType<import("./components/table/common/Table.types").Section[]>;
|
|
7273
|
+
default: any;
|
|
7274
|
+
};
|
|
7275
|
+
isStickyHeader: {
|
|
7276
|
+
type: import("vue").PropType<boolean>;
|
|
7277
|
+
default: boolean;
|
|
7278
|
+
};
|
|
7279
|
+
emptyStateSubtitle: {
|
|
7280
|
+
type: import("vue").PropType<string>;
|
|
7281
|
+
default: string;
|
|
7282
|
+
};
|
|
7283
|
+
isInfiniteScroll: {
|
|
7284
|
+
type: import("vue").PropType<boolean>;
|
|
7285
|
+
default: boolean;
|
|
7286
|
+
};
|
|
7287
|
+
infiniteScrollThreshold: {
|
|
7288
|
+
type: import("vue").PropType<number>;
|
|
7289
|
+
default: number;
|
|
7290
|
+
};
|
|
7291
|
+
rowHeight: {
|
|
7292
|
+
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7293
|
+
default: number;
|
|
7294
|
+
};
|
|
7295
|
+
defaultScrollPosition: {
|
|
7296
|
+
type: import("vue").PropType<number>;
|
|
7297
|
+
default: any;
|
|
7298
|
+
};
|
|
7299
|
+
getRowId: {
|
|
7300
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
7301
|
+
default: (row: any, index: any) => any;
|
|
7302
|
+
};
|
|
7303
|
+
getRowKey: {
|
|
7304
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7305
|
+
default: (row: any, index: any) => any;
|
|
7306
|
+
};
|
|
7307
|
+
emptyStateVariant: {
|
|
7308
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
7309
|
+
default: any;
|
|
7310
|
+
};
|
|
7311
|
+
rowCustomClassKey: {
|
|
7312
|
+
type: import("vue").PropType<string>;
|
|
7313
|
+
default: string;
|
|
7314
|
+
};
|
|
7315
|
+
rowDataKey: {
|
|
7316
|
+
type: import("vue").PropType<string>;
|
|
7317
|
+
default: string;
|
|
7318
|
+
};
|
|
7319
|
+
helpTooltipVariant: {
|
|
7320
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
7321
|
+
default: string;
|
|
7322
|
+
};
|
|
7323
|
+
selectedMatcher: {
|
|
7324
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
7325
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
7326
|
+
};
|
|
7327
|
+
isSelectionSticky: {
|
|
7328
|
+
type: import("vue").PropType<boolean>;
|
|
7329
|
+
default: boolean;
|
|
7330
|
+
};
|
|
7331
|
+
isSelectionBordered: {
|
|
7332
|
+
type: import("vue").PropType<boolean>;
|
|
7333
|
+
default: boolean;
|
|
7334
|
+
};
|
|
7335
|
+
showTotalsRow: {
|
|
7336
|
+
type: import("vue").PropType<boolean>;
|
|
7337
|
+
};
|
|
7338
|
+
}>> & {
|
|
7339
|
+
onSelectAll?: (value: boolean) => any;
|
|
7340
|
+
onLoadMore?: () => any;
|
|
7341
|
+
"onUpdate:search"?: (query: string) => any;
|
|
7342
|
+
onOnScroll?: (event: Event) => any;
|
|
7343
|
+
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
7344
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
7345
|
+
onOnClearSearch?: () => any;
|
|
7346
|
+
onClickRow?: (rowIndex: number) => any;
|
|
7347
|
+
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
7348
|
+
onSelectRow?: (value: boolean) => any;
|
|
7349
|
+
}, {
|
|
7350
|
+
scrollTo: (index: number) => void;
|
|
7351
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7352
|
+
"update:sort": (newSort: tableV3.Sort) => void;
|
|
7353
|
+
"update:search": (query: string) => void;
|
|
7354
|
+
"update:selection": (selection: unknown[]) => void;
|
|
7355
|
+
onScroll: (event: Event) => void;
|
|
7356
|
+
onClearSearch: () => void;
|
|
7357
|
+
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
|
|
7358
|
+
loadMore: () => void;
|
|
7359
|
+
selectAll: (value: boolean) => void;
|
|
7360
|
+
selectRow: (value: boolean) => void;
|
|
7361
|
+
clickRow: (rowIndex: number) => void;
|
|
7362
|
+
}, string, {
|
|
7363
|
+
sort: tableV3.Sort;
|
|
7364
|
+
title: string;
|
|
7365
|
+
search: string;
|
|
7366
|
+
testId: string;
|
|
7367
|
+
isLoading: boolean;
|
|
7368
|
+
searchAutoFocus: boolean;
|
|
7369
|
+
searchPlaceholder: string;
|
|
7370
|
+
selection: unknown[];
|
|
7371
|
+
showSearch: boolean;
|
|
7372
|
+
loadingRowCount: number;
|
|
7373
|
+
emptyStateTitle: string;
|
|
7374
|
+
isSticky: boolean;
|
|
7375
|
+
zIndexBase: number;
|
|
7376
|
+
sections: import("./components/table/common/Table.types").Section[];
|
|
7377
|
+
isStickyHeader: boolean;
|
|
7378
|
+
emptyStateSubtitle: string;
|
|
7379
|
+
isInfiniteScroll: boolean;
|
|
7380
|
+
infiniteScrollThreshold: number;
|
|
7381
|
+
rowHeight: number | ((index: number) => number);
|
|
7382
|
+
defaultScrollPosition: number;
|
|
7383
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
7384
|
+
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
7385
|
+
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
7386
|
+
rowCustomClassKey: string;
|
|
7387
|
+
rowDataKey: string;
|
|
7388
|
+
helpTooltipVariant: "icon" | "underline";
|
|
7389
|
+
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
7390
|
+
isSelectionSticky: boolean;
|
|
7391
|
+
isSelectionBordered: boolean;
|
|
7392
|
+
}, {}, string> & {
|
|
7393
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
7394
|
+
created?: (() => void) | (() => void)[];
|
|
7395
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
7396
|
+
mounted?: (() => void) | (() => void)[];
|
|
7397
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
7398
|
+
updated?: (() => void) | (() => void)[];
|
|
7399
|
+
activated?: (() => void) | (() => void)[];
|
|
7400
|
+
deactivated?: (() => void) | (() => void)[];
|
|
7401
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
7402
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
7403
|
+
destroyed?: (() => void) | (() => void)[];
|
|
7404
|
+
unmounted?: (() => void) | (() => void)[];
|
|
7405
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
7406
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
7407
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
7408
|
+
};
|
|
7409
|
+
$forceUpdate: () => void;
|
|
7410
|
+
$nextTick: typeof import("vue").nextTick;
|
|
7411
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
7412
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
7413
|
+
sort: {
|
|
7414
|
+
type: import("vue").PropType<tableV3.Sort>;
|
|
7415
|
+
default: any;
|
|
7416
|
+
};
|
|
7417
|
+
title: {
|
|
7418
|
+
type: import("vue").PropType<string>;
|
|
7419
|
+
default: string;
|
|
7420
|
+
};
|
|
7421
|
+
search: {
|
|
7422
|
+
type: import("vue").PropType<string>;
|
|
7423
|
+
default: any;
|
|
7424
|
+
};
|
|
7425
|
+
testId: {
|
|
7426
|
+
type: import("vue").PropType<string>;
|
|
7427
|
+
default: string;
|
|
7428
|
+
};
|
|
7429
|
+
columns: {
|
|
7430
|
+
type: import("vue").PropType<tableV3.Column[]>;
|
|
7431
|
+
required: true;
|
|
7432
|
+
};
|
|
7433
|
+
isLoading: {
|
|
7434
|
+
type: import("vue").PropType<boolean>;
|
|
7435
|
+
default: boolean;
|
|
7436
|
+
};
|
|
7437
|
+
searchAutoFocus: {
|
|
7438
|
+
type: import("vue").PropType<boolean>;
|
|
7439
|
+
default: boolean;
|
|
7440
|
+
};
|
|
7441
|
+
searchPlaceholder: {
|
|
7442
|
+
type: import("vue").PropType<string>;
|
|
7443
|
+
default: string;
|
|
7444
|
+
};
|
|
7445
|
+
selection: {
|
|
7446
|
+
type: import("vue").PropType<unknown[]>;
|
|
7447
|
+
default: any;
|
|
7448
|
+
};
|
|
7449
|
+
showSearch: {
|
|
7450
|
+
type: import("vue").PropType<boolean>;
|
|
7451
|
+
default: boolean;
|
|
7452
|
+
};
|
|
7453
|
+
loadingRowCount: {
|
|
7454
|
+
type: import("vue").PropType<number>;
|
|
7455
|
+
default: number;
|
|
7456
|
+
};
|
|
7457
|
+
emptyStateTitle: {
|
|
7458
|
+
type: import("vue").PropType<string>;
|
|
7459
|
+
default: string;
|
|
7460
|
+
};
|
|
7461
|
+
isSticky: {
|
|
7462
|
+
type: import("vue").PropType<boolean>;
|
|
7463
|
+
default: boolean;
|
|
7464
|
+
};
|
|
7465
|
+
zIndexBase: {
|
|
7466
|
+
type: import("vue").PropType<number>;
|
|
7467
|
+
default: number;
|
|
7468
|
+
};
|
|
7469
|
+
rows: {
|
|
7470
|
+
type: import("vue").PropType<import("./components/table/common/Table.types").Row[]>;
|
|
7471
|
+
required: true;
|
|
7472
|
+
};
|
|
7473
|
+
sections: {
|
|
7474
|
+
type: import("vue").PropType<import("./components/table/common/Table.types").Section[]>;
|
|
7475
|
+
default: any;
|
|
7476
|
+
};
|
|
7477
|
+
isStickyHeader: {
|
|
7478
|
+
type: import("vue").PropType<boolean>;
|
|
7479
|
+
default: boolean;
|
|
7480
|
+
};
|
|
7481
|
+
emptyStateSubtitle: {
|
|
7482
|
+
type: import("vue").PropType<string>;
|
|
7483
|
+
default: string;
|
|
7484
|
+
};
|
|
7485
|
+
isInfiniteScroll: {
|
|
7486
|
+
type: import("vue").PropType<boolean>;
|
|
7487
|
+
default: boolean;
|
|
7488
|
+
};
|
|
7489
|
+
infiniteScrollThreshold: {
|
|
7490
|
+
type: import("vue").PropType<number>;
|
|
7491
|
+
default: number;
|
|
7492
|
+
};
|
|
7493
|
+
rowHeight: {
|
|
7494
|
+
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7495
|
+
default: number;
|
|
7496
|
+
};
|
|
7497
|
+
defaultScrollPosition: {
|
|
7498
|
+
type: import("vue").PropType<number>;
|
|
7499
|
+
default: any;
|
|
7500
|
+
};
|
|
7501
|
+
getRowId: {
|
|
7502
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
7503
|
+
default: (row: any, index: any) => any;
|
|
7504
|
+
};
|
|
7505
|
+
getRowKey: {
|
|
7506
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7507
|
+
default: (row: any, index: any) => any;
|
|
7508
|
+
};
|
|
7509
|
+
emptyStateVariant: {
|
|
7510
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
7511
|
+
default: any;
|
|
7512
|
+
};
|
|
7513
|
+
rowCustomClassKey: {
|
|
7514
|
+
type: import("vue").PropType<string>;
|
|
7515
|
+
default: string;
|
|
7516
|
+
};
|
|
7517
|
+
rowDataKey: {
|
|
7518
|
+
type: import("vue").PropType<string>;
|
|
7519
|
+
default: string;
|
|
7520
|
+
};
|
|
7521
|
+
helpTooltipVariant: {
|
|
7522
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
7523
|
+
default: string;
|
|
7524
|
+
};
|
|
7525
|
+
selectedMatcher: {
|
|
7526
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
7527
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
7528
|
+
};
|
|
7529
|
+
isSelectionSticky: {
|
|
7530
|
+
type: import("vue").PropType<boolean>;
|
|
7531
|
+
default: boolean;
|
|
7532
|
+
};
|
|
7533
|
+
isSelectionBordered: {
|
|
7534
|
+
type: import("vue").PropType<boolean>;
|
|
7535
|
+
default: boolean;
|
|
7536
|
+
};
|
|
7537
|
+
showTotalsRow: {
|
|
7538
|
+
type: import("vue").PropType<boolean>;
|
|
7539
|
+
};
|
|
7540
|
+
}>> & {
|
|
7541
|
+
onSelectAll?: (value: boolean) => any;
|
|
7542
|
+
onLoadMore?: () => any;
|
|
7543
|
+
"onUpdate:search"?: (query: string) => any;
|
|
7544
|
+
onOnScroll?: (event: Event) => any;
|
|
7545
|
+
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
7546
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
7547
|
+
onOnClearSearch?: () => any;
|
|
7548
|
+
onClickRow?: (rowIndex: number) => any;
|
|
7549
|
+
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
7550
|
+
onSelectRow?: (value: boolean) => any;
|
|
7551
|
+
} & import("vue").ShallowUnwrapRef<{
|
|
7552
|
+
scrollTo: (index: number) => void;
|
|
7553
|
+
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
7554
|
+
__isFragment?: never;
|
|
7555
|
+
__isTeleport?: never;
|
|
7556
|
+
__isSuspense?: never;
|
|
7557
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
7558
|
+
sort: {
|
|
7559
|
+
type: import("vue").PropType<tableV3.Sort>;
|
|
7560
|
+
default: any;
|
|
7561
|
+
};
|
|
7562
|
+
title: {
|
|
7563
|
+
type: import("vue").PropType<string>;
|
|
7564
|
+
default: string;
|
|
7565
|
+
};
|
|
7566
|
+
search: {
|
|
7567
|
+
type: import("vue").PropType<string>;
|
|
7568
|
+
default: any;
|
|
7569
|
+
};
|
|
7570
|
+
testId: {
|
|
7571
|
+
type: import("vue").PropType<string>;
|
|
7572
|
+
default: string;
|
|
7573
|
+
};
|
|
7574
|
+
columns: {
|
|
7575
|
+
type: import("vue").PropType<tableV3.Column[]>;
|
|
7576
|
+
required: true;
|
|
7577
|
+
};
|
|
7578
|
+
isLoading: {
|
|
7579
|
+
type: import("vue").PropType<boolean>;
|
|
7580
|
+
default: boolean;
|
|
7581
|
+
};
|
|
7582
|
+
searchAutoFocus: {
|
|
7583
|
+
type: import("vue").PropType<boolean>;
|
|
7584
|
+
default: boolean;
|
|
7585
|
+
};
|
|
7586
|
+
searchPlaceholder: {
|
|
7587
|
+
type: import("vue").PropType<string>;
|
|
7588
|
+
default: string;
|
|
7589
|
+
};
|
|
7590
|
+
selection: {
|
|
7591
|
+
type: import("vue").PropType<unknown[]>;
|
|
7592
|
+
default: any;
|
|
7593
|
+
};
|
|
7594
|
+
showSearch: {
|
|
7595
|
+
type: import("vue").PropType<boolean>;
|
|
7596
|
+
default: boolean;
|
|
7597
|
+
};
|
|
7598
|
+
loadingRowCount: {
|
|
7599
|
+
type: import("vue").PropType<number>;
|
|
7600
|
+
default: number;
|
|
7601
|
+
};
|
|
7602
|
+
emptyStateTitle: {
|
|
7603
|
+
type: import("vue").PropType<string>;
|
|
7604
|
+
default: string;
|
|
7605
|
+
};
|
|
7606
|
+
isSticky: {
|
|
7607
|
+
type: import("vue").PropType<boolean>;
|
|
7608
|
+
default: boolean;
|
|
7609
|
+
};
|
|
7610
|
+
zIndexBase: {
|
|
7611
|
+
type: import("vue").PropType<number>;
|
|
7612
|
+
default: number;
|
|
7613
|
+
};
|
|
7614
|
+
rows: {
|
|
7615
|
+
type: import("vue").PropType<import("./components/table/common/Table.types").Row[]>;
|
|
7616
|
+
required: true;
|
|
7617
|
+
};
|
|
7618
|
+
sections: {
|
|
7619
|
+
type: import("vue").PropType<import("./components/table/common/Table.types").Section[]>;
|
|
7620
|
+
default: any;
|
|
7621
|
+
};
|
|
7622
|
+
isStickyHeader: {
|
|
7623
|
+
type: import("vue").PropType<boolean>;
|
|
7624
|
+
default: boolean;
|
|
7625
|
+
};
|
|
7626
|
+
emptyStateSubtitle: {
|
|
7627
|
+
type: import("vue").PropType<string>;
|
|
7628
|
+
default: string;
|
|
7629
|
+
};
|
|
7630
|
+
isInfiniteScroll: {
|
|
7631
|
+
type: import("vue").PropType<boolean>;
|
|
7632
|
+
default: boolean;
|
|
7633
|
+
};
|
|
7634
|
+
infiniteScrollThreshold: {
|
|
7635
|
+
type: import("vue").PropType<number>;
|
|
7636
|
+
default: number;
|
|
7637
|
+
};
|
|
7638
|
+
rowHeight: {
|
|
7639
|
+
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7640
|
+
default: number;
|
|
7641
|
+
};
|
|
7642
|
+
defaultScrollPosition: {
|
|
7643
|
+
type: import("vue").PropType<number>;
|
|
7644
|
+
default: any;
|
|
7645
|
+
};
|
|
7646
|
+
getRowId: {
|
|
7647
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
7648
|
+
default: (row: any, index: any) => any;
|
|
7649
|
+
};
|
|
7650
|
+
getRowKey: {
|
|
7651
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7652
|
+
default: (row: any, index: any) => any;
|
|
7653
|
+
};
|
|
7654
|
+
emptyStateVariant: {
|
|
7655
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
7656
|
+
default: any;
|
|
7657
|
+
};
|
|
7658
|
+
rowCustomClassKey: {
|
|
7659
|
+
type: import("vue").PropType<string>;
|
|
7660
|
+
default: string;
|
|
7661
|
+
};
|
|
7662
|
+
rowDataKey: {
|
|
7663
|
+
type: import("vue").PropType<string>;
|
|
7664
|
+
default: string;
|
|
7665
|
+
};
|
|
7666
|
+
helpTooltipVariant: {
|
|
7667
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
7668
|
+
default: string;
|
|
7669
|
+
};
|
|
7670
|
+
selectedMatcher: {
|
|
7671
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
7672
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
7673
|
+
};
|
|
7674
|
+
isSelectionSticky: {
|
|
7675
|
+
type: import("vue").PropType<boolean>;
|
|
7676
|
+
default: boolean;
|
|
7677
|
+
};
|
|
7678
|
+
isSelectionBordered: {
|
|
7679
|
+
type: import("vue").PropType<boolean>;
|
|
7680
|
+
default: boolean;
|
|
7681
|
+
};
|
|
7682
|
+
showTotalsRow: {
|
|
7683
|
+
type: import("vue").PropType<boolean>;
|
|
7684
|
+
};
|
|
7685
|
+
}>> & {
|
|
7686
|
+
onSelectAll?: (value: boolean) => any;
|
|
7687
|
+
onLoadMore?: () => any;
|
|
7688
|
+
"onUpdate:search"?: (query: string) => any;
|
|
7689
|
+
onOnScroll?: (event: Event) => any;
|
|
7690
|
+
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
7691
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
7692
|
+
onOnClearSearch?: () => any;
|
|
7693
|
+
onClickRow?: (rowIndex: number) => any;
|
|
7694
|
+
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
7695
|
+
onSelectRow?: (value: boolean) => any;
|
|
7696
|
+
}, {
|
|
7697
|
+
scrollTo: (index: number) => void;
|
|
7698
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7699
|
+
"update:sort": (newSort: tableV3.Sort) => void;
|
|
7700
|
+
"update:search": (query: string) => void;
|
|
7701
|
+
"update:selection": (selection: unknown[]) => void;
|
|
7702
|
+
onScroll: (event: Event) => void;
|
|
7703
|
+
onClearSearch: () => void;
|
|
7704
|
+
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
|
|
7705
|
+
loadMore: () => void;
|
|
7706
|
+
selectAll: (value: boolean) => void;
|
|
7707
|
+
selectRow: (value: boolean) => void;
|
|
7708
|
+
clickRow: (rowIndex: number) => void;
|
|
7709
|
+
}, string, {
|
|
7710
|
+
sort: tableV3.Sort;
|
|
7711
|
+
title: string;
|
|
7712
|
+
search: string;
|
|
7713
|
+
testId: string;
|
|
7714
|
+
isLoading: boolean;
|
|
7715
|
+
searchAutoFocus: boolean;
|
|
7716
|
+
searchPlaceholder: string;
|
|
7717
|
+
selection: unknown[];
|
|
7718
|
+
showSearch: boolean;
|
|
7719
|
+
loadingRowCount: number;
|
|
7720
|
+
emptyStateTitle: string;
|
|
7721
|
+
isSticky: boolean;
|
|
7722
|
+
zIndexBase: number;
|
|
7723
|
+
sections: import("./components/table/common/Table.types").Section[];
|
|
7724
|
+
isStickyHeader: boolean;
|
|
7725
|
+
emptyStateSubtitle: string;
|
|
7726
|
+
isInfiniteScroll: boolean;
|
|
7727
|
+
infiniteScrollThreshold: number;
|
|
7728
|
+
rowHeight: number | ((index: number) => number);
|
|
7729
|
+
defaultScrollPosition: number;
|
|
7730
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
7731
|
+
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
7732
|
+
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
7733
|
+
rowCustomClassKey: string;
|
|
7734
|
+
rowDataKey: string;
|
|
7735
|
+
helpTooltipVariant: "icon" | "underline";
|
|
7736
|
+
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
7737
|
+
isSelectionSticky: boolean;
|
|
7738
|
+
isSelectionBordered: boolean;
|
|
7739
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
7740
|
+
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
7741
|
+
column: tableV3.Column;
|
|
7742
|
+
}) => any>> & Partial<Record<`after-header-${string}`, (_: {
|
|
7743
|
+
column: tableV3.Column;
|
|
7744
|
+
}) => any>> & Partial<Record<`total-${string}`, (_: {
|
|
7745
|
+
column: tableV3.Column;
|
|
7746
|
+
}) => any>> & Partial<Record<`cell-${string}`, (_: {
|
|
7747
|
+
cell: unknown;
|
|
7748
|
+
isLoading: boolean;
|
|
7749
|
+
cellIndex: number;
|
|
7750
|
+
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
7751
|
+
rowIndex: number;
|
|
7752
|
+
}) => any>> & {
|
|
7753
|
+
title?(_: {}): any;
|
|
7754
|
+
search?(_: {}): any;
|
|
7755
|
+
"table-header-pre-search"?(_: {}): any;
|
|
7756
|
+
"table-header-actions"?(_: {}): any;
|
|
7757
|
+
"select-all-checkbox"?(_: {}): any;
|
|
7758
|
+
loader?(_: {}): any;
|
|
7759
|
+
expanded?(_: {
|
|
7760
|
+
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
7761
|
+
gridColumnTemplate: any;
|
|
7762
|
+
}): any;
|
|
7763
|
+
"floating-row"?(_: {
|
|
7764
|
+
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
7765
|
+
rowIndex: number;
|
|
7766
|
+
}): any;
|
|
7767
|
+
"empty-state"?(_: {}): any;
|
|
7768
|
+
footer?(_: {}): any;
|
|
7769
|
+
};
|
|
7770
|
+
})) | ({
|
|
7771
|
+
new (...args: any[]): {
|
|
7772
|
+
$: import("vue").ComponentInternalInstance;
|
|
7773
|
+
$data: {};
|
|
7774
|
+
$props: Partial<{
|
|
7775
|
+
search: string;
|
|
7776
|
+
testId: string;
|
|
7777
|
+
isLoading: boolean;
|
|
7778
|
+
searchPlaceholder: string;
|
|
7779
|
+
count: number;
|
|
7780
|
+
showSearch: boolean;
|
|
7781
|
+
loadingRowCount: number;
|
|
7782
|
+
emptyStateTitle: string;
|
|
7783
|
+
isSticky: boolean;
|
|
7784
|
+
zIndexBase: number;
|
|
7785
|
+
emptyStateSubtitle: string;
|
|
7786
|
+
totalCount: number;
|
|
7787
|
+
displayingText: string;
|
|
7788
|
+
outOfText: string;
|
|
7789
|
+
totalText: string;
|
|
7790
|
+
tablesSettings: tableV4.TableSettings[];
|
|
7791
|
+
loadingAndEmptyStatesColumns: tableV3.Column[];
|
|
7792
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
7793
|
+
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
7794
|
+
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
7795
|
+
rowCustomClassKey: string;
|
|
7796
|
+
rowDataKey: string;
|
|
7797
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
7798
|
+
search: {
|
|
7799
|
+
type: import("vue").PropType<string>;
|
|
7800
|
+
default: any;
|
|
7801
|
+
};
|
|
7802
|
+
testId: {
|
|
7803
|
+
type: import("vue").PropType<string>;
|
|
7804
|
+
default: string;
|
|
7805
|
+
};
|
|
7806
|
+
isLoading: {
|
|
7807
|
+
type: import("vue").PropType<boolean>;
|
|
7808
|
+
default: boolean;
|
|
7809
|
+
};
|
|
7810
|
+
searchPlaceholder: {
|
|
7811
|
+
type: import("vue").PropType<string>;
|
|
7812
|
+
default: string;
|
|
7813
|
+
};
|
|
7814
|
+
count: {
|
|
7815
|
+
type: import("vue").PropType<number>;
|
|
7816
|
+
default: number;
|
|
7817
|
+
};
|
|
7818
|
+
showSearch: {
|
|
7819
|
+
type: import("vue").PropType<boolean>;
|
|
7820
|
+
default: boolean;
|
|
7821
|
+
};
|
|
7822
|
+
loadingRowCount: {
|
|
7823
|
+
type: import("vue").PropType<number>;
|
|
7824
|
+
default: number;
|
|
7825
|
+
};
|
|
7826
|
+
emptyStateTitle: {
|
|
7827
|
+
type: import("vue").PropType<string>;
|
|
7828
|
+
default: string;
|
|
7829
|
+
};
|
|
7830
|
+
isSticky: {
|
|
7831
|
+
type: import("vue").PropType<boolean>;
|
|
7832
|
+
default: boolean;
|
|
7833
|
+
};
|
|
7834
|
+
zIndexBase: {
|
|
7835
|
+
type: import("vue").PropType<number>;
|
|
7836
|
+
default: number;
|
|
7837
|
+
};
|
|
7838
|
+
emptyStateSubtitle: {
|
|
7839
|
+
type: import("vue").PropType<string>;
|
|
7840
|
+
default: string;
|
|
7841
|
+
};
|
|
7842
|
+
totalCount: {
|
|
7843
|
+
type: import("vue").PropType<number>;
|
|
7844
|
+
default: number;
|
|
7845
|
+
};
|
|
7846
|
+
displayingText: {
|
|
7847
|
+
type: import("vue").PropType<string>;
|
|
7848
|
+
default: string;
|
|
7849
|
+
};
|
|
7850
|
+
outOfText: {
|
|
7851
|
+
type: import("vue").PropType<string>;
|
|
7852
|
+
default: string;
|
|
7853
|
+
};
|
|
7854
|
+
totalText: {
|
|
7855
|
+
type: import("vue").PropType<string>;
|
|
7856
|
+
default: string;
|
|
7857
|
+
};
|
|
7858
|
+
tablesSettings: {
|
|
7859
|
+
type: import("vue").PropType<tableV4.TableSettings[]>;
|
|
7860
|
+
required: true;
|
|
7861
|
+
default: () => any[];
|
|
7862
|
+
};
|
|
7863
|
+
loadingAndEmptyStatesColumns: {
|
|
7864
|
+
type: import("vue").PropType<tableV3.Column[]>;
|
|
7865
|
+
required: true;
|
|
7866
|
+
default: () => any[];
|
|
7867
|
+
};
|
|
7868
|
+
getRowId: {
|
|
7869
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
7870
|
+
default: (row: any, index: any) => any;
|
|
7871
|
+
};
|
|
7872
|
+
getRowKey: {
|
|
7873
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7874
|
+
default: (row: any, index: any) => any;
|
|
7875
|
+
};
|
|
7876
|
+
emptyStateVariant: {
|
|
7877
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
7878
|
+
default: any;
|
|
7879
|
+
};
|
|
7880
|
+
rowCustomClassKey: {
|
|
7881
|
+
type: import("vue").PropType<string>;
|
|
7882
|
+
default: string;
|
|
7883
|
+
};
|
|
7884
|
+
rowDataKey: {
|
|
7885
|
+
type: import("vue").PropType<string>;
|
|
7886
|
+
default: string;
|
|
7887
|
+
};
|
|
7888
|
+
}>> & {
|
|
7889
|
+
"onUpdate:search"?: (query: string) => any;
|
|
7890
|
+
onOnScroll?: (scrollTop: number) => any;
|
|
7891
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7892
|
+
tableIndex: number;
|
|
7893
|
+
}) => any;
|
|
7894
|
+
onOnClearSearch?: () => any;
|
|
7895
|
+
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7896
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "emptyStateSubtitle" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns" | "getRowId" | "getRowKey" | "emptyStateVariant" | "rowCustomClassKey" | "rowDataKey">;
|
|
7897
|
+
$attrs: {
|
|
7898
|
+
[x: string]: unknown;
|
|
7899
|
+
};
|
|
7900
|
+
$refs: {
|
|
7901
|
+
[x: string]: unknown;
|
|
7902
|
+
};
|
|
7903
|
+
$slots: Readonly<{
|
|
7904
|
+
[name: string]: import("vue").Slot;
|
|
7905
|
+
}>;
|
|
7906
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
7907
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
7908
|
+
$emit: ((event: "onScroll", scrollTop: number) => void) & ((event: "onClearSearch") => void) & ((event: "update:search", query: string) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7909
|
+
tableIndex: number;
|
|
7910
|
+
}) => void) & ((event: "clickRow", rowIndex: number, tableIndex: number) => void);
|
|
7911
|
+
$el: any;
|
|
7912
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
7913
|
+
search: {
|
|
7914
|
+
type: import("vue").PropType<string>;
|
|
7915
|
+
default: any;
|
|
7916
|
+
};
|
|
7917
|
+
testId: {
|
|
7918
|
+
type: import("vue").PropType<string>;
|
|
7919
|
+
default: string;
|
|
7920
|
+
};
|
|
7921
|
+
isLoading: {
|
|
7922
|
+
type: import("vue").PropType<boolean>;
|
|
7923
|
+
default: boolean;
|
|
7924
|
+
};
|
|
7925
|
+
searchPlaceholder: {
|
|
7926
|
+
type: import("vue").PropType<string>;
|
|
7927
|
+
default: string;
|
|
7928
|
+
};
|
|
7929
|
+
count: {
|
|
7930
|
+
type: import("vue").PropType<number>;
|
|
7931
|
+
default: number;
|
|
7932
|
+
};
|
|
7933
|
+
showSearch: {
|
|
7934
|
+
type: import("vue").PropType<boolean>;
|
|
7935
|
+
default: boolean;
|
|
7936
|
+
};
|
|
7937
|
+
loadingRowCount: {
|
|
7938
|
+
type: import("vue").PropType<number>;
|
|
7939
|
+
default: number;
|
|
7940
|
+
};
|
|
7941
|
+
emptyStateTitle: {
|
|
7942
|
+
type: import("vue").PropType<string>;
|
|
7943
|
+
default: string;
|
|
7944
|
+
};
|
|
7945
|
+
isSticky: {
|
|
7946
|
+
type: import("vue").PropType<boolean>;
|
|
7947
|
+
default: boolean;
|
|
7948
|
+
};
|
|
7949
|
+
zIndexBase: {
|
|
7950
|
+
type: import("vue").PropType<number>;
|
|
7951
|
+
default: number;
|
|
7952
|
+
};
|
|
7953
|
+
emptyStateSubtitle: {
|
|
7954
|
+
type: import("vue").PropType<string>;
|
|
7955
|
+
default: string;
|
|
7956
|
+
};
|
|
7957
|
+
totalCount: {
|
|
7958
|
+
type: import("vue").PropType<number>;
|
|
7959
|
+
default: number;
|
|
7960
|
+
};
|
|
7961
|
+
displayingText: {
|
|
7962
|
+
type: import("vue").PropType<string>;
|
|
7963
|
+
default: string;
|
|
7964
|
+
};
|
|
7965
|
+
outOfText: {
|
|
7966
|
+
type: import("vue").PropType<string>;
|
|
7967
|
+
default: string;
|
|
7968
|
+
};
|
|
7969
|
+
totalText: {
|
|
7970
|
+
type: import("vue").PropType<string>;
|
|
7971
|
+
default: string;
|
|
7972
|
+
};
|
|
7973
|
+
tablesSettings: {
|
|
7974
|
+
type: import("vue").PropType<tableV4.TableSettings[]>;
|
|
7975
|
+
required: true;
|
|
7976
|
+
default: () => any[];
|
|
7977
|
+
};
|
|
7978
|
+
loadingAndEmptyStatesColumns: {
|
|
7979
|
+
type: import("vue").PropType<tableV3.Column[]>;
|
|
7980
|
+
required: true;
|
|
7981
|
+
default: () => any[];
|
|
7982
|
+
};
|
|
7983
|
+
getRowId: {
|
|
7984
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
7985
|
+
default: (row: any, index: any) => any;
|
|
7986
|
+
};
|
|
7987
|
+
getRowKey: {
|
|
7988
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7989
|
+
default: (row: any, index: any) => any;
|
|
7990
|
+
};
|
|
7991
|
+
emptyStateVariant: {
|
|
7992
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
7993
|
+
default: any;
|
|
7994
|
+
};
|
|
7995
|
+
rowCustomClassKey: {
|
|
7996
|
+
type: import("vue").PropType<string>;
|
|
7997
|
+
default: string;
|
|
7998
|
+
};
|
|
7999
|
+
rowDataKey: {
|
|
8000
|
+
type: import("vue").PropType<string>;
|
|
8001
|
+
default: string;
|
|
8002
|
+
};
|
|
8003
|
+
}>> & {
|
|
8004
|
+
"onUpdate:search"?: (query: string) => any;
|
|
8005
|
+
onOnScroll?: (scrollTop: number) => any;
|
|
8006
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
8007
|
+
tableIndex: number;
|
|
8008
|
+
}) => any;
|
|
8009
|
+
onOnClearSearch?: () => any;
|
|
8010
|
+
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
8011
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8012
|
+
"update:search": (query: string) => void;
|
|
8013
|
+
onScroll: (scrollTop: number) => void;
|
|
8014
|
+
onClearSearch: () => void;
|
|
8015
|
+
clickRow: (rowIndex: number, tableIndex: number) => void;
|
|
8016
|
+
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
8017
|
+
tableIndex: number;
|
|
8018
|
+
}) => void;
|
|
8019
|
+
}, string, {
|
|
8020
|
+
search: string;
|
|
8021
|
+
testId: string;
|
|
8022
|
+
isLoading: boolean;
|
|
8023
|
+
searchPlaceholder: string;
|
|
8024
|
+
count: number;
|
|
8025
|
+
showSearch: boolean;
|
|
8026
|
+
loadingRowCount: number;
|
|
8027
|
+
emptyStateTitle: string;
|
|
8028
|
+
isSticky: boolean;
|
|
8029
|
+
zIndexBase: number;
|
|
8030
|
+
emptyStateSubtitle: string;
|
|
8031
|
+
totalCount: number;
|
|
8032
|
+
displayingText: string;
|
|
8033
|
+
outOfText: string;
|
|
8034
|
+
totalText: string;
|
|
8035
|
+
tablesSettings: tableV4.TableSettings[];
|
|
8036
|
+
loadingAndEmptyStatesColumns: tableV3.Column[];
|
|
8037
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
8038
|
+
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
8039
|
+
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
8040
|
+
rowCustomClassKey: string;
|
|
8041
|
+
rowDataKey: string;
|
|
8042
|
+
}, {}, string> & {
|
|
8043
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
8044
|
+
created?: (() => void) | (() => void)[];
|
|
8045
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
8046
|
+
mounted?: (() => void) | (() => void)[];
|
|
8047
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
8048
|
+
updated?: (() => void) | (() => void)[];
|
|
8049
|
+
activated?: (() => void) | (() => void)[];
|
|
8050
|
+
deactivated?: (() => void) | (() => void)[];
|
|
8051
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
8052
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
8053
|
+
destroyed?: (() => void) | (() => void)[];
|
|
8054
|
+
unmounted?: (() => void) | (() => void)[];
|
|
8055
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
8056
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
8057
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
8058
|
+
};
|
|
8059
|
+
$forceUpdate: () => void;
|
|
8060
|
+
$nextTick: typeof import("vue").nextTick;
|
|
8061
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
8062
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
8063
|
+
search: {
|
|
8064
|
+
type: import("vue").PropType<string>;
|
|
8065
|
+
default: any;
|
|
8066
|
+
};
|
|
8067
|
+
testId: {
|
|
8068
|
+
type: import("vue").PropType<string>;
|
|
8069
|
+
default: string;
|
|
8070
|
+
};
|
|
8071
|
+
isLoading: {
|
|
8072
|
+
type: import("vue").PropType<boolean>;
|
|
8073
|
+
default: boolean;
|
|
8074
|
+
};
|
|
8075
|
+
searchPlaceholder: {
|
|
8076
|
+
type: import("vue").PropType<string>;
|
|
8077
|
+
default: string;
|
|
8078
|
+
};
|
|
8079
|
+
count: {
|
|
8080
|
+
type: import("vue").PropType<number>;
|
|
8081
|
+
default: number;
|
|
8082
|
+
};
|
|
8083
|
+
showSearch: {
|
|
8084
|
+
type: import("vue").PropType<boolean>;
|
|
8085
|
+
default: boolean;
|
|
8086
|
+
};
|
|
8087
|
+
loadingRowCount: {
|
|
8088
|
+
type: import("vue").PropType<number>;
|
|
8089
|
+
default: number;
|
|
8090
|
+
};
|
|
8091
|
+
emptyStateTitle: {
|
|
8092
|
+
type: import("vue").PropType<string>;
|
|
8093
|
+
default: string;
|
|
8094
|
+
};
|
|
8095
|
+
isSticky: {
|
|
8096
|
+
type: import("vue").PropType<boolean>;
|
|
8097
|
+
default: boolean;
|
|
8098
|
+
};
|
|
8099
|
+
zIndexBase: {
|
|
8100
|
+
type: import("vue").PropType<number>;
|
|
8101
|
+
default: number;
|
|
8102
|
+
};
|
|
8103
|
+
emptyStateSubtitle: {
|
|
8104
|
+
type: import("vue").PropType<string>;
|
|
8105
|
+
default: string;
|
|
8106
|
+
};
|
|
8107
|
+
totalCount: {
|
|
8108
|
+
type: import("vue").PropType<number>;
|
|
8109
|
+
default: number;
|
|
8110
|
+
};
|
|
8111
|
+
displayingText: {
|
|
8112
|
+
type: import("vue").PropType<string>;
|
|
8113
|
+
default: string;
|
|
8114
|
+
};
|
|
8115
|
+
outOfText: {
|
|
8116
|
+
type: import("vue").PropType<string>;
|
|
8117
|
+
default: string;
|
|
8118
|
+
};
|
|
8119
|
+
totalText: {
|
|
8120
|
+
type: import("vue").PropType<string>;
|
|
8121
|
+
default: string;
|
|
8122
|
+
};
|
|
8123
|
+
tablesSettings: {
|
|
8124
|
+
type: import("vue").PropType<tableV4.TableSettings[]>;
|
|
8125
|
+
required: true;
|
|
8126
|
+
default: () => any[];
|
|
8127
|
+
};
|
|
8128
|
+
loadingAndEmptyStatesColumns: {
|
|
8129
|
+
type: import("vue").PropType<tableV3.Column[]>;
|
|
8130
|
+
required: true;
|
|
8131
|
+
default: () => any[];
|
|
8132
|
+
};
|
|
8133
|
+
getRowId: {
|
|
8134
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
8135
|
+
default: (row: any, index: any) => any;
|
|
8136
|
+
};
|
|
8137
|
+
getRowKey: {
|
|
8138
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
8139
|
+
default: (row: any, index: any) => any;
|
|
8140
|
+
};
|
|
8141
|
+
emptyStateVariant: {
|
|
8142
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
8143
|
+
default: any;
|
|
8144
|
+
};
|
|
8145
|
+
rowCustomClassKey: {
|
|
8146
|
+
type: import("vue").PropType<string>;
|
|
8147
|
+
default: string;
|
|
8148
|
+
};
|
|
8149
|
+
rowDataKey: {
|
|
8150
|
+
type: import("vue").PropType<string>;
|
|
8151
|
+
default: string;
|
|
8152
|
+
};
|
|
8153
|
+
}>> & {
|
|
8154
|
+
"onUpdate:search"?: (query: string) => any;
|
|
8155
|
+
onOnScroll?: (scrollTop: number) => any;
|
|
8156
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
8157
|
+
tableIndex: number;
|
|
8158
|
+
}) => any;
|
|
8159
|
+
onOnClearSearch?: () => any;
|
|
8160
|
+
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
8161
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
8162
|
+
__isFragment?: never;
|
|
8163
|
+
__isTeleport?: never;
|
|
8164
|
+
__isSuspense?: never;
|
|
8165
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
8166
|
+
search: {
|
|
8167
|
+
type: import("vue").PropType<string>;
|
|
8168
|
+
default: any;
|
|
8169
|
+
};
|
|
8170
|
+
testId: {
|
|
8171
|
+
type: import("vue").PropType<string>;
|
|
7435
8172
|
default: string;
|
|
7436
8173
|
};
|
|
7437
|
-
|
|
7438
|
-
type: import("vue").PropType<
|
|
7439
|
-
default:
|
|
7440
|
-
};
|
|
7441
|
-
menuItems: {
|
|
7442
|
-
type: import("vue").PropType<tableV4.MenuItem[]>;
|
|
7443
|
-
required: true;
|
|
7444
|
-
default: () => any[];
|
|
8174
|
+
isLoading: {
|
|
8175
|
+
type: import("vue").PropType<boolean>;
|
|
8176
|
+
default: boolean;
|
|
7445
8177
|
};
|
|
7446
|
-
|
|
7447
|
-
|
|
7448
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7449
|
-
placement: {
|
|
7450
|
-
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
8178
|
+
searchPlaceholder: {
|
|
8179
|
+
type: import("vue").PropType<string>;
|
|
7451
8180
|
default: string;
|
|
7452
8181
|
};
|
|
7453
|
-
|
|
8182
|
+
count: {
|
|
7454
8183
|
type: import("vue").PropType<number>;
|
|
7455
|
-
default:
|
|
8184
|
+
default: number;
|
|
7456
8185
|
};
|
|
7457
|
-
|
|
7458
|
-
type: import("vue").PropType<
|
|
7459
|
-
|
|
7460
|
-
default: () => any[];
|
|
8186
|
+
showSearch: {
|
|
8187
|
+
type: import("vue").PropType<boolean>;
|
|
8188
|
+
default: boolean;
|
|
7461
8189
|
};
|
|
7462
|
-
|
|
7463
|
-
|
|
7464
|
-
|
|
7465
|
-
|
|
7466
|
-
|
|
7467
|
-
menuItems: tableV4.MenuItem[];
|
|
7468
|
-
}> | import("vue").DefineComponent<{
|
|
7469
|
-
testId: {
|
|
8190
|
+
loadingRowCount: {
|
|
8191
|
+
type: import("vue").PropType<number>;
|
|
8192
|
+
default: number;
|
|
8193
|
+
};
|
|
8194
|
+
emptyStateTitle: {
|
|
7470
8195
|
type: import("vue").PropType<string>;
|
|
7471
8196
|
default: string;
|
|
7472
8197
|
};
|
|
7473
|
-
|
|
8198
|
+
isSticky: {
|
|
8199
|
+
type: import("vue").PropType<boolean>;
|
|
8200
|
+
default: boolean;
|
|
8201
|
+
};
|
|
8202
|
+
zIndexBase: {
|
|
7474
8203
|
type: import("vue").PropType<number>;
|
|
7475
8204
|
default: number;
|
|
7476
8205
|
};
|
|
8206
|
+
emptyStateSubtitle: {
|
|
8207
|
+
type: import("vue").PropType<string>;
|
|
8208
|
+
default: string;
|
|
8209
|
+
};
|
|
7477
8210
|
totalCount: {
|
|
7478
8211
|
type: import("vue").PropType<number>;
|
|
7479
8212
|
default: number;
|
|
@@ -7490,39 +8223,100 @@ declare const _default: {
|
|
|
7490
8223
|
type: import("vue").PropType<string>;
|
|
7491
8224
|
default: string;
|
|
7492
8225
|
};
|
|
7493
|
-
|
|
7494
|
-
|
|
7495
|
-
|
|
7496
|
-
default:
|
|
8226
|
+
tablesSettings: {
|
|
8227
|
+
type: import("vue").PropType<tableV4.TableSettings[]>;
|
|
8228
|
+
required: true;
|
|
8229
|
+
default: () => any[];
|
|
7497
8230
|
};
|
|
7498
|
-
|
|
7499
|
-
type: import("vue").PropType<
|
|
7500
|
-
|
|
8231
|
+
loadingAndEmptyStatesColumns: {
|
|
8232
|
+
type: import("vue").PropType<tableV3.Column[]>;
|
|
8233
|
+
required: true;
|
|
8234
|
+
default: () => any[];
|
|
7501
8235
|
};
|
|
7502
|
-
|
|
7503
|
-
type: import("vue").PropType<number>;
|
|
7504
|
-
default:
|
|
8236
|
+
getRowId: {
|
|
8237
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
8238
|
+
default: (row: any, index: any) => any;
|
|
7505
8239
|
};
|
|
7506
|
-
|
|
7507
|
-
type: import("vue").PropType<string>;
|
|
7508
|
-
default:
|
|
8240
|
+
getRowKey: {
|
|
8241
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
8242
|
+
default: (row: any, index: any) => any;
|
|
7509
8243
|
};
|
|
7510
|
-
|
|
8244
|
+
emptyStateVariant: {
|
|
8245
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
8246
|
+
default: any;
|
|
8247
|
+
};
|
|
8248
|
+
rowCustomClassKey: {
|
|
7511
8249
|
type: import("vue").PropType<string>;
|
|
7512
8250
|
default: string;
|
|
7513
8251
|
};
|
|
7514
|
-
|
|
8252
|
+
rowDataKey: {
|
|
7515
8253
|
type: import("vue").PropType<string>;
|
|
7516
8254
|
default: string;
|
|
7517
8255
|
};
|
|
7518
|
-
}
|
|
8256
|
+
}>> & {
|
|
8257
|
+
"onUpdate:search"?: (query: string) => any;
|
|
8258
|
+
onOnScroll?: (scrollTop: number) => any;
|
|
8259
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
8260
|
+
tableIndex: number;
|
|
8261
|
+
}) => any;
|
|
8262
|
+
onOnClearSearch?: () => any;
|
|
8263
|
+
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
8264
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8265
|
+
"update:search": (query: string) => void;
|
|
8266
|
+
onScroll: (scrollTop: number) => void;
|
|
8267
|
+
onClearSearch: () => void;
|
|
8268
|
+
clickRow: (rowIndex: number, tableIndex: number) => void;
|
|
8269
|
+
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
8270
|
+
tableIndex: number;
|
|
8271
|
+
}) => void;
|
|
8272
|
+
}, string, {
|
|
8273
|
+
search: string;
|
|
7519
8274
|
testId: string;
|
|
8275
|
+
isLoading: boolean;
|
|
8276
|
+
searchPlaceholder: string;
|
|
7520
8277
|
count: number;
|
|
8278
|
+
showSearch: boolean;
|
|
8279
|
+
loadingRowCount: number;
|
|
8280
|
+
emptyStateTitle: string;
|
|
8281
|
+
isSticky: boolean;
|
|
8282
|
+
zIndexBase: number;
|
|
8283
|
+
emptyStateSubtitle: string;
|
|
7521
8284
|
totalCount: number;
|
|
7522
8285
|
displayingText: string;
|
|
7523
8286
|
outOfText: string;
|
|
7524
8287
|
totalText: string;
|
|
7525
|
-
|
|
8288
|
+
tablesSettings: tableV4.TableSettings[];
|
|
8289
|
+
loadingAndEmptyStatesColumns: tableV3.Column[];
|
|
8290
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
8291
|
+
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
8292
|
+
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
8293
|
+
rowCustomClassKey: string;
|
|
8294
|
+
rowDataKey: string;
|
|
8295
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
8296
|
+
$slots: Partial<Record<string, (_: {
|
|
8297
|
+
column: tableV3.Column;
|
|
8298
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
8299
|
+
cell: any;
|
|
8300
|
+
isLoading: any;
|
|
8301
|
+
cellIndex: any;
|
|
8302
|
+
row: any;
|
|
8303
|
+
rowIndex: any;
|
|
8304
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
8305
|
+
column: tableV3.Column;
|
|
8306
|
+
}) => any>> & {
|
|
8307
|
+
title?(_: {}): any;
|
|
8308
|
+
search?(_: {}): any;
|
|
8309
|
+
"table-header-pre-search"?(_: {}): any;
|
|
8310
|
+
"table-header-actions"?(_: {}): any;
|
|
8311
|
+
"floating-row"?(_: {
|
|
8312
|
+
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
8313
|
+
rowIndex: number;
|
|
8314
|
+
tableIndex: number;
|
|
8315
|
+
}): any;
|
|
8316
|
+
"empty-state"?(_: {}): any;
|
|
8317
|
+
};
|
|
8318
|
+
})))[];
|
|
8319
|
+
MultipleDataGrid: {
|
|
7526
8320
|
new (...args: any[]): {
|
|
7527
8321
|
$: import("vue").ComponentInternalInstance;
|
|
7528
8322
|
$data: {};
|
|
@@ -7538,17 +8332,17 @@ declare const _default: {
|
|
|
7538
8332
|
isSticky: boolean;
|
|
7539
8333
|
zIndexBase: number;
|
|
7540
8334
|
emptyStateSubtitle: string;
|
|
7541
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
7542
|
-
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
7543
|
-
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
7544
|
-
rowCustomClassKey: string;
|
|
7545
|
-
rowDataKey: string;
|
|
7546
8335
|
totalCount: number;
|
|
7547
8336
|
displayingText: string;
|
|
7548
8337
|
outOfText: string;
|
|
7549
8338
|
totalText: string;
|
|
7550
8339
|
tablesSettings: tableV4.TableSettings[];
|
|
7551
8340
|
loadingAndEmptyStatesColumns: tableV3.Column[];
|
|
8341
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
8342
|
+
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
8343
|
+
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
8344
|
+
rowCustomClassKey: string;
|
|
8345
|
+
rowDataKey: string;
|
|
7552
8346
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
7553
8347
|
search: {
|
|
7554
8348
|
type: import("vue").PropType<string>;
|
|
@@ -7594,26 +8388,6 @@ declare const _default: {
|
|
|
7594
8388
|
type: import("vue").PropType<string>;
|
|
7595
8389
|
default: string;
|
|
7596
8390
|
};
|
|
7597
|
-
getRowId: {
|
|
7598
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
7599
|
-
default: (row: any, index: any) => any;
|
|
7600
|
-
};
|
|
7601
|
-
getRowKey: {
|
|
7602
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7603
|
-
default: (row: any, index: any) => any;
|
|
7604
|
-
};
|
|
7605
|
-
emptyStateVariant: {
|
|
7606
|
-
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
7607
|
-
default: any;
|
|
7608
|
-
};
|
|
7609
|
-
rowCustomClassKey: {
|
|
7610
|
-
type: import("vue").PropType<string>;
|
|
7611
|
-
default: string;
|
|
7612
|
-
};
|
|
7613
|
-
rowDataKey: {
|
|
7614
|
-
type: import("vue").PropType<string>;
|
|
7615
|
-
default: string;
|
|
7616
|
-
};
|
|
7617
8391
|
totalCount: {
|
|
7618
8392
|
type: import("vue").PropType<number>;
|
|
7619
8393
|
default: number;
|
|
@@ -7640,6 +8414,26 @@ declare const _default: {
|
|
|
7640
8414
|
required: true;
|
|
7641
8415
|
default: () => any[];
|
|
7642
8416
|
};
|
|
8417
|
+
getRowId: {
|
|
8418
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
8419
|
+
default: (row: any, index: any) => any;
|
|
8420
|
+
};
|
|
8421
|
+
getRowKey: {
|
|
8422
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
8423
|
+
default: (row: any, index: any) => any;
|
|
8424
|
+
};
|
|
8425
|
+
emptyStateVariant: {
|
|
8426
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
8427
|
+
default: any;
|
|
8428
|
+
};
|
|
8429
|
+
rowCustomClassKey: {
|
|
8430
|
+
type: import("vue").PropType<string>;
|
|
8431
|
+
default: string;
|
|
8432
|
+
};
|
|
8433
|
+
rowDataKey: {
|
|
8434
|
+
type: import("vue").PropType<string>;
|
|
8435
|
+
default: string;
|
|
8436
|
+
};
|
|
7643
8437
|
}>> & {
|
|
7644
8438
|
"onUpdate:search"?: (query: string) => any;
|
|
7645
8439
|
onOnScroll?: (scrollTop: number) => any;
|
|
@@ -7648,7 +8442,7 @@ declare const _default: {
|
|
|
7648
8442
|
}) => any;
|
|
7649
8443
|
onOnClearSearch?: () => any;
|
|
7650
8444
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7651
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "emptyStateSubtitle" | "
|
|
8445
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "emptyStateSubtitle" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns" | "getRowId" | "getRowKey" | "emptyStateVariant" | "rowCustomClassKey" | "rowDataKey">;
|
|
7652
8446
|
$attrs: {
|
|
7653
8447
|
[x: string]: unknown;
|
|
7654
8448
|
};
|
|
@@ -7709,26 +8503,6 @@ declare const _default: {
|
|
|
7709
8503
|
type: import("vue").PropType<string>;
|
|
7710
8504
|
default: string;
|
|
7711
8505
|
};
|
|
7712
|
-
getRowId: {
|
|
7713
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
7714
|
-
default: (row: any, index: any) => any;
|
|
7715
|
-
};
|
|
7716
|
-
getRowKey: {
|
|
7717
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7718
|
-
default: (row: any, index: any) => any;
|
|
7719
|
-
};
|
|
7720
|
-
emptyStateVariant: {
|
|
7721
|
-
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
7722
|
-
default: any;
|
|
7723
|
-
};
|
|
7724
|
-
rowCustomClassKey: {
|
|
7725
|
-
type: import("vue").PropType<string>;
|
|
7726
|
-
default: string;
|
|
7727
|
-
};
|
|
7728
|
-
rowDataKey: {
|
|
7729
|
-
type: import("vue").PropType<string>;
|
|
7730
|
-
default: string;
|
|
7731
|
-
};
|
|
7732
8506
|
totalCount: {
|
|
7733
8507
|
type: import("vue").PropType<number>;
|
|
7734
8508
|
default: number;
|
|
@@ -7755,6 +8529,26 @@ declare const _default: {
|
|
|
7755
8529
|
required: true;
|
|
7756
8530
|
default: () => any[];
|
|
7757
8531
|
};
|
|
8532
|
+
getRowId: {
|
|
8533
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
8534
|
+
default: (row: any, index: any) => any;
|
|
8535
|
+
};
|
|
8536
|
+
getRowKey: {
|
|
8537
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
8538
|
+
default: (row: any, index: any) => any;
|
|
8539
|
+
};
|
|
8540
|
+
emptyStateVariant: {
|
|
8541
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
8542
|
+
default: any;
|
|
8543
|
+
};
|
|
8544
|
+
rowCustomClassKey: {
|
|
8545
|
+
type: import("vue").PropType<string>;
|
|
8546
|
+
default: string;
|
|
8547
|
+
};
|
|
8548
|
+
rowDataKey: {
|
|
8549
|
+
type: import("vue").PropType<string>;
|
|
8550
|
+
default: string;
|
|
8551
|
+
};
|
|
7758
8552
|
}>> & {
|
|
7759
8553
|
"onUpdate:search"?: (query: string) => any;
|
|
7760
8554
|
onOnScroll?: (scrollTop: number) => any;
|
|
@@ -7782,18 +8576,18 @@ declare const _default: {
|
|
|
7782
8576
|
emptyStateTitle: string;
|
|
7783
8577
|
isSticky: boolean;
|
|
7784
8578
|
zIndexBase: number;
|
|
7785
|
-
emptyStateSubtitle: string;
|
|
7786
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
7787
|
-
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
7788
|
-
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
7789
|
-
rowCustomClassKey: string;
|
|
7790
|
-
rowDataKey: string;
|
|
8579
|
+
emptyStateSubtitle: string;
|
|
7791
8580
|
totalCount: number;
|
|
7792
8581
|
displayingText: string;
|
|
7793
8582
|
outOfText: string;
|
|
7794
8583
|
totalText: string;
|
|
7795
8584
|
tablesSettings: tableV4.TableSettings[];
|
|
7796
8585
|
loadingAndEmptyStatesColumns: tableV3.Column[];
|
|
8586
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
8587
|
+
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
8588
|
+
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
8589
|
+
rowCustomClassKey: string;
|
|
8590
|
+
rowDataKey: string;
|
|
7797
8591
|
}, {}, string> & {
|
|
7798
8592
|
beforeCreate?: (() => void) | (() => void)[];
|
|
7799
8593
|
created?: (() => void) | (() => void)[];
|
|
@@ -7859,26 +8653,6 @@ declare const _default: {
|
|
|
7859
8653
|
type: import("vue").PropType<string>;
|
|
7860
8654
|
default: string;
|
|
7861
8655
|
};
|
|
7862
|
-
getRowId: {
|
|
7863
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
7864
|
-
default: (row: any, index: any) => any;
|
|
7865
|
-
};
|
|
7866
|
-
getRowKey: {
|
|
7867
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7868
|
-
default: (row: any, index: any) => any;
|
|
7869
|
-
};
|
|
7870
|
-
emptyStateVariant: {
|
|
7871
|
-
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
7872
|
-
default: any;
|
|
7873
|
-
};
|
|
7874
|
-
rowCustomClassKey: {
|
|
7875
|
-
type: import("vue").PropType<string>;
|
|
7876
|
-
default: string;
|
|
7877
|
-
};
|
|
7878
|
-
rowDataKey: {
|
|
7879
|
-
type: import("vue").PropType<string>;
|
|
7880
|
-
default: string;
|
|
7881
|
-
};
|
|
7882
8656
|
totalCount: {
|
|
7883
8657
|
type: import("vue").PropType<number>;
|
|
7884
8658
|
default: number;
|
|
@@ -7905,6 +8679,26 @@ declare const _default: {
|
|
|
7905
8679
|
required: true;
|
|
7906
8680
|
default: () => any[];
|
|
7907
8681
|
};
|
|
8682
|
+
getRowId: {
|
|
8683
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
8684
|
+
default: (row: any, index: any) => any;
|
|
8685
|
+
};
|
|
8686
|
+
getRowKey: {
|
|
8687
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
8688
|
+
default: (row: any, index: any) => any;
|
|
8689
|
+
};
|
|
8690
|
+
emptyStateVariant: {
|
|
8691
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
8692
|
+
default: any;
|
|
8693
|
+
};
|
|
8694
|
+
rowCustomClassKey: {
|
|
8695
|
+
type: import("vue").PropType<string>;
|
|
8696
|
+
default: string;
|
|
8697
|
+
};
|
|
8698
|
+
rowDataKey: {
|
|
8699
|
+
type: import("vue").PropType<string>;
|
|
8700
|
+
default: string;
|
|
8701
|
+
};
|
|
7908
8702
|
}>> & {
|
|
7909
8703
|
"onUpdate:search"?: (query: string) => any;
|
|
7910
8704
|
onOnScroll?: (scrollTop: number) => any;
|
|
@@ -7962,26 +8756,6 @@ declare const _default: {
|
|
|
7962
8756
|
type: import("vue").PropType<string>;
|
|
7963
8757
|
default: string;
|
|
7964
8758
|
};
|
|
7965
|
-
getRowId: {
|
|
7966
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
7967
|
-
default: (row: any, index: any) => any;
|
|
7968
|
-
};
|
|
7969
|
-
getRowKey: {
|
|
7970
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7971
|
-
default: (row: any, index: any) => any;
|
|
7972
|
-
};
|
|
7973
|
-
emptyStateVariant: {
|
|
7974
|
-
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
7975
|
-
default: any;
|
|
7976
|
-
};
|
|
7977
|
-
rowCustomClassKey: {
|
|
7978
|
-
type: import("vue").PropType<string>;
|
|
7979
|
-
default: string;
|
|
7980
|
-
};
|
|
7981
|
-
rowDataKey: {
|
|
7982
|
-
type: import("vue").PropType<string>;
|
|
7983
|
-
default: string;
|
|
7984
|
-
};
|
|
7985
8759
|
totalCount: {
|
|
7986
8760
|
type: import("vue").PropType<number>;
|
|
7987
8761
|
default: number;
|
|
@@ -8008,6 +8782,26 @@ declare const _default: {
|
|
|
8008
8782
|
required: true;
|
|
8009
8783
|
default: () => any[];
|
|
8010
8784
|
};
|
|
8785
|
+
getRowId: {
|
|
8786
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
8787
|
+
default: (row: any, index: any) => any;
|
|
8788
|
+
};
|
|
8789
|
+
getRowKey: {
|
|
8790
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
8791
|
+
default: (row: any, index: any) => any;
|
|
8792
|
+
};
|
|
8793
|
+
emptyStateVariant: {
|
|
8794
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
8795
|
+
default: any;
|
|
8796
|
+
};
|
|
8797
|
+
rowCustomClassKey: {
|
|
8798
|
+
type: import("vue").PropType<string>;
|
|
8799
|
+
default: string;
|
|
8800
|
+
};
|
|
8801
|
+
rowDataKey: {
|
|
8802
|
+
type: import("vue").PropType<string>;
|
|
8803
|
+
default: string;
|
|
8804
|
+
};
|
|
8011
8805
|
}>> & {
|
|
8012
8806
|
"onUpdate:search"?: (query: string) => any;
|
|
8013
8807
|
onOnScroll?: (scrollTop: number) => any;
|
|
@@ -8036,17 +8830,17 @@ declare const _default: {
|
|
|
8036
8830
|
isSticky: boolean;
|
|
8037
8831
|
zIndexBase: number;
|
|
8038
8832
|
emptyStateSubtitle: string;
|
|
8039
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
8040
|
-
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
8041
|
-
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
8042
|
-
rowCustomClassKey: string;
|
|
8043
|
-
rowDataKey: string;
|
|
8044
8833
|
totalCount: number;
|
|
8045
8834
|
displayingText: string;
|
|
8046
8835
|
outOfText: string;
|
|
8047
8836
|
totalText: string;
|
|
8048
8837
|
tablesSettings: tableV4.TableSettings[];
|
|
8049
8838
|
loadingAndEmptyStatesColumns: tableV3.Column[];
|
|
8839
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
8840
|
+
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
8841
|
+
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
8842
|
+
rowCustomClassKey: string;
|
|
8843
|
+
rowDataKey: string;
|
|
8050
8844
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
8051
8845
|
$slots: Partial<Record<string, (_: {
|
|
8052
8846
|
column: tableV3.Column;
|
|
@@ -8061,6 +8855,7 @@ declare const _default: {
|
|
|
8061
8855
|
}) => any>> & {
|
|
8062
8856
|
title?(_: {}): any;
|
|
8063
8857
|
search?(_: {}): any;
|
|
8858
|
+
"table-header-pre-search"?(_: {}): any;
|
|
8064
8859
|
"table-header-actions"?(_: {}): any;
|
|
8065
8860
|
"floating-row"?(_: {
|
|
8066
8861
|
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
@@ -8069,35 +8864,26 @@ declare const _default: {
|
|
|
8069
8864
|
}): any;
|
|
8070
8865
|
"empty-state"?(_: {}): any;
|
|
8071
8866
|
};
|
|
8072
|
-
})
|
|
8073
|
-
|
|
8867
|
+
});
|
|
8868
|
+
DataGridHeader: {
|
|
8074
8869
|
new (...args: any[]): {
|
|
8075
8870
|
$: import("vue").ComponentInternalInstance;
|
|
8076
8871
|
$data: {};
|
|
8077
8872
|
$props: Partial<{
|
|
8873
|
+
title: string;
|
|
8078
8874
|
search: string;
|
|
8079
8875
|
testId: string;
|
|
8080
|
-
|
|
8876
|
+
searchAutoFocus: boolean;
|
|
8081
8877
|
searchPlaceholder: string;
|
|
8082
|
-
count: number;
|
|
8083
8878
|
showSearch: boolean;
|
|
8084
|
-
loadingRowCount: number;
|
|
8085
|
-
emptyStateTitle: string;
|
|
8086
8879
|
isSticky: boolean;
|
|
8087
8880
|
zIndexBase: number;
|
|
8088
|
-
|
|
8089
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
8090
|
-
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
8091
|
-
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
8092
|
-
rowCustomClassKey: string;
|
|
8093
|
-
rowDataKey: string;
|
|
8094
|
-
totalCount: number;
|
|
8095
|
-
displayingText: string;
|
|
8096
|
-
outOfText: string;
|
|
8097
|
-
totalText: string;
|
|
8098
|
-
tablesSettings: tableV4.TableSettings[];
|
|
8099
|
-
loadingAndEmptyStatesColumns: tableV3.Column[];
|
|
8881
|
+
standalone: boolean;
|
|
8100
8882
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
8883
|
+
title: {
|
|
8884
|
+
type: import("vue").PropType<string>;
|
|
8885
|
+
default: string;
|
|
8886
|
+
};
|
|
8101
8887
|
search: {
|
|
8102
8888
|
type: import("vue").PropType<string>;
|
|
8103
8889
|
default: any;
|
|
@@ -8106,7 +8892,7 @@ declare const _default: {
|
|
|
8106
8892
|
type: import("vue").PropType<string>;
|
|
8107
8893
|
default: string;
|
|
8108
8894
|
};
|
|
8109
|
-
|
|
8895
|
+
searchAutoFocus: {
|
|
8110
8896
|
type: import("vue").PropType<boolean>;
|
|
8111
8897
|
default: boolean;
|
|
8112
8898
|
};
|
|
@@ -8114,22 +8900,10 @@ declare const _default: {
|
|
|
8114
8900
|
type: import("vue").PropType<string>;
|
|
8115
8901
|
default: string;
|
|
8116
8902
|
};
|
|
8117
|
-
count: {
|
|
8118
|
-
type: import("vue").PropType<number>;
|
|
8119
|
-
default: number;
|
|
8120
|
-
};
|
|
8121
8903
|
showSearch: {
|
|
8122
8904
|
type: import("vue").PropType<boolean>;
|
|
8123
8905
|
default: boolean;
|
|
8124
8906
|
};
|
|
8125
|
-
loadingRowCount: {
|
|
8126
|
-
type: import("vue").PropType<number>;
|
|
8127
|
-
default: number;
|
|
8128
|
-
};
|
|
8129
|
-
emptyStateTitle: {
|
|
8130
|
-
type: import("vue").PropType<string>;
|
|
8131
|
-
default: string;
|
|
8132
|
-
};
|
|
8133
8907
|
isSticky: {
|
|
8134
8908
|
type: import("vue").PropType<boolean>;
|
|
8135
8909
|
default: boolean;
|
|
@@ -8138,65 +8912,14 @@ declare const _default: {
|
|
|
8138
8912
|
type: import("vue").PropType<number>;
|
|
8139
8913
|
default: number;
|
|
8140
8914
|
};
|
|
8141
|
-
|
|
8142
|
-
type: import("vue").PropType<
|
|
8143
|
-
default:
|
|
8144
|
-
};
|
|
8145
|
-
getRowId: {
|
|
8146
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
8147
|
-
default: (row: any, index: any) => any;
|
|
8148
|
-
};
|
|
8149
|
-
getRowKey: {
|
|
8150
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
8151
|
-
default: (row: any, index: any) => any;
|
|
8152
|
-
};
|
|
8153
|
-
emptyStateVariant: {
|
|
8154
|
-
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
8155
|
-
default: any;
|
|
8156
|
-
};
|
|
8157
|
-
rowCustomClassKey: {
|
|
8158
|
-
type: import("vue").PropType<string>;
|
|
8159
|
-
default: string;
|
|
8160
|
-
};
|
|
8161
|
-
rowDataKey: {
|
|
8162
|
-
type: import("vue").PropType<string>;
|
|
8163
|
-
default: string;
|
|
8164
|
-
};
|
|
8165
|
-
totalCount: {
|
|
8166
|
-
type: import("vue").PropType<number>;
|
|
8167
|
-
default: number;
|
|
8168
|
-
};
|
|
8169
|
-
displayingText: {
|
|
8170
|
-
type: import("vue").PropType<string>;
|
|
8171
|
-
default: string;
|
|
8172
|
-
};
|
|
8173
|
-
outOfText: {
|
|
8174
|
-
type: import("vue").PropType<string>;
|
|
8175
|
-
default: string;
|
|
8176
|
-
};
|
|
8177
|
-
totalText: {
|
|
8178
|
-
type: import("vue").PropType<string>;
|
|
8179
|
-
default: string;
|
|
8180
|
-
};
|
|
8181
|
-
tablesSettings: {
|
|
8182
|
-
type: import("vue").PropType<tableV4.TableSettings[]>;
|
|
8183
|
-
required: true;
|
|
8184
|
-
default: () => any[];
|
|
8185
|
-
};
|
|
8186
|
-
loadingAndEmptyStatesColumns: {
|
|
8187
|
-
type: import("vue").PropType<tableV3.Column[]>;
|
|
8188
|
-
required: true;
|
|
8189
|
-
default: () => any[];
|
|
8915
|
+
standalone: {
|
|
8916
|
+
type: import("vue").PropType<boolean>;
|
|
8917
|
+
default: boolean;
|
|
8190
8918
|
};
|
|
8191
8919
|
}>> & {
|
|
8192
8920
|
"onUpdate:search"?: (query: string) => any;
|
|
8193
|
-
onOnScroll?: (scrollTop: number) => any;
|
|
8194
|
-
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
8195
|
-
tableIndex: number;
|
|
8196
|
-
}) => any;
|
|
8197
8921
|
onOnClearSearch?: () => any;
|
|
8198
|
-
|
|
8199
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "emptyStateSubtitle" | "getRowId" | "getRowKey" | "emptyStateVariant" | "rowCustomClassKey" | "rowDataKey" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
|
|
8922
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "search" | "testId" | "searchAutoFocus" | "searchPlaceholder" | "showSearch" | "isSticky" | "zIndexBase" | "standalone">;
|
|
8200
8923
|
$attrs: {
|
|
8201
8924
|
[x: string]: unknown;
|
|
8202
8925
|
};
|
|
@@ -8208,140 +8931,61 @@ declare const _default: {
|
|
|
8208
8931
|
}>;
|
|
8209
8932
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
8210
8933
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
8211
|
-
$emit: ((event: "
|
|
8212
|
-
tableIndex: number;
|
|
8213
|
-
}) => void) & ((event: "clickRow", rowIndex: number, tableIndex: number) => void);
|
|
8934
|
+
$emit: ((event: "onClearSearch") => void) & ((event: "update:search", query: string) => void);
|
|
8214
8935
|
$el: any;
|
|
8215
8936
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
8216
|
-
|
|
8217
|
-
type: import("vue").PropType<string>;
|
|
8218
|
-
default: any;
|
|
8219
|
-
};
|
|
8220
|
-
testId: {
|
|
8221
|
-
type: import("vue").PropType<string>;
|
|
8222
|
-
default: string;
|
|
8223
|
-
};
|
|
8224
|
-
isLoading: {
|
|
8225
|
-
type: import("vue").PropType<boolean>;
|
|
8226
|
-
default: boolean;
|
|
8227
|
-
};
|
|
8228
|
-
searchPlaceholder: {
|
|
8229
|
-
type: import("vue").PropType<string>;
|
|
8230
|
-
default: string;
|
|
8231
|
-
};
|
|
8232
|
-
count: {
|
|
8233
|
-
type: import("vue").PropType<number>;
|
|
8234
|
-
default: number;
|
|
8235
|
-
};
|
|
8236
|
-
showSearch: {
|
|
8237
|
-
type: import("vue").PropType<boolean>;
|
|
8238
|
-
default: boolean;
|
|
8239
|
-
};
|
|
8240
|
-
loadingRowCount: {
|
|
8241
|
-
type: import("vue").PropType<number>;
|
|
8242
|
-
default: number;
|
|
8243
|
-
};
|
|
8244
|
-
emptyStateTitle: {
|
|
8245
|
-
type: import("vue").PropType<string>;
|
|
8246
|
-
default: string;
|
|
8247
|
-
};
|
|
8248
|
-
isSticky: {
|
|
8249
|
-
type: import("vue").PropType<boolean>;
|
|
8250
|
-
default: boolean;
|
|
8251
|
-
};
|
|
8252
|
-
zIndexBase: {
|
|
8253
|
-
type: import("vue").PropType<number>;
|
|
8254
|
-
default: number;
|
|
8255
|
-
};
|
|
8256
|
-
emptyStateSubtitle: {
|
|
8257
|
-
type: import("vue").PropType<string>;
|
|
8258
|
-
default: string;
|
|
8259
|
-
};
|
|
8260
|
-
getRowId: {
|
|
8261
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
8262
|
-
default: (row: any, index: any) => any;
|
|
8263
|
-
};
|
|
8264
|
-
getRowKey: {
|
|
8265
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
8266
|
-
default: (row: any, index: any) => any;
|
|
8267
|
-
};
|
|
8268
|
-
emptyStateVariant: {
|
|
8269
|
-
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
8270
|
-
default: any;
|
|
8271
|
-
};
|
|
8272
|
-
rowCustomClassKey: {
|
|
8273
|
-
type: import("vue").PropType<string>;
|
|
8274
|
-
default: string;
|
|
8275
|
-
};
|
|
8276
|
-
rowDataKey: {
|
|
8937
|
+
title: {
|
|
8277
8938
|
type: import("vue").PropType<string>;
|
|
8278
8939
|
default: string;
|
|
8279
8940
|
};
|
|
8280
|
-
|
|
8281
|
-
type: import("vue").PropType<number>;
|
|
8282
|
-
default: number;
|
|
8283
|
-
};
|
|
8284
|
-
displayingText: {
|
|
8941
|
+
search: {
|
|
8285
8942
|
type: import("vue").PropType<string>;
|
|
8286
|
-
default:
|
|
8943
|
+
default: any;
|
|
8287
8944
|
};
|
|
8288
|
-
|
|
8945
|
+
testId: {
|
|
8289
8946
|
type: import("vue").PropType<string>;
|
|
8290
8947
|
default: string;
|
|
8291
8948
|
};
|
|
8292
|
-
|
|
8949
|
+
searchAutoFocus: {
|
|
8950
|
+
type: import("vue").PropType<boolean>;
|
|
8951
|
+
default: boolean;
|
|
8952
|
+
};
|
|
8953
|
+
searchPlaceholder: {
|
|
8293
8954
|
type: import("vue").PropType<string>;
|
|
8294
8955
|
default: string;
|
|
8295
8956
|
};
|
|
8296
|
-
|
|
8297
|
-
type: import("vue").PropType<
|
|
8298
|
-
|
|
8299
|
-
default: () => any[];
|
|
8957
|
+
showSearch: {
|
|
8958
|
+
type: import("vue").PropType<boolean>;
|
|
8959
|
+
default: boolean;
|
|
8300
8960
|
};
|
|
8301
|
-
|
|
8302
|
-
type: import("vue").PropType<
|
|
8303
|
-
|
|
8304
|
-
|
|
8961
|
+
isSticky: {
|
|
8962
|
+
type: import("vue").PropType<boolean>;
|
|
8963
|
+
default: boolean;
|
|
8964
|
+
};
|
|
8965
|
+
zIndexBase: {
|
|
8966
|
+
type: import("vue").PropType<number>;
|
|
8967
|
+
default: number;
|
|
8968
|
+
};
|
|
8969
|
+
standalone: {
|
|
8970
|
+
type: import("vue").PropType<boolean>;
|
|
8971
|
+
default: boolean;
|
|
8305
8972
|
};
|
|
8306
8973
|
}>> & {
|
|
8307
8974
|
"onUpdate:search"?: (query: string) => any;
|
|
8308
|
-
onOnScroll?: (scrollTop: number) => any;
|
|
8309
|
-
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
8310
|
-
tableIndex: number;
|
|
8311
|
-
}) => any;
|
|
8312
8975
|
onOnClearSearch?: () => any;
|
|
8313
|
-
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
8314
8976
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8315
8977
|
"update:search": (query: string) => void;
|
|
8316
|
-
onScroll: (scrollTop: number) => void;
|
|
8317
8978
|
onClearSearch: () => void;
|
|
8318
|
-
clickRow: (rowIndex: number, tableIndex: number) => void;
|
|
8319
|
-
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
8320
|
-
tableIndex: number;
|
|
8321
|
-
}) => void;
|
|
8322
8979
|
}, string, {
|
|
8980
|
+
title: string;
|
|
8323
8981
|
search: string;
|
|
8324
8982
|
testId: string;
|
|
8325
|
-
|
|
8983
|
+
searchAutoFocus: boolean;
|
|
8326
8984
|
searchPlaceholder: string;
|
|
8327
|
-
count: number;
|
|
8328
8985
|
showSearch: boolean;
|
|
8329
|
-
loadingRowCount: number;
|
|
8330
|
-
emptyStateTitle: string;
|
|
8331
8986
|
isSticky: boolean;
|
|
8332
8987
|
zIndexBase: number;
|
|
8333
|
-
|
|
8334
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
8335
|
-
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
8336
|
-
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
8337
|
-
rowCustomClassKey: string;
|
|
8338
|
-
rowDataKey: string;
|
|
8339
|
-
totalCount: number;
|
|
8340
|
-
displayingText: string;
|
|
8341
|
-
outOfText: string;
|
|
8342
|
-
totalText: string;
|
|
8343
|
-
tablesSettings: tableV4.TableSettings[];
|
|
8344
|
-
loadingAndEmptyStatesColumns: tableV3.Column[];
|
|
8988
|
+
standalone: boolean;
|
|
8345
8989
|
}, {}, string> & {
|
|
8346
8990
|
beforeCreate?: (() => void) | (() => void)[];
|
|
8347
8991
|
created?: (() => void) | (() => void)[];
|
|
@@ -8363,6 +9007,10 @@ declare const _default: {
|
|
|
8363
9007
|
$nextTick: typeof import("vue").nextTick;
|
|
8364
9008
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
8365
9009
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
9010
|
+
title: {
|
|
9011
|
+
type: import("vue").PropType<string>;
|
|
9012
|
+
default: string;
|
|
9013
|
+
};
|
|
8366
9014
|
search: {
|
|
8367
9015
|
type: import("vue").PropType<string>;
|
|
8368
9016
|
default: any;
|
|
@@ -8371,7 +9019,7 @@ declare const _default: {
|
|
|
8371
9019
|
type: import("vue").PropType<string>;
|
|
8372
9020
|
default: string;
|
|
8373
9021
|
};
|
|
8374
|
-
|
|
9022
|
+
searchAutoFocus: {
|
|
8375
9023
|
type: import("vue").PropType<boolean>;
|
|
8376
9024
|
default: boolean;
|
|
8377
9025
|
};
|
|
@@ -8379,22 +9027,10 @@ declare const _default: {
|
|
|
8379
9027
|
type: import("vue").PropType<string>;
|
|
8380
9028
|
default: string;
|
|
8381
9029
|
};
|
|
8382
|
-
count: {
|
|
8383
|
-
type: import("vue").PropType<number>;
|
|
8384
|
-
default: number;
|
|
8385
|
-
};
|
|
8386
9030
|
showSearch: {
|
|
8387
9031
|
type: import("vue").PropType<boolean>;
|
|
8388
9032
|
default: boolean;
|
|
8389
9033
|
};
|
|
8390
|
-
loadingRowCount: {
|
|
8391
|
-
type: import("vue").PropType<number>;
|
|
8392
|
-
default: number;
|
|
8393
|
-
};
|
|
8394
|
-
emptyStateTitle: {
|
|
8395
|
-
type: import("vue").PropType<string>;
|
|
8396
|
-
default: string;
|
|
8397
|
-
};
|
|
8398
9034
|
isSticky: {
|
|
8399
9035
|
type: import("vue").PropType<boolean>;
|
|
8400
9036
|
default: boolean;
|
|
@@ -8403,69 +9039,22 @@ declare const _default: {
|
|
|
8403
9039
|
type: import("vue").PropType<number>;
|
|
8404
9040
|
default: number;
|
|
8405
9041
|
};
|
|
8406
|
-
|
|
8407
|
-
type: import("vue").PropType<
|
|
8408
|
-
default:
|
|
8409
|
-
};
|
|
8410
|
-
getRowId: {
|
|
8411
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
8412
|
-
default: (row: any, index: any) => any;
|
|
8413
|
-
};
|
|
8414
|
-
getRowKey: {
|
|
8415
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
8416
|
-
default: (row: any, index: any) => any;
|
|
8417
|
-
};
|
|
8418
|
-
emptyStateVariant: {
|
|
8419
|
-
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
8420
|
-
default: any;
|
|
8421
|
-
};
|
|
8422
|
-
rowCustomClassKey: {
|
|
8423
|
-
type: import("vue").PropType<string>;
|
|
8424
|
-
default: string;
|
|
8425
|
-
};
|
|
8426
|
-
rowDataKey: {
|
|
8427
|
-
type: import("vue").PropType<string>;
|
|
8428
|
-
default: string;
|
|
8429
|
-
};
|
|
8430
|
-
totalCount: {
|
|
8431
|
-
type: import("vue").PropType<number>;
|
|
8432
|
-
default: number;
|
|
8433
|
-
};
|
|
8434
|
-
displayingText: {
|
|
8435
|
-
type: import("vue").PropType<string>;
|
|
8436
|
-
default: string;
|
|
8437
|
-
};
|
|
8438
|
-
outOfText: {
|
|
8439
|
-
type: import("vue").PropType<string>;
|
|
8440
|
-
default: string;
|
|
8441
|
-
};
|
|
8442
|
-
totalText: {
|
|
8443
|
-
type: import("vue").PropType<string>;
|
|
8444
|
-
default: string;
|
|
8445
|
-
};
|
|
8446
|
-
tablesSettings: {
|
|
8447
|
-
type: import("vue").PropType<tableV4.TableSettings[]>;
|
|
8448
|
-
required: true;
|
|
8449
|
-
default: () => any[];
|
|
8450
|
-
};
|
|
8451
|
-
loadingAndEmptyStatesColumns: {
|
|
8452
|
-
type: import("vue").PropType<tableV3.Column[]>;
|
|
8453
|
-
required: true;
|
|
8454
|
-
default: () => any[];
|
|
9042
|
+
standalone: {
|
|
9043
|
+
type: import("vue").PropType<boolean>;
|
|
9044
|
+
default: boolean;
|
|
8455
9045
|
};
|
|
8456
9046
|
}>> & {
|
|
8457
9047
|
"onUpdate:search"?: (query: string) => any;
|
|
8458
|
-
onOnScroll?: (scrollTop: number) => any;
|
|
8459
|
-
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
8460
|
-
tableIndex: number;
|
|
8461
|
-
}) => any;
|
|
8462
9048
|
onOnClearSearch?: () => any;
|
|
8463
|
-
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
8464
9049
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
8465
9050
|
__isFragment?: never;
|
|
8466
9051
|
__isTeleport?: never;
|
|
8467
9052
|
__isSuspense?: never;
|
|
8468
9053
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
9054
|
+
title: {
|
|
9055
|
+
type: import("vue").PropType<string>;
|
|
9056
|
+
default: string;
|
|
9057
|
+
};
|
|
8469
9058
|
search: {
|
|
8470
9059
|
type: import("vue").PropType<string>;
|
|
8471
9060
|
default: any;
|
|
@@ -8474,7 +9063,7 @@ declare const _default: {
|
|
|
8474
9063
|
type: import("vue").PropType<string>;
|
|
8475
9064
|
default: string;
|
|
8476
9065
|
};
|
|
8477
|
-
|
|
9066
|
+
searchAutoFocus: {
|
|
8478
9067
|
type: import("vue").PropType<boolean>;
|
|
8479
9068
|
default: boolean;
|
|
8480
9069
|
};
|
|
@@ -8482,22 +9071,10 @@ declare const _default: {
|
|
|
8482
9071
|
type: import("vue").PropType<string>;
|
|
8483
9072
|
default: string;
|
|
8484
9073
|
};
|
|
8485
|
-
count: {
|
|
8486
|
-
type: import("vue").PropType<number>;
|
|
8487
|
-
default: number;
|
|
8488
|
-
};
|
|
8489
9074
|
showSearch: {
|
|
8490
9075
|
type: import("vue").PropType<boolean>;
|
|
8491
9076
|
default: boolean;
|
|
8492
9077
|
};
|
|
8493
|
-
loadingRowCount: {
|
|
8494
|
-
type: import("vue").PropType<number>;
|
|
8495
|
-
default: number;
|
|
8496
|
-
};
|
|
8497
|
-
emptyStateTitle: {
|
|
8498
|
-
type: import("vue").PropType<string>;
|
|
8499
|
-
default: string;
|
|
8500
|
-
};
|
|
8501
9078
|
isSticky: {
|
|
8502
9079
|
type: import("vue").PropType<boolean>;
|
|
8503
9080
|
default: boolean;
|
|
@@ -8506,116 +9083,32 @@ declare const _default: {
|
|
|
8506
9083
|
type: import("vue").PropType<number>;
|
|
8507
9084
|
default: number;
|
|
8508
9085
|
};
|
|
8509
|
-
|
|
8510
|
-
type: import("vue").PropType<
|
|
8511
|
-
default:
|
|
8512
|
-
};
|
|
8513
|
-
getRowId: {
|
|
8514
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
8515
|
-
default: (row: any, index: any) => any;
|
|
8516
|
-
};
|
|
8517
|
-
getRowKey: {
|
|
8518
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
8519
|
-
default: (row: any, index: any) => any;
|
|
8520
|
-
};
|
|
8521
|
-
emptyStateVariant: {
|
|
8522
|
-
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
8523
|
-
default: any;
|
|
8524
|
-
};
|
|
8525
|
-
rowCustomClassKey: {
|
|
8526
|
-
type: import("vue").PropType<string>;
|
|
8527
|
-
default: string;
|
|
8528
|
-
};
|
|
8529
|
-
rowDataKey: {
|
|
8530
|
-
type: import("vue").PropType<string>;
|
|
8531
|
-
default: string;
|
|
8532
|
-
};
|
|
8533
|
-
totalCount: {
|
|
8534
|
-
type: import("vue").PropType<number>;
|
|
8535
|
-
default: number;
|
|
8536
|
-
};
|
|
8537
|
-
displayingText: {
|
|
8538
|
-
type: import("vue").PropType<string>;
|
|
8539
|
-
default: string;
|
|
8540
|
-
};
|
|
8541
|
-
outOfText: {
|
|
8542
|
-
type: import("vue").PropType<string>;
|
|
8543
|
-
default: string;
|
|
8544
|
-
};
|
|
8545
|
-
totalText: {
|
|
8546
|
-
type: import("vue").PropType<string>;
|
|
8547
|
-
default: string;
|
|
8548
|
-
};
|
|
8549
|
-
tablesSettings: {
|
|
8550
|
-
type: import("vue").PropType<tableV4.TableSettings[]>;
|
|
8551
|
-
required: true;
|
|
8552
|
-
default: () => any[];
|
|
8553
|
-
};
|
|
8554
|
-
loadingAndEmptyStatesColumns: {
|
|
8555
|
-
type: import("vue").PropType<tableV3.Column[]>;
|
|
8556
|
-
required: true;
|
|
8557
|
-
default: () => any[];
|
|
9086
|
+
standalone: {
|
|
9087
|
+
type: import("vue").PropType<boolean>;
|
|
9088
|
+
default: boolean;
|
|
8558
9089
|
};
|
|
8559
9090
|
}>> & {
|
|
8560
9091
|
"onUpdate:search"?: (query: string) => any;
|
|
8561
|
-
onOnScroll?: (scrollTop: number) => any;
|
|
8562
|
-
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
8563
|
-
tableIndex: number;
|
|
8564
|
-
}) => any;
|
|
8565
9092
|
onOnClearSearch?: () => any;
|
|
8566
|
-
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
8567
9093
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8568
9094
|
"update:search": (query: string) => void;
|
|
8569
|
-
onScroll: (scrollTop: number) => void;
|
|
8570
9095
|
onClearSearch: () => void;
|
|
8571
|
-
clickRow: (rowIndex: number, tableIndex: number) => void;
|
|
8572
|
-
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
8573
|
-
tableIndex: number;
|
|
8574
|
-
}) => void;
|
|
8575
9096
|
}, string, {
|
|
9097
|
+
title: string;
|
|
8576
9098
|
search: string;
|
|
8577
9099
|
testId: string;
|
|
8578
|
-
|
|
9100
|
+
searchAutoFocus: boolean;
|
|
8579
9101
|
searchPlaceholder: string;
|
|
8580
|
-
count: number;
|
|
8581
9102
|
showSearch: boolean;
|
|
8582
|
-
loadingRowCount: number;
|
|
8583
|
-
emptyStateTitle: string;
|
|
8584
9103
|
isSticky: boolean;
|
|
8585
9104
|
zIndexBase: number;
|
|
8586
|
-
|
|
8587
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
8588
|
-
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
8589
|
-
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
8590
|
-
rowCustomClassKey: string;
|
|
8591
|
-
rowDataKey: string;
|
|
8592
|
-
totalCount: number;
|
|
8593
|
-
displayingText: string;
|
|
8594
|
-
outOfText: string;
|
|
8595
|
-
totalText: string;
|
|
8596
|
-
tablesSettings: tableV4.TableSettings[];
|
|
8597
|
-
loadingAndEmptyStatesColumns: tableV3.Column[];
|
|
9105
|
+
standalone: boolean;
|
|
8598
9106
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
8599
|
-
$slots:
|
|
8600
|
-
column: tableV3.Column;
|
|
8601
|
-
}) => any>> & Partial<Record<string, (_: {
|
|
8602
|
-
cell: any;
|
|
8603
|
-
isLoading: any;
|
|
8604
|
-
cellIndex: any;
|
|
8605
|
-
row: any;
|
|
8606
|
-
rowIndex: any;
|
|
8607
|
-
}) => any>> & Partial<Record<string, (_: {
|
|
8608
|
-
column: tableV3.Column;
|
|
8609
|
-
}) => any>> & {
|
|
9107
|
+
$slots: {
|
|
8610
9108
|
title?(_: {}): any;
|
|
9109
|
+
"table-header-pre-search"?(_: {}): any;
|
|
8611
9110
|
search?(_: {}): any;
|
|
8612
9111
|
"table-header-actions"?(_: {}): any;
|
|
8613
|
-
"floating-row"?(_: {
|
|
8614
|
-
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
8615
|
-
rowIndex: number;
|
|
8616
|
-
tableIndex: number;
|
|
8617
|
-
}): any;
|
|
8618
|
-
"empty-state"?(_: {}): any;
|
|
8619
9112
|
};
|
|
8620
9113
|
});
|
|
8621
9114
|
Table: {
|