@spectrum-web-components/split-view
Advanced tools
Comparing version 0.4.8 to 0.4.9
{ | ||
"name": "@spectrum-web-components/split-view", | ||
"version": "0.4.8", | ||
"version": "0.4.9", | ||
"publishConfig": { | ||
@@ -47,3 +47,3 @@ "access": "public" | ||
"dependencies": { | ||
"@spectrum-web-components/base": "^0.5.7", | ||
"@spectrum-web-components/base": "^0.5.8", | ||
"tslib": "^2.0.0" | ||
@@ -59,3 +59,3 @@ }, | ||
], | ||
"gitHead": "275ee61b152ac3eed0cd1603d8eab2aec90876a0" | ||
"gitHead": "e5cd4a0db2201b8126eb9133ac3c24172d086359" | ||
} |
@@ -64,4 +64,3 @@ import { CSSResultArray, PropertyValues, SpectrumElement, TemplateResult } from '@spectrum-web-components/base'; | ||
private dispatchChangeEvent; | ||
protected firstUpdated(changed: PropertyValues): void; | ||
protected updated(changed: PropertyValues): void; | ||
protected willUpdate(changed: PropertyValues): void; | ||
} |
@@ -293,9 +293,4 @@ /* | ||
} | ||
firstUpdated(changed) { | ||
super.firstUpdated(changed); | ||
this.checkResize(); | ||
} | ||
updated(changed) { | ||
super.updated(changed); | ||
if (changed.has('primarySize')) { | ||
willUpdate(changed) { | ||
if (!this.hasUpdated || changed.has('primarySize')) { | ||
this.splitterPos = undefined; | ||
@@ -302,0 +297,0 @@ this.checkResize(); |
Sorry, the diff of this file is not supported yet
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
256961
2422