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.

13 lines
350 B

  1. import { LightningElement } from "lwc";
  2. import omniscriptCheckbox from "vlocity_cmt/omniscriptCheckbox";
  3. export default class OmniCheckboxComponent extends omniscriptCheckbox {
  4. connectedCallback() {
  5. console.debug("OmniCheckboxComponent - connected");
  6. }
  7. handleChange(evt) {
  8. console.debug("hangleChange: ", evt);
  9. }
  10. }