@furo/ui5
Version:
SAP UI5 Web Components data bindings for furo-web
19 lines (16 loc) • 480 B
JavaScript
// eslint-disable-next-line import/no-extraneous-dependencies
import { FuroUi5SelectLabeled } from '../furo-ui5-select-labeled.js';
/**
*
* @summary form renderer for `furo.Stringoptionproperty`
* @element form-furo-stringoptionproperty
*/
export class FormFuroStringoptionproperty extends FuroUi5SelectLabeled {
bindData(fieldNode) {
super.bindData(fieldNode);
}
}
window.customElements.define(
'form-furo-stringoptionproperty',
FormFuroStringoptionproperty
);