chore: automated housekeeping...

This commit is contained in:
Pieter Vander Vennet 2024-07-21 10:52:51 +02:00
parent 14b2799f08
commit 4add2d1aff
151 changed files with 4561 additions and 3315 deletions

View file

@ -27,7 +27,7 @@ export default class SvelteUIElement<
constructor(svelteElement, props?: Props, events?: Events, slots?: Slots) {
super()
this._svelteComponent = <any> svelteElement
this._svelteComponent = <any>svelteElement
this._props = props ?? <Props>{}
this._events = events
this._slots = slots
@ -49,15 +49,15 @@ export default class SvelteUIElement<
return el
}
public getClass(){
if(this.clss.size === 0){
public getClass() {
if (this.clss.size === 0) {
return undefined
}
return this.clss
}
public getStyle(){
if(this.style === ""){
public getStyle() {
if (this.style === "") {
return undefined
}
return this.style