diff --git a/README.md b/README.md index 2ca0497..acdfc3b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # Salesforce Lookup Component (Lightning Web Component version) + Aura version is available [here](https://github.com/pozil/sfdc-ui-lookup).
@@ -8,23 +9,26 @@ Aura version is available [here](https://github.com/pozil/sfdc-ui-lookup).
## About
+
This is a generic & customizable lookup component built using Salesforce [Lightning Web Components](https://developer.salesforce.com/docs/component-library/documentation/lwc) and [SLDS](https://www.lightningdesignsystem.com/) style.
It does not rely on third party libraries and you have full control over its datasource.
Features
The lookup component provides the following features:
-- customizable data source that can return mixed sObject types
-- single or multiple selection mode
-- client-side caching & request throttling
-- built-in server request rate limit mechanism
-- project is unit tested
+
+- customizable data source that can return mixed sObject types
+- single or multiple selection mode
+- client-side caching & request throttling
+- built-in server request rate limit mechanism
+- project is unit tested
## Documentation + Follow these steps in order to use the lookup component: ### 1) Write the search endpoint @@ -49,12 +53,14 @@ import apexSearch from '@salesforce/apex/SampleLookupController.search'; The lookup component exposes a `search` event that is fired when a search needs to be performed on the server-side. The parent component that contains the lookup must handle the `search` event: + ```xml