Add statustext to list of detached attributes

This commit is contained in:
nathan 2023-04-25 13:53:16 -06:00
parent b0acb3f3ec
commit 7d86d69b49
8 changed files with 8 additions and 8 deletions

View File

@ -404,7 +404,7 @@ export class Et2Avatar extends Et2Widget(SlotMixin(SlAvatar)) implements et2_IDe
*/ */
getDetachedAttributes(_attrs : string[]) getDetachedAttributes(_attrs : string[])
{ {
_attrs.push("contactId", "label", "href", "src", "image"); _attrs.push("contactId", "label", "href", "src", "image", "statustext");
} }
getDetachedNodes() getDetachedNodes()

View File

@ -97,7 +97,7 @@ export class Et2CheckboxReadonly extends Et2InputWidget(LitElement) implements e
getDetachedAttributes(_attrs : string[]) : void getDetachedAttributes(_attrs : string[]) : void
{ {
_attrs.push("value", "class"); _attrs.push("value", "class", "statustext");
} }
getDetachedNodes() : HTMLElement[] getDetachedNodes() : HTMLElement[]

View File

@ -65,7 +65,7 @@ export class Et2DateReadonly extends Et2Widget(LitElement) implements et2_IDetac
getDetachedAttributes(attrs) getDetachedAttributes(attrs)
{ {
attrs.push("id", "value", "class"); attrs.push("id", "value", "class", "statustext");
} }
getDetachedNodes() : HTMLElement[] getDetachedNodes() : HTMLElement[]

View File

@ -258,7 +258,7 @@ export class Et2Description extends Et2Widget(LitElement) implements et2_IDetach
getDetachedAttributes(attrs) getDetachedAttributes(attrs)
{ {
attrs.push("id", "label", "value", "class", "href"); attrs.push("id", "label", "value", "class", "href", "statustext");
} }
getDetachedNodes() : HTMLElement[] getDetachedNodes() : HTMLElement[]

View File

@ -230,7 +230,7 @@ export class Et2Image extends Et2Widget(SlotMixin(LitElement)) implements et2_ID
*/ */
getDetachedAttributes(_attrs) getDetachedAttributes(_attrs)
{ {
_attrs.push("src", "label", "href"); _attrs.push("src", "label", "href", "statustext");
} }
getDetachedNodes() getDetachedNodes()

View File

@ -304,7 +304,7 @@ export class Et2Link extends ExposeMixin<Et2Widget>(Et2Widget(LitElement)) imple
getDetachedAttributes(_attrs : string[]) getDetachedAttributes(_attrs : string[])
{ {
_attrs.push("app", "entryId"); _attrs.push("app", "entryId", "statustext");
} }
getDetachedNodes() : HTMLElement[] getDetachedNodes() : HTMLElement[]

View File

@ -285,7 +285,7 @@ export class Et2LinkString extends Et2Widget(LitElement) implements et2_IDetache
getDetachedAttributes(_attrs : string[]) getDetachedAttributes(_attrs : string[])
{ {
_attrs.push("application", "entryId"); _attrs.push("application", "entryId", "statustext");
} }
getDetachedNodes() : HTMLElement[] getDetachedNodes() : HTMLElement[]

View File

@ -208,7 +208,7 @@ li {
getDetachedAttributes(attrs) getDetachedAttributes(attrs)
{ {
attrs.push("id", "value", "class"); attrs.push("id", "value", "class", "statustext");
} }
getDetachedNodes() : HTMLElement[] getDetachedNodes() : HTMLElement[]