import { SimpleSpec } from '@ephox/alloy'; import { Dialog } from '@ephox/bridge'; import { Arr } from '@ephox/katamari'; import { UiFactoryBackstage } from '../../backstage/Backstage'; export type PanelSpec = Omit; const renderPanel = (spec: PanelSpec, backstage: UiFactoryBackstage): SimpleSpec => ({ 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 };