UNPKG

@openui5/sap.m

Version:

OpenUI5 UI Library sap.m

48 lines (42 loc) 1.2 kB
/*! * OpenUI5 * (c) Copyright 2026 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ sap.ui.define([ "sap/m/library", "sap/ui/core/Control" ], function(library, Control) { "use strict"; /** * Constructor for a new UploadSetToolbarPlaceholder. * * @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 * Used to create a customizable toolbar for the UploadSet. * A FileUploader instance is required in the toolbar and it is placed by the application. * @extends sap.ui.core.Control * * @author SAP SE * @version 1.146.0 * * @constructor * @public * @since 1.103.0 * @deprecated As of version 1.129, replaced by {@link sap.m.upload.ActionsPlaceholder} * @alias sap.m.upload.UploadSetToolbarPlaceholder */ var UploadSetToolbarPlaceholder = Control.extend("sap.m.upload.UploadSetToolbarPlaceholder", { metadata: { library: "sap.m", properties: {} }, renderer: { apiVersion: 2, render: function(oRm, oControl) {} } }); return UploadSetToolbarPlaceholder; });