lwc-recipes-oss-ui-components
Advanced tools
Comparing version 0.3.1 to 0.3.2
{ | ||
"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 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21585
379