Gathering detailed insights and metrics for @polymer/iron-autogrow-textarea
Gathering detailed insights and metrics for @polymer/iron-autogrow-textarea
Gathering detailed insights and metrics for @polymer/iron-autogrow-textarea
Gathering detailed insights and metrics for @polymer/iron-autogrow-textarea
npm install @polymer/iron-autogrow-textarea
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
19 Stars
229 Commits
48 Forks
16 Watching
19 Branches
39 Contributors
Updated on 01 Mar 2021
JavaScript (55.01%)
HTML (44.99%)
Cumulative downloads
Total Downloads
Last day
-15.1%
1,606
Compared to previous day
Last week
5.3%
12,609
Compared to previous week
Last month
-15.8%
53,416
Compared to previous month
Last year
-6.2%
701,180
Compared to previous year
4
iron-autogrow-textarea
is an element containing a textarea that grows in height as more
lines of input are entered. Unless an explicit height or the maxRows
property is set, it will
never scroll.
See: Documentation, Demo.
npm install --save @polymer/iron-autogrow-textarea
1<html> 2 <head> 3 <script type="module"> 4 import '@polymer/iron-autogrow-textarea/iron-autogrow-textarea.js'; 5 </script> 6 </head> 7 <body> 8 <iron-autogrow-textarea></iron-autogrow-textarea> 9 </body> 10</html>
1import {PolymerElement, html} from '@polymer/polymer'; 2import '@polymer/iron-autogrow-textarea/iron-autogrow-textarea.js'; 3 4class SampleElement extends PolymerElement { 5 static get template() { 6 return html` 7 <iron-autogrow-textarea></iron-autogrow-textarea> 8 `; 9 } 10} 11customElements.define('sample-element', SampleElement);
If you want to send a PR to this element, here are the instructions for running the tests and demo locally:
1git clone https://github.com/PolymerElements/iron-autogrow-textarea 2cd iron-autogrow-textarea 3npm install 4npm install -g polymer-cli
1polymer serve --npm 2open http://127.0.0.1:<port>/demo/
1polymer test --npm
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
Found 6/21 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
27 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More