vanilla-match-height
Advanced tools
Comparing version 1.2.2 to 1.2.3
@@ -0,1 +1,8 @@ | ||
<a name="1.2.3"></a> | ||
# 1.2.3 (2024-01-19) | ||
### release summary | ||
- Change settings like optional on TS definition | ||
<a name="1.2.2"></a> | ||
@@ -2,0 +9,0 @@ # 1.2.2 (2024-01-17) |
/** | ||
* vanilla-match-height v1.2.2 by @mitera | ||
* vanilla-match-height v1.2.3 by @mitera | ||
* Simone Miterangelis <simone@mite.it> | ||
@@ -7,3 +7,3 @@ * License: MIT | ||
interface HTMLElement { | ||
matchHeight(settings: Settings): MatchHeight; | ||
matchHeight(settings?: Settings): MatchHeight; | ||
} | ||
@@ -10,0 +10,0 @@ interface MatchHeight { |
"use strict"; | ||
/** | ||
* vanilla-match-height v1.2.2 by @mitera | ||
* vanilla-match-height v1.2.3 by @mitera | ||
* Simone Miterangelis <simone@mite.it> | ||
@@ -5,0 +5,0 @@ * License: MIT |
{ | ||
"name": "vanilla-match-height", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "author": "Simone Miterangelis <simone@mite.it>", |
/** | ||
* vanilla-match-height v1.2.2 by @mitera | ||
* vanilla-match-height v1.2.3 by @mitera | ||
* Simone Miterangelis <simone@mite.it> | ||
@@ -8,3 +8,3 @@ * License: MIT | ||
interface HTMLElement { | ||
matchHeight(settings: Settings): MatchHeight; | ||
matchHeight(settings?: Settings): MatchHeight; | ||
} | ||
@@ -44,3 +44,3 @@ | ||
// Extend the element method | ||
HTMLElement.prototype.matchHeight = function(settings: Settings) { | ||
HTMLElement.prototype.matchHeight = function(settings?: Settings) { | ||
// @ts-ignore | ||
@@ -47,0 +47,0 @@ return new MatchHeight(this, settings); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
181538