@shival99/z-ui 1.2.17 → 1.2.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.
@@ -2143,7 +2143,6 @@ class ZTableComponent {
2143
2143
  hasScrollRight = signal(false, ...(ngDevMode ? [{ debugName: "hasScrollRight" }] : []));
2144
2144
  _columnPinVersion = signal(0, ...(ngDevMode ? [{ debugName: "_columnPinVersion" }] : []));
2145
2145
  _dataForceUpdate = signal(0, ...(ngDevMode ? [{ debugName: "_dataForceUpdate" }] : []));
2146
- _configLoadedFromCache = signal(false, ...(ngDevMode ? [{ debugName: "_configLoadedFromCache" }] : []));
2147
2146
  _columnConfigCache = new Map();
2148
2147
  _lastColumnsRef = null;
2149
2148
  pinnedColumnIds = computed(() => {
@@ -2736,9 +2735,6 @@ class ZTableComponent {
2736
2735
  const cfg = this.zConfig();
2737
2736
  const initial = cfg.initialState;
2738
2737
  untracked(() => {
2739
- if (this._configLoadedFromCache()) {
2740
- return;
2741
- }
2742
2738
  if (initial) {
2743
2739
  if (initial.columnPinning) {
2744
2740
  this.columnPinning.set(initial.columnPinning);
@@ -3345,7 +3341,6 @@ class ZTableComponent {
3345
3341
  }
3346
3342
  if (config.columnPinning) {
3347
3343
  this.columnPinning.set(config.columnPinning);
3348
- this._configLoadedFromCache.set(true);
3349
3344
  }
3350
3345
  if (config.columnVisibility) {
3351
3346
  this.columnVisibility.set(config.columnVisibility);