Sha256: 01eaa930165bbba5ebeb6a6301864616edc0c23b033e8a4747fee9f4986e9277
Contents?: true
Size: 1.2 KB
Versions: 3
Compression:
Stored size: 1.2 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. */ // Provides control sap.m.AccButton. sap.ui.define(['./Button','./AccButtonRenderer'], function(Button, AccButtonRenderer) { "use strict"; /** * Constructor for a new AccButton. * * @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 * The AccButton control represents button with additional capabilities for accessability settings. It is meant for private usage. * * @extends sap.m.Button * * @author SAP SE * @version 1.60.23 * * @constructor * @private * @alias sap.m.AccButton * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel */ var AccButton = Button.extend("sap.m.AccButton", { metadata: { library : "sap.m", properties : { "tabIndex": {type : "string", defaultValue : null, bindable : "bindable"}, "ariaHidden": {type : "string", defaultValue : null, bindable : "bindable"} } } }); return AccButton; });
Version data entries
3 entries across 3 versions & 1 rubygems