@itfin/components 1.4.17 → 1.4.18
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/package.json
CHANGED
|
@@ -185,7 +185,7 @@ class itfView extends Vue {
|
|
|
185
185
|
filter = {};
|
|
186
186
|
loadingData = false;
|
|
187
187
|
activeIds = [];
|
|
188
|
-
tableColumns =
|
|
188
|
+
tableColumns = [];
|
|
189
189
|
totals = null;
|
|
190
190
|
|
|
191
191
|
@Watch('selectedIds', { deep: true, immediate: true })
|
|
@@ -353,6 +353,14 @@ class itfView extends Vue {
|
|
|
353
353
|
this.tableColumns = tableSchema;
|
|
354
354
|
}
|
|
355
355
|
|
|
356
|
+
getSorting() {
|
|
357
|
+
return this.sorting;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
getFilter() {
|
|
361
|
+
return this.filter;
|
|
362
|
+
}
|
|
363
|
+
|
|
356
364
|
getTableState() {
|
|
357
365
|
return this.$refs.table.getTableState();
|
|
358
366
|
}
|