@indigina/ui-kit 1.1.282 → 1.1.283
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.
|
@@ -8637,6 +8637,7 @@ class KitEntityGridComponent {
|
|
|
8637
8637
|
this.kitButtonKind = KitButtonKind;
|
|
8638
8638
|
this.kitButtonIconPosition = KitButtonIconPosition;
|
|
8639
8639
|
this.kitBadgeTheme = KitBadgeTheme;
|
|
8640
|
+
this.gridState = this.store.selectSignal(KIT_GRID_STATE_TOKEN);
|
|
8640
8641
|
this.isExporting = signal(false, ...(ngDevMode ? [{ debugName: "isExporting" }] : []));
|
|
8641
8642
|
effect(() => {
|
|
8642
8643
|
this.isExporting.set(!!this.gridExportComponent()?.isGridExporting());
|
|
@@ -8652,6 +8653,7 @@ class KitEntityGridComponent {
|
|
|
8652
8653
|
}
|
|
8653
8654
|
onGridViewChange() {
|
|
8654
8655
|
this.gridViewChanged.emit();
|
|
8656
|
+
this.searchIsOpen.set(!!this.gridState()?.search);
|
|
8655
8657
|
}
|
|
8656
8658
|
onDataStateChange(event) {
|
|
8657
8659
|
this.store.dispatch([
|