fix(dees-input-multitoggle): Add missing TypeScript declaration for dees-input-multitoggle
This commit is contained in:
parent
afd19dc912
commit
07c68b82a4
@ -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.
|
||||||
|
|
||||||
|
@ -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.'
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user