devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
24 lines (23 loc) • 1.36 kB
JavaScript
/**
* DevExpress HTML/JS Reporting (designer\controls\metadata\xrControl.js)
* Version: 26.1.3
* Build date: Jun 16, 2026
* Copyright (c) 2012 - 2026 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, defaultDecorativeAccessibleRole, 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, defaultDecorativeAccessibleRole).filter(x => x !== accessibleDescription);
export const xrControlSerializationsInfo = [
allowMarkupText, anchorVertical, anchorHorizontal,
dataBindings(['Tag'])
].concat(sizeLocation, commonControlProperties);