fix(dees-input-multitoggle): Add missing TypeScript declaration for dees-input-multitoggle

This commit is contained in:
Philipp Kunz 2024-12-17 19:44:47 +01:00
parent afd19dc912
commit 07c68b82a4
3 changed files with 12 additions and 1 deletions

View File

@ -1,5 +1,10 @@
# Changelog # Changelog
## 2024-12-17 - 1.3.3 - fix(dees-input-multitoggle)
Add missing TypeScript declaration for dees-input-multitoggle
- Added a missing declaration to the HTMLElementTagNameMap for 'dees-input-multitoggle' element.
## 2024-12-09 - 1.3.2 - fix(metadata) ## 2024-12-09 - 1.3.2 - fix(metadata)
Updated package metadata and readme for better project description and structure. Updated package metadata and readme for better project description and structure.

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@design.estate/dees-catalog', name: '@design.estate/dees-catalog',
version: '1.3.2', version: '1.3.3',
description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.' description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.'
} }

View File

@ -12,6 +12,12 @@ import {
const { demoFunc } = await import('./dees-input-multitoggle.demo.js'); const { demoFunc } = await import('./dees-input-multitoggle.demo.js');
declare global {
interface HTMLElementTagNameMap {
'dees-input-multitoggle': DeesInputMultitoggle;
}
}
@customElement('dees-input-multitoggle') @customElement('dees-input-multitoggle')
export class DeesInputMultitoggle extends DeesElement { export class DeesInputMultitoggle extends DeesElement {
public static demo = demoFunc; public static demo = demoFunc;