@ptcwebops/ptcw-design 2.8.4 → 2.8.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 (44) hide show
  1. package/dist/cjs/embedded-form.cjs.entry.js +340 -0
  2. package/dist/cjs/footer-form.cjs.entry.js +14 -2
  3. package/dist/cjs/loader.cjs.js +1 -1
  4. package/dist/cjs/ptc-embedded-quiz.cjs.entry.js +1 -1
  5. package/dist/cjs/ptc-nav-link.cjs.entry.js +11 -15
  6. package/dist/cjs/ptc-pricing-packaging-table.cjs.entry.js +6 -19
  7. package/dist/cjs/ptcw-design.cjs.js +1 -1
  8. package/dist/collection/components/icon-asset/media/designer.svg +2 -2
  9. package/dist/collection/components/organism-bundles/form/embedded-form/embedded-form.js +24 -1
  10. package/dist/collection/components/organism-bundles/form/footer-form/footer-form.css +0 -4
  11. package/dist/collection/components/organism-bundles/form/footer-form/footer-form.js +14 -1
  12. package/dist/collection/components/ptc-embedded-quiz/ptc-embedded-quiz.css +144 -143
  13. package/dist/collection/components/ptc-pricing-packaging-table/ptc-pricing-packaging-table.css +1 -1
  14. package/dist/collection/components/ptc-pricing-packaging-table/ptc-pricing-packaging-table.js +6 -18
  15. package/dist/collection/components/subnav/ptc-nav-link/ptc-nav-link.js +12 -16
  16. package/dist/collection/utils/eloqua-tracking.js +42 -0
  17. package/dist/collection/utils/elq-lib.js +319 -0
  18. package/dist/custom-elements/index.js +376 -40
  19. package/dist/esm/embedded-form.entry.js +340 -0
  20. package/dist/esm/footer-form.entry.js +14 -2
  21. package/dist/esm/loader.js +1 -1
  22. package/dist/esm/ptc-embedded-quiz.entry.js +1 -1
  23. package/dist/esm/ptc-nav-link.entry.js +11 -15
  24. package/dist/esm/ptc-pricing-packaging-table.entry.js +6 -19
  25. package/dist/esm/ptcw-design.js +1 -1
  26. package/dist/ptcw-design/media/designer.svg +2 -2
  27. package/dist/ptcw-design/p-270e5fdf.entry.js +1 -0
  28. package/dist/ptcw-design/p-61e48f01.entry.js +1 -0
  29. package/dist/ptcw-design/{p-048f176c.entry.js → p-e54c51b3.entry.js} +1 -1
  30. package/dist/ptcw-design/p-ed2cc9da.entry.js +1 -0
  31. package/dist/ptcw-design/p-efdf34c5.entry.js +1 -0
  32. package/dist/ptcw-design/ptcw-design.esm.js +1 -1
  33. package/dist/types/components/organism-bundles/form/embedded-form/embedded-form.d.ts +4 -0
  34. package/dist/types/components/ptc-pricing-packaging-table/ptc-pricing-packaging-table.d.ts +1 -1
  35. package/dist/types/components/subnav/ptc-nav-link/ptc-nav-link.d.ts +12 -12
  36. package/dist/types/utils/eloqua-tracking.d.ts +36 -0
  37. package/dist/types/utils/eloqua.d.ts +8 -0
  38. package/dist/types/utils/elq-lib.d.ts +49 -0
  39. package/package.json +1 -1
  40. package/readme.md +1 -1
  41. package/dist/ptcw-design/p-28f642a0.entry.js +0 -1
  42. package/dist/ptcw-design/p-49d39b5f.entry.js +0 -1
  43. package/dist/ptcw-design/p-6d1fc569.entry.js +0 -1
  44. package/dist/ptcw-design/p-b2977996.entry.js +0 -1
@@ -4,6 +4,325 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  const index = require('./index-cd9a1b1a.js');
6
6
 
7
+ // Define the ElqLib class
8
+ class ElqLib {
9
+ constructor(params) {
10
+ this.params = params;
11
+ this.url_vars = {};
12
+ this.visitor_elq_id = null;
13
+ this.field_mappings = [];
14
+ this.callback_queue = [];
15
+ //private fields_populated: boolean = false;
16
+ this.user_elq_email = '';
17
+ this.user_elq_firstname = '';
18
+ this.user_elq_lastname = '';
19
+ // Merge defaults with params
20
+ const defaults = {
21
+ elq_site_id: '',
22
+ elq_visitor_lookup_key: '',
23
+ elq_recipient_id_lookup_key: '',
24
+ elq_contact_lookup_key: '',
25
+ elq_field_email_rec_id: 'V_EmailRecipientID',
26
+ elq_field_contact_email: 'C_EmailAddress',
27
+ elq_field_visitor_email: 'V_Email_Address',
28
+ elq_field_visitor_firstname: 'V_First_Name',
29
+ elq_field_visitor_lastname: 'V_Last_Name',
30
+ notme_link_id: null,
31
+ notme_fields_class: null,
32
+ notme_message: 'Not {name}? Click here.',
33
+ notme_message_noname: 'Not your details below? Click here.',
34
+ };
35
+ this.params = Object.assign(Object.assign({}, defaults), this.params);
36
+ this.init();
37
+ }
38
+ init() {
39
+ // Merge defaults with user-provided params if not already done in the constructor
40
+ // ...
41
+ // Set Eloqua site ID
42
+ this.setEloquaSiteId();
43
+ // Load Eloqua scripts
44
+ this.async_load();
45
+ // Store URL variables
46
+ this.store_url_vars();
47
+ // Store visitor's Eloqua IDgit
48
+ this.store_visitor_elq_id();
49
+ // Set the global Eloqua callback function
50
+ window.SetElqContent = this.eloqua_callback.bind(this);
51
+ }
52
+ setEloquaSiteId() {
53
+ if (this.params.elq_site_id) {
54
+ ElqLib._elqQ.push(['elqSetSiteId', this.params.elq_site_id]);
55
+ }
56
+ }
57
+ fire_pageview(url) {
58
+ try {
59
+ if (typeof url === 'undefined') {
60
+ ElqLib._elqQ.push(['elqTrackPageView']);
61
+ }
62
+ else {
63
+ ElqLib._elqQ.push(['elqTrackPageView', url]);
64
+ }
65
+ console.log('TRACKING: Eloqua pageview fired for URL: ' + (url || 'current page'));
66
+ }
67
+ catch (e) {
68
+ console.log('TRACKING: Could not fire Eloqua pageview: ', e);
69
+ }
70
+ }
71
+ find_eloqua_contact() {
72
+ console.log('CONTACT LOOKUP: Attempting to find Eloqua contact...');
73
+ // Queue callback action for the return of lookup
74
+ this.callback_queue.push(this.handle_visitor_lookup.bind(this));
75
+ // Start with a recipient lookup if ID was supplied in URL
76
+ if (this.visitor_elq_id !== null) {
77
+ this.lookup_visitor_by_recipient_id();
78
+ }
79
+ else {
80
+ // If no visitor ID, attempt to do a visitor lookup with an Eloqua cookie
81
+ this.lookup_visitor_by_cookie();
82
+ }
83
+ }
84
+ add_field_mapping(mapping) {
85
+ this.field_mappings.push(mapping);
86
+ }
87
+ add_queue_action(action) {
88
+ this.callback_queue.push(action);
89
+ }
90
+ store_url_vars() {
91
+ // Clear the current url_vars
92
+ this.url_vars = {};
93
+ // Split the URL by the '?' to get the query string part
94
+ const queryString = window.location.search.substring(1);
95
+ // Split the query string by '&' to get each key-value pair
96
+ queryString.split('&').forEach(paramString => {
97
+ // Split the key-value pairs by '=' to separate keys and values
98
+ let [key, value] = paramString.split('=');
99
+ // Decode URI components to handle URL encoding
100
+ key = decodeURIComponent(key);
101
+ value = decodeURIComponent(value);
102
+ // Store the key-value pair in the url_vars object
103
+ this.url_vars[key] = value;
104
+ });
105
+ // Optionally, log the stored URL variables
106
+ console.log('URL variables stored:', this.url_vars);
107
+ }
108
+ store_visitor_elq_id() {
109
+ console.log("INIT: Looking for visitor's Eloqua ID in URL...");
110
+ const elqIdParam = this.url_vars['elq'];
111
+ if (elqIdParam) {
112
+ const elqId = elqIdParam.toUpperCase().replace(/(.{8})(.{4})(.{4})(.{4})(.{12})/, '$1-$2-$3-$4-$5');
113
+ this.visitor_elq_id = elqId;
114
+ console.log(`INIT: ...visitor Eloqua ID found in URL: ${elqId}`);
115
+ }
116
+ else {
117
+ this.visitor_elq_id = null;
118
+ console.log('INIT: ...no visitor Eloqua ID found in URL');
119
+ }
120
+ }
121
+ // private merge(root: any, ...sources: any[]): any {
122
+ // sources.forEach(source => {
123
+ // for (const key in source) {
124
+ // if (source.hasOwnProperty(key)) {
125
+ // root[key] = source[key];
126
+ // }
127
+ // }
128
+ // });
129
+ // return root;
130
+ // }
131
+ eloqua_callback() {
132
+ console.log('LOOKUP: Eloqua lookup finished');
133
+ // Process each action in the callback queue
134
+ let actionSucceeded = true;
135
+ while (actionSucceeded && this.callback_queue.length > 0) {
136
+ const action = this.callback_queue.shift();
137
+ if (action) {
138
+ console.log(`QUEUE: Executing action`);
139
+ actionSucceeded = action(); // Execute the action. It must return a boolean indicating success.
140
+ if (actionSucceeded) {
141
+ console.log('QUEUE: Action executed successfully, removed from queue');
142
+ }
143
+ else {
144
+ console.log('QUEUE: Action failed, re-adding to queue');
145
+ this.callback_queue.unshift(action); // Re-add the action to the front of the queue
146
+ break; // Break out of the loop if an action fails
147
+ }
148
+ }
149
+ }
150
+ // After processing the queue, you might want to update user details or perform other operations
151
+ if (actionSucceeded) {
152
+ this.update_user_details();
153
+ }
154
+ //this.populate_mapped_fields();
155
+ // ...additional code to handle the aftermath of callback processing...
156
+ }
157
+ lookup_visitor_by_cookie() {
158
+ if (this.params.elq_visitor_lookup_key != '') {
159
+ ElqLib._elqQ.push(['elqDataLookup', escape(this.params.elq_visitor_lookup_key), '']);
160
+ console.log('LOOKUP: Visitor lookup sent using Eloqua cookie');
161
+ }
162
+ else {
163
+ console.log('LOOKUP: A visitor lookup cannot be performed as no lookup key was defined');
164
+ }
165
+ }
166
+ lookup_visitor_by_recipient_id() {
167
+ if (this.params.elq_recipient_id_lookup_key != '') {
168
+ ElqLib._elqQ.push([
169
+ 'elqDataLookup',
170
+ escape(this.params.elq_recipient_id_lookup_key),
171
+ '<' + this.params.elq_field_email_rec_id + '>' + this.visitor_elq_id + '</' + this.params.elq_field_email_rec_id + '>',
172
+ ]);
173
+ console.log('LOOKUP: Visitor lookup sent using email recipient id: ' + this.visitor_elq_id);
174
+ }
175
+ else {
176
+ console.log('LOOKUP: A visitor lookup cannot be performed as no lookup key was defined');
177
+ }
178
+ }
179
+ lookup_contact_by_email() {
180
+ if (this.params.elq_contact_lookup_key != '') {
181
+ ElqLib._elqQ.push([
182
+ 'elqDataLookup',
183
+ escape(this.params.elq_contact_lookup_key),
184
+ '<' + this.params.elq_field_contact_email + '>' + this.user_elq_email + '</' + this.params.elq_field_contact_email + '>',
185
+ ]);
186
+ console.log('LOOKUP: Contact lookup sent using email address: ' + this.user_elq_email);
187
+ }
188
+ else {
189
+ console.log('LOOKUP: A visitor lookup cannot be performed as no lookup key was defined');
190
+ }
191
+ }
192
+ handle_visitor_lookup() {
193
+ const email = window.GetElqContentPersonalizationValue(this.params.elq_field_visitor_email);
194
+ if (email) {
195
+ console.log(`LOOKUP: Found visitor email address: ${email}`);
196
+ this.user_elq_email = email.trim();
197
+ this.lookup_contact_by_email();
198
+ this.callback_queue.push(this.handle_contact_lookup.bind(this));
199
+ return true;
200
+ }
201
+ else {
202
+ return false;
203
+ }
204
+ }
205
+ handle_contact_lookup() {
206
+ if (window.GetElqContentPersonalizationValue(this.params.elq_field_contact_email) != '') {
207
+ console.log('LOOKUP: Found contact email address: ' + window.GetElqContentPersonalizationValue(this.params.elq_field_contact_email));
208
+ return true;
209
+ }
210
+ else {
211
+ return false;
212
+ }
213
+ }
214
+ // private populate_mapped_fields(): void {
215
+ // console.log("MAPPING: Starting field mapping");
216
+ // // Loop through all mappings
217
+ // for (mapping_set in field_mappings) {
218
+ // for (mapping_element in field_mappings[mapping_set]) {
219
+ // var mapping_elq_field = field_mappings[mapping_set][mapping_element];
220
+ // var element = document.getElementById(mapping_element);
221
+ // var field_value = GetElqContentPersonalizationValue(mapping_elq_field);
222
+ // // Check that field exists
223
+ // if (element == null) {
224
+ // log("MAPPING: Could not populate element '" + mapping_element + "' as it does not exist");
225
+ // }
226
+ // else if (element.value != '') {
227
+ // log("MAPPING: Could not populate element '" + mapping_element + "' as it already contained a value");
228
+ // }
229
+ // else if (field_value == '') {
230
+ // log("MAPPING: Could not populate element '" + mapping_element + "' as the Eloqua field '" + mapping_elq_field + "' contained no data");
231
+ // }
232
+ // else {
233
+ // fields_populated = true;
234
+ // element.value = field_value;
235
+ // log("MAPPING: Mapped element '" + mapping_element + "' with Eloqua field '" + mapping_elq_field + "'");
236
+ // }
237
+ // }
238
+ // }
239
+ // console.log("MAPPING: Finished field mapping");
240
+ // // Update notme link
241
+ // //update_notme_link ();
242
+ // }
243
+ update_user_details() {
244
+ if (this.user_elq_email == '' && window.GetElqContentPersonalizationValue(this.params.elq_field_visitor_email) != '') {
245
+ this.user_elq_email = window.GetElqContentPersonalizationValue(this.params.elq_field_visitor_email);
246
+ }
247
+ if (this.user_elq_firstname == '' && window.GetElqContentPersonalizationValue(this.params.elq_field_visitor_firstname) != '') {
248
+ this.user_elq_firstname = window.GetElqContentPersonalizationValue(this.params.elq_field_visitor_firstname);
249
+ }
250
+ if (this.user_elq_lastname == '' && window.GetElqContentPersonalizationValue(this.params.elq_field_visitor_lastname) != '') {
251
+ this.user_elq_lastname = window.GetElqContentPersonalizationValue(this.params.elq_field_visitor_lastname);
252
+ }
253
+ }
254
+ // private update_notme_link(): void {
255
+ // // Get link element
256
+ // var notme_link_element = $('#' + this.params.notme_link_id);
257
+ // // Get Eloqua vars
258
+ // var first_name = this.user_elq_firstname;
259
+ // var last_name = this.user_elq_lastname;
260
+ // var email = this.user_elq_email;
261
+ // // Check if we have both first name and last name
262
+ // if (first_name != '' && last_name !='') {
263
+ // name = first_name + ' ' + last_name;
264
+ // display_link = true;
265
+ // }
266
+ // // Check if we have first name
267
+ // else if (first_name != '') {
268
+ // name = first_name;
269
+ // }
270
+ // // Other use a generic message
271
+ // else {
272
+ // name = '';
273
+ // }
274
+ // // Check if some fields have been populated
275
+ // if (this.fields_populated && this.params.notme_link_id != null && this.params.notme_fields_class != null) {
276
+ // if (name != '') {
277
+ // var message = this.params.notme_message.replace("{name}", name);
278
+ // }
279
+ // else {
280
+ // var message = this.params.notme_message_noname;
281
+ // }
282
+ // console.log("MAPPING: Updating not me link");
283
+ // notme_link_element.find('*').remove();
284
+ // var link = $('<a href="">' + message + '</a>').appendTo(notme_link_element).click(this.remove_user_details);
285
+ // }
286
+ // }
287
+ // private remove_user_details(): void {
288
+ // this.user_elq_email = '';
289
+ // this.user_elq_firstname = '';
290
+ // this.user_elq_lastname = '';
291
+ // $('.' + this.params.notme_fields_class).val('');
292
+ // $('#' + this.params.notme_link_id)
293
+ // .find('a')
294
+ // .remove();
295
+ // //Flush out old user cookie
296
+ // ElqLib._elqQ.push(['elqVisitorGuid', ' ']);
297
+ // ElqLib._elqQ.push(['elqTrackPageView']);
298
+ // //return false;
299
+ // }
300
+ // Private Method to load Eloqua Scripts
301
+ async_load() {
302
+ const scriptUrl = 'http://img.en25.com/i/elqCfg.min.js';
303
+ const scriptElement = document.createElement('script');
304
+ scriptElement.type = 'text/javascript';
305
+ scriptElement.async = true;
306
+ scriptElement.src = scriptUrl;
307
+ // Error handling for script loading
308
+ scriptElement.onerror = errorEvent => {
309
+ console.log(`Error loading script: ${errorEvent}`);
310
+ };
311
+ // Append the script element to the head of the document, or before the first script tag found
312
+ const firstScriptTag = document.getElementsByTagName('script')[0];
313
+ if (firstScriptTag && firstScriptTag.parentNode) {
314
+ firstScriptTag.parentNode.insertBefore(scriptElement, firstScriptTag);
315
+ }
316
+ else {
317
+ document.head.appendChild(scriptElement);
318
+ }
319
+ console.log(`Async loading of script ${scriptUrl} initiated.`);
320
+ }
321
+ }
322
+ ElqLib._elqQ = [];
323
+ // Static member initialization
324
+ //ElqLib._elqQ = window['_elqQ'] || [];
325
+
7
326
  const embeddedFormCss = ":host{display:block}.flex-adjustments{display:flex;justify-content:center}@media only screen and (min-width: 768px){.flex-adjustments{justify-content:flex-end}}.embedded-form-container{background-color:#142D48}.form-wrapper{width:433px;display:flex;border-radius:3px;background:#FFF;box-shadow:0px 2px 6px 0px rgba(0, 0, 0, 0.16);flex-direction:column;align-items:center;padding:24px 0px;justify-content:center}";
