Sha256: 8d27b03eada3a9d51cf5c6743f2033be435aa8598e5cc503c6baa816d76d320c
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. */ //Provides control sap.m.OnePersonView. sap.ui.define(['sap/ui/core/Element', './library'], function(Element, library) { "use strict"; /** * Constructor for a new <code>OnePersonView</code>. * * @class * Disclaimer: this control is in beta state - incompatible API changes may be done before its official public release. Use at your own discretion. * * @constructor * @private * @since 1.58.0 * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel */ var OnePersonView = Element.extend("sap.m.OnePersonView", /** @lends sap.m.OnePersonView.prototype */ { metadata : { library : "sap.m", properties : { key : {type : "string", group : "Data", defaultValue : null}, intervalType : {type : "sap.m.OnePersonCalendarView", group : "Appearance", defaultValue : library.OnePersonCalendarView.Week}, title : {type : "string", group : "Data"} } }}); return OnePersonView; });
Version data entries
3 entries across 3 versions & 1 rubygems