New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

lwc-recipes-oss-ui-components

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lwc-recipes-oss-ui-components - npm Package Compare versions

Comparing version

to
0.3.2

18

package.json
{
"name": "lwc-recipes-oss-ui-components",
"version": "0.3.1",
"version": "0.3.2",
"author": "Salesforce Developer Evangelism",

@@ -13,3 +13,3 @@ "bugs": "https://github.com/trailheadapps/lwc-recipes-oss-ui-components/issues",

"lint-staged": "^9.3.0",
"lwc-services": "^1.3.2"
"lwc-services": "^2.0.5"
},

@@ -60,5 +60,15 @@ "engines": {

"modules": [
"src/modules"
{
"dir": "src/modules"
}
],
"expose": [
"ui/button",
"ui/card",
"ui/input",
"ui/navfooter",
"ui/output",
"ui/select"
]
}
}
}

@@ -58,2 +58,6 @@ import { LightningElement, api, track } from 'lwc';

get isPasswordField() {
return this.type === 'password';
}
get isSearchField() {

@@ -64,3 +68,3 @@ return this.type === 'search';

get isTextField() {
return this.type === 'text' || this.type === 'search';
return this.type === 'password' || this.type === 'text' || this.type === 'search';
}

@@ -67,0 +71,0 @@