UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

857 lines (854 loc) • 35.2 kB
/** * DevExtreme (cjs/__internal/ui/form/m_form.layout_manager.js) * Version: 24.2.6 * Build date: Mon Mar 17 2025 * * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; require("../../../ui/text_box"); require("../../../ui/number_box"); require("../../../ui/check_box"); require("../../../ui/date_box"); require("../../../ui/button"); var _events_engine = _interopRequireDefault(require("../../../common/core/events/core/events_engine")); var _remove = require("../../../common/core/events/remove"); var _message = _interopRequireDefault(require("../../../common/core/localization/message")); var _component_registrator = _interopRequireDefault(require("../../../core/component_registrator")); var _renderer = _interopRequireDefault(require("../../../core/renderer")); var _array = require("../../../core/utils/array"); var _data = require("../../../core/utils/data"); var _extend = require("../../../core/utils/extend"); var _iterator = require("../../../core/utils/iterator"); var _size = require("../../../core/utils/size"); var _type = require("../../../core/utils/type"); var _variable_wrapper = _interopRequireDefault(require("../../../core/utils/variable_wrapper")); var _window = require("../../../core/utils/window"); var _widget = _interopRequireDefault(require("../../core/widget/widget")); var _m_responsive_box = _interopRequireDefault(require("../../ui/m_responsive_box")); var _m_button_item = require("./components/m_button_item"); var _m_empty_item = require("./components/m_empty_item"); var _m_field_item = require("./components/m_field_item"); var _constants = require("./constants"); var _m_form = _interopRequireDefault(require("./m_form.items_runtime_info")); var _m_formLayout_manager = require("./m_form.layout_manager.utils"); function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e } } function _extends() { return _extends = Object.assign ? Object.assign.bind() : function(n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) { ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]) } } return n }, _extends.apply(null, arguments) } const FORM_EDITOR_BY_DEFAULT = "dxTextBox"; const LAYOUT_MANAGER_FIRST_ROW_CLASS = "dx-first-row"; const LAYOUT_MANAGER_LAST_ROW_CLASS = "dx-last-row"; const LAYOUT_MANAGER_FIRST_COL_CLASS = "dx-first-col"; const LAYOUT_MANAGER_LAST_COL_CLASS = "dx-last-col"; class LayoutManager extends _widget.default { _getDefaultOptions() { return _extends({}, super._getDefaultOptions(), { layoutData: {}, readOnly: false, colCount: 1, labelLocation: "left", onFieldDataChanged: null, onEditorEnterKey: null, customizeItem: null, alignItemLabels: true, minColWidth: 200, showRequiredMark: true, screenByWidth: null, showOptionalMark: false, requiredMark: "*", labelMode: "outside", optionalMark: _message.default.format("dxForm-optionalMark"), requiredMessage: _message.default.getFormatter("dxForm-requiredMessage") }) } _setOptionsByReference() { super._setOptionsByReference(); (0, _extend.extend)(this._optionsByReference, { layoutData: true, validationGroup: true }) } _init() { const layoutData = this.option("layoutData"); super._init(); this._itemWatchers = []; this._itemsRunTimeInfo = new _m_form.default; this._updateReferencedOptions(layoutData); this._initDataAndItems(layoutData) } _dispose() { super._dispose(); this._cleanItemWatchers() } _initDataAndItems(initialData) { this._syncDataWithItems(); this._updateItems(initialData) } _syncDataWithItems() { const layoutData = this.option("layoutData"); const userItems = this.option("items"); if ((0, _type.isDefined)(userItems)) { userItems.forEach((item => { if (item.dataField && void 0 === this._getDataByField(item.dataField)) { let value; if (item.editorOptions) { value = item.editorOptions.value } if ((0, _type.isDefined)(value) || item.dataField in layoutData) { this._updateFieldValue(item.dataField, value) } } })) } } _getDataByField(dataField) { return dataField ? this.option(`layoutData.${dataField}`) : null } _isCheckboxUndefinedStateEnabled(_ref) { let { allowIndeterminateState: allowIndeterminateState, editorType: editorType, dataField: dataField } = _ref; if (true === allowIndeterminateState && "dxCheckBox" === editorType) { const nameParts = ["layoutData", ...dataField.split(".")]; const propertyName = nameParts.pop(); const layoutData = this.option(nameParts.join(".")); return layoutData && propertyName in layoutData } return false } _updateFieldValue(dataField, value) { const layoutData = this.option("layoutData"); let newValue = value; if (!_variable_wrapper.default.isWrapped(layoutData[dataField]) && (0, _type.isDefined)(dataField)) { this.option(`layoutData.${dataField}`, newValue) } else if (_variable_wrapper.default.isWritableWrapped(layoutData[dataField])) { newValue = (0, _type.isFunction)(newValue) ? newValue() : newValue; layoutData[dataField](newValue) } this._triggerOnFieldDataChanged({ dataField: dataField, value: newValue }) } _triggerOnFieldDataChanged(args) { this._createActionByOption("onFieldDataChanged")(args) } _updateItems(layoutData) { const that = this; const userItems = this.option("items"); const isUserItemsExist = (0, _type.isDefined)(userItems); const { customizeItem: customizeItem } = this.option(); const items = isUserItemsExist ? userItems : this._generateItemsByData(layoutData); if ((0, _type.isDefined)(items)) { const processedItems = []; (0, _iterator.each)(items, ((index, item) => { if (that._isAcceptableItem(item)) { item = that._processItem(item); customizeItem && customizeItem(item); if ((0, _type.isObject)(item) && false !== _variable_wrapper.default.unwrap(item.visible)) { processedItems.push(item) } } })); if (!that._itemWatchers.length || !isUserItemsExist) { that._updateItemWatchers(items) } this._setItems(processedItems); this._sortItems() } } _cleanItemWatchers() { this._itemWatchers.forEach((dispose => { dispose() })); this._itemWatchers = [] } _updateItemWatchers(items) { const that = this; const watch = that._getWatch(); items.forEach((item => { if ((0, _type.isObject)(item) && (0, _type.isDefined)(item.visible) && (0, _type.isFunction)(watch)) { that._itemWatchers.push(watch((() => _variable_wrapper.default.unwrap(item.visible)), (() => { that._updateItems(that.option("layoutData")); that.repaint() }), { skipImmediate: true })) } })) } _generateItemsByData(layoutData) { const result = []; if ((0, _type.isDefined)(layoutData)) { (0, _iterator.each)(layoutData, (dataField => { result.push({ dataField: dataField }) })) } return result } _isAcceptableItem(item) { const itemField = item.dataField || item; const itemData = this._getDataByField(itemField); return !((0, _type.isFunction)(itemData) && !_variable_wrapper.default.isWrapped(itemData)) } _processItem(item) { if ("string" === typeof item) { item = { dataField: item } } if ("object" === typeof item && !item.itemType) { item.itemType = _constants.SIMPLE_ITEM_TYPE } if (!(0, _type.isDefined)(item.editorType) && (0, _type.isDefined)(item.dataField)) { const value = this._getDataByField(item.dataField); item.editorType = (0, _type.isDefined)(value) ? this._getEditorTypeByDataType((0, _type.type)(value)) : "dxTextBox" } if ("dxCheckBox" === item.editorType) { item.allowIndeterminateState = item.allowIndeterminateState ?? true } return item } _getEditorTypeByDataType(dataType) { switch (dataType) { case "number": return "dxNumberBox"; case "date": return "dxDateBox"; case "boolean": return "dxCheckBox"; default: return "dxTextBox" } } _sortItems() { (0, _array.normalizeIndexes)(this._items, "visibleIndex"); this._sortIndexes() } _sortIndexes() { this._items.sort(((itemA, itemB) => { const indexA = itemA.visibleIndex; const indexB = itemB.visibleIndex; let result; if (indexA > indexB) { result = 1 } else if (indexA < indexB) { result = -1 } else { result = 0 } return result })) } _initMarkup() { this._itemsRunTimeInfo.clear(); this.$element().addClass(_constants.FORM_LAYOUT_MANAGER_CLASS); super._initMarkup(); this._renderResponsiveBox() } _renderResponsiveBox() { const that = this; const templatesInfo = []; if (that._items && that._items.length) { const colCount = that._getColCount(); const $container = (0, _renderer.default)("<div>").appendTo(that.$element()); that._prepareItemsWithMerging(colCount); const layoutItems = that._generateLayoutItems(); that._responsiveBox = that._createComponent($container, _m_responsive_box.default, that._getResponsiveBoxConfig(layoutItems, colCount, templatesInfo)); if (!(0, _window.hasWindow)()) { that._renderTemplates(templatesInfo) } } } _itemStateChangedHandler(e) { this._refresh() } _renderTemplates(templatesInfo) { const that = this; let itemsWithLabelTemplateCount = 0; templatesInfo.forEach((_ref2 => { var _item$label; let { item: item } = _ref2; if (null !== item && void 0 !== item && null !== (_item$label = item.label) && void 0 !== _item$label && _item$label.template) { itemsWithLabelTemplateCount++ } })); (0, _iterator.each)(templatesInfo, ((index, info) => { switch (info.itemType) { case "empty": (0, _m_empty_item.renderEmptyItem)(info); break; case "button": that._renderButtonItem(info); break; default: that._renderFieldItem(info, itemsWithLabelTemplateCount) } })) } _getResponsiveBoxConfig(layoutItems, colCount, templatesInfo) { const that = this; const colCountByScreen = that.option("colCountByScreen"); const xsColCount = colCountByScreen && colCountByScreen.xs; return { onItemStateChanged: this._itemStateChangedHandler.bind(this), onLayoutChanged() { const { onLayoutChanged: onLayoutChanged } = that.option(); const isSingleColumnMode = that.isSingleColumnMode(); if (onLayoutChanged) { that.$element().toggleClass(_constants.LAYOUT_MANAGER_ONE_COLUMN, isSingleColumnMode); onLayoutChanged(isSingleColumnMode) } }, onContentReady(e) { if ((0, _window.hasWindow)()) { that._renderTemplates(templatesInfo) } if (that.option("onLayoutChanged")) { that.$element().toggleClass(_constants.LAYOUT_MANAGER_ONE_COLUMN, that.isSingleColumnMode(e.component)) } }, itemTemplate(e, itemData, itemElement) { if (!e.location) { return } const $itemElement = (0, _renderer.default)(itemElement); const itemRenderedCountInPreviousRows = e.location.row * colCount; const item = that._items[e.location.col + itemRenderedCountInPreviousRows]; if (!item) { return } const itemCssClassList = [item.cssClass]; $itemElement.toggleClass(_constants.SINGLE_COLUMN_ITEM_CONTENT, that.isSingleColumnMode(this)); if (0 === e.location.row) { itemCssClassList.push("dx-first-row") } if (0 === e.location.col) { itemCssClassList.push("dx-first-col") } if (item.itemType === _constants.SIMPLE_ITEM_TYPE && that.option("isRoot")) { $itemElement.addClass(_constants.ROOT_SIMPLE_ITEM_CLASS) } const isLastColumn = e.location.col === colCount - 1 || e.location.col + e.location.colspan === colCount; const rowsCount = that._getRowsCount(); const isLastRow = e.location.row === rowsCount - 1; if (isLastColumn) { itemCssClassList.push("dx-last-col") } if (isLastRow) { itemCssClassList.push("dx-last-row") } if ("empty" !== item.itemType) { itemCssClassList.push(_constants.FIELD_ITEM_CLASS); itemCssClassList.push(that.option("cssItemClass")); if ((0, _type.isDefined)(item.col)) { itemCssClassList.push(`dx-col-${item.col}`) } } templatesInfo.push({ itemType: item.itemType, item: item, $parent: $itemElement, rootElementCssClassList: itemCssClassList }) }, cols: that._generateRatio(colCount), rows: that._generateRatio(that._getRowsCount(), true), dataSource: layoutItems, screenByWidth: that.option("screenByWidth"), singleColumnScreen: xsColCount ? false : "xs" } } _getColCount() { let { colCount: colCount } = this.option(); const colCountByScreen = this.option("colCountByScreen"); if (colCountByScreen) { const { form: form } = this.option(); let screenFactor = null === form || void 0 === form ? void 0 : form.getTargetScreenFactor(); if (!screenFactor) { screenFactor = (0, _window.hasWindow)() ? (0, _window.getCurrentScreenFactor)(this.option("screenByWidth")) : "lg" } colCount = colCountByScreen[screenFactor] || colCount } if ("auto" === colCount) { if (this._cashedColCount) { return this._cashedColCount } this._cashedColCount = colCount = this._getMaxColCount() } return colCount < 1 ? 1 : colCount } _getMaxColCount() { if (!(0, _window.hasWindow)()) { return 1 } const minColWidth = this.option("minColWidth"); const width = (0, _size.getWidth)(this.$element()); const itemsCount = this._items.length; const maxColCount = Math.floor(width / minColWidth) || 1; return itemsCount < maxColCount ? itemsCount : maxColCount } isCachedColCountObsolete() { return this._cashedColCount && this._getMaxColCount() !== this._cashedColCount } _prepareItemsWithMerging(colCount) { const items = this._items.slice(0); let item; let itemsMergedByCol; let result = []; let j; let i; for (i = 0; i < items.length; i++) { item = items[i]; result.push(item); if (this.option("alignItemLabels") || item.alignItemLabels || item.colSpan) { item.col = this._getColByIndex(result.length - 1, colCount) } if (item.colSpan > 1 && item.col + item.colSpan <= colCount) { itemsMergedByCol = []; for (j = 0; j < item.colSpan - 1; j++) { itemsMergedByCol.push({ merged: true }) } result = result.concat(itemsMergedByCol) } else { delete item.colSpan } } this._setItems(result) } _getColByIndex(index, colCount) { return index % colCount } _setItems(items) { this._items = items; this._cashedColCount = null } _generateLayoutItems() { const items = this._items; const colCount = this._getColCount(); const result = []; let item; let i; for (i = 0; i < items.length; i++) { item = items[i]; if (!item.merged) { const generatedItem = { location: { row: parseInt(i / colCount), col: this._getColByIndex(i, colCount) } }; if ((0, _type.isDefined)(item.disabled)) { generatedItem.disabled = item.disabled } if ((0, _type.isDefined)(item.visible)) { generatedItem.visible = item.visible } if ((0, _type.isDefined)(item.colSpan)) { generatedItem.location.colspan = item.colSpan } if ((0, _type.isDefined)(item.rowSpan)) { generatedItem.location.rowspan = item.rowSpan } result.push(generatedItem) } } return result } _renderEmptyItem($container) { (0, _m_empty_item.renderEmptyItem)({ $container: $container }) } _renderButtonItem(_ref3) { let { item: item, $parent: $parent, rootElementCssClassList: rootElementCssClassList } = _ref3; const { $rootElement: $rootElement, buttonInstance: buttonInstance } = (0, _m_button_item.renderButtonItem)({ item: item, $parent: $parent, rootElementCssClassList: rootElementCssClassList, validationGroup: this.option("validationGroup"), createComponentCallback: this._createComponent.bind(this) }); this._itemsRunTimeInfo.add({ item: item, widgetInstance: buttonInstance, guid: item.guid, $itemContainer: $rootElement }) } _renderFieldItem(_ref4, itemsWithLabelTemplateCount) { var _item$label2; let { item: item, $parent: $parent, rootElementCssClassList: rootElementCssClassList } = _ref4; const editorValue = this._getDataByField(item.dataField); let canAssignUndefinedValueToEditor = false; if (void 0 === editorValue) { const { allowIndeterminateState: allowIndeterminateState, editorType: editorType, dataField: dataField } = item; canAssignUndefinedValueToEditor = this._isCheckboxUndefinedStateEnabled({ allowIndeterminateState: allowIndeterminateState, editorType: editorType, dataField: dataField }) } const name = item.dataField || item.name; const formOrLayoutManager = this._getFormOrThis(); const { form: form } = this.option(); const { $fieldEditorContainer: $fieldEditorContainer, widgetInstance: widgetInstance, $rootElement: $rootElement } = (0, _m_field_item.renderFieldItem)((0, _m_formLayout_manager.convertToRenderFieldItemOptions)({ $parent: $parent, rootElementCssClassList: rootElementCssClassList, item: item, name: name, editorValue: editorValue, canAssignUndefinedValueToEditor: canAssignUndefinedValueToEditor, formOrLayoutManager: this._getFormOrThis(), createComponentCallback: this._createComponent.bind(this), formLabelLocation: this.option("labelLocation"), requiredMessageTemplate: this.option("requiredMessage"), validationGroup: this.option("validationGroup"), editorValidationBoundary: this.option("validationBoundary"), editorStylingMode: null === form || void 0 === form ? void 0 : form.option("stylingMode"), showColonAfterLabel: this.option("showColonAfterLabel"), managerLabelLocation: this.option("labelLocation"), template: item.template ? this._getTemplate(item.template) : null, labelTemplate: null !== (_item$label2 = item.label) && void 0 !== _item$label2 && _item$label2.template ? this._getTemplate(item.label.template) : null, itemId: null === form || void 0 === form ? void 0 : form.getItemID(name), managerMarkOptions: this._getMarkOptions(), labelMode: this.option("labelMode"), onLabelTemplateRendered: () => { this._incTemplateRenderedCallCount(); if (this._shouldAlignLabelsOnTemplateRendered(formOrLayoutManager, itemsWithLabelTemplateCount)) { formOrLayoutManager._alignLabels(this, this.isSingleColumnMode(formOrLayoutManager)) } } })); const { onFieldItemRendered: onFieldItemRendered } = this.option(); null === onFieldItemRendered || void 0 === onFieldItemRendered || onFieldItemRendered(); if (widgetInstance && item.dataField) { this._bindDataField(widgetInstance, item.dataField, item.editorType, $fieldEditorContainer) } this._itemsRunTimeInfo.add({ item: item, widgetInstance: widgetInstance, guid: item.guid, $itemContainer: $rootElement }) } _incTemplateRenderedCallCount() { this._labelTemplateRenderedCallCount = (this._labelTemplateRenderedCallCount ?? 0) + 1 } _shouldAlignLabelsOnTemplateRendered(formOrLayoutManager, totalItemsWithLabelTemplate) { return formOrLayoutManager.option("templatesRenderAsynchronously") && this._labelTemplateRenderedCallCount === totalItemsWithLabelTemplate } _getMarkOptions() { return { showRequiredMark: this.option("showRequiredMark"), requiredMark: this.option("requiredMark"), showOptionalMark: this.option("showOptionalMark"), optionalMark: this.option("optionalMark") } } _getFormOrThis() { const { form: form } = this.option(); return form || this } _bindDataField(editorInstance, dataField, editorType, $container) { const formOrThis = this._getFormOrThis(); editorInstance.on("enterKey", (args => { formOrThis._createActionByOption("onEditorEnterKey")((0, _extend.extend)(args, { dataField: dataField })) })); this._createWatcher(editorInstance, $container, dataField); this.linkEditorToDataField(editorInstance, dataField) } _createWatcher(editorInstance, $container, dataField) { const that = this; const watch = that._getWatch(); if (!(0, _type.isFunction)(watch)) { return } const dispose = watch((() => that._getDataByField(dataField)), (() => { const fieldValue = that._getDataByField(dataField); if ("dxTagBox" === editorInstance.NAME) { const editorValue = editorInstance.option("value"); if (fieldValue !== editorValue && function(array1, array2) { if (!Array.isArray(array1) || !Array.isArray(array2) || array1.length !== array2.length) { return false } for (let i = 0; i < array1.length; i++) { if (array1[i] !== array2[i]) { return false } } return true }(fieldValue, editorValue)) { return } } editorInstance.option("value", fieldValue) }), { deep: true, skipImmediate: true }, { createWatcherDataField: dataField }); _events_engine.default.on($container, _remove.removeEvent, dispose) } _getWatch() { if (!(0, _type.isDefined)(this._watch)) { const { form: formInstance } = this.option(); this._watch = formInstance && formInstance.option("integrationOptions.watchMethod") } return this._watch } _createComponent($editor, type, editorOptions) { const readOnlyState = this.option("readOnly"); let hasEditorReadOnly = Object.hasOwn(editorOptions, "readOnly"); const instance = super._createComponent($editor, type, _extends({}, editorOptions, { readOnly: !hasEditorReadOnly ? readOnlyState : editorOptions.readOnly })); let isChangeByForm = false; instance.on("optionChanged", (args => { if ("readOnly" === args.name && !isChangeByForm) { hasEditorReadOnly = true } })); this.on("optionChanged", (args => { if ("readOnly" === args.name && !hasEditorReadOnly) { isChangeByForm = true; instance.option(args.name, args.value); isChangeByForm = false } })); return instance } _generateRatio(count, isAutoSize) { const result = []; let ratio; let i; for (i = 0; i < count; i++) { ratio = { ratio: 1 }; if (isAutoSize) { ratio.baseSize = "auto" } result.push(ratio) } return result } _getRowsCount() { return Math.ceil(this._items.length / this._getColCount()) } _updateReferencedOptions(newLayoutData) { const layoutData = this.option("layoutData"); if ((0, _type.isObject)(layoutData)) { Object.getOwnPropertyNames(layoutData).forEach((property => delete this._optionsByReference[`layoutData.${property}`])) } if ((0, _type.isObject)(newLayoutData)) { Object.getOwnPropertyNames(newLayoutData).forEach((property => this._optionsByReference[`layoutData.${property}`] = true)) } } _clearWidget(instance) { this._disableEditorValueChangedHandler = true; instance.clear(); this._disableEditorValueChangedHandler = false; instance.option("isValid", true) } _optionChanged(args) { if (0 === args.fullName.search("layoutData.")) { return } switch (args.name) { case "showRequiredMark": case "showOptionalMark": case "requiredMark": case "optionalMark": case "alignItemLabels": case "labelLocation": case "labelMode": case "requiredMessage": this._invalidate(); break; case "layoutData": this._updateReferencedOptions(args.value); if (this.option("items")) { if (!(0, _type.isEmptyObject)(args.value)) { this._itemsRunTimeInfo.each(((_, itemRunTimeInfo) => { if ((0, _type.isDefined)(itemRunTimeInfo.item)) { const { dataField: dataField } = itemRunTimeInfo.item; if (dataField && (0, _type.isDefined)(itemRunTimeInfo.widgetInstance)) { const valueGetter = (0, _data.compileGetter)(dataField); const dataValue = valueGetter(args.value); const { allowIndeterminateState: allowIndeterminateState, editorType: editorType } = itemRunTimeInfo.item; if (void 0 !== dataValue || this._isCheckboxUndefinedStateEnabled({ allowIndeterminateState: allowIndeterminateState, editorType: editorType, dataField: dataField })) { itemRunTimeInfo.widgetInstance.option("value", dataValue) } else { this._clearWidget(itemRunTimeInfo.widgetInstance) } } } })) } } else { this._initDataAndItems(args.value); this._invalidate() } break; case "items": this._cleanItemWatchers(); this._initDataAndItems(args.value); this._invalidate(); break; case "customizeItem": this._updateItems(this.option("layoutData")); this._invalidate(); break; case "colCount": case "colCountByScreen": this._resetColCount(); break; case "minColWidth": { const { colCount: colCount } = this.option(); if ("auto" === colCount) { this._resetColCount() } break } case "readOnly": case "onFieldDataChanged": break; case "width": { super._optionChanged(args); const { colCount: colCount } = this.option(); if ("auto" === colCount) { this._resetColCount() } break } default: super._optionChanged(args) } } _resetColCount() { this._cashedColCount = null; this._invalidate() } linkEditorToDataField(editorInstance, dataField) { this.on("optionChanged", (args => { if (args.fullName === `layoutData.${dataField}`) { editorInstance._setOptionWithoutOptionChange("value", args.value) } })); editorInstance.on("valueChanged", (args => { const isValueReferenceType = (0, _type.isObject)(args.value) || Array.isArray(args.value); if (!this._disableEditorValueChangedHandler && !(isValueReferenceType && args.value === args.previousValue)) { this._updateFieldValue(dataField, args.value) } })) } _dimensionChanged() { const { colCount: colCount } = this.option(); if ("auto" === colCount && this.isCachedColCountObsolete()) { this._eventsStrategy.fireEvent("autoColCountChanged") } } updateData(data, value) { const that = this; if ((0, _type.isObject)(data)) { (0, _iterator.each)(data, ((dataField, fieldValue) => { that._updateFieldValue(dataField, fieldValue) })) } else if ("string" === typeof data) { that._updateFieldValue(data, value) } } getEditor(field) { return this._itemsRunTimeInfo.findWidgetInstanceByDataField(field) || this._itemsRunTimeInfo.findWidgetInstanceByName(field) } isSingleColumnMode(component) { const responsiveBox = this._responsiveBox || component; if (responsiveBox) { return responsiveBox.option("currentScreenFactor") === responsiveBox.option("singleColumnScreen") } } getItemsRunTimeInfo() { return this._itemsRunTimeInfo } }(0, _component_registrator.default)("dxLayoutManager", LayoutManager); var _default = exports.default = LayoutManager;