@inspark/inspark-components 1.0.10 → 1.0.13
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.
- package/full/bundles/inspark-inspark-components.umd.js +3 -1
- package/full/bundles/inspark-inspark-components.umd.js.map +1 -1
- package/full/bundles/inspark-inspark-components.umd.min.js +1 -1
- package/full/bundles/inspark-inspark-components.umd.min.js.map +1 -1
- package/full/esm2015/components/table/table.component.js +4 -2
- package/full/esm5/components/table/table.component.js +4 -2
- package/full/fesm2015/inspark-inspark-components.js +3 -1
- package/full/fesm2015/inspark-inspark-components.js.map +1 -1
- package/full/fesm5/inspark-inspark-components.js +3 -1
- package/full/fesm5/inspark-inspark-components.js.map +1 -1
- package/full/index.css +1 -1
- package/full/inspark-inspark-components.metadata.json +1 -1
- package/full/package.json +1 -1
- package/interface/package.json +1 -1
- package/package.json +1 -1
|
@@ -1922,7 +1922,9 @@
|
|
|
1922
1922
|
var hiddenFields = (this.columns || []).filter(function (_col) { return _col.isHidden; }).map(function (_col) { return _col.field; }).join(',');
|
|
1923
1923
|
this.saveToLocalStorage(hiddenFields, this.stateKey + 'HiddenFields');
|
|
1924
1924
|
window.localStorage.removeItem(this.stateKey);
|
|
1925
|
-
this.dt
|
|
1925
|
+
if (this.dt) {
|
|
1926
|
+
this.dt.restoreState();
|
|
1927
|
+
}
|
|
1926
1928
|
}
|
|
1927
1929
|
};
|
|
1928
1930
|
TableComponent.prototype.countVisibleColumns = function () {
|