lwc-recipes-oss-ui-components
Advanced tools
Comparing version
{ | ||
"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 @@ |
21585
1.52%379
0.8%