UNPKG

@openui5/sap.m

Version:

OpenUI5 UI Library sap.m

41 lines (39 loc) 821 B
/*! * OpenUI5 * (c) Copyright 2026 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ // Provides the Design Time Metadata for the sap.m.CheckBox control sap.ui.define([], function () { "use strict"; return { name: { singular: "CHECKBOX_NAME", plural: "CHECKBOX_NAME_PLURAL" }, palette: { group: "INPUT", icons: { svg: "sap/m/designtime/CheckBox.icon.svg" } }, actions: { remove: { changeType: "hideControl" }, rename: { changeType: "rename", domRef: function (oControl) { return oControl.$().find(".sapMCbLabel")[0]; } }, reveal: { changeType: "unhideControl" } }, templates: { create: "sap/m/designtime/CheckBox.create.fragment.xml" } }; });