Skip to content

Commit

Permalink
chore: release 14.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tiberiuzuld committed Mar 21, 2023
1 parent d865ae1 commit 9828779
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-gridster2",
"version": "14.1.4",
"version": "14.1.5",
"license": "MIT",
"scripts": {
"husky": "husky",
Expand Down
2 changes: 1 addition & 1 deletion projects/angular-gridster2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-gridster2",
"version": "14.1.4",
"version": "14.1.5",
"license": "MIT",
"sideEffects": false,
"dependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ export class GridsterRenderer {
* Caches the last grid column styles.
* This improves the grid responsiveness by caching and reusing the last style object instead of creating a new one.
*/
private lastGridColumnStyles: { [key: number]: GridColumnCachedStyle } = {};
private lastGridColumnStyles: Record<number, GridColumnCachedStyle> = {};

/**
* Caches the last grid row styles.
* This improves the grid responsiveness by caching and reusing the last style object instead of creating a new one.
*/
private lastGridRowStyles: { [key: number]: GridRowCachedStyle } = {};
private lastGridRowStyles: Record<number, GridRowCachedStyle> = {};

constructor(private gridster: GridsterComponentInterface) {}

Expand Down

0 comments on commit 9828779

Please sign in to comment.