feat: Register dees-button in dees-form-submit and import necessary components in dees-simple-login

This commit is contained in:
Juergen Kunz
2025-06-19 12:09:48 +00:00
parent 41e2125dc7
commit 2a5e6ee37a
2 changed files with 6 additions and 0 deletions

View File

@ -8,6 +8,7 @@ import {
type CSSResult,
} from '@design.estate/dees-element';
import { DeesForm } from './dees-form.js';
import './dees-button.js'; // Import to ensure dees-button is registered
declare global {
interface HTMLElementTagNameMap {

View File

@ -13,6 +13,11 @@ import {
state,
} from '@design.estate/dees-element';
// Import components used in template
import './dees-form.js';
import './dees-input-text.js';
import './dees-form-submit.js';
declare global {
interface HTMLElementTagNameMap {
'dees-simple-login': DeesSimpleLogin;