import { LightningElement, api } from "lwc"; import input from "vlocity_cmt/input"; import template from "./baseFileInputComponent.html" import { OmniscriptBaseMixin } from 'vlocity_cmt/omniscriptBaseMixin'; export default class BaseFileInputComponent extends OmniscriptBaseMixin(input){ get value() { return this._value; } @api set value(val) { console.debug('Setter files', val); this._value = val; } get FileList() { return this._FileList; } @api set FileList(val) { console.debug('Setter files', val); this._FileList = val; } connectedCallback() { console.debug("BaseFileInputComponent - connected"); } handleInput(evt) { console.debug("handleInput", this.inputValue); } render() { return template; } }