@openui5/sap.tnt
Version:
OpenUI5 UI Library sap.tnt
28 lines (26 loc) • 591 B
JavaScript
/*!
* OpenUI5
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
*/
// Provides the Design Time Metadata for the sap.tnt.NavigationListItem control
sap.ui.define([],
function () {
"use strict";
return {
palette: {
group: "ACTION"
},
actions: {
rename: {
changeType: "rename",
domRef: function (oControl) {
return oControl.$().find(".sapTntNLText")[0];
}
}
},
templates: {
create: "sap/tnt/designtime/NavigationListItem.create.fragment.xml"
}
};
});