@material/mwc-base
Advanced tools
Comparing version 0.5.0 to 0.6.0
@@ -40,2 +40,3 @@ /** | ||
setAriaLabel(label: string): void; | ||
firstUpdated(): void; | ||
} |
@@ -34,3 +34,9 @@ /** | ||
} | ||
firstUpdated() { | ||
super.firstUpdated(); | ||
this.mdcRoot.addEventListener('change', e => { | ||
this.dispatchEvent(new Event('change', e)); | ||
}); | ||
} | ||
} | ||
//# sourceMappingURL=form-element.js.map |
{ | ||
"name": "@material/mwc-base", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "", | ||
@@ -17,3 +17,4 @@ "repository": { | ||
"access": "public" | ||
} | ||
}, | ||
"gitHead": "1961a2530cc20bc020bba88f4da76d085ad1f1e0" | ||
} |
# mwc-base | ||
> :warning: These components are a work in progress. They are pre-release and should be considered experimental, as they may undergo major changes before release. We are experimenting with alternate architectures and approaches with the goal of allowing us to bring the most correct and optimal implementation of Material components to the widest possible audiences. Visible progress may be slow, as this research is across teams and repositories so is not consistently reflected in commits to this codebase. :warning: | ||
A suite of shared libraries and utility functions for [Material Components](https://material.io/components/)[Web Components](https://www.webcomponents.org/introduction) |
@@ -59,2 +59,9 @@ /** | ||
} | ||
firstUpdated() { | ||
super.firstUpdated(); | ||
this.mdcRoot.addEventListener('change', e => { | ||
this.dispatchEvent(new Event('change', e)); | ||
}); | ||
} | ||
} |
{ | ||
"extends": "../../tsconfig.json", | ||
"compilerOptions": { | ||
"composite": true, | ||
"rootDir": "src", | ||
"outDir": "." | ||
"outDir": ".", | ||
"tsBuildInfoFile": ".tsbuildinfo" | ||
}, | ||
@@ -7,0 +9,0 @@ "include": [ |
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
250919
5
454