ods-component-lib 1.16.4 → 1.16.6
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/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +6 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1406,7 +1406,11 @@ function grid(props) {
|
|
|
1406
1406
|
valueFormat: item.valueFormat ? item.valueFormat : "",
|
|
1407
1407
|
displayFormat: "Total: {0}"
|
|
1408
1408
|
});
|
|
1409
|
-
}))
|
|
1409
|
+
})), React__default.createElement(dataGrid.StateStoring, {
|
|
1410
|
+
enabled: true,
|
|
1411
|
+
type: "localStorage",
|
|
1412
|
+
storageKey: props.exportFileName + "Storage"
|
|
1413
|
+
}))));
|
|
1410
1414
|
}
|
|
1411
1415
|
|
|
1412
1416
|
var exportFormats$1 = ['xlsx', 'pdf'];
|