blob: 05e92b84be74a549c4227d8cc4dac2066e1d9e59 [file] [log] [blame]
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import {html} from '//resources/lit/v3_0/lit.rollup.js';
import type {OmniboxPopupAppElement} from './app.js';
export function getHtml(this: OmniboxPopupAppElement) {
// clang-format off
return html`<!--_html_template_start_-->
<cr-searchbox-dropdown id="matches" .result="${this.result_}"
?can-show-secondary-side="${this.canShowSecondarySide}"
?has-secondary-side="${this.hasSecondarySide}"
@has-secondary-side-changed="${this.onHasSecondarySideChanged_}"
@dom-change="${this.onResultRepaint_}">
</cr-searchbox-dropdown>
<!--_html_template_end_-->`;
// clang-format on
}