8
327
 
9
328
  const EmbeddedForm = class {
@@ -20,6 +339,27 @@ const EmbeddedForm = class {
20
339
  howhearselfreport: '',
21
340
  policyChecked: false,
22
341
  };
342
+ this.elqLib = undefined;
343
+ }
344
+ componentWillLoad() {
345
+ this.initializeElqLib();
346
+ }
347
+ initializeElqLib() {
348
+ this.elqLib = new ElqLib({
349
+ elq_site_id: '2826',
350
+ elq_visitor_lookup_key: 'bf7df9f5b15c4b47b3c75e50c902bd53',
351
+ elq_recipient_id_lookup_key: '4da0a50be2db4a56a1a59d4bea5e0ea6',
352
+ elq_contact_lookup_key: '4da0a50be2db4a56a1a59d4bea5e0ea6',
353
+ elq_field_email_rec_id: 'V_EmailRecipientID',
354
+ elq_field_contact_email: 'C_EmailAddress',
355
+ elq_field_visitor_email: 'V_Email_Address',
356
+ elq_field_visitor_firstname: 'V_First_Name',
357
+ elq_field_visitor_lastname: 'V_Last_Name',
358
+ notme_link_id: null,
359
+ notme_fields_class: null,
360
+ notme_message: 'Not {name}? Click here.',
361
+ notme_message_noname: 'Not your details below? Click here.',
362
+ });
23
363
  }
