@one-paragon/angular-utilities 2.0.16 → 2.0.17

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.
@@ -5642,7 +5642,7 @@ class TableContainerComponent {
5642
5642
  return ({ value: updateSortState(prev.value.value, curr), timestamp: new Date().getTime() });
5643
5643
  }
5644
5644
  });
5645
- $allData = computed(() => this.$tableBuilder()?.$data() || []);
5645
+ $allData = computed(() => (this.$tableBuilder()?.$initialized() && this.$tableBuilder()?.$data()) || []);
5646
5646
  $allDataTimeStamped = computed(() => {
5647
5647
  const data = this.$allData();
5648
5648
  if (!data)