@indigina/ui-kit 1.1.462 → 1.1.463
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.
|
@@ -10512,6 +10512,7 @@ var KitUserSettingsKeys;
|
|
|
10512
10512
|
(function (KitUserSettingsKeys) {
|
|
10513
10513
|
KitUserSettingsKeys["ExpandNotesPanel"] = "expandNotesPanel";
|
|
10514
10514
|
KitUserSettingsKeys["UseDarkThemeForMobile"] = "useDarkThemeForMobile";
|
|
10515
|
+
KitUserSettingsKeys["FilterDetails"] = "filterDetails";
|
|
10515
10516
|
})(KitUserSettingsKeys || (KitUserSettingsKeys = {}));
|
|
10516
10517
|
|
|
10517
10518
|
class KitFilterCheckboxComponent {
|
|
@@ -12057,6 +12058,8 @@ class KitEntityGridComponent {
|
|
|
12057
12058
|
ngOnInit() {
|
|
12058
12059
|
const stateColumns = this.gridState().columns;
|
|
12059
12060
|
const availableColumns = this.gridColumns();
|
|
12061
|
+
const filterDetailsSetting = this.store.selectSnapshot(KitUserSettingsState.getSettingByKey(KitUserSettingsKeys.FilterDetails));
|
|
12062
|
+
this.filtersVisible.set(filterDetailsSetting === 'true');
|
|
12060
12063
|
if (kitShouldResetGridState({ stateColumns, availableColumns })) {
|
|
12061
12064
|
this.store.dispatch(new StateReset(KitGridState, ...this.statesToReset()));
|
|
12062
12065
|
}
|