@skhemata/skhemata-faq
Version:
Skhemata FAQ Web Component. This web component provides website FAQ functionality with question and answer style of FAQ.
34 lines (33 loc) • 884 B
TypeScript
/**
*
* Lit Faq Search Element
*
* */
import { SkhemataBase, CSSResult } from '@skhemata/skhemata-base';
import { SkhemataFormTextbox } from '@skhemata/skhemata-form';
export declare class SkhemataFaqSearch extends SkhemataBase {
faqSiteHost: string;
faqPagePath: string;
translationData: {
eng: {
SkhemataFaqSearch: {
searchPlaceholder: string;
};
};
};
searchTerm: String | null;
static get scopedElements(): {
'sk-form-textbox': typeof SkhemataFormTextbox;
};
static get styles(): CSSResult[];
constructor();
/**
* Implement `render` to define a template for your element.
* Use JS template literals
*/
protected render(): import("lit-html").TemplateResult<1>;
/**
* Search posts when value is entered
*/
onSearch(event: any): void;
}