/** * Copyright (c) Tiny Technologies, Inc. All rights reserved. * Licensed under the LGPL or a commercial license. * For LGPL see License.txt in the project root for license information. * For commercial licenses see https://www.tiny.cloud/ */ import { SimpleSpec } from '@ephox/alloy'; import { Arr } from '@ephox/katamari'; import { UiFactoryBackstage } from '../../backstage/Backstage'; import { Omit } from '../Omit'; import { Types } from '@ephox/bridge'; export type PanelSpec = Omit; const renderPanel = (spec: PanelSpec, backstage: UiFactoryBackstage): SimpleSpec => { return { dom: { tag: 'div', classes: spec.classes }, // All of the items passed through the form need to be put through the interpreter // with their form part preserved. components: Arr.map(spec.items, backstage.shared.interpreter) }; }; export { renderPanel };