0.8.0 • Published 5 months ago
@fortawesome/fa-icon-chooser v0.8.0
fa-icon-chooser web component
Usage
Add it to your JavaScript bundle:
npm install --save @fortawesome/fa-icon-chooserAfter the resulting JavaScript bundle has been loaded in the DOM, you can
mount an fa-icon-chooser in the DOM. Suppose your HTML has a container div:
<div id="fa-icon-chooser-container"></div>Then you could write JavaScript like this:
function handleQuery(query) {
// some function that handles queries
}
function getUrlText(url) {
// some function that handles GET requests
}
function handleResult(event) {
const result = event && event.detail;
if (result) {
console.log(`<i class"${result.prefix} ${result.iconName}">`);
}
}
window.addEventListener('DOMContentLoaded', event => {
const container = document.querySelector('#fa-icon-chooser-container');
const el = document.createElement('fa-icon-chooser');
el.handleQuery = handleQuery;
el.getUrlText = getUrlText;
el.addEventListener('finish', handleResult);
container.appendChild(el);
});See the fa-icon-chooser API Reference
for details about what you'd need to implement in
handleQuery(), getUrlText(), and handleResult().
You can also look at some example implementations in this repo's development runtime code.
0.8.0-4
9 months ago
0.8.0-3
9 months ago
0.8.0-7
9 months ago
0.8.0-5
9 months ago
0.8.0
9 months ago
0.9.0-1
5 months ago
0.9.0-2
5 months ago
0.8.0-1
1 year ago
0.7.0
1 year ago
0.6.0
2 years ago
0.5.0
3 years ago
0.4.1
3 years ago
0.4.0
3 years ago
0.3.0
4 years ago
0.3.0-rc1
4 years ago
0.2.1
4 years ago
0.2.0
4 years ago
0.1.6
4 years ago
0.1.2
4 years ago
0.1.0
4 years ago