Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
chatter-box-input
Advanced tools
This Angular Material TextArea Input that a formControl displaying the charCount or Char Remaining
Chatterbox is a simple material formcontrol component text area that expands and indicates the number of chars entered or remaining.
The following Inputs are available
Input | Type | Defaut | Description |
---|---|---|---|
maxLength | NUMBER | INF | maximum amount of chars accepted for input |
minLength | NUMBER | 0 | minimum amount of chars accepted for input |
required | BOOLEAN | FALSE | Text entry is required |
label | STRING | NULL | label for TextArea |
placeholder | STRING | NULL | placeholder text in TextArea input |
counterLabel | STRING | NULL | label for Counter |
type | NUMBER | 1 | 1 is Total Count and -1 is Count Remaining |
minRows | NUMBER | NULL | Min Rows (Height) for TextArea |
maxRows | NUMBER | NULL | Max Rows (Height) for TextArea |
appearence | STRING | NULL | input style |
readonly | BOOLEAN | false | makes text for disabled state black NOT 50% |
formControlName="comments"
countrySelection = this.fb.group({
comments: [null],
})
Here is the minimum setup required
<wave-chatter-box
[maxLength]="255"
[minLength]="0"
[label]="'Please enter your message'"
[placeholder]="'I need some assisstance...'"
[counterLabel]="'Total Remaining'"
[type]="-1"
formControlName="chatter"
></wave-chatter-box>
Here is the maximum setup
<div [formGroup]="form">
<wave-chatter-box
[maxLength]="100"
[minLength]="10"
[label]="'Please enter your message'"
[placeholder]="'I need some assisstance...'"
[counterLabel]="'Total Characters Remaining'"
[type]="-1"
[minRows]="15"
[maxRows]="15"
appearance="outline"
required="true"
[readOnly]="true"
formControlName="chatter"
></wave-chatter-box>
</div>
FAQs
This Angular Material TextArea Input that a formControl displaying the charCount or Char Remaining
We found that chatter-box-input demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.