UNPKG

@openui5/sap.m

Version:

OpenUI5 UI Library sap.m

64 lines (55 loc) 971 B
/*! * 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/ui/base/DataType"], function(DataType) { "use strict"; /** * Predefined sizes for the {@link sap.m.Avatar} control. * * @enum {string} * @public * @alias sap.m.AvatarSize * @since 1.73 */ var AvatarSize = { /** * Control size - 2rem * Font size - 0.75rem * @public */ XS: "XS", /** * Control size - 3rem * Font size - 1.125rem * @public */ S: "S", /** * Control size - 4rem * Font size - 1.625rem * @public */ M: "M", /** * Control size - 5rem * Font size - 2rem * @public */ L: "L", /** * Control size - 7rem * Font size - 2.75rem * @public */ XL: "XL", /** * Custom size * @public */ Custom: "Custom" }; DataType.registerEnum("sap.m.AvatarSize", AvatarSize); return AvatarSize; });