New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@spacebartech/text-input

Package Overview
Dependencies
Maintainers
2
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@spacebartech/text-input - npm Package Compare versions

Comparing version
1.2.7
to
1.2.8
+13
-1
package.json
{
"name": "@spacebartech/text-input",
"version": "1.2.7",
"version": "1.2.8",
"description": "Text input component",

@@ -76,2 +76,14 @@ "main": "dist/index.js",

},
"release": {
"analyzeCommits": {
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"scope": "readme",
"release": "patch"
}
]
}
},
"publishConfig": {

@@ -78,0 +90,0 @@ "access": "public"

@@ -12,4 +12,34 @@ Text Input

```
props : {
options : {
type : Object,
default : () => ( {} )
},
errors : {
type : String,
default : () => ''
},
value : {
type : String,
default : () => '',
},
}
Options must have the following props :
label : String,
placeholder : String,
classList : String
text-input(
:options="options"
:errors="'Error String'"
@value='value'
@change='' // emits when inner textarea has changed
)
```
## Tests
`npm test`