24
364
  componentDidLoad() {
25
365
  this.formButton = this.el.querySelector('.form-submit');
@@ -4,7 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  const index = require('./index-cd9a1b1a.js');
6
6
 
7
- const footerFormCss = ":host{display:block}.flex-adjustments{display:flex;justify-content:center}@media only screen and (min-width: 768px){.flex-adjustments{justify-content:flex-end}}.embedded-form-container{background-color:#142D48}.form-wrapper{width:433px;display:flex;border-radius:3px;background:#FFF;box-shadow:0px 2px 6px 0px rgba(0, 0, 0, 0.16);flex-direction:column;align-items:center;padding:24px 0px;justify-content:center}.form-wrapper .footer-form-chk{font-size:var(--ptc-font-size-xxx-small);font-weight:var(--ptc-font-weight-medium)}";
7
+ const footerFormCss = ":host{display:block}.flex-adjustments{display:flex;justify-content:center}@media only screen and (min-width: 768px){.flex-adjustments{justify-content:flex-end}}.embedded-form-container{background-color:#142D48}.form-wrapper{width:433px;display:flex;border-radius:3px;background:#FFF;box-shadow:0px 2px 6px 0px rgba(0, 0, 0, 0.16);flex-direction:column;align-items:center;padding:24px 0px;justify-content:center}";
8
8
 
9
9
  const FooterForm = class {
10
10
  constructor(hostRef) {
@@ -14,11 +14,19 @@ const FooterForm = class {
14
14
  policyChecked: false,
15
15
  };
16
16
  }
17
+ // private firstNameEle: HTMLPtcTextfieldElement;
18
+ // private lastNameEle: HTMLPtcTextfieldElement;
19
+ // private companyEle: HTMLPtcTextfieldElement;
20
+ // private phoneEle: HTMLPtcTextfieldElement;
17
21
  componentDidLoad() {
18
22
  this.formButton = this.el.querySelector('.form-submit');
19
23
  this.formButton.addEventListener('click', this.handleSubmit.bind(this));
20
24
  //get Email
21
25
  this.emailEle = this.el.querySelector('ptc-textfield[field-id="contact-email"]');
26
+ // this.firstNameEle = this.el.querySelector('ptc-textfield[field-id="contact-firstname"]')
27
+ // this.lastNameEle = this.el.querySelector('ptc-textfield[field-id="contact-lastname"]')
28
+ // this.companyEle = this.el.querySelector('ptc-textfield[field-id="company"]')
29
+ // this.phoneEle = this.el.querySelector('ptc-textfield[field-id="contact-phone"]')
22
30
  }
23
31
  handleInputChange(field, value) {
24
32
  this.formData = Object.assign(Object.assign({}, this.formData), { [field]: value });
@@ -26,6 +34,10 @@ const FooterForm = class {
26
34
  handleSubmit(event) {
27
35
  event.preventDefault();
28
36
  this.formData.email = this.emailEle.inputValue;
37
+ // this.formData.firstName = this.firstNameEle.inputValue;
38
+ // this.formData.lastName = this.lastNameEle.inputValue;
39
+ // this.formData.company = this.companyEle.inputValue;
40
+ // this.formData.phone = this.phoneEle.inputValue;
29
41
  if (this.isValid()) {
30
42
  const formSubmitEvent = new CustomEvent('formSubmit', {
31
43
  detail: this.formData,
@@ -45,7 +57,7 @@ const FooterForm = class {
45
57
  return email !== '' && policyChecked && invalidLength === 0;
46
58
  }
47
59
  render() {
48
- return (index.h(index.Host, null, index.h("div", { class: "ptc-container ptc-section-standard u-flex u-flex-justify-flexend" }, index.h("div", { class: "form-wrapper" }, index.h("form", { onSubmit: event => this.handleSubmit(event) }, index.h("ptc-textfield", { "field-id": "contact-email", "label-text": "Email*", type: "email", "ptc-data-eloqua-name": "C_EmailAddress", name: "email" }), index.h("ptc-form-checkbox", { class: "footer-form-chk", label: "I agree to the policy", "checkbox-id": "test" }), index.h("ptc-button", { class: "form-submit", color: "ptc-primary", type: "submit", styles: ":host{align-self:flex-end; margin-top: var(--ptc-element-spacing-05); display:block;}" }, "Get Started"))))));
60
+ return (index.h(index.Host, null, index.h("div", { class: "ptc-container ptc-section-standard u-flex u-flex-justify-center" }, index.h("div", { class: "form-wrapper" }, index.h("form", { onSubmit: event => this.handleSubmit(event) }, index.h("ptc-textfield", { "field-id": "contact-email", "label-text": "Email*", type: "email", "ptc-data-eloqua-name": "C_EmailAddress", name: "email" }), index.h("ptc-form-checkbox", { label: "I agree to the policy", "checkbox-id": "test" }), index.h("ptc-button", { class: "form-submit", color: "ptc-quaternary", type: "submit", styles: ":host{align-self:flex-end; margin-top: 48px; display:block;}" }, "Submit"))))));
49
61
  }
50
62
  get el() { return index.getElement(this); }
51
63
  };
@@ -14,7 +14,7 @@ const patchEsm = () => {
14
14
  const defineCustomElements = (win, options) => {
15
15
  if (typeof window === 'undefined') return Promise.resolve();
16
16
  return patchEsm().then(() => {
17
- return index.bootstrapLazy(JSON.parse("[[\"bundle-jumbotron-example.cjs\",[[1,\"bundle-jumbotron-example\",{\"jumbotron\":[1],\"isIframe\":[4,\"is-iframe\"]}]]],[\"ptc-featured-list.cjs\",[[1,\"ptc-featured-list\",{\"isMobile\":[32],\"selectedTabGloble\":[32]},[[9,\"resize\",\"handleResize\"],[4,\"flTabClicked\",\"handleflTabClicked\"]]]]],[\"featured-list.cjs\",[[1,\"featured-list\",{\"isMobile\":[32],\"selectedTabGloble\":[32]},[[9,\"resize\",\"handleResize\"],[4,\"flTabClicked\",\"handleflTabClicked\"]]]]],[\"ptc-filter-level-theater.cjs\",[[1,\"ptc-filter-level-theater\",{\"selectedTab\":[32],\"lastSelectedTab\":[32],\"lastSelectedTabGroup\":[32],\"selectedTabGroup\":[32]},[[4,\"selectedFilterValues\",\"handleSelectedFilterValues\"]]]]],[\"ptc-pricing-packaging-table.cjs\",[[1,\"ptc-pricing-packaging-table\",{\"pageWithSubnav\":[4,\"page-with-subnav\"],\"tableTitle\":[1,\"table-title\"],\"tableSubTitle\":[1,\"table-sub-title\"],\"dataRows\":[2,\"data-rows\"],\"dataCols\":[2,\"data-cols\"],\"disclaimerCount\":[2,\"disclaimer-count\"],\"isDesktopView\":[32],\"cellWidthXXS\":[32],\"cellWidthMD\":[32],\"cellLeftRightPadding\":[32],\"headerType\":[32],\"lastScrollTop\":[32],\"scrollTimeInterval\":[32],\"scrollAmount\":[32],\"scrollLimit\":[32],\"stickyTopAt\":[32],\"columnHeaderLinks\":[32],\"showFillerCells\":[32],\"showCtaButtonsRow\":[32],\"ctaButtons\":[32],\"disclaimers\":[32],\"tableDescription\":[32]}]]],[\"ptc-pricing-table.cjs\",[[1,\"ptc-pricing-table\",{\"pageWithSubnav\":[4,\"page-with-subnav\"],\"tableTitle\":[1,\"table-title\"],\"tableSubTitle\":[1,\"table-sub-title\"],\"tableDescription\":[1,\"table-description\"],\"dataRows\":[2,\"data-rows\"],\"dataCols\":[2,\"data-cols\"],\"disclaimerCount\":[2,\"disclaimer-count\"],\"scrollTopClipperHeight\":[32],\"desktopHeaderFirstCellWidth\":[32],\"targetElements\":[32],\"columnHeaderLinks\":[32],\"lastScrollTop\":[32],\"scrollTimeInterval\":[32],\"scrollAmount\":[32],\"scrollLimit\":[32],\"mobileHeaderRowColSpan\":[32],\"showCtaButtonsRow\":[32],\"ctaButtons\":[32],\"disclaimers\":[32]}]]],[\"embedded-form.cjs\",[[0,\"embedded-form\",{\"formData\":[32]}]]],[\"ptc-form.cjs\",[[0,\"ptc-form\",{\"formData\":[32]}]]],[\"ptc-pricing-add-on-section.cjs\",[[4,\"ptc-pricing-add-on-section\",{\"cardCount\":[2,\"card-count\"],\"cardData\":[32]}]]],[\"sequential-bundle.cjs\",[[1,\"sequential-bundle\",{\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"]]]]],[\"sequential-bundle-example.cjs\",[[1,\"sequential-bundle-example\",{\"isInteralCardsExpanded\":[1040],\"isMobile\":[32],\"expandedCardIndex\":[32]},[[9,\"resize\",\"handleResize\"]]]]],[\"author-listing-example.cjs\",[[1,\"author-listing-example\",{\"defaultAuthorImage\":[1,\"default-author-image\"],\"isLoading\":[32],\"loadedCardCount\":[32],\"cardsPerLoad\":[32],\"cardData\":[32]},[[9,\"scroll\",\"handleScroll\"]]]]],[\"bundle-example.cjs\",[[1,\"bundle-example\",{\"isLoading\":[32],\"picWidth\":[32],\"picHeight\":[32],\"cardHeights\":[32],\"maxCardHeight\":[32]},[[9,\"resize\",\"handleWindowResize\"],[16,\"squareHeightChanged\",\"squareHeightChangedHandler\"]]]]],[\"ptc-product-sidebar.cjs\",[[1,\"ptc-product-sidebar\",{\"suggestionList\":[16],\"searchTerm\":[32],\"suggestions\":[32]},[[4,\"dropdownTouched\",\"handleDropdownTouched\"],[0,\"click\",\"handleClick\"],[4,\"clearCtaClicked\",\"handleclearCtaClicked\"],[4,\"selectedValues\",\"handleSelectedValues\"]]]]],[\"ptc-embedded-quiz.cjs\",[[1,\"ptc-embedded-quiz\",{\"getQuizEndpoint\":[1,\"get-quiz-endpoint\"],\"quiz\":[32],\"slide\":[32],\"traversal\":[32]}]]],[\"ptc-product-card.cjs\",[[1,\"ptc-product-card\",{\"cardTitle\":[1,\"card-title\"],\"cardImage\":[1,\"card-image\"],\"cardImageAltText\":[1,\"card-image-alt-text\"],\"cardDescription\":[1,\"card-description\"],\"cardCtaText\":[1,\"card-cta-text\"],\"toggleCtaTitle\":[1,\"toggle-cta-title\"],\"isSlotEmpty\":[4,\"is-slot-empty\"],\"isOpen\":[32]}]]],[\"ptc-modal-quiz.cjs\",[[1,\"ptc-modal-quiz\",{\"totalQuestions\":[2,\"total-questions\"],\"modalId\":[1,\"modal-id\"],\"currentQuestion\":[32],\"currentSelectedPriority\":[32],\"selectedPriorityRadio\":[32],\"answers\":[32],\"traversal\":[32]}]]],[\"ptc-news.cjs\",[[1,\"ptc-news\",{\"newsTag\":[1,\"news-tag\"],\"newsTitle\":[1,\"news-title\"],\"newsSecondaryTitle\":[1,\"news-secondary-title\"],\"newsDate\":[1,\"news-date\"],\"newsSummary\":[1,\"news-summary\"],\"newsImage\":[1,\"news-image\"],\"newsImageAlt\":[1,\"news-image-alt\"],\"newsDownloadUrl\":[1,\"news-download-url\"]}]]],[\"ptc-product-category.cjs\",[[1,\"ptc-product-category\",{\"categoryTitle\":[1,\"category-title\"],\"categoryDescription\":[1,\"category-description\"]}]]],[\"ptc-product-highlight-card.cjs\",[[1,\"ptc-product-highlight-card\",{\"cardTitle\":[1,\"card-title\"],\"cardImage\":[1,\"card-image\"],\"cardImageAltText\":[1,\"card-image-alt-text\"],\"cardDescription\":[1,\"card-description\"]}]]],[\"footer-form.cjs\",[[0,\"footer-form\",{\"formData\":[32]}]]],[\"innovator-toggle-container.cjs\",[[1,\"innovator-toggle-container\",{\"sectionTitle\":[1,\"section-title\"],\"description\":[1],\"backgroundImage\":[1,\"background-image\"]}]]],[\"ptc-announcement.cjs\",[[1,\"ptc-announcement\",{\"barTitle\":[1025,\"bar-title\"],\"description\":[1025],\"linkText\":[513,\"link-text\"],\"linkTitle\":[513,\"link-title\"],\"visible\":[1540],\"linkUrl\":[1537,\"link-url\"],\"insideContainer\":[4,\"inside-container\"],\"target\":[1025],\"customMaxLines\":[2,\"custom-max-lines\"],\"moreText\":[1,\"more-text\"],\"windowSize\":[32]},[[9,\"resize\",\"handleResize\"]]]]],[\"ptc-collapse-list.cjs\",[[1,\"ptc-collapse-list\",{\"header\":[1],\"listItems\":[1040],\"placeholderText\":[1025,\"placeholder-text\"],\"debounceUpdateDelay\":[1026,\"debounce-update-delay\"],\"data\":[32],\"searchText\":[32],\"selectedValue\":[32],\"selectedItems\":[32],\"hashMap\":[32],\"debouncedUpdatedEvent\":[32],\"refreshBuffer\":[32],\"removeSelectedItem\":[64],\"addSelectedItem\":[64]}]]],[\"ptc-product-list.cjs\",[[1,\"ptc-product-list\",null,[[4,\"selectedResult\",\"handleSearchResult\"],[4,\"clearsearch\",\"handleSearchResult\"],[4,\"selectedValues\",\"handleMultipleSearchResult\"],[4,\"emptyResult\",\"handleEmptyResult\"]]]]],[\"ptc-tab-list.cjs\",[[4,\"ptc-tab-list\",{\"type\":[1],\"isMobile\":[32],\"selectedValue\":[32]},[[0,\"tabClicked\",\"onSelectedTab\"],[9,\"resize\",\"calculateHeaderTabsRendering\"]]]]],[\"ptc-hero.cjs\",[[1,\"ptc-hero\",{\"heroType\":[1,\"hero-type\"],\"bgUrl\":[1,\"bg-url\"],\"contentAlignment\":[1,\"content-alignment\"]}]]],[\"ptc-previous-url.cjs\",[[1,\"ptc-previous-url\",{\"href\":[1],\"text\":[1],\"styles\":[1]}]]],[\"ptc-pricing-tabs.cjs\",[[1,\"ptc-pricing-tabs\",{\"productTag\":[1,\"product-tag\"],\"header\":[1],\"tabLabel\":[1,\"tab-label\"],\"filterTag\":[1,\"filter-tag\"],\"styles\":[1],\"tabItems\":[32],\"isMobileViewPort\":[32],\"isDesktopViewPort\":[32]},[[9,\"resize\",\"setIsMobileViewPort\"]]]]],[\"ptc-related-card-rail.cjs\",[[1,\"ptc-related-card-rail\",{\"footerQuerySelector\":[1,\"footer-query-selector\"],\"closed\":[32],\"cardInView\":[32],\"data\":[32],\"screenBasedProps\":[32]}]]],[\"ptc-square-card.cjs\",[[1,\"ptc-square-card\",{\"number\":[1],\"arrowDirection\":[1,\"arrow-direction\"]}]]],[\"ptc-sticky-title.cjs\",[[1,\"ptc-sticky-title\",{\"barTitle\":[1,\"bar-title\"],\"logo\":[1],\"isSticky\":[32]},[[9,\"scroll\",\"handleScroll\"]]]]],[\"ptc-theater-video-modal.cjs\",[[6,\"ptc-theater-video-modal\",{\"cards\":[32],\"showModal\":[32],\"currentCardIndex\":[32],\"filteredTagName\":[32],\"modalType\":[32],\"updateData\":[64]}]]],[\"ptc-value-prop-card.cjs\",[[1,\"ptc-value-prop-card\",{\"cardHref\":[1,\"card-href\"],\"target\":[1],\"rel\":[1],\"cardTitle\":[1,\"card-title\"],\"backgroundImage\":[1,\"background-image\"]}]]],[\"ptc-bio-card.cjs\",[[1,\"ptc-bio-card\",{\"name\":[1],\"jobTitle\":[1,\"job-title\"],\"image\":[1],\"linkedin\":[1],\"twitter\":[1],\"showModal\":[32]}]]],[\"ptc-checkbox.cjs\",[[1,\"ptc-checkbox\",{\"checked\":[1025],\"value\":[1025],\"disabled\":[1028],\"inputName\":[1,\"input-name\"]}]]],[\"ptc-dropdown.cjs\",[[1,\"ptc-dropdown\",{\"theme\":[1],\"label\":[1],\"listItems\":[16],\"toggle\":[32],\"selectedItem\":[32]},[[4,\"click\",\"offClick\"]]]]],[\"ptc-filter-tag.cjs\",[[1,\"ptc-filter-tag\",{\"theme\":[1],\"iconColorMap\":[32]}]]],[\"ptc-icon-minimize.cjs\",[[1,\"ptc-icon-minimize\",{\"heading\":[1025],\"opened\":[1028],\"timeStamp\":[32],\"Refresh\":[64]}]]],[\"ptc-list.cjs\",[[1,\"ptc-list\",{\"listType\":[1,\"list-type\"],\"listItems\":[16]}]]],[\"ptc-media-card.cjs\",[[1,\"ptc-media-card\",{\"cardType\":[1,\"card-type\"],\"cardHref\":[1,\"card-href\"],\"target\":[1],\"rel\":[1],\"activeBackgroundImage\":[1025,\"active-background-image\"],\"hoverBackgroundImage\":[1025,\"hover-background-image\"],\"heading\":[1025],\"headingTransform\":[1025,\"heading-transform\"],\"category\":[1025],\"isHovered\":[32]}]]],[\"ptc-mobile-select.cjs\",[[0,\"ptc-mobile-select\",{\"triggerName\":[1,\"trigger-name\"],\"selectedText\":[1,\"selected-text\"],\"wheelData\":[1040],\"selectedId\":[1,\"selected-id\"],\"ensureBtnText\":[1,\"ensure-btn-text\"],\"cancelBtnText\":[1,\"cancel-btn-text\"],\"listTitle\":[1,\"list-title\"]}]]],[\"ptc-nav-submenu.cjs\",[[1,\"ptc-nav-submenu\",{\"label\":[1],\"iconAssetName\":[1025,\"icon-asset-name\"],\"iconSrc\":[1,\"icon-src\"]}]]],[\"ptc-pagenation.cjs\",[[1,\"ptc-pagenation\",{\"totalCount\":[2,\"total-count\"],\"numberOfItems\":[2,\"number-of-items\"],\"previousValue\":[1,\"previous-value\"],\"lastValue\":[1,\"last-value\"],\"minPageNumber\":[2,\"min-page-number\"],\"maxPageNumber\":[2,\"max-page-number\"],\"clickedPageNumber\":[2,\"clicked-page-number\"],\"appendArray\":[4,\"append-array\"],\"prevArrowImg\":[1,\"prev-arrow-img\"],\"nextArrowImg\":[1,\"next-arrow-img\"],\"theme\":[1],\"styles\":[1],\"pageNumbers\":[32],\"isSmallScreen\":[32]},[[9,\"resize\",\"windowResize\"]]]]],[\"ptc-podcast-card.cjs\",[[1,\"ptc-podcast-card\",{\"heading\":[1],\"imageSrc\":[1,\"image-src\"],\"altText\":[1,\"alt-text\"]}]]],[\"ptc-quote.cjs\",[[1,\"ptc-quote\",{\"quoteType\":[1025,\"quote-type\"],\"quoteName\":[1025,\"quote-name\"],\"ctaText\":[1,\"cta-text\"],\"ctaUrl\":[1,\"cta-url\"],\"imgSrc\":[1,\"img-src\"],\"imgTitle\":[1,\"img-title\"]}]]],[\"ptc-search-field.cjs\",[[1,\"ptc-search-field\",{\"textValue\":[1,\"text-value\"],\"placeholderLabel\":[1,\"placeholder-label\"],\"darkTheme\":[4,\"dark-theme\"],\"elevation\":[1],\"enableClear\":[4,\"enable-clear\"],\"styles\":[1],\"clearSearchValue\":[64]}]]],[\"ptc-slit-card.cjs\",[[1,\"ptc-slit-card\",{\"cardType\":[1,\"card-type\"],\"cardHref\":[1,\"card-href\"],\"target\":[1],\"rel\":[1],\"heading\":[1],\"content\":[1],\"styles\":[1],\"cardImage\":[1,\"card-image\"]}]]],[\"ptc-subnav-card.cjs\",[[1,\"ptc-subnav-card\",{\"cardTitle\":[1,\"card-title\"],\"cardHref\":[1,\"card-href\"],\"cardImageSrc\":[1,\"card-image-src\"],\"cardImageAlt\":[1,\"card-image-alt\"],\"ctaText\":[1,\"cta-text\"],\"ctaIconAssetName\":[1,\"cta-icon-asset-name\"]}]]],[\"tab-header.cjs\",[[0,\"tab-header\",{\"name\":[1],\"tooltip\":[1],\"tabHeaderText\":[1,\"tab-header-text\"],\"isSelected\":[32],\"maxLength\":[32],\"getChild\":[64]},[[9,\"resize\",\"handleWindowResize\"]]]]],[\"dynamic-box-bundle.cjs\",[[1,\"dynamic-box-bundle\",{\"topImgSrc\":[1,\"top-img-src\"],\"topImgAlt\":[1,\"top-img-alt\"],\"boxHeight\":[2,\"box-height\"],\"isHovering\":[32]},[[1,\"mouseover\",\"handleMouseOver\"],[1,\"mouseout\",\"handleMouseOut\"]]]]],[\"my-component.cjs\",[[1,\"my-component\",{\"first\":[1],\"middle\":[1],\"last\":[1]}]]],[\"ptc-accordion.cjs\",[[1,\"ptc-accordion\",{\"multiple\":[4],\"theme\":[1]},[[0,\"opened\",\"openHandler\"]]]]],[\"ptc-accordion-item.cjs\",[[1,\"ptc-accordion-item\",{\"heading\":[1],\"headingTag\":[1,\"heading-tag\"],\"autoHeight\":[4,\"auto-height\"],\"active\":[1540],\"theme\":[1537],\"hasHeadingSlot\":[32],\"hasArrowSlot\":[32],\"toggle\":[64],\"close\":[64],\"open\":[64]}]]],[\"ptc-back-to-top.cjs\",[[1,\"ptc-back-to-top\",{\"showButton\":[32]},[[0,\"click\",\"handleClick\"]]]]],[\"ptc-brightcov-video.cjs\",[[2,\"ptc-brightcov-video\",{\"videoId\":[1,\"video-id\"]}]]],[\"ptc-case-studies-slider.cjs\",[[1,\"ptc-case-studies-slider\"]]],[\"ptc-container.cjs\",[[1,\"ptc-container\",{\"backgroundColor\":[1,\"background-color\"],\"elevation\":[1],\"containerType\":[1,\"container-type\"],\"spacing\":[1],\"styles\":[1]}]]],[\"ptc-hero-footer-cta.cjs\",[[6,\"ptc-hero-footer-cta\",{\"ctaTitle\":[1,\"cta-title\"],\"description\":[1],\"backgroundImage\":[1,\"background-image\"]}]]],[\"ptc-icon-component.cjs\",[[1,\"ptc-icon-component\",{\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"]]]]],[\"ptc-icon-list.cjs\",[[1,\"ptc-icon-list\",{\"listType\":[1,\"list-type\"],\"valueWithUnit\":[1,\"value-with-unit\"],\"valueText\":[1,\"value-text\"],\"listContent\":[1,\"list-content\"],\"isLastItem\":[4,\"is-last-item\"]}]]],[\"ptc-minimized-nav.cjs\",[[1,\"ptc-minimized-nav\",{\"linkUrl\":[513,\"link-url\"],\"imgSrc\":[513,\"img-src\"],\"imgAlt\":[513,\"img-alt\"],\"navType\":[1,\"nav-type\"]}]]],[\"ptc-nav-card.cjs\",[[1,\"ptc-nav-card\",{\"cardType\":[1025,\"card-type\"],\"cardHref\":[1025,\"card-href\"],\"logoAlt\":[1025,\"logo-alt\"],\"target\":[1025],\"rel\":[1025],\"linkTitle\":[1025,\"link-title\"],\"cardLogo\":[1025,\"card-logo\"],\"heading\":[1025],\"description\":[1025],\"windowSize\":[32]},[[9,\"resize\",\"handleResize\"]]]]],[\"ptc-nav-link.cjs\",[[1,\"ptc-nav-link\",{\"href\":[1025],\"isOutsideLink\":[1028,\"is-outside-link\"],\"titleText\":[1025,\"title-text\"]},[[2,\"click\",\"handleClick\"]]]]],[\"ptc-nav-pills.cjs\",[[1,\"ptc-nav-pills\"]]],[\"ptc-nav-slider.cjs\",[[1,\"ptc-nav-slider\",{\"sliderId\":[1,\"slider-id\"]},[[0,\"dropdownClickEvent\",\"handledropdownClickEvent\"]]]]],[\"ptc-readmore-char.cjs\",[[1,\"ptc-readmore-char\",{\"maxCharacters\":[2,\"max-characters\"],\"description\":[1],\"readMoreText\":[1,\"read-more-text\"],\"readLessText\":[1,\"read-less-text\"],\"expanded\":[32]}]]],[\"ptc-responsive-wrapper.cjs\",[[1,\"ptc-responsive-wrapper\"]]],[\"ptc-shopping-cart.cjs\",[[1,\"ptc-shopping-cart\",{\"cartCount\":[1,\"cart-count\"],\"color\":[1]}]]],[\"ptc-span.cjs\",[[1,\"ptc-span\",{\"spanStyle\":[1,\"span-style\"],\"display\":[1],\"fontWeight\":[1,\"font-weight\"],\"styles\":[1]}]]],[\"ptc-sticky-icons.cjs\",[[1,\"ptc-sticky-icons\",null,[[9,\"resize\",\"handleResize\"]]]]],[\"ptc-sticky-section.cjs\",[[1,\"ptc-sticky-section\",null,[[9,\"scroll\",\"handleScroll\"]]]]],[\"ptc-subnav.cjs\",[[1,\"ptc-subnav\",{\"mobileTitle\":[1,\"mobile-title\"],\"navOpen\":[32]},[[9,\"scroll\",\"handleScroll\"],[0,\"navLinkClicked\",\"handleNavLinkClickedEvent\"]]]]],[\"ptc-tab.cjs\",[[1,\"ptc-tab\",{\"optionClicked\":[1540,\"option-clicked\"],\"label\":[1],\"price\":[1],\"active\":[4],\"disabled\":[516]}]]],[\"ptc-tabs.cjs\",[[1,\"ptc-tabs\",{\"tabs\":[32],\"openTab\":[64]}]]],[\"ptc-text-copy-with-background.cjs\",[[1,\"ptc-text-copy-with-background\",{\"type\":[1],\"backgroundImage\":[1,\"background-image\"],\"ImageAltText\":[1,\"image-alt-text\"],\"topSlitBackgroundColor\":[1,\"top-slit-background-color\"],\"slitPosition\":[1,\"slit-position\"],\"isBackgroundBlur\":[4,\"is-background-blur\"],\"overlay\":[4],\"styles\":[1]}]]],[\"ptc-two-column-media.cjs\",[[1,\"ptc-two-column-media\",{\"componentType\":[1,\"component-type\"]}]]],[\"tab-content.cjs\",[[4,\"tab-content\",{\"name\":[1],\"isSelected\":[32],\"getChild\":[64]}]]],[\"ptc-readmore.cjs\",[[1,\"ptc-readmore\",{\"moreText\":[1025,\"more-text\"],\"lessText\":[1025,\"less-text\"],\"readMorePosition\":[1,\"read-more-position\"],\"display\":[1],\"visibleLines\":[1,\"visible-lines\"],\"visibleLinesCustom\":[2,\"visible-lines-custom\"],\"zIndex\":[1,\"z-index\"],\"checked\":[1028],\"size\":[1],\"isIcon\":[4,\"is-icon\"],\"color\":[1],\"updateReadmoreStatus\":[64]},[[9,\"resize\",\"updateReadmoreStatus\"]]]]],[\"ptc-spacer.cjs\",[[1,\"ptc-spacer\",{\"breakpoint\":[1],\"size\":[1],\"direction\":[1]}]]],[\"ptc-button.cjs\",[[1,\"ptc-button\",{\"disabled\":[516],\"active\":[516],\"type\":[1],\"color\":[1],\"iconAnimation\":[1,\"icon-animation\"],\"iconPosition\":[1,\"icon-position\"],\"linkHref\":[1,\"link-href\"],\"linkTitle\":[1,\"link-title\"],\"target\":[1],\"rel\":[1],\"tabNav\":[2,\"tab-nav\"],\"styles\":[1],\"textAlign\":[1,\"text-align\"]}]]],[\"ptc-title.cjs\",[[6,\"ptc-title\",{\"isPlmHub\":[4,\"is-plm-hub\"],\"type\":[1],\"textAlign\":[1,\"text-align\"],\"upperline\":[1],\"titleShadow\":[1,\"title-shadow\"],\"titleColor\":[1,\"title-color\"],\"titleMargin\":[1,\"title-margin\"],\"titleWeight\":[1,\"title-weight\"],\"titleSize\":[1,\"title-size\"],\"titleHeight\":[1,\"title-height\"],\"styles\":[1],\"ellipsisLineCutoff\":[2,\"ellipsis-line-cutoff\"],\"titleDisplay\":[1,\"title-display\"]}]]],[\"ptc-pricing-add-on-card.cjs\",[[1,\"ptc-pricing-add-on-card\",{\"cardTitle\":[1,\"card-title\"],\"cardPricingText\":[1,\"card-pricing-text\"],\"cardCtaHref\":[1,\"card-cta-href\"],\"cardCtaText\":[1,\"card-cta-text\"],\"cardCtaTarget\":[1,\"card-cta-target\"],\"cardDisclaimer\":[1,\"card-disclaimer\"]}]]],[\"ptc-card.cjs\",[[1,\"ptc-card\",{\"cardType\":[1,\"card-type\"],\"cardHref\":[1,\"card-href\"],\"target\":[1],\"rel\":[1],\"hasImage\":[4,\"has-image\"],\"hasVideo\":[4,\"has-video\"],\"hasLottie\":[4,\"has-lottie\"],\"heading\":[1],\"headingTransform\":[1,\"heading-transform\"],\"cardDate\":[1,\"card-date\"],\"country\":[1],\"styles\":[1],\"ribbonText\":[1,\"ribbon-text\"],\"eventType\":[1,\"event-type\"],\"cardLogo\":[1,\"card-logo\"],\"titleLineCutOff\":[2,\"title-line-cut-off\"],\"maxChars\":[2,\"max-chars\"],\"maxLines\":[2,\"max-lines\"],\"cardOverflow\":[1,\"card-overflow\"],\"isCreoCard\":[4,\"is-creo-card\"]}]]],[\"ptc-ellipsis-dropdown.cjs\",[[1,\"ptc-ellipsis-dropdown\",{\"dataItems\":[16],\"selectedTab\":[1,\"selected-tab\"],\"isDropdownOpen\":[32],\"isMobile\":[32]},[[4,\"click\",\"offClick\"],[9,\"resize\",\"handleResize\"]]]]],[\"ptc-image-download-strip.cjs\",[[1,\"ptc-image-download-strip\",{\"downloadUrl\":[1,\"download-url\"]}]]],[\"ptc-pricing-block.cjs\",[[1,\"ptc-pricing-block\",{\"active\":[4],\"optionClicked\":[1540,\"option-clicked\"]}]]],[\"ptc-product-dropdown.cjs\",[[1,\"ptc-product-dropdown\",{\"newOptions\":[16],\"selectedOptions\":[16],\"placeholder\":[1],\"internalOptions\":[32],\"isOpen\":[32]},[[4,\"clearsearch\",\"handleSearchResult\"],[4,\"inputChanged\",\"handleinputChanged\"]]]]],[\"ptc-progress-bar.cjs\",[[1,\"ptc-progress-bar\",{\"scrollPercentage\":[32]},[[9,\"scroll\",\"handleScroll\"]]]]],[\"ptc-svg-btn.cjs\",[[1,\"ptc-svg-btn\",{\"svgName\":[1,\"svg-name\"],\"display\":[1],\"zIndex\":[1,\"z-index\"],\"styles\":[2]}]]],[\"ptc-background-video.cjs\",[[1,\"ptc-background-video\",{\"videoSrc\":[1,\"video-src\"],\"posterSrc\":[1,\"poster-src\"],\"overlay\":[4],\"playButtonTitle\":[1,\"play-button-title\"],\"pauseButtonTitle\":[1,\"pause-button-title\"],\"type\":[1],\"isIframe\":[4,\"is-iframe\"],\"paused\":[32]}]]],[\"list-item.cjs\",[[1,\"list-item\",{\"listType\":[1,\"list-type\"],\"linkHref\":[1,\"link-href\"],\"flushBefore\":[4,\"flush-before\"],\"linkTarget\":[1,\"link-target\"],\"color\":[1],\"styles\":[1]}]]],[\"ptc-breadcrumb_2.cjs\",[[1,\"ptc-jumbotron\",{\"jumbotronType\":[1,\"jumbotron-type\"],\"hasPopupVideo\":[4,\"has-popup-video\"],\"mainTitle\":[1,\"main-title\"],\"subTitle\":[1,\"sub-title\"],\"pngSrc\":[1,\"png-src\"],\"gifSrc\":[1,\"gif-src\"],\"bgVideoSrc\":[1,\"bg-video-src\"],\"bgSrc\":[1,\"bg-src\"],\"isIframe\":[4,\"is-iframe\"],\"playButtonTitle\":[1,\"play-button-title\"],\"pauseButtonTitle\":[1,\"pause-button-title\"],\"hasCtaSlot\":[4,\"has-cta-slot\"],\"contentBackground\":[32],\"contentColor\":[32],\"textAlign\":[32],\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"]]],[1,\"ptc-breadcrumb\",{\"position\":[1],\"removeTopMargin\":[4,\"remove-top-margin\"],\"color\":[1],\"styles\":[1]}]]],[\"ptc-overlay.cjs\",[[1,\"ptc-overlay\",{\"filterColor\":[1,\"filter-color\"],\"borderRadius\":[1,\"border-radius\"],\"overlayZIndex\":[1,\"overlay-z-index\"],\"styles\":[1],\"setOverlay\":[64]}]]],[\"ptc-picture.cjs\",[[1,\"ptc-picture\",{\"src\":[1],\"alt\":[1],\"sizeXs\":[1025,\"size-xs\"],\"sizeSm\":[1025,\"size-sm\"],\"sizeMd\":[1025,\"size-md\"],\"sizeLg\":[1025,\"size-lg\"],\"disableResize\":[1028,\"disable-resize\"],\"imagePosition\":[1,\"image-position\"],\"borderRadius\":[1,\"border-radius\"],\"height\":[1],\"width\":[1],\"objectFit\":[1,\"object-fit\"],\"isFullHeight\":[4,\"is-full-height\"],\"isFullWidth\":[4,\"is-full-width\"],\"styles\":[1],\"imageAlignment\":[1,\"image-alignment\"],\"maxWidth\":[1,\"max-width\"],\"displayImage\":[1,\"display-image\"],\"oldSrc\":[32]},[[9,\"resize\",\"WindowResize\"]]]]],[\"ptc-dynamic-card.cjs\",[[1,\"ptc-dynamic-card\",{\"cardType\":[1,\"card-type\"],\"cardTitle\":[1,\"card-title\"],\"cardImgSrc\":[1,\"card-img-src\"],\"cardImgAlt\":[1,\"card-img-alt\"],\"cardScreen\":[1,\"card-screen\"],\"isExpanded\":[4,\"is-expanded\"],\"overlayExists\":[32]}]]],[\"dropdown-item.cjs\",[[4,\"dropdown-item\",{\"linkHref\":[1,\"link-href\"],\"linkTarget\":[1,\"link-target\"]}]]],[\"ptc-date.cjs\",[[1,\"ptc-date\",{\"year\":[2],\"month\":[2],\"day\":[2],\"country\":[1],\"dateString\":[1,\"date-string\"],\"dateColor\":[1,\"date-color\"],\"dateStyles\":[1,\"date-styles\"],\"dataSize\":[1,\"data-size\"],\"formatOptions\":[1,\"format-options\"]}]]],[\"ptc-link.cjs\",[[1,\"ptc-link\",{\"disabled\":[516],\"external\":[516],\"href\":[1],\"target\":[1],\"linkTitle\":[1,\"link-title\"],\"theme\":[1],\"fontSize\":[1,\"font-size\"],\"fontWeight\":[1,\"font-weight\"],\"linkArea\":[1,\"link-area\"],\"styles\":[1]}]]],[\"ptc-card-bottom_3.cjs\",[[1,\"ptc-card-bottom\",{\"cardType\":[1,\"card-type\"],\"styles\":[1]}],[1,\"ptc-card-wrapper\",{\"cardType\":[1,\"card-type\"],\"cardLink\":[1,\"card-link\"],\"linkTitle\":[1,\"link-title\"],\"linkTarget\":[1,\"link-target\"],\"isLoading\":[4,\"is-loading\"],\"styles\":[1]},[[9,\"resize\",\"handleResize\"]]],[1,\"ptc-skeleton\",{\"isLoading\":[4,\"is-loading\"],\"animated\":[4],\"width\":[1],\"borderRadius\":[1,\"border-radius\"],\"topMargin\":[1,\"top-margin\"],\"btmMargin\":[1,\"btm-margin\"]}]]],[\"ptc-modal.cjs\",[[1,\"ptc-modal\",{\"iframeUrl\":[1025,\"iframe-url\"],\"size\":[1025],\"show\":[1028],\"overlay\":[1028],\"fixed\":[1028],\"closeOnBlur\":[1028,\"close-on-blur\"],\"rounded\":[1028],\"showHeaderFooter\":[1028,\"show-header-footer\"],\"borderRadius\":[1025,\"border-radius\"],\"isBioModal\":[1028,\"is-bio-modal\"],\"styles\":[1],\"overlayHeight\":[32],\"bodyOverflowSetting\":[32]}]]],[\"ptc-filter-dropdown_4.cjs\",[[1,\"ptc-social-share\",{\"display\":[1],\"shareType\":[1,\"share-type\"],\"shareTitle\":[1,\"share-title\"],\"text\":[1],\"url\":[1],\"source\":[1],\"recipient\":[1],\"iconColor\":[1,\"icon-color\"],\"iconHoverColor\":[1,\"icon-hover-color\"],\"iconSize\":[1,\"icon-size\"],\"isHover\":[32]}],[1,\"ptc-filter-dropdown\",{\"placeholder\":[1],\"selectedTag\":[1,\"selected-tag\"],\"internalOptions\":[32],\"selectedOptions\":[32],\"isOpen\":[32]}],[6,\"ptc-theater-video\",{\"cardTitle\":[1,\"card-title\"],\"cardDescription\":[1,\"card-description\"],\"thumbImg\":[1,\"thumb-img\"],\"cardNumber\":[2,\"card-number\"],\"videoId\":[2,\"video-id\"],\"vtagName\":[1,\"vtag-name\"],\"modalType\":[1,\"modal-type\"]}],[1,\"ptc-theater-video-playlist\",{\"cardElements\":[8,\"card-elements\"],\"currentCardIndex\":[32],\"filteredTagName\":[32]},[[4,\"filterCliked\",\"handleFilterClick\"],[4,\"vCardClicked\",\"handleVCardClickedEvent\"]]]]],[\"max-width-container.cjs\",[[1,\"max-width-container\",{\"maxWidthP\":[2,\"max-width-p\"],\"maxWidth\":[2,\"max-width\"],\"breakpoint\":[2],\"contentAlign\":[1,\"content-align\"],\"styles\":[1]}]]],[\"ptc-card-content.cjs\",[[1,\"ptc-card-content\",{\"cardType\":[1,\"card-type\"],\"outlineColor\":[1,\"outline-color\"],\"styles\":[1],\"isLoading\":[4,\"is-loading\"],\"setHeight\":[64],\"removeInlineHeight\":[64]}]]],[\"ptc-tooltip.cjs\",[[6,\"ptc-tooltip\",{\"textDisplay\":[1,\"text-display\"],\"maxLength\":[2,\"max-length\"],\"textLines\":[2,\"text-lines\"],\"description\":[1],\"zIndex\":[1,\"z-index\"],\"position\":[1],\"styles\":[1],\"mode\":[1],\"theme\":[1],\"width\":[1],\"hideOnMobile\":[4,\"hide-on-mobile\"],\"isSmallScreen\":[4,\"is-small-screen\"]},[[9,\"resize\",\"addTruncatedClass\"],[9,\"resize\",\"windowResize\"]]]]],[\"fl-tab-content_3.cjs\",[[6,\"fl-tab-header\",{\"tabTitle\":[1,\"tab-title\"],\"nameKey\":[1,\"name-key\"],\"selected\":[4],\"initialHeader\":[32]}],[1,\"fl-tab-content\",{\"nameKey\":[1,\"name-key\"],\"selected\":[4]}],[1,\"fl-tab-image\",{\"nameKey\":[1,\"name-key\"],\"selected\":[4]}]]],[\"ptc-form-checkbox_3.cjs\",[[4,\"ptc-select\",{\"label\":[1],\"isRequired\":[4,\"is-required\"],\"helpertext\":[1],\"name\":[1],\"disabled\":[4],\"selectedValue\":[1025,\"selected-value\"],\"ptcDataEloquaName\":[1,\"ptc-data-eloqua-name\"]}],[0,\"ptc-form-checkbox\",{\"checkboxId\":[1,\"checkbox-id\"],\"label\":[1],\"required\":[4],\"isChecked\":[1028,\"is-checked\"],\"name\":[1],\"helpertext\":[1],\"hasError\":[32],\"validateCheckbox\":[64]}],[0,\"ptc-textfield\",{\"fieldId\":[1,\"field-id\"],\"type\":[1],\"required\":[4],\"ptcMaxLength\":[2,\"ptc-max-length\"],\"labelText\":[1025,\"label-text\"],\"helpertext\":[1025],\"disabled\":[4],\"name\":[1],\"ptcDataEloquaName\":[1,\"ptc-data-eloqua-name\"],\"inputValue\":[1025,\"input-value\"]},[[0,\"input\",\"handleInput\"],[2,\"blur\",\"inputBlurHandler\"]]]]],[\"ptc-img.cjs\",[[4,\"ptc-img\",{\"sizeXs\":[1025,\"size-xs\"],\"sizeSm\":[1025,\"size-sm\"],\"sizeMd\":[1025,\"size-md\"],\"sizeLg\":[1025,\"size-lg\"],\"imgUrl\":[1,\"img-url\"],\"imageType\":[1,\"image-type\"],\"borderRadius\":[1,\"border-radius\"],\"loadMode\":[1,\"load-mode\"],\"styles\":[1]},[[9,\"resize\",\"WindowResize\"]]]]],[\"ptc-para.cjs\",[[1,\"ptc-para\",{\"fontSize\":[1,\"font-size\"],\"fontWeight\":[1,\"font-weight\"],\"paraStyle\":[1,\"para-style\"],\"paraColor\":[1,\"para-color\"],\"paraLineH\":[1,\"para-line-h\"],\"paraMargin\":[1,\"para-margin\"],\"paraAlign\":[1,\"para-align\"],\"ellipsisLineCutoff\":[2,\"ellipsis-line-cutoff\"],\"paraZIndex\":[1,\"para-z-index\"],\"styles\":[1]}]]],[\"icon-asset.cjs\",[[2,\"icon-asset\",{\"name\":[1],\"size\":[1],\"type\":[1],\"spin\":[1],\"pulse\":[1],\"color\":[1],\"isMobileSelect\":[4,\"is-mobile-select\"],\"injectedStyle\":[1,\"injected-style\"]}]]]]"), options);
17
+ return index.bootstrapLazy(JSON.parse("[[\"bundle-jumbotron-example.cjs\",[[1,\"bundle-jumbotron-example\",{\"jumbotron\":[1],\"isIframe\":[4,\"is-iframe\"]}]]],[\"ptc-featured-list.cjs\",[[1,\"ptc-featured-list\",{\"isMobile\":[32],\"selectedTabGloble\":[32]},[[9,\"resize\",\"handleResize\"],[4,\"flTabClicked\",\"handleflTabClicked\"]]]]],[\"featured-list.cjs\",[[1,\"featured-list\",{\"isMobile\":[32],\"selectedTabGloble\":[32]},[[9,\"resize\",\"handleResize\"],[4,\"flTabClicked\",\"handleflTabClicked\"]]]]],[\"ptc-filter-level-theater.cjs\",[[1,\"ptc-filter-level-theater\",{\"selectedTab\":[32],\"lastSelectedTab\":[32],\"lastSelectedTabGroup\":[32],\"selectedTabGroup\":[32]},[[4,\"selectedFilterValues\",\"handleSelectedFilterValues\"]]]]],[\"ptc-pricing-packaging-table.cjs\",[[1,\"ptc-pricing-packaging-table\",{\"pageWithSubnav\":[4,\"page-with-subnav\"],\"tableTitle\":[1,\"table-title\"],\"tableSubTitle\":[1,\"table-sub-title\"],\"dataRows\":[2,\"data-rows\"],\"dataCols\":[2,\"data-cols\"],\"disclaimerCount\":[2,\"disclaimer-count\"],\"isDesktopView\":[32],\"cellWidthXXS\":[32],\"cellWidthMD\":[32],\"cellLeftRightPadding\":[32],\"headerType\":[32],\"lastScrollTop\":[32],\"scrollTimeInterval\":[32],\"scrollAmount\":[32],\"scrollLimit\":[32],\"stickyTopAt\":[32],\"columnHeaderLinks\":[32],\"hasEmptySpace\":[32],\"showFillerCells\":[32],\"showCtaButtonsRow\":[32],\"ctaButtons\":[32],\"disclaimers\":[32],\"tableDescription\":[32]}]]],[\"ptc-pricing-table.cjs\",[[1,\"ptc-pricing-table\",{\"pageWithSubnav\":[4,\"page-with-subnav\"],\"tableTitle\":[1,\"table-title\"],\"tableSubTitle\":[1,\"table-sub-title\"],\"tableDescription\":[1,\"table-description\"],\"dataRows\":[2,\"data-rows\"],\"dataCols\":[2,\"data-cols\"],\"disclaimerCount\":[2,\"disclaimer-count\"],\"scrollTopClipperHeight\":[32],\"desktopHeaderFirstCellWidth\":[32],\"targetElements\":[32],\"columnHeaderLinks\":[32],\"lastScrollTop\":[32],\"scrollTimeInterval\":[32],\"scrollAmount\":[32],\"scrollLimit\":[32],\"mobileHeaderRowColSpan\":[32],\"showCtaButtonsRow\":[32],\"ctaButtons\":[32],\"disclaimers\":[32]}]]],[\"embedded-form.cjs\",[[0,\"embedded-form\",{\"formData\":[32],\"elqLib\":[32]}]]],[\"ptc-form.cjs\",[[0,\"ptc-form\",{\"formData\":[32]}]]],[\"ptc-pricing-add-on-section.cjs\",[[4,\"ptc-pricing-add-on-section\",{\"cardCount\":[2,\"card-count\"],\"cardData\":[32]}]]],[\"sequential-bundle.cjs\",[[1,\"sequential-bundle\",{\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"]]]]],[\"sequential-bundle-example.cjs\",[[1,\"sequential-bundle-example\",{\"isInteralCardsExpanded\":[1040],\"isMobile\":[32],\"expandedCardIndex\":[32]},[[9,\"resize\",\"handleResize\"]]]]],[\"author-listing-example.cjs\",[[1,\"author-listing-example\",{\"defaultAuthorImage\":[1,\"default-author-image\"],\"isLoading\":[32],\"loadedCardCount\":[32],\"cardsPerLoad\":[32],\"cardData\":[32]},[[9,\"scroll\",\"handleScroll\"]]]]],[\"bundle-example.cjs\",[[1,\"bundle-example\",{\"isLoading\":[32],\"picWidth\":[32],\"picHeight\":[32],\"cardHeights\":[32],\"maxCardHeight\":[32]},[[9,\"resize\",\"handleWindowResize\"],[16,\"squareHeightChanged\",\"squareHeightChangedHandler\"]]]]],[\"ptc-product-sidebar.cjs\",[[1,\"ptc-product-sidebar\",{\"suggestionList\":[16],\"searchTerm\":[32],\"suggestions\":[32]},[[4,\"dropdownTouched\",\"handleDropdownTouched\"],[0,\"click\",\"handleClick\"],[4,\"clearCtaClicked\",\"handleclearCtaClicked\"],[4,\"selectedValues\",\"handleSelectedValues\"]]]]],[\"ptc-embedded-quiz.cjs\",[[1,\"ptc-embedded-quiz\",{\"getQuizEndpoint\":[1,\"get-quiz-endpoint\"],\"quiz\":[32],\"slide\":[32],\"traversal\":[32]}]]],[\"ptc-product-card.cjs\",[[1,\"ptc-product-card\",{\"cardTitle\":[1,\"card-title\"],\"cardImage\":[1,\"card-image\"],\"cardImageAltText\":[1,\"card-image-alt-text\"],\"cardDescription\":[1,\"card-description\"],\"cardCtaText\":[1,\"card-cta-text\"],\"toggleCtaTitle\":[1,\"toggle-cta-title\"],\"isSlotEmpty\":[4,\"is-slot-empty\"],\"isOpen\":[32]}]]],[\"ptc-modal-quiz.cjs\",[[1,\"ptc-modal-quiz\",{\"totalQuestions\":[2,\"total-questions\"],\"modalId\":[1,\"modal-id\"],\"currentQuestion\":[32],\"currentSelectedPriority\":[32],\"selectedPriorityRadio\":[32],\"answers\":[32],\"traversal\":[32]}]]],[\"ptc-news.cjs\",[[1,\"ptc-news\",{\"newsTag\":[1,\"news-tag\"],\"newsTitle\":[1,\"news-title\"],\"newsSecondaryTitle\":[1,\"news-secondary-title\"],\"newsDate\":[1,\"news-date\"],\"newsSummary\":[1,\"news-summary\"],\"newsImage\":[1,\"news-image\"],\"newsImageAlt\":[1,\"news-image-alt\"],\"newsDownloadUrl\":[1,\"news-download-url\"]}]]],[\"ptc-product-category.cjs\",[[1,\"ptc-product-category\",{\"categoryTitle\":[1,\"category-title\"],\"categoryDescription\":[1,\"category-description\"]}]]],[\"ptc-product-highlight-card.cjs\",[[1,\"ptc-product-highlight-card\",{\"cardTitle\":[1,\"card-title\"],\"cardImage\":[1,\"card-image\"],\"cardImageAltText\":[1,\"card-image-alt-text\"],\"cardDescription\":[1,\"card-description\"]}]]],[\"footer-form.cjs\",[[1,\"footer-form\",{\"formData\":[32]}]]],[\"innovator-toggle-container.cjs\",[[1,\"innovator-toggle-container\",{\"sectionTitle\":[1,\"section-title\"],\"description\":[1],\"backgroundImage\":[1,\"background-image\"]}]]],[\"ptc-announcement.cjs\",[[1,\"ptc-announcement\",{\"barTitle\":[1025,\"bar-title\"],\"description\":[1025],\"linkText\":[513,\"link-text\"],\"linkTitle\":[513,\"link-title\"],\"visible\":[1540],\"linkUrl\":[1537,\"link-url\"],\"insideContainer\":[4,\"inside-container\"],\"target\":[1025],\"customMaxLines\":[2,\"custom-max-lines\"],\"moreText\":[1,\"more-text\"],\"windowSize\":[32]},[[9,\"resize\",\"handleResize\"]]]]],[\"ptc-collapse-list.cjs\",[[1,\"ptc-collapse-list\",{\"header\":[1],\"listItems\":[1040],\"placeholderText\":[1025,\"placeholder-text\"],\"debounceUpdateDelay\":[1026,\"debounce-update-delay\"],\"data\":[32],\"searchText\":[32],\"selectedValue\":[32],\"selectedItems\":[32],\"hashMap\":[32],\"debouncedUpdatedEvent\":[32],\"refreshBuffer\":[32],\"removeSelectedItem\":[64],\"addSelectedItem\":[64]}]]],[\"ptc-product-list.cjs\",[[1,\"ptc-product-list\",null,[[4,\"selectedResult\",\"handleSearchResult\"],[4,\"clearsearch\",\"handleSearchResult\"],[4,\"selectedValues\",\"handleMultipleSearchResult\"],[4,\"emptyResult\",\"handleEmptyResult\"]]]]],[\"ptc-tab-list.cjs\",[[4,\"ptc-tab-list\",{\"type\":[1],\"isMobile\":[32],\"selectedValue\":[32]},[[0,\"tabClicked\",\"onSelectedTab\"],[9,\"resize\",\"calculateHeaderTabsRendering\"]]]]],[\"ptc-hero.cjs\",[[1,\"ptc-hero\",{\"heroType\":[1,\"hero-type\"],\"bgUrl\":[1,\"bg-url\"],\"contentAlignment\":[1,\"content-alignment\"]}]]],[\"ptc-previous-url.cjs\",[[1,\"ptc-previous-url\",{\"href\":[1],\"text\":[1],\"styles\":[1]}]]],[\"ptc-pricing-tabs.cjs\",[[1,\"ptc-pricing-tabs\",{\"productTag\":[1,\"product-tag\"],\"header\":[1],\"tabLabel\":[1,\"tab-label\"],\"filterTag\":[1,\"filter-tag\"],\"styles\":[1],\"tabItems\":[32],\"isMobileViewPort\":[32],\"isDesktopViewPort\":[32]},[[9,\"resize\",\"setIsMobileViewPort\"]]]]],[\"ptc-related-card-rail.cjs\",[[1,\"ptc-related-card-rail\",{\"footerQuerySelector\":[1,\"footer-query-selector\"],\"closed\":[32],\"cardInView\":[32],\"data\":[32],\"screenBasedProps\":[32]}]]],[\"ptc-square-card.cjs\",[[1,\"ptc-square-card\",{\"number\":[1],\"arrowDirection\":[1,\"arrow-direction\"]}]]],[\"ptc-sticky-title.cjs\",[[1,\"ptc-sticky-title\",{\"barTitle\":[1,\"bar-title\"],\"logo\":[1],\"isSticky\":[32]},[[9,\"scroll\",\"handleScroll\"]]]]],[\"ptc-theater-video-modal.cjs\",[[6,\"ptc-theater-video-modal\",{\"cards\":[32],\"showModal\":[32],\"currentCardIndex\":[32],\"filteredTagName\":[32],\"modalType\":[32],\"updateData\":[64]}]]],[\"ptc-value-prop-card.cjs\",[[1,\"ptc-value-prop-card\",{\"cardHref\":[1,\"card-href\"],\"target\":[1],\"rel\":[1],\"cardTitle\":[1,\"card-title\"],\"backgroundImage\":[1,\"background-image\"]}]]],[\"ptc-bio-card.cjs\",[[1,\"ptc-bio-card\",{\"name\":[1],\"jobTitle\":[1,\"job-title\"],\"image\":[1],\"linkedin\":[1],\"twitter\":[1],\"showModal\":[32]}]]],[\"ptc-checkbox.cjs\",[[1,\"ptc-checkbox\",{\"checked\":[1025],\"value\":[1025],\"disabled\":[1028],\"inputName\":[1,\"input-name\"]}]]],[\"ptc-dropdown.cjs\",[[1,\"ptc-dropdown\",{\"theme\":[1],\"label\":[1],\"listItems\":[16],\"toggle\":[32],\"selectedItem\":[32]},[[4,\"click\",\"offClick\"]]]]],[\"ptc-filter-tag.cjs\",[[1,\"ptc-filter-tag\",{\"theme\":[1],\"iconColorMap\":[32]}]]],[\"ptc-icon-minimize.cjs\",[[1,\"ptc-icon-minimize\",{\"heading\":[1025],\"opened\":[1028],\"timeStamp\":[32],\"Refresh\":[64]}]]],[\"ptc-list.cjs\",[[1,\"ptc-list\",{\"listType\":[1,\"list-type\"],\"listItems\":[16]}]]],[\"ptc-media-card.cjs\",[[1,\"ptc-media-card\",{\"cardType\":[1,\"card-type\"],\"cardHref\":[1,\"card-href\"],\"target\":[1],\"rel\":[1],\"activeBackgroundImage\":[1025,\"active-background-image\"],\"hoverBackgroundImage\":[1025,\"hover-background-image\"],\"heading\":[1025],\"headingTransform\":[1025,\"heading-transform\"],\"category\":[1025],\"isHovered\":[32]}]]],[\"ptc-mobile-select.cjs\",[[0,\"ptc-mobile-select\",{\"triggerName\":[1,\"trigger-name\"],\"selectedText\":[1,\"selected-text\"],\"wheelData\":[1040],\"selectedId\":[1,\"selected-id\"],\"ensureBtnText\":[1,\"ensure-btn-text\"],\"cancelBtnText\":[1,\"cancel-btn-text\"],\"listTitle\":[1,\"list-title\"]}]]],[\"ptc-nav-submenu.cjs\",[[1,\"ptc-nav-submenu\",{\"label\":[1],\"iconAssetName\":[1025,\"icon-asset-name\"],\"iconSrc\":[1,\"icon-src\"]}]]],[\"ptc-pagenation.cjs\",[[1,\"ptc-pagenation\",{\"totalCount\":[2,\"total-count\"],\"numberOfItems\":[2,\"number-of-items\"],\"previousValue\":[1,\"previous-value\"],\"lastValue\":[1,\"last-value\"],\"minPageNumber\":[2,\"min-page-number\"],\"maxPageNumber\":[2,\"max-page-number\"],\"clickedPageNumber\":[2,\"clicked-page-number\"],\"appendArray\":[4,\"append-array\"],\"prevArrowImg\":[1,\"prev-arrow-img\"],\"nextArrowImg\":[1,\"next-arrow-img\"],\"theme\":[1],\"styles\":[1],\"pageNumbers\":[32],\"isSmallScreen\":[32]},[[9,\"resize\",\"windowResize\"]]]]],[\"ptc-podcast-card.cjs\",[[1,\"ptc-podcast-card\",{\"heading\":[1],\"imageSrc\":[1,\"image-src\"],\"altText\":[1,\"alt-text\"]}]]],[\"ptc-quote.cjs\",[[1,\"ptc-quote\",{\"quoteType\":[1025,\"quote-type\"],\"quoteName\":[1025,\"quote-name\"],\"ctaText\":[1,\"cta-text\"],\"ctaUrl\":[1,\"cta-url\"],\"imgSrc\":[1,\"img-src\"],\"imgTitle\":[1,\"img-title\"]}]]],[\"ptc-search-field.cjs\",[[1,\"ptc-search-field\",{\"textValue\":[1,\"text-value\"],\"placeholderLabel\":[1,\"placeholder-label\"],\"darkTheme\":[4,\"dark-theme\"],\"elevation\":[1],\"enableClear\":[4,\"enable-clear\"],\"styles\":[1],\"clearSearchValue\":[64]}]]],[\"ptc-slit-card.cjs\",[[1,\"ptc-slit-card\",{\"cardType\":[1,\"card-type\"],\"cardHref\":[1,\"card-href\"],\"target\":[1],\"rel\":[1],\"heading\":[1],\"content\":[1],\"styles\":[1],\"cardImage\":[1,\"card-image\"]}]]],[\"ptc-subnav-card.cjs\",[[1,\"ptc-subnav-card\",{\"cardTitle\":[1,\"card-title\"],\"cardHref\":[1,\"card-href\"],\"cardImageSrc\":[1,\"card-image-src\"],\"cardImageAlt\":[1,\"card-image-alt\"],\"ctaText\":[1,\"cta-text\"],\"ctaIconAssetName\":[1,\"cta-icon-asset-name\"]}]]],[\"tab-header.cjs\",[[0,\"tab-header\",{\"name\":[1],\"tooltip\":[1],\"tabHeaderText\":[1,\"tab-header-text\"],\"isSelected\":[32],\"maxLength\":[32],\"getChild\":[64]},[[9,\"resize\",\"handleWindowResize\"]]]]],[\"dynamic-box-bundle.cjs\",[[1,\"dynamic-box-bundle\",{\"topImgSrc\":[1,\"top-img-src\"],\"topImgAlt\":[1,\"top-img-alt\"],\"boxHeight\":[2,\"box-height\"],\"isHovering\":[32]},[[1,\"mouseover\",\"handleMouseOver\"],[1,\"mouseout\",\"handleMouseOut\"]]]]],[\"my-component.cjs\",[[1,\"my-component\",{\"first\":[1],\"middle\":[1],\"last\":[1]}]]],[\"ptc-accordion.cjs\",[[1,\"ptc-accordion\",{\"multiple\":[4],\"theme\":[1]},[[0,\"opened\",\"openHandler\"]]]]],[\"ptc-accordion-item.cjs\",[[1,\"ptc-accordion-item\",{\"heading\":[1],\"headingTag\":[1,\"heading-tag\"],\"autoHeight\":[4,\"auto-height\"],\"active\":[1540],\"theme\":[1537],\"hasHeadingSlot\":[32],\"hasArrowSlot\":[32],\"toggle\":[64],\"close\":[64],\"open\":[64]}]]],[\"ptc-back-to-top.cjs\",[[1,\"ptc-back-to-top\",{\"showButton\":[32]},[[0,\"click\",\"handleClick\"]]]]],[\"ptc-brightcov-video.cjs\",[[2,\"ptc-brightcov-video\",{\"videoId\":[1,\"video-id\"]}]]],[\"ptc-case-studies-slider.cjs\",[[1,\"ptc-case-studies-slider\"]]],[\"ptc-container.cjs\",[[1,\"ptc-container\",{\"backgroundColor\":[1,\"background-color\"],\"elevation\":[1],\"containerType\":[1,\"container-type\"],\"spacing\":[1],\"styles\":[1]}]]],[\"ptc-hero-footer-cta.cjs\",[[6,\"ptc-hero-footer-cta\",{\"ctaTitle\":[1,\"cta-title\"],\"description\":[1],\"backgroundImage\":[1,\"background-image\"]}]]],[\"ptc-icon-component.cjs\",[[1,\"ptc-icon-component\",{\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"]]]]],[\"ptc-icon-list.cjs\",[[1,\"ptc-icon-list\",{\"listType\":[1,\"list-type\"],\"valueWithUnit\":[1,\"value-with-unit\"],\"valueText\":[1,\"value-text\"],\"listContent\":[1,\"list-content\"],\"isLastItem\":[4,\"is-last-item\"]}]]],[\"ptc-minimized-nav.cjs\",[[1,\"ptc-minimized-nav\",{\"linkUrl\":[513,\"link-url\"],\"imgSrc\":[513,\"img-src\"],\"imgAlt\":[513,\"img-alt\"],\"navType\":[1,\"nav-type\"]}]]],[\"ptc-nav-card.cjs\",[[1,\"ptc-nav-card\",{\"cardType\":[1025,\"card-type\"],\"cardHref\":[1025,\"card-href\"],\"logoAlt\":[1025,\"logo-alt\"],\"target\":[1025],\"rel\":[1025],\"linkTitle\":[1025,\"link-title\"],\"cardLogo\":[1025,\"card-logo\"],\"heading\":[1025],\"description\":[1025],\"windowSize\":[32]},[[9,\"resize\",\"handleResize\"]]]]],[\"ptc-nav-link.cjs\",[[1,\"ptc-nav-link\",{\"href\":[1025],\"isOutsideLink\":[1028,\"is-outside-link\"],\"titleText\":[1025,\"title-text\"]},[[2,\"click\",\"handleClick\"]]]]],[\"ptc-nav-pills.cjs\",[[1,\"ptc-nav-pills\"]]],[\"ptc-nav-slider.cjs\",[[1,\"ptc-nav-slider\",{\"sliderId\":[1,\"slider-id\"]},[[0,\"dropdownClickEvent\",\"handledropdownClickEvent\"]]]]],[\"ptc-readmore-char.cjs\",[[1,\"ptc-readmore-char\",{\"maxCharacters\":[2,\"max-characters\"],\"description\":[1],\"readMoreText\":[1,\"read-more-text\"],\"readLessText\":[1,\"read-less-text\"],\"expanded\":[32]}]]],[\"ptc-responsive-wrapper.cjs\",[[1,\"ptc-responsive-wrapper\"]]],[\"ptc-shopping-cart.cjs\",[[1,\"ptc-shopping-cart\",{\"cartCount\":[1,\"cart-count\"],\"color\":[1]}]]],[\"ptc-span.cjs\",[[1,\"ptc-span\",{\"spanStyle\":[1,\"span-style\"],\"display\":[1],\"fontWeight\":[1,\"font-weight\"],\"styles\":[1]}]]],[\"ptc-sticky-icons.cjs\",[[1,\"ptc-sticky-icons\",null,[[9,\"resize\",\"handleResize\"]]]]],[\"ptc-sticky-section.cjs\",[[1,\"ptc-sticky-section\",null,[[9,\"scroll\",\"handleScroll\"]]]]],[\"ptc-subnav.cjs\",[[1,\"ptc-subnav\",{\"mobileTitle\":[1,\"mobile-title\"],\"navOpen\":[32]},[[9,\"scroll\",\"handleScroll\"],[0,\"navLinkClicked\",\"handleNavLinkClickedEvent\"]]]]],[\"ptc-tab.cjs\",[[1,\"ptc-tab\",{\"optionClicked\":[1540,\"option-clicked\"],\"label\":[1],\"price\":[1],\"active\":[4],\"disabled\":[516]}]]],[\"ptc-tabs.cjs\",[[1,\"ptc-tabs\",{\"tabs\":[32],\"openTab\":[64]}]]],[\"ptc-text-copy-with-background.cjs\",[[1,\"ptc-text-copy-with-background\",{\"type\":[1],\"backgroundImage\":[1,\"background-image\"],\"ImageAltText\":[1,\"image-alt-text\"],\"topSlitBackgroundColor\":[1,\"top-slit-background-color\"],\"slitPosition\":[1,\"slit-position\"],\"isBackgroundBlur\":[4,\"is-background-blur\"],\"overlay\":[4],\"styles\":[1]}]]],[\"ptc-two-column-media.cjs\",[[1,\"ptc-two-column-media\",{\"componentType\":[1,\"component-type\"]}]]],[\"tab-content.cjs\",[[4,\"tab-content\",{\"name\":[1],\"isSelected\":[32],\"getChild\":[64]}]]],[\"ptc-readmore.cjs\",[[1,\"ptc-readmore\",{\"moreText\":[1025,\"more-text\"],\"lessText\":[1025,\"less-text\"],\"readMorePosition\":[1,\"read-more-position\"],\"display\":[1],\"visibleLines\":[1,\"visible-lines\"],\"visibleLinesCustom\":[2,\"visible-lines-custom\"],\"zIndex\":[1,\"z-index\"],\"checked\":[1028],\"size\":[1],\"isIcon\":[4,\"is-icon\"],\"color\":[1],\"updateReadmoreStatus\":[64]},[[9,\"resize\",\"updateReadmoreStatus\"]]]]],[\"ptc-spacer.cjs\",[[1,\"ptc-spacer\",{\"breakpoint\":[1],\"size\":[1],\"direction\":[1]}]]],[\"ptc-button.cjs\",[[1,\"ptc-button\",{\"disabled\":[516],\"active\":[516],\"type\":[1],\"color\":[1],\"iconAnimation\":[1,\"icon-animation\"],\"iconPosition\":[1,\"icon-position\"],\"linkHref\":[1,\"link-href\"],\"linkTitle\":[1,\"link-title\"],\"target\":[1],\"rel\":[1],\"tabNav\":[2,\"tab-nav\"],\"styles\":[1],\"textAlign\":[1,\"text-align\"]}]]],[\"ptc-title.cjs\",[[6,\"ptc-title\",{\"isPlmHub\":[4,\"is-plm-hub\"],\"type\":[1],\"textAlign\":[1,\"text-align\"],\"upperline\":[1],\"titleShadow\":[1,\"title-shadow\"],\"titleColor\":[1,\"title-color\"],\"titleMargin\":[1,\"title-margin\"],\"titleWeight\":[1,\"title-weight\"],\"titleSize\":[1,\"title-size\"],\"titleHeight\":[1,\"title-height\"],\"styles\":[1],\"ellipsisLineCutoff\":[2,\"ellipsis-line-cutoff\"],\"titleDisplay\":[1,\"title-display\"]}]]],[\"ptc-pricing-add-on-card.cjs\",[[1,\"ptc-pricing-add-on-card\",{\"cardTitle\":[1,\"card-title\"],\"cardPricingText\":[1,\"card-pricing-text\"],\"cardCtaHref\":[1,\"card-cta-href\"],\"cardCtaText\":[1,\"card-cta-text\"],\"cardCtaTarget\":[1,\"card-cta-target\"],\"cardDisclaimer\":[1,\"card-disclaimer\"]}]]],[\"ptc-card.cjs\",[[1,\"ptc-card\",{\"cardType\":[1,\"card-type\"],\"cardHref\":[1,\"card-href\"],\"target\":[1],\"rel\":[1],\"hasImage\":[4,\"has-image\"],\"hasVideo\":[4,\"has-video\"],\"hasLottie\":[4,\"has-lottie\"],\"heading\":[1],\"headingTransform\":[1,\"heading-transform\"],\"cardDate\":[1,\"card-date\"],\"country\":[1],\"styles\":[1],\"ribbonText\":[1,\"ribbon-text\"],\"eventType\":[1,\"event-type\"],\"cardLogo\":[1,\"card-logo\"],\"titleLineCutOff\":[2,\"title-line-cut-off\"],\"maxChars\":[2,\"max-chars\"],\"maxLines\":[2,\"max-lines\"],\"cardOverflow\":[1,\"card-overflow\"],\"isCreoCard\":[4,\"is-creo-card\"]}]]],[\"ptc-ellipsis-dropdown.cjs\",[[1,\"ptc-ellipsis-dropdown\",{\"dataItems\":[16],\"selectedTab\":[1,\"selected-tab\"],\"isDropdownOpen\":[32],\"isMobile\":[32]},[[4,\"click\",\"offClick\"],[9,\"resize\",\"handleResize\"]]]]],[\"ptc-image-download-strip.cjs\",[[1,\"ptc-image-download-strip\",{\"downloadUrl\":[1,\"download-url\"]}]]],[\"ptc-pricing-block.cjs\",[[1,\"ptc-pricing-block\",{\"active\":[4],\"optionClicked\":[1540,\"option-clicked\"]}]]],[\"ptc-product-dropdown.cjs\",[[1,\"ptc-product-dropdown\",{\"newOptions\":[16],\"selectedOptions\":[16],\"placeholder\":[1],\"internalOptions\":[32],\"isOpen\":[32]},[[4,\"clearsearch\",\"handleSearchResult\"],[4,\"inputChanged\",\"handleinputChanged\"]]]]],[\"ptc-progress-bar.cjs\",[[1,\"ptc-progress-bar\",{\"scrollPercentage\":[32]},[[9,\"scroll\",\"handleScroll\"]]]]],[\"ptc-svg-btn.cjs\",[[1,\"ptc-svg-btn\",{\"svgName\":[1,\"svg-name\"],\"display\":[1],\"zIndex\":[1,\"z-index\"],\"styles\":[2]}]]],[\"ptc-background-video.cjs\",[[1,\"ptc-background-video\",{\"videoSrc\":[1,\"video-src\"],\"posterSrc\":[1,\"poster-src\"],\"overlay\":[4],\"playButtonTitle\":[1,\"play-button-title\"],\"pauseButtonTitle\":[1,\"pause-button-title\"],\"type\":[1],\"isIframe\":[4,\"is-iframe\"],\"paused\":[32]}]]],[\"list-item.cjs\",[[1,\"list-item\",{\"listType\":[1,\"list-type\"],\"linkHref\":[1,\"link-href\"],\"flushBefore\":[4,\"flush-before\"],\"linkTarget\":[1,\"link-target\"],\"color\":[1],\"styles\":[1]}]]],[\"ptc-breadcrumb_2.cjs\",[[1,\"ptc-jumbotron\",{\"jumbotronType\":[1,\"jumbotron-type\"],\"hasPopupVideo\":[4,\"has-popup-video\"],\"mainTitle\":[1,\"main-title\"],\"subTitle\":[1,\"sub-title\"],\"pngSrc\":[1,\"png-src\"],\"gifSrc\":[1,\"gif-src\"],\"bgVideoSrc\":[1,\"bg-video-src\"],\"bgSrc\":[1,\"bg-src\"],\"isIframe\":[4,\"is-iframe\"],\"playButtonTitle\":[1,\"play-button-title\"],\"pauseButtonTitle\":[1,\"pause-button-title\"],\"hasCtaSlot\":[4,\"has-cta-slot\"],\"contentBackground\":[32],\"contentColor\":[32],\"textAlign\":[32],\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"]]],[1,\"ptc-breadcrumb\",{\"position\":[1],\"removeTopMargin\":[4,\"remove-top-margin\"],\"color\":[1],\"styles\":[1]}]]],[\"ptc-overlay.cjs\",[[1,\"ptc-overlay\",{\"filterColor\":[1,\"filter-color\"],\"borderRadius\":[1,\"border-radius\"],\"overlayZIndex\":[1,\"overlay-z-index\"],\"styles\":[1],\"setOverlay\":[64]}]]],[\"ptc-picture.cjs\",[[1,\"ptc-picture\",{\"src\":[1],\"alt\":[1],\"sizeXs\":[1025,\"size-xs\"],\"sizeSm\":[1025,\"size-sm\"],\"sizeMd\":[1025,\"size-md\"],\"sizeLg\":[1025,\"size-lg\"],\"disableResize\":[1028,\"disable-resize\"],\"imagePosition\":[1,\"image-position\"],\"borderRadius\":[1,\"border-radius\"],\"height\":[1],\"width\":[1],\"objectFit\":[1,\"object-fit\"],\"isFullHeight\":[4,\"is-full-height\"],\"isFullWidth\":[4,\"is-full-width\"],\"styles\":[1],\"imageAlignment\":[1,\"image-alignment\"],\"maxWidth\":[1,\"max-width\"],\"displayImage\":[1,\"display-image\"],\"oldSrc\":[32]},[[9,\"resize\",\"WindowResize\"]]]]],[\"ptc-dynamic-card.cjs\",[[1,\"ptc-dynamic-card\",{\"cardType\":[1,\"card-type\"],\"cardTitle\":[1,\"card-title\"],\"cardImgSrc\":[1,\"card-img-src\"],\"cardImgAlt\":[1,\"card-img-alt\"],\"cardScreen\":[1,\"card-screen\"],\"isExpanded\":[4,\"is-expanded\"],\"overlayExists\":[32]}]]],[\"dropdown-item.cjs\",[[4,\"dropdown-item\",{\"linkHref\":[1,\"link-href\"],\"linkTarget\":[1,\"link-target\"]}]]],[\"ptc-date.cjs\",[[1,\"ptc-date\",{\"year\":[2],\"month\":[2],\"day\":[2],\"country\":[1],\"dateString\":[1,\"date-string\"],\"dateColor\":[1,\"date-color\"],\"dateStyles\":[1,\"date-styles\"],\"dataSize\":[1,\"data-size\"],\"formatOptions\":[1,\"format-options\"]}]]],[\"ptc-link.cjs\",[[1,\"ptc-link\",{\"disabled\":[516],\"external\":[516],\"href\":[1],\"target\":[1],\"linkTitle\":[1,\"link-title\"],\"theme\":[1],\"fontSize\":[1,\"font-size\"],\"fontWeight\":[1,\"font-weight\"],\"linkArea\":[1,\"link-area\"],\"styles\":[1]}]]],[\"ptc-card-bottom_3.cjs\",[[1,\"ptc-card-bottom\",{\"cardType\":[1,\"card-type\"],\"styles\":[1]}],[1,\"ptc-card-wrapper\",{\"cardType\":[1,\"card-type\"],\"cardLink\":[1,\"card-link\"],\"linkTitle\":[1,\"link-title\"],\"linkTarget\":[1,\"link-target\"],\"isLoading\":[4,\"is-loading\"],\"styles\":[1]},[[9,\"resize\",\"handleResize\"]]],[1,\"ptc-skeleton\",{\"isLoading\":[4,\"is-loading\"],\"animated\":[4],\"width\":[1],\"borderRadius\":[1,\"border-radius\"],\"topMargin\":[1,\"top-margin\"],\"btmMargin\":[1,\"btm-margin\"]}]]],[\"ptc-modal.cjs\",[[1,\"ptc-modal\",{\"iframeUrl\":[1025,\"iframe-url\"],\"size\":[1025],\"show\":[1028],\"overlay\":[1028],\"fixed\":[1028],\"closeOnBlur\":[1028,\"close-on-blur\"],\"rounded\":[1028],\"showHeaderFooter\":[1028,\"show-header-footer\"],\"borderRadius\":[1025,\"border-radius\"],\"isBioModal\":[1028,\"is-bio-modal\"],\"styles\":[1],\"overlayHeight\":[32],\"bodyOverflowSetting\":[32]}]]],[\"ptc-filter-dropdown_4.cjs\",[[1,\"ptc-social-share\",{\"display\":[1],\"shareType\":[1,\"share-type\"],\"shareTitle\":[1,\"share-title\"],\"text\":[1],\"url\":[1],\"source\":[1],\"recipient\":[1],\"iconColor\":[1,\"icon-color\"],\"iconHoverColor\":[1,\"icon-hover-color\"],\"iconSize\":[1,\"icon-size\"],\"isHover\":[32]}],[1,\"ptc-filter-dropdown\",{\"placeholder\":[1],\"selectedTag\":[1,\"selected-tag\"],\"internalOptions\":[32],\"selectedOptions\":[32],\"isOpen\":[32]}],[6,\"ptc-theater-video\",{\"cardTitle\":[1,\"card-title\"],\"cardDescription\":[1,\"card-description\"],\"thumbImg\":[1,\"thumb-img\"],\"cardNumber\":[2,\"card-number\"],\"videoId\":[2,\"video-id\"],\"vtagName\":[1,\"vtag-name\"],\"modalType\":[1,\"modal-type\"]}],[1,\"ptc-theater-video-playlist\",{\"cardElements\":[8,\"card-elements\"],\"currentCardIndex\":[32],\"filteredTagName\":[32]},[[4,\"filterCliked\",\"handleFilterClick\"],[4,\"vCardClicked\",\"handleVCardClickedEvent\"]]]]],[\"max-width-container.cjs\",[[1,\"max-width-container\",{\"maxWidthP\":[2,\"max-width-p\"],\"maxWidth\":[2,\"max-width\"],\"breakpoint\":[2],\"contentAlign\":[1,\"content-align\"],\"styles\":[1]}]]],[\"ptc-card-content.cjs\",[[1,\"ptc-card-content\",{\"cardType\":[1,\"card-type\"],\"outlineColor\":[1,\"outline-color\"],\"styles\":[1],\"isLoading\":[4,\"is-loading\"],\"setHeight\":[64],\"removeInlineHeight\":[64]}]]],[\"ptc-tooltip.cjs\",[[6,\"ptc-tooltip\",{\"textDisplay\":[1,\"text-display\"],\"maxLength\":[2,\"max-length\"],\"textLines\":[2,\"text-lines\"],\"description\":[1],\"zIndex\":[1,\"z-index\"],\"position\":[1],\"styles\":[1],\"mode\":[1],\"theme\":[1],\"width\":[1],\"hideOnMobile\":[4,\"hide-on-mobile\"],\"isSmallScreen\":[4,\"is-small-screen\"]},[[9,\"resize\",\"addTruncatedClass\"],[9,\"resize\",\"windowResize\"]]]]],[\"fl-tab-content_3.cjs\",[[6,\"fl-tab-header\",{\"tabTitle\":[1,\"tab-title\"],\"nameKey\":[1,\"name-key\"],\"selected\":[4],\"initialHeader\":[32]}],[1,\"fl-tab-content\",{\"nameKey\":[1,\"name-key\"],\"selected\":[4]}],[1,\"fl-tab-image\",{\"nameKey\":[1,\"name-key\"],\"selected\":[4]}]]],[\"ptc-form-checkbox_3.cjs\",[[4,\"ptc-select\",{\"label\":[1],\"isRequired\":[4,\"is-required\"],\"helpertext\":[1],\"name\":[1],\"disabled\":[4],\"selectedValue\":[1025,\"selected-value\"],\"ptcDataEloquaName\":[1,\"ptc-data-eloqua-name\"]}],[0,\"ptc-form-checkbox\",{\"checkboxId\":[1,\"checkbox-id\"],\"label\":[1],\"required\":[4],\"isChecked\":[1028,\"is-checked\"],\"name\":[1],\"helpertext\":[1],\"hasError\":[32],\"validateCheckbox\":[64]}],[0,\"ptc-textfield\",{\"fieldId\":[1,\"field-id\"],\"type\":[1],\"required\":[4],\"ptcMaxLength\":[2,\"ptc-max-length\"],\"labelText\":[1025,\"label-text\"],\"helpertext\":[1025],\"disabled\":[4],\"name\":[1],\"ptcDataEloquaName\":[1,\"ptc-data-eloqua-name\"],\"inputValue\":[1025,\"input-value\"]},[[0,\"input\",\"handleInput\"],[2,\"blur\",\"inputBlurHandler\"]]]]],[\"ptc-img.cjs\",[[4,\"ptc-img\",{\"sizeXs\":[1025,\"size-xs\"],\"sizeSm\":[1025,\"size-sm\"],\"sizeMd\":[1025,\"size-md\"],\"sizeLg\":[1025,\"size-lg\"],\"imgUrl\":[1,\"img-url\"],\"imageType\":[1,\"image-type\"],\"borderRadius\":[1,\"border-radius\"],\"loadMode\":[1,\"load-mode\"],\"styles\":[1]},[[9,\"resize\",\"WindowResize\"]]]]],[\"ptc-para.cjs\",[[1,\"ptc-para\",{\"fontSize\":[1,\"font-size\"],\"fontWeight\":[1,\"font-weight\"],\"paraStyle\":[1,\"para-style\"],\"paraColor\":[1,\"para-color\"],\"paraLineH\":[1,\"para-line-h\"],\"paraMargin\":[1,\"para-margin\"],\"paraAlign\":[1,\"para-align\"],\"ellipsisLineCutoff\":[2,\"ellipsis-line-cutoff\"],\"paraZIndex\":[1,\"para-z-index\"],\"styles\":[1]}]]],[\"icon-asset.cjs\",[[2,\"icon-asset\",{\"name\":[1],\"size\":[1],\"type\":[1],\"spin\":[1],\"pulse\":[1],\"color\":[1],\"isMobileSelect\":[4,\"is-mobile-select\"],\"injectedStyle\":[1,\"injected-style\"]}]]]]"), options);
18
18
  });
