@shival99/z-ui 1.2.33 → 1.2.35
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.
|
@@ -3063,6 +3063,7 @@ class ZTableComponent {
|
|
|
3063
3063
|
});
|
|
3064
3064
|
explicitEffect([this.zConfig], ([cfg]) => {
|
|
3065
3065
|
const initial = cfg.initialState;
|
|
3066
|
+
console.log('🚀 ~ initial:', initial);
|
|
3066
3067
|
if (initial) {
|
|
3067
3068
|
if (initial.columnPinning) {
|
|
3068
3069
|
this.columnPinning.set(initial.columnPinning);
|
|
@@ -3652,6 +3653,7 @@ class ZTableComponent {
|
|
|
3652
3653
|
}
|
|
3653
3654
|
try {
|
|
3654
3655
|
const config = ZCacheService.get(`table-config-${key}`);
|
|
3656
|
+
console.log('🚀 ~ config:', config);
|
|
3655
3657
|
if (!config) {
|
|
3656
3658
|
return;
|
|
3657
3659
|
}
|
|
@@ -3681,6 +3683,7 @@ class ZTableComponent {
|
|
|
3681
3683
|
if (config.columnSizing) {
|
|
3682
3684
|
this.table.setColumnSizing(config.columnSizing);
|
|
3683
3685
|
}
|
|
3686
|
+
console.log('zzz🚀 ~ config:', config);
|
|
3684
3687
|
}
|
|
3685
3688
|
catch (error) {
|
|
3686
3689
|
console.error('Failed to load table config:', error);
|