lucos_search_component 0.0.10 → 0.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -13,21 +13,15 @@ import 'lucos_search_component';
13
13
 
14
14
  Include the following in your html:
15
15
  ```
16
- <lucos-search></lucos-search>
16
+ <span is="lucos-search">
17
+ <select>
18
+ <option>A</option>
19
+ <option>B</option>
20
+ <option>C</option>
21
+ </select>
22
+ </span>
17
23
  ```
18
24
 
19
- Include the following in the project's webpack.config.js:
20
- ```
21
-
22
- module: {
23
- rules: [
24
- {
25
- test: /\.css$/i,
26
- use: ["css-loader"],
27
- },
28
- ],
29
- },
30
- ```
31
25
 
32
26
  ## Manual Testing
33
27