@openui5/sap.m
Version:
OpenUI5 UI Library sap.m
39 lines (34 loc) • 996 B
JavaScript
/*!
* OpenUI5
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
*/
sap.ui.define(["./library", "./MessageItem"],
function(library, MessageItem) {
"use strict";
/**
* Constructor for a new MessagePopoverItem.
*
* @param {string} [sId] id for the new control, generated automatically if no id is given
* @param {object} [mSettings] initial settings for the new control
*
* @class
* Items provide information about Error Messages in the page.
* @extends sap.m.MessageItem
*
* @author SAP SE
* @version 1.117.4
*
* @constructor
* @public
* @since 1.28
* @deprecated Since version 1.46, use MessageItem instead
* @alias sap.m.MessagePopoverItem
*/
var MessagePopoverItem = MessageItem.extend("sap.m.MessagePopoverItem", /** @lends sap.m.MessagePopoverItem.prototype */ {
metadata: {
deprecated: true
}
});
return MessagePopoverItem;
});