@orama/wc-components v0.1.11
Orama UI Web Components
This library provides a set of ready to use Web Components for easily implementing Search and AI Chat functionalities in your web applications through Orama.
Installation
You can install Orama Web Components using npm, yarn, pnpm, bun:
npm i @orama/wc-components
Or import it directly in a browser module:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@orama/wc-components@latest/dist/orama-ui/orama-ui.css" />
<script type="module" src="https://cdn.jsdelivr.net/npm/@orama/wc-components@latest/dist/orama-ui/orama-ui.esm.js"></script>
<script nomodule src="https://cdn.jsdelivr.net/npm/@orama/wc-components@latest/dist/cjs/orama-ui.cjs.js"></script>
<div>
<div id="orama-ui">
<orama-search-button onClick="open = !open">Search...</orama-search-button>
<orama-search-box></orama-search-box>
</div>
</div>
<script>
let open = false;
Object.assign(document.querySelector("orama-search-box"), {
open: open,
index: {
endpoint: "https://cloud.orama.run/v1/indexes/orama-docs-bzo330",
api_key: "NKiqTJnwnKsQCdxN7RyOBJgeoW5hJ594",
},
facetProperty: 'category',
sourceBaseUrl: "https://docs.orama.com",
sourcesMap: {
title: 'title',
description: 'content'
},
resultMap: {
title: 'title',
description: 'content',
section: 'category',
},
searchPlaceholder: 'Search something...',
chatPlaceholder: "What do you want to learn about Orama?",
suggestions: [
'What is Orama?',
'Does Orama integrate with Shopify?',
'How do I create an answer session?'
]
});
</script>
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
9 months ago
9 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago