@ptcwebops/ptcw-design 3.0.4 → 3.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/cjs/{ptc-form-checkbox_3.cjs.entry.js → embedded-form_9.cjs.entry.js} +837 -3
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/ptcw-design.cjs.js +1 -1
  4. package/dist/collection/components/organism-bundles/form/embedded-form/embedded-form.css +6 -1
  5. package/dist/collection/components/organism-bundles/form/embedded-form/embedded-form.js +8 -1
  6. package/dist/collection/components/ptc-data-lookup/ptc-data-lookup.js +15 -0
  7. package/dist/collection/components/ptc-select/ptc-select.css +4 -1
  8. package/dist/collection/components/ptc-select/ptc-select.js +41 -1
  9. package/dist/collection/components/ptc-textfield/ptc-textfield.css +1 -2
  10. package/dist/collection/utils/elq-lib.js +9 -9
  11. package/dist/custom-elements/index.js +59 -15
  12. package/dist/esm/{ptc-form-checkbox_3.entry.js → embedded-form_9.entry.js} +833 -5
  13. package/dist/esm/loader.js +1 -1
  14. package/dist/esm/ptcw-design.js +1 -1
  15. package/dist/ptcw-design/p-ca29f7d6.entry.js +359 -0
  16. package/dist/ptcw-design/ptcw-design.esm.js +1 -1
  17. package/dist/types/components/ptc-data-lookup/ptc-data-lookup.d.ts +2 -0
  18. package/dist/types/components/ptc-select/ptc-select.d.ts +4 -0
  19. package/dist/types/components.d.ts +2 -0
  20. package/dist/types/utils/eloqua.d.ts +8 -0
  21. package/dist/types/utils/elq-lib.d.ts +0 -1
  22. package/package.json +1 -1
  23. package/readme.md +1 -1
  24. package/dist/cjs/embedded-form.cjs.entry.js +0 -108
  25. package/dist/cjs/max-width-container.cjs.entry.js +0 -54
  26. package/dist/cjs/ptc-button.cjs.entry.js +0 -52
  27. package/dist/cjs/ptc-data-lookup.cjs.entry.js +0 -496
  28. package/dist/cjs/ptc-spacer.cjs.entry.js +0 -38
  29. package/dist/cjs/ptc-title.cjs.entry.js +0 -78
  30. package/dist/esm/embedded-form.entry.js +0 -104
  31. package/dist/esm/max-width-container.entry.js +0 -50
  32. package/dist/esm/ptc-button.entry.js +0 -48
  33. package/dist/esm/ptc-data-lookup.entry.js +0 -492
  34. package/dist/esm/ptc-spacer.entry.js +0 -34
  35. package/dist/esm/ptc-title.entry.js +0 -74
  36. package/dist/ptcw-design/p-18dfffd3.entry.js +0 -359
  37. package/dist/ptcw-design/p-33c054ff.entry.js +0 -1
  38. package/dist/ptcw-design/p-3faffecb.entry.js +0 -1
  39. package/dist/ptcw-design/p-92bbd407.entry.js +0 -1
  40. package/dist/ptcw-design/p-9a36f7a3.entry.js +0 -1
  41. package/dist/ptcw-design/p-d2c400e2.entry.js +0 -1
  42. package/dist/ptcw-design/p-f1c77113.entry.js +0 -1
@@ -42,7 +42,7 @@ export class ElqLib {
42
42
  // Store visitor's Eloqua IDgit
43
43
  this.store_visitor_elq_id();
44
44
  // init noteme link;
45
- this.init_notme();
45
+ // this.init_notme();
46
46
  // Set the global Eloqua callback function
47
47
  window.SetElqContent = this.eloqua_callback.bind(this);
48
48
  }
@@ -317,17 +317,17 @@ export class ElqLib {
317
317
  bottomAdditional.innerHTML = "Click the button below to recieve email confirmation.";
318
318
  topAdditional.style.display = 'block';
319
319
  bottomAdditional.style.display = 'block';
320
+ notMeLinkElement.style.display = 'block';
320
321
  notMeLinkElement.onclick = this.remove_user_details.bind(this);
321
322
  }
322
323
  }
323
- init_notme() {
324
- const topAdditional = document.getElementById('not-me-additional-top');
325
- const bottomAdditional = document.getElementById('not-me-additional-bottom');
326
- if (topAdditional)
327
- topAdditional.style.display = 'none';
328
- if (bottomAdditional)
329
- bottomAdditional.style.display = 'none';
330
- }
324
+ // private init_notme(): void{
325
+ // const topAdditional = document.getElementById('not-me-additional-top');
326
+ // const bottomAdditional = document.getElementById('not-me-additional-bottom');
327
+ // console.log("top: " + topAdditional)
328
+ // if(topAdditional) topAdditional.style.display = 'none';
329
+ // if(bottomAdditional) bottomAdditional.style.display = 'none';
330
+ // }
331
331
  remove_user_details(e) {
332
332
  e.preventDefault();
333
333
  this.user_elq_email = '';