
Security News
libxml2 Maintainer Ends Embargoed Vulnerability Reports, Citing Unsustainable Burden
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
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
The npm package chatter-box-input receives a total of 4 weekly downloads. As such, chatter-box-input popularity was classified as not popular.
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
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.