${this.#renderItems(this.#testDropdownItems)}
+ `;
+ }
+
+ static override readonly styles = css`
+ :host {
+ position: absolute;
+ top: -67px;
+ --uui-button-content-align: left;
+ }
+
+ uui-popover-container {
+ box-shadow: var(--uui-shadow-depth-3);
+ }
+
+ .dropdown-item {
+ background-color: var(--uui-color-surface);
+ display: flex;
+ flex-direction: column;
+ text-wrap: nowrap;
+ }
+ `;
+}
+
+export { UmbTiptapToolbarDropdownElement as element };
+
+declare global {
+ interface HTMLElementTagNameMap {
+ [elementName]: UmbTiptapToolbarDropdownElement;
+ }
+}