Examples of Vlocity/SF LWC components (in various states of working)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

36 lines
812 B

import { LightningElement, api } from "lwc";
import Input from "vlocity_cmt/input";
import template from "./fileUpload.html"
import { OmniscriptBaseMixin } from 'vlocity_cmt/omniscriptBaseMixin';
export default class fileUpload 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("fileUpload - connected");
}
handleInput(evt) {
console.debug("handleInput", this.inputValue);
}
render() {
return template;
}
}