@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.
- package/dist/cjs/{ptc-form-checkbox_3.cjs.entry.js → embedded-form_9.cjs.entry.js} +837 -3
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/ptcw-design.cjs.js +1 -1
- package/dist/collection/components/organism-bundles/form/embedded-form/embedded-form.css +6 -1
- package/dist/collection/components/organism-bundles/form/embedded-form/embedded-form.js +8 -1
- package/dist/collection/components/ptc-data-lookup/ptc-data-lookup.js +15 -0
- package/dist/collection/components/ptc-select/ptc-select.css +4 -1
- package/dist/collection/components/ptc-select/ptc-select.js +41 -1
- package/dist/collection/components/ptc-textfield/ptc-textfield.css +1 -2
- package/dist/collection/utils/elq-lib.js +9 -9
- package/dist/custom-elements/index.js +59 -15
- package/dist/esm/{ptc-form-checkbox_3.entry.js → embedded-form_9.entry.js} +833 -5
- package/dist/esm/loader.js +1 -1
- package/dist/esm/ptcw-design.js +1 -1
- package/dist/ptcw-design/p-ca29f7d6.entry.js +359 -0
- package/dist/ptcw-design/ptcw-design.esm.js +1 -1
- package/dist/types/components/ptc-data-lookup/ptc-data-lookup.d.ts +2 -0
- package/dist/types/components/ptc-select/ptc-select.d.ts +4 -0
- package/dist/types/components.d.ts +2 -0
- package/dist/types/utils/eloqua.d.ts +8 -0
- package/dist/types/utils/elq-lib.d.ts +0 -1
- package/package.json +1 -1
- package/readme.md +1 -1
- package/dist/cjs/embedded-form.cjs.entry.js +0 -108
- package/dist/cjs/max-width-container.cjs.entry.js +0 -54
- package/dist/cjs/ptc-button.cjs.entry.js +0 -52
- package/dist/cjs/ptc-data-lookup.cjs.entry.js +0 -496
- package/dist/cjs/ptc-spacer.cjs.entry.js +0 -38
- package/dist/cjs/ptc-title.cjs.entry.js +0 -78
- package/dist/esm/embedded-form.entry.js +0 -104
- package/dist/esm/max-width-container.entry.js +0 -50
- package/dist/esm/ptc-button.entry.js +0 -48
- package/dist/esm/ptc-data-lookup.entry.js +0 -492
- package/dist/esm/ptc-spacer.entry.js +0 -34
- package/dist/esm/ptc-title.entry.js +0 -74
- package/dist/ptcw-design/p-18dfffd3.entry.js +0 -359
- package/dist/ptcw-design/p-33c054ff.entry.js +0 -1
- package/dist/ptcw-design/p-3faffecb.entry.js +0 -1
- package/dist/ptcw-design/p-92bbd407.entry.js +0 -1
- package/dist/ptcw-design/p-9a36f7a3.entry.js +0 -1
- package/dist/ptcw-design/p-d2c400e2.entry.js +0 -1
- 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
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
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 = '';
|