19
19
  };
20
20
 
@@ -4,7 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  const index = require('./index-cd9a1b1a.js');
6
6
 
7
- const ptcEmbeddedQuizCss = ":host{display:block}@media only screen and (min-width: 360px){:host .quiz-slide-container{position:relative;width:100%;border:1px solid var(--color-gray-12);background-color:white}:host .quiz-slide-container .quiz-slide-text-container{max-width:calc(24 * var(--ptc-element-spacing-07))}:host .quiz-slide-background{position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"https://www.ptc.com/-/media/Development/Embedded-Vuforia-Quiz/vuforia-background-guide-01.svg\");background-size:cover;background-position:center;opacity:0.25}:host .quiz-slide-initial{padding:var(--ptc-element-spacing-08);display:flex;justify-content:center}:host .quiz-slide-initial #initial-quiz-p{padding:0 0 calc(var(--ptc-element-spacing-08) + var(--ptc-element-spacing-04)) 0}:host .quiz-slide-result .cta-container{display:flex;flex-direction:column;align-items:center}:host .quiz-slide-result .cta-container ptc-button{flex:1 0 100%;margin:0 0 var(--ptc-element-spacing-05) 0}:host .right-button-container{display:flex;justify-content:right}:host .right-button-container .restart-quiz-button{display:flex;margin:var(--ptc-element-spacing-06) var(--ptc-element-spacing-06) 0 0;transition:var(--ptc-transition-slow)}:host .right-button-container .restart-quiz-button #restart-arrow{display:flex;align-items:center}:host .right-button-container .restart-quiz-button #restart-arrow svg{z-index:2;margin-right:var(--ptc-element-spacing-03)}:host .right-button-container .restart-quiz-button:hover{cursor:pointer}:host .right-button-container .restart-quiz-button:hover #restart-arrow svg{transform:rotate(270deg)}:host .right-button-container .restart-quiz-button:hover ptc-para{opacity:0.7}:host .center-button-container{display:flex;justify-content:center}:host .previous-slide-button{display:flex;align-items:center;margin:0 0 var(--ptc-element-spacing-06) 0;transition:var(--ptc-transition-slow)}:host .previous-slide-button icon-asset{z-index:2;display:flex;align-items:center;margin-right:var(--ptc-element-spacing-03)}:host .previous-slide-button:hover{cursor:pointer}:host .previous-slide-button:hover icon-asset svg{transform:translateX(-8px)}:host .previous-slide-button:hover ptc-para{opacity:0.7}:host .quiz-slide-dual-layout .image-container{padding-top:var(--ptc-element-spacing-06);display:flex;justify-content:center;height:calc(4 * var(--ptc-element-spacing-08));width:100%}:host .quiz-slide-dual-layout .image-container img{height:100%;width:100%}:host .quiz-slide-dual-layout .content-container{margin:var(--ptc-element-spacing-06) var(--ptc-element-spacing-08) var(--ptc-element-spacing-08) var(--ptc-element-spacing-08)}:host .quiz-slide-dual-layout .content-container .options-container{margin-top:var(--ptc-element-spacing-06);padding-left:var(--ptc-element-spacing-05);display:flex;flex-wrap:wrap;z-index:2}:host .quiz-slide-dual-layout .content-container .options-container .radio-input{flex:1 0 100%;margin-bottom:var(--ptc-element-spacing-06);display:flex;align-items:start;display:flex;align-items:flex-start}:host .quiz-slide-dual-layout .content-container .options-container .radio-input .radio{width:16px;height:16px;border-radius:var(--ptc-border-radius-circle);border:var(--color-gray-10) solid 1px;z-index:2;padding:2.5px;box-sizing:border-box;flex-shrink:0;margin-top:var(--ptc-element-spacing-01)}:host .quiz-slide-dual-layout .content-container .options-container .radio-input .radio.clicked{border:var(--color-blue-08) solid 1px;background:var(--color-blue-08);background-clip:content-box, padding-box}:host .quiz-slide-dual-layout .content-container .options-container .radio-input ptc-para{padding:0 var(--ptc-element-spacing-02) 0 var(--ptc-element-spacing-03)}:host .quiz-slide-dual-layout .content-container .options-container .radio-input:hover{cursor:pointer}:host .quiz-slide-dual-layout .content-container .options-container .radio-input:hover .radio{box-shadow:var(--ptc-shadow-x-small)}}@media only screen and (min-width: 768px){:host .quiz-slide-container{min-height:calc(10 * var(--ptc-element-spacing-08));position:relative}:host .quiz-slide-initial #initial-quiz-p{padding:0 0 calc(var(--ptc-element-spacing-08) + var(--ptc-element-spacing-04)) 0}:host .quiz-slide-dual-layout{margin:0 var(--ptc-element-spacing-06) 0 var(--ptc-element-spacing-06)}:host .quiz-slide-dual-layout .image-container{height:calc(9 * var(--ptc-element-spacing-06));width:100%}:host .quiz-slide-dual-layout .image-container img{height:100%;width:auto}:host .quiz-slide-dual-layout .content-container{margin:var(--ptc-element-spacing-06) var(--ptc-element-spacing-06) var(--ptc-element-spacing-08) var(--ptc-element-spacing-06)}:host .quiz-slide-dual-layout .content-container .options-container .radio-input{flex:1 0 48%}}@media only screen and (min-width: 992px){:host .quiz-slide-initial #initial-quiz-p{padding:0 0 calc(var(--ptc-element-spacing-08) + var(--ptc-element-spacing-04)) 0}:host .quiz-slide-dual-layout .image-container{height:calc(8 * var(--ptc-element-spacing-07));width:auto}}@media only screen and (min-width: 1200px){:host .quiz-slide-initial #initial-quiz-p{padding:0 0 calc(var(--ptc-element-spacing-01) + var(--ptc-element-spacing-06)) 0}:host .quiz-slide-result .cta-container{flex-direction:row}:host .quiz-slide-result .cta-container ptc-button{flex:none;margin:0 var(--ptc-element-spacing-05) 0 0}:host .quiz-slide-dual-layout{display:flex;margin-bottom:var(--ptc-element-spacing-08)}:host .quiz-slide-dual-layout .image-container{flex-shrink:0;display:flex;align-items:center;height:calc(7 * var(--ptc-element-spacing-07));width:calc(15 * var(--ptc-element-spacing-07))}:host .quiz-slide-dual-layout .image-container img{height:100%;max-height:calc(7 * var(--ptc-element-spacing-07));max-width:calc(15 * var(--ptc-element-spacing-07))}:host .quiz-slide-dual-layout .content-container .options-container{padding-left:0}:host .quiz-slide-dual-layout .content-container .options-container .radio-input:nth-of-type(odd){margin-right:4%}}@media only screen and (min-width: 1440px){:host .quiz-slide-initial #initial-quiz-p{padding:0 0 var(--ptc-element-spacing-07) 0}}";
7
+ const ptcEmbeddedQuizCss = ":host{display:block}:host .quiz-slide-container{position:relative;width:100%;border:1px solid var(--color-gray-12);background-color:white;z-index:1}:host .quiz-slide-container .quiz-slide-text-container{max-width:calc(24 * var(--ptc-element-spacing-07))}:host .quiz-slide-background{position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"https://www.ptc.com/-/media/Development/Embedded-Vuforia-Quiz/vuforia-background-guide-01.svg\");background-size:cover;background-position:center;opacity:0.2;z-index:-1}:host .quiz-slide-initial{padding:var(--ptc-element-spacing-08);display:flex;justify-content:center}:host .quiz-slide-initial #initial-quiz-p{padding:0 0 calc(var(--ptc-element-spacing-08) + var(--ptc-element-spacing-04)) 0}:host .quiz-slide-result .cta-container{display:flex;flex-direction:column;align-items:center}:host .quiz-slide-result .cta-container ptc-button{flex:1 0 100%;margin:0 0 var(--ptc-element-spacing-05) 0}:host .right-button-container{display:flex;justify-content:right}:host .right-button-container .restart-quiz-button{display:flex;margin:var(--ptc-element-spacing-06) var(--ptc-element-spacing-06) 0 0;transition:var(--ptc-transition-slow)}:host .right-button-container .restart-quiz-button #restart-arrow{display:flex;align-items:center}:host .right-button-container .restart-quiz-button #restart-arrow svg{z-index:2;margin-right:var(--ptc-element-spacing-03)}:host .right-button-container .restart-quiz-button:hover{cursor:pointer}:host .right-button-container .restart-quiz-button:hover #restart-arrow svg{transform:rotate(270deg)}:host .right-button-container .restart-quiz-button:hover ptc-para{opacity:0.7}:host .center-button-container{display:flex;justify-content:center}:host .previous-slide-button{display:flex;align-items:center;margin:0 0 var(--ptc-element-spacing-06) 0;transition:var(--ptc-transition-slow)}:host .previous-slide-button icon-asset{z-index:2;display:flex;align-items:center;margin-right:var(--ptc-element-spacing-03)}:host .previous-slide-button:hover{cursor:pointer}:host .previous-slide-button:hover icon-asset svg{transform:translateX(-8px)}:host .previous-slide-button:hover ptc-para{opacity:0.7}:host .quiz-slide-dual-layout .image-container{padding-top:var(--ptc-element-spacing-06);display:flex;justify-content:center;height:calc(4 * var(--ptc-element-spacing-08));width:100%}:host .quiz-slide-dual-layout .image-container img{height:100%;width:100%}:host .quiz-slide-dual-layout .content-container{margin:var(--ptc-element-spacing-06) var(--ptc-element-spacing-08) var(--ptc-element-spacing-08) var(--ptc-element-spacing-08)}:host .quiz-slide-dual-layout .content-container .options-container{margin-top:var(--ptc-element-spacing-06);padding-left:var(--ptc-element-spacing-05);display:flex;flex-wrap:wrap;z-index:2}:host .quiz-slide-dual-layout .content-container .options-container .radio-input{flex:1 0 100%;margin-bottom:var(--ptc-element-spacing-06);display:flex;align-items:start;display:flex;align-items:flex-start}:host .quiz-slide-dual-layout .content-container .options-container .radio-input .radio{width:16px;height:16px;border-radius:var(--ptc-border-radius-circle);border:var(--color-gray-10) solid 1px;z-index:2;padding:3px;box-sizing:border-box;flex-shrink:0;margin-top:var(--ptc-element-spacing-01);background-color:white}:host .quiz-slide-dual-layout .content-container .options-container .radio-input .radio.clicked{border:var(--color-blue-08) solid 1px;background:var(--color-blue-08);background-clip:content-box, padding-box}:host .quiz-slide-dual-layout .content-container .options-container .radio-input ptc-para{padding:0 var(--ptc-element-spacing-02) 0 var(--ptc-element-spacing-03)}:host .quiz-slide-dual-layout .content-container .options-container .radio-input:hover{cursor:pointer}:host .quiz-slide-dual-layout .content-container .options-container .radio-input:hover .radio{box-shadow:var(--ptc-shadow-x-small)}@media only screen and (min-width: 768px){:host .quiz-slide-container{min-height:calc(10 * var(--ptc-element-spacing-08));position:relative}:host .quiz-slide-initial #initial-quiz-p{padding:0 0 calc(var(--ptc-element-spacing-08) + var(--ptc-element-spacing-04)) 0}:host .quiz-slide-dual-layout{margin:0 var(--ptc-element-spacing-06) 0 var(--ptc-element-spacing-06)}:host .quiz-slide-dual-layout .image-container{height:calc(9 * var(--ptc-element-spacing-06));width:100%}:host .quiz-slide-dual-layout .image-container img{height:100%;width:auto}:host .quiz-slide-dual-layout .content-container{margin:var(--ptc-element-spacing-06) var(--ptc-element-spacing-06) var(--ptc-element-spacing-08) var(--ptc-element-spacing-06)}:host .quiz-slide-dual-layout .content-container .options-container .radio-input{flex:1 0 48%}}@media only screen and (min-width: 992px){:host .quiz-slide-initial #initial-quiz-p{padding:0 0 calc(var(--ptc-element-spacing-08) + var(--ptc-element-spacing-04)) 0}:host .quiz-slide-dual-layout .image-container{height:calc(8 * var(--ptc-element-spacing-07));width:auto}}@media only screen and (min-width: 1200px){:host .quiz-slide-initial #initial-quiz-p{padding:0 0 calc(var(--ptc-element-spacing-01) + var(--ptc-element-spacing-06)) 0}:host .quiz-slide-result .cta-container{flex-direction:row}:host .quiz-slide-result .cta-container ptc-button{flex:none;margin:0 var(--ptc-element-spacing-05) 0 0}:host .quiz-slide-dual-layout{display:flex;margin-bottom:var(--ptc-element-spacing-08)}:host .quiz-slide-dual-layout .image-container{flex-shrink:0;display:flex;align-items:center;height:calc(7 * var(--ptc-element-spacing-07));width:calc(15 * var(--ptc-element-spacing-07))}:host .quiz-slide-dual-layout .image-container img{height:100%;max-height:calc(7 * var(--ptc-element-spacing-07));max-width:calc(15 * var(--ptc-element-spacing-07))}:host .quiz-slide-dual-layout .content-container .options-container{padding-left:0}:host .quiz-slide-dual-layout .content-container .options-container .radio-input:nth-of-type(odd){margin-right:4%}}@media only screen and (min-width: 1440px){:host .quiz-slide-initial #initial-quiz-p{padding:0 0 var(--ptc-element-spacing-07) 0}}";
8
8
 
9
9
  const PtcEmbeddedQuiz = class {
10
10
  constructor(hostRef) {