Sha256: 00298fb1ca23f7be3ee61a94d666c4d592b2f1a9c2e6f26b4916d9d129458f04
Contents?: true
Size: 1.12 KB
Versions: 3
Compression:
Stored size: 1.12 KB
Contents
/*! * UI development toolkit for HTML5 (OpenUI5) * (c) Copyright 2009-2018 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ sap.ui.define(['sap/m/semantic/SemanticButton'], function(SemanticButton) { "use strict"; /** * Constructor for a new OpenInAction. * @param {string} [sId] ID for the new control, generated automatically if no ID is given * @param {object} [mSettings] Custom initial settings for the new control * * @class * An OpenInAction button has default semantic-specific properties and is * eligible for aggregation content of a {@link sap.m.semantic.SemanticPage}. * * @extends sap.m.semantic.SemanticButton * * @author SAP SE * @version 1.60.23 * * @constructor * @public * @since 1.30.0 * @alias sap.m.semantic.OpenInAction * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel */ var OpenInAction = SemanticButton.extend("sap.m.semantic.OpenInAction", /** @lends sap.m.semantic.OpenInAction.prototype */ { metadata: { library: "sap.m" } }); return OpenInAction; });
Version data entries
3 entries across 3 versions & 1 rubygems