mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-15 12:34:33 +01:00
Add statustext to list of detached attributes
This commit is contained in:
parent
9d1e34e377
commit
c1cbfc415d
@ -404,7 +404,7 @@ export class Et2Avatar extends Et2Widget(SlotMixin(SlAvatar)) implements et2_IDe
|
||||
*/
|
||||
getDetachedAttributes(_attrs : string[])
|
||||
{
|
||||
_attrs.push("contactId", "label", "href", "src", "image");
|
||||
_attrs.push("contactId", "label", "href", "src", "image", "statustext");
|
||||
}
|
||||
|
||||
getDetachedNodes()
|
||||
|
@ -97,7 +97,7 @@ export class Et2CheckboxReadonly extends Et2InputWidget(LitElement) implements e
|
||||
|
||||
getDetachedAttributes(_attrs : string[]) : void
|
||||
{
|
||||
_attrs.push("value", "class");
|
||||
_attrs.push("value", "class", "statustext");
|
||||
}
|
||||
|
||||
getDetachedNodes() : HTMLElement[]
|
||||
|
@ -65,7 +65,7 @@ export class Et2DateReadonly extends Et2Widget(LitElement) implements et2_IDetac
|
||||
|
||||
getDetachedAttributes(attrs)
|
||||
{
|
||||
attrs.push("id", "value", "class");
|
||||
attrs.push("id", "value", "class", "statustext");
|
||||
}
|
||||
|
||||
getDetachedNodes() : HTMLElement[]
|
||||
|
@ -258,7 +258,7 @@ export class Et2Description extends Et2Widget(LitElement) implements et2_IDetach
|
||||
|
||||
getDetachedAttributes(attrs)
|
||||
{
|
||||
attrs.push("id", "label", "value", "class", "href");
|
||||
attrs.push("id", "label", "value", "class", "href", "statustext");
|
||||
}
|
||||
|
||||
getDetachedNodes() : HTMLElement[]
|
||||
|
@ -230,7 +230,7 @@ export class Et2Image extends Et2Widget(SlotMixin(LitElement)) implements et2_ID
|
||||
*/
|
||||
getDetachedAttributes(_attrs)
|
||||
{
|
||||
_attrs.push("src", "label", "href");
|
||||
_attrs.push("src", "label", "href", "statustext");
|
||||
}
|
||||
|
||||
getDetachedNodes()
|
||||
|
@ -304,7 +304,7 @@ export class Et2Link extends ExposeMixin<Et2Widget>(Et2Widget(LitElement)) imple
|
||||
|
||||
getDetachedAttributes(_attrs : string[])
|
||||
{
|
||||
_attrs.push("app", "entryId");
|
||||
_attrs.push("app", "entryId", "statustext");
|
||||
}
|
||||
|
||||
getDetachedNodes() : HTMLElement[]
|
||||
|
@ -285,7 +285,7 @@ export class Et2LinkString extends Et2Widget(LitElement) implements et2_IDetache
|
||||
|
||||
getDetachedAttributes(_attrs : string[])
|
||||
{
|
||||
_attrs.push("application", "entryId");
|
||||
_attrs.push("application", "entryId", "statustext");
|
||||
}
|
||||
|
||||
getDetachedNodes() : HTMLElement[]
|
||||
|
@ -208,7 +208,7 @@ li {
|
||||
|
||||
getDetachedAttributes(attrs)
|
||||
{
|
||||
attrs.push("id", "value", "class");
|
||||
attrs.push("id", "value", "class", "statustext");
|
||||
}
|
||||
|
||||
getDetachedNodes() : HTMLElement[]
|
||||
|
Loading…
Reference in New Issue
Block a user