Skip to content

Commit 9828779

Browse files
committed
chore: release 14.1.5
1 parent d865ae1 commit 9828779

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-gridster2",
3-
"version": "14.1.4",
3+
"version": "14.1.5",
44
"license": "MIT",
55
"scripts": {
66
"husky": "husky",

projects/angular-gridster2/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-gridster2",
3-
"version": "14.1.4",
3+
"version": "14.1.5",
44
"license": "MIT",
55
"sideEffects": false,
66
"dependencies": {

projects/angular-gridster2/src/lib/gridsterRenderer.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ export class GridsterRenderer {
1414
* Caches the last grid column styles.
1515
* This improves the grid responsiveness by caching and reusing the last style object instead of creating a new one.
1616
*/
17-
private lastGridColumnStyles: { [key: number]: GridColumnCachedStyle } = {};
17+
private lastGridColumnStyles: Record<number, GridColumnCachedStyle> = {};
1818

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

2525
constructor(private gridster: GridsterComponentInterface) {}
2626

0 commit comments

Comments
 (0)