UNPKG

devexpress-reporting

Version:

DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.

24 lines (23 loc) 1.29 kB
/** * DevExpress HTML/JS Reporting (designer\controls\metadata\xrControl.js) * Version: 24.2.6 * Build date: Mar 18, 2025 * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { dataBindings } from '../../dataObjects/metadata/dataBinding'; import { anchorHorizontal, anchorVertical } from './properties/anchoring'; import { accessibleDescription, allowMarkupText, canGrow, canShrink, keepTogether, rtl } from './properties/metadata'; import { commonControlProperties, navigationGroup, sizeLocation } from './properties/metadataGroups'; import { controlScripts } from './properties/scriptMetadata'; import { action } from './properties/action'; export const panelSerializationsInfo = [ canGrow, canShrink, keepTogether, anchorVertical, anchorHorizontal, controlScripts, action, dataBindings(['Bookmark', 'NavigateUrl', 'Tag']), { propertyName: 'controls', modelName: 'Controls', array: true }, rtl ].concat(sizeLocation, commonControlProperties, navigationGroup).filter(x => x != accessibleDescription); export const xrControlSerializationsInfo = [ allowMarkupText, anchorVertical, anchorHorizontal, dataBindings(['Tag']) ].concat(sizeLocation, commonControlProperties);