Conditional Fields for Contact Form 7 - Version 1.8.3

Version Description

(2020-03-01) = * Fix JS error on submit (reported by @wasi7186) * PRO multistep: On the last step of a multistep form, instead of cloning and hiding the submit button, we now simply move it to the next-step-container. This solves a compatibility issue with a third party recaptcha plugin (and probably some other plugins too)

Download this release

Release Info

Developer Jules Colle
Plugin Icon 128x128 Conditional Fields for Contact Form 7
Version 1.8.3
Comparing to
See all releases

Code changes from version 1.8.2 to 1.8.3

contact-form-7-conditional-fields.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Form 7 Conditional Fields
4
  Plugin URI: http://bdwm.be/
5
  Description: Adds support for conditional fields to Contact Form 7. This plugin depends on Contact Form 7.
6
  Author: Jules Colle
7
- Version: 1.8.2
8
  Author URI: http://bdwm.be/
9
  */
10
 
4
  Plugin URI: http://bdwm.be/
5
  Description: Adds support for conditional fields to Contact Form 7. This plugin depends on Contact Form 7.
6
  Author: Jules Colle
7
+ Version: 1.8.3
8
  Author URI: http://bdwm.be/
9
  */
10
 
init.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- if (!defined('WPCF7CF_VERSION')) define( 'WPCF7CF_VERSION', '1.8.2' );
4
  if (!defined('WPCF7CF_REQUIRED_WP_VERSION')) define( 'WPCF7CF_REQUIRED_WP_VERSION', '4.1' );
5
  if (!defined('WPCF7CF_PLUGIN')) define( 'WPCF7CF_PLUGIN', __FILE__ );
6
  if (!defined('WPCF7CF_PLUGIN_BASENAME')) define( 'WPCF7CF_PLUGIN_BASENAME', plugin_basename( WPCF7CF_PLUGIN ) );
1
  <?php
2
 
3
+ if (!defined('WPCF7CF_VERSION')) define( 'WPCF7CF_VERSION', '1.8.3' );
4
  if (!defined('WPCF7CF_REQUIRED_WP_VERSION')) define( 'WPCF7CF_REQUIRED_WP_VERSION', '4.1' );
5
  if (!defined('WPCF7CF_PLUGIN')) define( 'WPCF7CF_PLUGIN', __FILE__ );
6
  if (!defined('WPCF7CF_PLUGIN_BASENAME')) define( 'WPCF7CF_PLUGIN_BASENAME', plugin_basename( WPCF7CF_PLUGIN ) );
js/scripts.js CHANGED
@@ -191,7 +191,10 @@ var Wpcf7cfForm = function Wpcf7cfForm($form) {
191
  setTimeout(function () {
192
  form.displayFields();
193
  form.resetRepeaters();
194
- form.multistep.moveToStep(1);
 
 
 
195
  }, 200);
196
  }); // PRO ONLY
197
 
@@ -838,15 +841,15 @@ window.wpcf7cf = {
838
 
839
 
840
  var $submit_button = multistep.form.$form.find('input[type="submit"]').eq(0);
 
841
 
842
  if (multistep.currentStep == multistep.numSteps) {
843
- var $submit_clone = $submit_button.clone();
844
- $submit_button.hide();
845
  multistep.$btn_next.hide();
846
- multistep.$btn_next.parent().append($submit_clone);
847
- } else {
848
- multistep.$btn_next.parent().find('input[type=submit]').remove();
849
  $submit_button.show();
 
 
850
  multistep.$btn_next.show();
851
  } // update dots
852
 
191
  setTimeout(function () {
192
  form.displayFields();
193
  form.resetRepeaters();
194
+
195
+ if (form.multistep != null) {
196
+ form.multistep.moveToStep(1);
197
+ }
198
  }, 200);
199
  }); // PRO ONLY
200
 
841
 
842
 
843
  var $submit_button = multistep.form.$form.find('input[type="submit"]').eq(0);
844
+ var $ajax_loader = multistep.form.$form.find('.ajax-loader').eq(0);
845
 
846
  if (multistep.currentStep == multistep.numSteps) {
 
 
847
  multistep.$btn_next.hide();
848
+ $ajax_loader.detach().appendTo(multistep.$btn_next.parent());
849
+ $submit_button.detach().appendTo(multistep.$btn_next.parent());
 
850
  $submit_button.show();
851
+ } else {
852
+ $submit_button.hide();
853
  multistep.$btn_next.show();
854
  } // update dots
855
 
js/scripts.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./js/scripts_es6.js","webpack:///./node_modules/@babel/runtime/regenerator/index.js","webpack:///./node_modules/regenerator-runtime/runtime.js","webpack:///(webpack)/buildin/module.js"],"names":["cf7signature_resized","wpcf7cf_timeout","wpcf7cf_show_animation","wpcf7cf_hide_animation","wpcf7cf_show_step_animation","wpcf7cf_hide_step_animation","wpcf7cf_change_events","wpcf7cf_forms","String","prototype","endsWith","search","this_len","undefined","length","substring","Wpcf7cfForm","$form","options_element","find","eq","val","form","form_options","JSON","parse","$input_hidden_group_fields","$input_hidden_groups","$input_visible_groups","$input_repeaters","$input_steps","unit_tag","closest","attr","conditions","i","condition","and_rules","if_field","if_value","operator","initial_conditions","settings","$groups","jQuery","repeaters","multistep","fields","animation_intime","parseInt","animation_outtime","animation","updateGroups","updateEventListeners","displayFields","on","e","data","setTimeout","resetRepeaters","moveToStep","each","push","Wpcf7cfRepeater","stringify","map","item","params","$repeater","id","$multistep","Wpcf7cfMultistep","forEach","repeater","updateSubs","initial_subs","window","wpcf7cf","get_simplified_dom_model","wpcf7cf_conditions","wpcf7cf_settings","signatures","constructor","Array","canvas","width","$sig_canvas","$sig_wrap","height","addClass","show_group","should_group_be_shown","then_field","removeClass","index","$group","is","finish","css","hasClass","prop","show","trigger","animate","$inputs","not","$this","defaultValue","defaultChecked","change","hide","updateHiddenFields","updateSummaryFields","$summary","fd","FormData","formdata","serializeArray","key","input","append","name","value","ajax","url","wpcf7cf_global_settings","ajaxurl","type","processData","contentType","dataType","success","json","html","summaryHtml","hidden_fields","hidden_groups","visible_groups","get_nested_conditions","off","clearTimeout","text","$","num_subs","orig_id","min","max","$repeater_sub","children","$repeater_controls","$repeater_sub_clone","clone","addBack","prev_suffix","new_suffix","prev_name","orig_name","new_name","replace","prev_data_id","orig_data_id","new_data_id","prev_id","new_id","prev_for","orig_for","new_for","repeater_sub_html","outerHTML","$repeater_count_field","$button_add","$button_remove","click","remove","subs_to_show","subs_to_add","removeSubs","addSubs","showButtonRemove","showButtonAdd","html_str","sub_suffix","RegExp","$html","insertBefore","updateMultistepState","cf7mdInit","slice","duration","done","$steps","$btn_next","$btn_prev","$dots","currentStep","numSteps","validateStep","result","stopImmediatePropagation","document","ajaxComplete","xhr","hasOwnProperty","responseJSON","status","into","step_index","Promise","resolve","_cf7mls_db_form_data_id","checkError","invalid_fields","el","controlWrap","reason","console","log","parent","message","fail","always","previousStep","scrollIntoView","getFieldsInStep","simpleDom","inStep","filter","step","initForm","$current_form","simplified_dom","groups","sub_conditions","g","relevant_conditions","original_name","and_rule","suffix","concat","currentNode","ni","createNodeIterator","NodeFilter","SHOW_ELEMENT","nextNode","classList","contains","dataset","className","hasAttribute","getAttribute","original_name_length","stepsData","fieldsInCurrentStep","$submit_button","$submit_clone","and_rule_i","condition_ok","condition_and_rule","$field","if_val","if_val_as_number","isFinite","parseFloat","regex_patt","isValidRegex","$option","option_val","test","field_val","field_val_as_number","field_is_checked","all_values","checked_values","checked_value_index","inArray","value_index","ind","checked_val","checked_val_as_number","ready","f","old_wpcf7ExclusiveCheckbox","fn","wpcf7ExclusiveCheckbox","module","exports","require","runtime","Op","Object","hasOwn","$Symbol","Symbol","iteratorSymbol","iterator","asyncIteratorSymbol","asyncIterator","toStringTagSymbol","toStringTag","wrap","innerFn","outerFn","self","tryLocsList","protoGenerator","Generator","generator","create","context","Context","_invoke","makeInvokeMethod","tryCatch","obj","arg","call","err","GenStateSuspendedStart","GenStateSuspendedYield","GenStateExecuting","GenStateCompleted","ContinueSentinel","GeneratorFunction","GeneratorFunctionPrototype","IteratorPrototype","getProto","getPrototypeOf","NativeIteratorPrototype","values","Gp","displayName","defineIteratorMethods","method","isGeneratorFunction","genFun","ctor","mark","setPrototypeOf","__proto__","awrap","__await","AsyncIterator","invoke","reject","record","then","unwrapped","error","previousPromise","enqueue","callInvokeWithMethodAndArg","async","iter","next","state","Error","doneResult","delegate","delegateResult","maybeInvokeDelegate","sent","_sent","dispatchException","abrupt","TypeError","info","resultName","nextLoc","toString","pushTryEntry","locs","entry","tryLoc","catchLoc","finallyLoc","afterLoc","tryEntries","resetTryEntry","completion","reset","keys","object","reverse","pop","iterable","iteratorMethod","isNaN","skipTempReset","prev","charAt","stop","rootEntry","rootRecord","rval","exception","handle","loc","caught","hasCatch","hasFinally","finallyEntry","complete","thrown","delegateYield","regeneratorRuntime","accidentalStrictMode","Function","webpackPolyfill","deprecate","paths","defineProperty","enumerable","get","l"],"mappings":"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","file":"scripts.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = \"./js/scripts_es6.js\");\n","\"use strict\";\n\nvar cf7signature_resized = 0; // for compatibility with contact-form-7-signature-addon\n\nvar wpcf7cf_timeout;\n\nvar wpcf7cf_show_animation = { \"height\": \"show\", \"marginTop\": \"show\", \"marginBottom\": \"show\", \"paddingTop\": \"show\", \"paddingBottom\": \"show\" };\nvar wpcf7cf_hide_animation = { \"height\": \"hide\", \"marginTop\": \"hide\", \"marginBottom\": \"hide\", \"paddingTop\": \"hide\", \"paddingBottom\": \"hide\" };\n\nvar wpcf7cf_show_step_animation = { \"opacity\": \"show\" };\nvar wpcf7cf_hide_step_animation = { \"opacity\": \"hide\" };\n\nvar wpcf7cf_change_events = 'input.wpcf7cf paste.wpcf7cf change.wpcf7cf click.wpcf7cf propertychange.wpcf7cf';\n\nvar wpcf7cf_forms = [];\n\n// endswith polyfill\nif (!String.prototype.endsWith) {\n\tString.prototype.endsWith = function(search, this_len) {\n\t\tif (this_len === undefined || this_len > this.length) {\n\t\t\tthis_len = this.length;\n\t\t}\n\t\treturn this.substring(this_len - search.length, this_len) === search;\n\t};\n}\n\nvar Wpcf7cfForm = function($form) {\n\n var options_element = $form.find('input[name=\"_wpcf7cf_options\"]').eq(0);\n if (!options_element.length || !options_element.val()) {\n // doesn't look like a CF7 form created with conditional fields plugin enabled.\n return false;\n }\n\n var form = this;\n\n var form_options = JSON.parse(options_element.val());\n\n form.$form = $form;\n form.$input_hidden_group_fields = $form.find('[name=\"_wpcf7cf_hidden_group_fields\"]');\n form.$input_hidden_groups = $form.find('[name=\"_wpcf7cf_hidden_groups\"]');\n form.$input_visible_groups = $form.find('[name=\"_wpcf7cf_visible_groups\"]');\n form.$input_repeaters = $form.find('[name=\"_wpcf7cf_repeaters\"]');\n form.$input_steps = $form.find('[name=\"_wpcf7cf_steps\"]');\n\n form.unit_tag = $form.closest('.wpcf7').attr('id');\n form.conditions = form_options['conditions'];\n\n // compatibility with conditional forms created with older versions of the plugin ( < 1.4 )\n for (var i=0; i < form.conditions.length; i++) {\n var condition = form.conditions[i];\n if (!('and_rules' in condition)) {\n condition.and_rules = [{'if_field':condition.if_field,'if_value':condition.if_value,'operator':condition.operator}];\n }\n }\n\n form.initial_conditions = form.conditions;\n form.settings = form_options['settings'];\n\n form.$groups = jQuery(); // empty jQuery set\n form.repeaters = [];\n form.multistep = null;\n form.fields = [];\n\n form.settings.animation_intime = parseInt(form.settings.animation_intime);\n form.settings.animation_outtime = parseInt(form.settings.animation_outtime);\n\n if (form.settings.animation === 'no') {\n form.settings.animation_intime = 0;\n form.settings.animation_outtime = 0;\n }\n\n form.updateGroups();\n form.updateEventListeners();\n form.displayFields();\n\n // bring form in initial state if the reset event is fired on it.\n form.$form.on('reset.wpcf7cf', form, function(e) {\n var form = e.data;\n setTimeout(function(){\n form.displayFields();\n form.resetRepeaters();\n form.multistep.moveToStep(1);\n },200);\n });\n\n // PRO ONLY\n\n jQuery('.wpcf7cf_repeater:not(.wpcf7cf_repeater .wpcf7cf_repeater)', $form).each(function(){\n form.repeaters.push(new Wpcf7cfRepeater(jQuery(this),form));\n });\n\n form.$input_repeaters.val(JSON.stringify(form.repeaters.map((item)=>item.params.$repeater.id)));\n\n var $multistep = jQuery('.wpcf7cf_multistep', $form);\n\n if ($multistep.length) {\n form.multistep = new Wpcf7cfMultistep($multistep, form);\n // window.wpcf7cf.updateMultistepState(form.multistep);\n }\n\n // END PRO ONLY\n\n}\n\n/**\n * reset initial number of subs for each repeater.\n * (does not clear values)\n */\nWpcf7cfForm.prototype.resetRepeaters = function() {\n var form = this;\n form.repeaters.forEach(repeater => {\n repeater.updateSubs( repeater.params.$repeater.initial_subs );\n });\n}\n\nWpcf7cfForm.prototype.displayFields = function() {\n\n var form = this;\n\n window.wpcf7cf.get_simplified_dom_model(form.$form);\n\n var unit_tag = this.unit_tag;\n var wpcf7cf_conditions = this.conditions;\n var wpcf7cf_settings = this.settings;\n\n //for compatibility with contact-form-7-signature-addon\n if (cf7signature_resized === 0 && typeof signatures !== 'undefined' && signatures.constructor === Array && signatures.length > 0 ) {\n for (var i = 0; i < signatures.length; i++) {\n if (signatures[i].canvas.width === 0) {\n\n var $sig_canvas = jQuery(\".wpcf7-form-control-signature-body>canvas\");\n var $sig_wrap = jQuery(\".wpcf7-form-control-signature-wrap\");\n $sig_canvas.eq(i).attr('width', $sig_wrap.width());\n $sig_canvas.eq(i).attr('height', $sig_wrap.height());\n\n cf7signature_resized = 1;\n }\n }\n }\n\n form.$groups.addClass('wpcf7cf-hidden');\n\n for (var i=0; i < wpcf7cf_conditions.length; i++) {\n\n var condition = wpcf7cf_conditions[i];\n\n var show_group = window.wpcf7cf.should_group_be_shown(condition, form.$form);\n\n if (show_group) {\n jQuery('[data-id='+condition.then_field+']',form.$form).eq(0).removeClass('wpcf7cf-hidden');\n }\n }\n\n var animation_intime = wpcf7cf_settings.animation_intime;\n var animation_outtime = wpcf7cf_settings.animation_outtime;\n\n form.$groups.each(function (index) {\n var $group = jQuery(this);\n if ($group.is(':animated')) $group.finish(); // stop any current animations on the group\n if ($group.css('display') === 'none' && !$group.hasClass('wpcf7cf-hidden')) {\n if ($group.prop('tagName') === 'SPAN') {\n $group.show().trigger('wpcf7cf_show_group');\n } else {\n $group.animate(wpcf7cf_show_animation, animation_intime).trigger('wpcf7cf_show_group'); // show\n }\n } else if ($group.css('display') !== 'none' && $group.hasClass('wpcf7cf-hidden')) {\n\n if ($group.attr('data-clear_on_hide') !== undefined) {\n var $inputs = jQuery(':input', $group).not(':button, :submit, :reset, :hidden');\n\n $inputs.each(function(){\n var $this = jQuery(this);\n $this.val(this.defaultValue);\n $this.prop('checked', this.defaultChecked);\n });\n\n $inputs.change();\n //display_fields();\n }\n\n if ($group.prop('tagName') === 'SPAN') {\n $group.hide().trigger('wpcf7cf_hide_group');\n } else {\n $group.animate(wpcf7cf_hide_animation, animation_outtime).trigger('wpcf7cf_hide_group'); // hide\n }\n\n }\n });\n\n form.updateHiddenFields();\n form.updateSummaryFields();\n};\n\nWpcf7cfForm.prototype.updateSummaryFields = function() {\n var $summary = jQuery('.wpcf7cf-summary', this.$form);\n\n if ($summary.length == 0 || !$summary.is(':visible')) return;\n\n var fd = new FormData();\n\n var formdata = this.$form.serializeArray();\n jQuery.each(formdata,function(key, input){\n fd.append(input.name, input.value);\n });\n\n jQuery.ajax({\n url: wpcf7cf_global_settings.ajaxurl + '?action=wpcf7cf_get_summary',\n type: 'POST',\n data: fd,\n processData: false,\n contentType: false,\n dataType: 'json',\n success: function(json) {\n $summary.html(json.summaryHtml);\n }\n });\n};\n\nWpcf7cfForm.prototype.updateHiddenFields = function() {\n\n var form = this;\n\n var hidden_fields = [];\n var hidden_groups = [];\n var visible_groups = [];\n\n form.$groups.each(function () {\n var $this = jQuery(this);\n if ($this.hasClass('wpcf7cf-hidden')) {\n hidden_groups.push($this.data('id'));\n $this.find('input,select,textarea').each(function () {\n hidden_fields.push(jQuery(this).attr('name'));\n });\n } else {\n visible_groups.push($this.data('id'));\n }\n });\n\n form.hidden_fields = hidden_fields;\n form.hidden_groups = hidden_groups;\n form.visible_groups = visible_groups;\n\n form.$input_hidden_group_fields.val(JSON.stringify(hidden_fields));\n form.$input_hidden_groups.val(JSON.stringify(hidden_groups));\n form.$input_visible_groups.val(JSON.stringify(visible_groups));\n\n return true;\n};\nWpcf7cfForm.prototype.updateGroups = function() {\n var form = this;\n form.$groups = form.$form.find('[data-class=\"wpcf7cf_group\"]');\n\n form.conditions = window.wpcf7cf.get_nested_conditions(form.initial_conditions, form.$form);\n\n};\nWpcf7cfForm.prototype.updateEventListeners = function() {\n\n var form = this;\n\n // monitor input changes, and call display_fields() if something has changed\n jQuery('input, select, textarea, button',form.$form).not('.wpcf7cf_add, .wpcf7cf_remove').off(wpcf7cf_change_events).on(wpcf7cf_change_events,form, function(e) {\n var form = e.data;\n clearTimeout(wpcf7cf_timeout);\n wpcf7cf_timeout = setTimeout(function() {\n form.displayFields();\n }, 100);\n });\n\n // PRO ONLY\n jQuery('.wpcf7cf-togglebutton', form.$form).off('click.toggle_wpcf7cf').on('click.toggle_wpcf7cf',function() {\n var $this = jQuery(this);\n if ($this.text() === $this.data('val-1')) {\n $this.text($this.data('val-2'));\n $this.val($this.data('val-2'));\n } else {\n $this.text($this.data('val-1'));\n $this.val($this.data('val-1'));\n }\n });\n // END PRO ONLY\n};\n\n// PRO ONLY\nfunction Wpcf7cfRepeater($repeater, form) {\n var $ = jQuery;\n\n var repeater = this;\n\n var wpcf7cf_settings = form.settings;\n\n repeater.form = form;\n\n $repeater.num_subs = 0;\n $repeater.id = $repeater.data('id');\n $repeater.orig_id = $repeater.data('orig_data_id');\n $repeater.min = typeof( $repeater.data('min')) !== 'undefined' ? parseInt($repeater.data('min')) : 1;\n $repeater.max = typeof( $repeater.data('max')) !== 'undefined' ? parseInt($repeater.data('max')) : 200;\n $repeater.initial_subs = typeof( $repeater.data('initial')) !== 'undefined' ? parseInt($repeater.data('initial')) : $repeater.min;\n if ($repeater.initial_subs > $repeater.max) $repeater.initial_subs = $repeater.max;\n var $repeater_sub = $repeater.children('.wpcf7cf_repeater_sub').eq(0);\n var $repeater_controls = $repeater.children('.wpcf7cf_repeater_controls').eq(0);\n\n var $repeater_sub_clone = $repeater_sub.clone();\n\n $repeater_sub_clone.find('.wpcf7cf_repeater_sub').addBack('.wpcf7cf_repeater_sub').each(function() {\n var $this = jQuery(this);\n var prev_suffix = $this.attr('data-repeater_sub_suffix');\n var new_suffix = prev_suffix+'__{{repeater_sub_suffix}}';\n $this.attr('data-repeater_sub_suffix', new_suffix);\n });\n\n $repeater_sub_clone.find('[name]').each(function() {\n var $this = jQuery(this);\n var prev_name = $this.attr('name');\n var orig_name = $this.attr('data-orig_name') != null ? $this.attr('data-orig_name') : prev_name;\n var new_name = prev_name+'__{{repeater_sub_suffix}}';\n\n if(prev_name.endsWith('_count')) {\n new_name = prev_name.replace('_count','__{{repeater_sub_suffix}}_count');\n }\n\n $this.attr('name', new_name);\n $this.attr('data-orig_name', orig_name);\n $this.closest('.wpcf7-form-control-wrap').addClass(new_name);\n });\n\n $repeater_sub_clone.find('.wpcf7cf_repeater,[data-class=\"wpcf7cf_group\"]').each(function() {\n var $this = jQuery(this);\n var prev_data_id = $this.attr('data-id');\n var orig_data_id = $this.attr('data-orig_data_id') != null ? $this.attr('data-orig_data_id') : prev_data_id;\n var new_data_id = prev_data_id+'__{{repeater_sub_suffix}}';\n\n if(prev_data_id.endsWith('_count')) {\n new_data_id = prev_data_id.replace('_count','__{{repeater_sub_suffix}}_count');\n }\n\n $this.attr('data-id', new_data_id);\n $this.attr('data-orig_data_id', orig_data_id);\n $this.closest('.wpcf7-form-control-wrap').addClass(new_data_id);\n });\n\n $repeater_sub_clone.find('[id]').each(function() {\n var $this = jQuery(this);\n var prev_id = $this.attr('id');\n var orig_id = $this.attr('data-orig_id') != null ? $this.attr('data-orig_id') : prev_id;\n var new_id = prev_id+'__{{repeater_sub_suffix}}';\n\n $this.attr('id', new_id);\n $this.attr('data-orig_id', orig_id);\n $this.closest('.wpcf7-form-control-wrap').addClass(new_id);\n });\n\n $repeater_sub_clone.find('[for]').each(function() {\n var $this = jQuery(this);\n var prev_for = $this.attr('for');\n var orig_for = $this.attr('data-orig_for') != null ? $this.attr('data-orig_for') : prev_for;\n var new_for = prev_for+'__{{repeater_sub_suffix}}';\n\n $this.attr('for', new_for);\n $this.attr('data-orig_for', orig_for);\n $this.closest('.wpcf7-form-control-wrap').addClass(new_for);\n });\n\n var repeater_sub_html = $repeater_sub_clone[0].outerHTML;\n\n var $repeater_count_field = $repeater.find('[name='+$repeater.id+'_count]').eq(0);\n var $button_add = $repeater_controls.find('.wpcf7cf_add').eq(0);\n var $button_remove = $repeater_controls.find('.wpcf7cf_remove').eq(0);\n\n var params = {\n $repeater: $repeater,\n $repeater_count_field: $repeater_count_field,\n repeater_sub_html: repeater_sub_html,\n $repeater_controls: $repeater_controls,\n $button_add: $button_add,\n $button_remove: $button_remove,\n wpcf7cf_settings: wpcf7cf_settings\n };\n \n this.params = params;\n\n $button_add.click( repeater, function(e) {\n var repeater = e.data;\n repeater.updateSubs(params.$repeater.num_subs+1);\n });\n\n $button_remove.click( repeater,function(e) {\n var repeater = e.data;\n repeater.updateSubs(params.$repeater.num_subs-1);\n });\n\n jQuery('> .wpcf7cf_repeater_sub',params.$repeater).eq(0).remove(); // remove the first sub, it's just a template.\n\n repeater.updateSubs($repeater.initial_subs); \n\n}\n\n\n\nWpcf7cfRepeater.prototype.updateSubs = function(subs_to_show) {\n var repeater = this;\n var params = repeater.params;\n var subs_to_add = subs_to_show - params.$repeater.num_subs;\n\n if (subs_to_add < 0) {\n repeater.removeSubs(-subs_to_add);\n } else if (subs_to_add > 0) {\n repeater.addSubs(subs_to_add);\n }\n\n var showButtonRemove = false;\n var showButtonAdd = false;\n\n if (params.$repeater.num_subs < params.$repeater.max) {\n showButtonAdd = true;\n }\n if (params.$repeater.num_subs > params.$repeater.min) {\n showButtonRemove = true;\n }\n\n if (showButtonAdd) {\n params.$button_add.show();\n } else {\n params.$button_add.hide();\n\n }\n\n if (showButtonRemove) {\n params.$button_remove.show();\n } else {\n params.$button_remove.hide();\n }\n\n params.$repeater_count_field.val(subs_to_show);\n\n};\nWpcf7cfRepeater.prototype.addSubs = function(subs_to_add) {\n var $ = jQuery;\n var params = this.params;\n var repeater = this;\n var form = repeater.form;\n\n\n var $repeater = params.$repeater; \n var $repeater_controls = params.$repeater_controls;\n\n //jQuery(params.repeater_sub_html.replace(/name=\"(.*?)\"/g,'name=\"wpcf7cf_repeater['+$repeater.id+']['+$repeater.num_subs+'][$1]\" data-original-name=\"$1\"')).hide().insertBefore($repeater_controls).animate(wpcf7cf_show_animation, params.wpcf7cf_settings.animation_intime);\n\n var html_str = '';\n\n for(var i=1; i<=subs_to_add; i++) {\n var sub_suffix = $repeater.num_subs+i;\n html_str += params.repeater_sub_html.replace(/\\{\\{repeater_sub_suffix\\}\\}/g,sub_suffix)\n .replace(new RegExp('\\{\\{'+$repeater.orig_id+'_index\\}\\}','g'),sub_suffix);\n }\n\n\n var $html = jQuery(html_str);\n\n // Add the newly created fields to the form\n $html.hide().insertBefore($repeater_controls).animate(wpcf7cf_show_animation, params.wpcf7cf_settings.animation_intime).trigger('wpcf7cf_repeater_added');\n\n jQuery('.wpcf7cf_repeater', $html).each(function(){\n form.repeaters.push(new Wpcf7cfRepeater(jQuery(this),form));\n });\n form.$input_repeaters.val(JSON.stringify(form.repeaters.map((item)=>item.params.$repeater.id)));\n\n $repeater.num_subs+= subs_to_add;\n\n window.wpcf7cf.updateMultistepState(form.multistep);\n form.updateGroups();\n form.updateEventListeners();\n form.displayFields();\n\n // Exclusive Checkbox\n $html.on( 'click', '.wpcf7-exclusive-checkbox input:checkbox', function() {\n var name = $( this ).attr( 'name' );\n $html.find( 'input:checkbox[name=\"' + name + '\"]' ).not( this ).prop( 'checked', false );\n } );\n\n //basic compatibility with material-design-for-contact-form-7\n if (typeof window.cf7mdInit === \"function\") {\n window.cf7mdInit();\n }\n\n return false;\n};\nWpcf7cfRepeater.prototype.removeSubs = function(num_subs) {\n var $ = jQuery;\n var params = this.params;\n var form = this.form;\n\n params.$repeater.num_subs-= num_subs;\n\n jQuery('> .wpcf7cf_repeater_sub',params.$repeater).slice(-num_subs).animate(wpcf7cf_hide_animation, {duration:params.wpcf7cf_settings.animation_intime, done:function() {\n var $this = jQuery(this);\n //remove the actual fields from the form\n $this.remove();\n params.$repeater.trigger('wpcf7cf_repeater_removed');\n window.wpcf7cf.updateMultistepState(form.multistep);\n form.updateGroups();\n form.updateEventListeners();\n form.displayFields();\n }});\n\n return false;\n};\n\nfunction Wpcf7cfMultistep($multistep, form) {\n var multistep = this;\n multistep.$multistep = $multistep;\n multistep.form = form;\n multistep.$steps = $multistep.find('.wpcf7cf_step');\n multistep.$btn_next = $multistep.find('.wpcf7cf_next');\n multistep.$btn_prev = $multistep.find('.wpcf7cf_prev');\n multistep.$dots = $multistep.find('.wpcf7cf_steps-dots');\n multistep.currentStep = 0;\n multistep.numSteps = multistep.$steps.length;\n\n\n multistep.$dots.html('');\n for (var i = 1; i <= multistep.numSteps; i++) {\n multistep.$dots.append(`\n <div class=\"dot\" data-step=\"${i}\">\n <div class=\"step-index\">${i}</div>\n <div class=\"step-title\">${multistep.$steps.eq(i-1).data('title')}</div>\n </div>\n `);\n }\n\n multistep.$btn_next.on('click.wpcf7cf_step', async function() {\n \n var result = await multistep.validateStep(multistep.currentStep);\n if (result === 'success') {\n multistep.moveToStep(multistep.currentStep+1); \n }\n\n });\n\n // If form is submitted (by pressing retrun for example), and if we are not on the last step,\n // then trigger click event on the $next button instead.\n multistep.form.$form.on('submit.wpcf7cf_step', function(e) {\n\n if (multistep.currentStep !== multistep.numSteps) {\n multistep.$btn_next.trigger('click.wpcf7cf_step');\n\n e.stopImmediatePropagation();\n return false;\n }\n });\n\n multistep.$btn_prev.click(function() {\n multistep.moveToStep(multistep.currentStep-1);\n });\n\n multistep.moveToStep(1);\n}\n\njQuery(document).ajaxComplete(function(e, xhr, settings){\n if (\n xhr.hasOwnProperty('responseJSON') &&\n xhr.responseJSON != null &&\n xhr.responseJSON.hasOwnProperty('status') &&\n xhr.responseJSON.hasOwnProperty('into') &&\n xhr.responseJSON.status === \"mail_success\"\n ) {\n jQuery( xhr.responseJSON.into ).trigger('reset.wpcf7cf');\n }\n});\n\nWpcf7cfMultistep.prototype.validateStep = function(step_index) {\n\n var multistep = this;\n var $multistep = multistep.$multistep;\n var $form = multistep.form.$form;\n\n $form.find('.wpcf7-response-output').addClass('wpcf7-display-none');\n\n return new Promise(resolve => {\n\n var fd = new FormData();\n\n // TEST IF FILES UPLOADS WORK? THEN REMOVE THIS\n // jQuery.each($form.find('[data-id=\"step'+step_index+'\"] input[type=\"file\"]'), function(index, el) {\n // fd.append(jQuery(el).attr('name'), jQuery(el)[0].files[0]);\n // });\n\n var formdata = $form.serializeArray();\n jQuery.each(formdata,function(key, input){\n fd.append(input.name, input.value);\n });\n\n jQuery.ajax({\n url: wpcf7cf_global_settings.ajaxurl + '?action=wpcf7cf_validate_step',\n type: 'POST',\n data: fd,\n processData: false,\n contentType: false,\n dataType: 'json',\n }).done(function(json) {\n\n /*\n * Insert _form_data_id if 'json variable' has\n */\n if (typeof json._cf7mls_db_form_data_id != 'undefined') {\n if (!form.find('input[name=\"_cf7mls_db_form_data_id\"]').length) {\n form.append('<input type=\"hidden\" name=\"_cf7mls_db_form_data_id\" value=\"'+json._cf7mls_db_form_data_id+'\" />');\n }\n }\n\n //reset error messages\n $multistep.find('.wpcf7-form-control-wrap').removeClass('cf7mls-invalid');\n $multistep.find('.wpcf7-form-control-wrap .wpcf7-not-valid-tip').remove();\n $multistep.find('.wpcf7-response-output').remove();\n $multistep.find('.wpcf7-response-output.wpcf7-validation-errors').removeClass('wpcf7-validation-errors');\n\n if (!json.success) {\n var checkError = 0;\n\n jQuery.each(json.invalid_fields, function(index, el) {\n if ($multistep.find('input[name=\"'+index+'\"]').length ||\n $multistep.find('input[name=\"'+index+'[]\"]').length ||\n $multistep.find('select[name=\"'+index+'\"]').length ||\n $multistep.find('select[name=\"'+index+'[]\"]').length ||\n $multistep.find('textarea[name=\"'+index+'\"]').length ||\n $multistep.find('textarea[name=\"'+index+'[]\"]').length\n ) {\n checkError = checkError + 1;\n\n var controlWrap = jQuery('.wpcf7-form-control-wrap.' + index, $form);\n controlWrap.addClass('cf7mls-invalid');\n controlWrap.find('span.wpcf7-not-valid-tip').remove();\n controlWrap.append('<span role=\"alert\" class=\"wpcf7-not-valid-tip\">' + el.reason + '</span>');\n\n //return false;\n }\n });\n\n resolve('failed');\n //$multistep.append('<div class=\"wpcf7-response-output wpcf7-display-none wpcf7-validation-errors\" style=\"display: block;\" role=\"alert\">' + json.message + '</div>');\n\n console.log($multistep.parent().find('.wpcf7-response-output'));\n $multistep.parent().find('.wpcf7-response-output').removeClass('wpcf7-display-none').html(json.message);\n\n } else if (json.success) {\n resolve('success');\n return false;\n }\n\n }).fail(function() {\n resolve('error');\n }).always(function() {\n // do nothing\n });\n });\n\n};\nWpcf7cfMultistep.prototype.moveToStep = function(step_index) {\n var multistep = this;\n var previousStep = multistep.currentStep;\n\n multistep.currentStep = step_index > multistep.numSteps ? multistep.numSteps\n : step_index < 1 ? 1\n : step_index;\n\n // ANIMATION DISABLED FOR NOW cause it's ugly\n // multistep.$steps.animate(wpcf7cf_hide_step_animation, multistep.form.settings.animation_outtime);\n // multistep.$steps.eq(multistep.currentStep-1).animate(wpcf7cf_show_step_animation, multistep.form.settings.animation_intime);\n\n multistep.$multistep.attr('data-current_step', multistep.currentStep);\n multistep.$steps.hide();\n multistep.$steps\n .eq(multistep.currentStep-1)\n .show()\n .trigger('wpcf7cf_change_step', [previousStep, multistep.currentStep]);\n\n multistep.form.$form[0].scrollIntoView();\n\n multistep.form.updateSummaryFields();\n\n window.wpcf7cf.updateMultistepState(multistep);\n};\n\nWpcf7cfMultistep.prototype.getFieldsInStep = function(step_index) {\n var simpleDom = window.wpcf7cf.get_simplified_dom_model(this.form.$form);\n var inStep = false;\n return simpleDom.filter(function(item, i) {\n if(item.type == 'step') {\n inStep = item.step == step_index+'';\n }\n return inStep && item.type == 'input';\n }).map(function(item) {\n return item.name;\n });\n};\n\n// END PRO ONLY\n\nwindow.wpcf7cf = {\n\n // keep this for backwards compatibility\n initForm : function($form) {\n wpcf7cf_forms.push(new Wpcf7cfForm($form));\n },\n\n get_nested_conditions : function(conditions, $current_form) {\n //loop trough conditions. Then loop trough the dom, and each repeater we pass we should update all sub_values we encounter with __index\n var simplified_dom = window.wpcf7cf.get_simplified_dom_model($current_form);\n var groups = simplified_dom.filter(function(item, i) {\n return item.type==='group';\n });\n\n var sub_conditions = [];\n\n for(var i = 0; i < groups.length; i++) {\n var g = groups[i];\n var relevant_conditions = conditions.filter(function(condition, i) {\n return condition.then_field === g.original_name;\n });\n \n var relevant_conditions = relevant_conditions.map(function(item,i) {\n return {\n then_field : g.name,\n and_rules : item.and_rules.map(function(and_rule, i) {\n return {\n if_field : and_rule.if_field+g.suffix,\n if_value : and_rule.if_value,\n operator : and_rule.operator\n };\n })\n }\n });\n\n sub_conditions = sub_conditions.concat(relevant_conditions);\n }\n return conditions.concat(sub_conditions);\n },\n\n get_simplified_dom_model : function($current_form) {\n // if the dom is something like:\n // <form>\n // <repeater ra>\n // <group ga__1>\n // <repeater rb__1>\n // <input txta__1__1 />\n // <input txta__1__2 />\n // </repeater>\n // <group gb__1>\n // <input txtb__1 />\n // </group>\n // </group>\n // <group ga__2>\n // <repeater rb__2>\n // <input txta__2__1 />\n // </repeater>\n // <group gb__2>\n // <input txtb__2 />\n // </group>\n // </group>\n // </repeater>\n // </form>\n // \n // return something like:\n // [{type:repeater, name:'ra', suffix: '__1'}, {type: group, name:'ga', suffix: '__1'}, ...]\n\n var currentNode;\n var ni = document.createNodeIterator($current_form[0], NodeFilter.SHOW_ELEMENT, null, false); //, NodeFilter.SHOW_ELEMENT, function(){ return NodeFilter.FILTER_ACCEPT; }\n\n var simplified_dom = [];\n\n while(currentNode = ni.nextNode()) {\n if (currentNode.classList.contains('wpcf7cf_repeater')) {\n simplified_dom.push({type:'repeater', name:currentNode.dataset.id, original_name:currentNode.dataset.orig_data_id})\n } else if (currentNode.dataset.class == 'wpcf7cf_group') {\n simplified_dom.push({type:'group', name:currentNode.dataset.id, original_name:currentNode.dataset.orig_data_id})\n } else if (currentNode.className == 'wpcf7cf_step') {\n simplified_dom.push({type:'step', name:currentNode.dataset.id, original_name:currentNode.dataset.id, step: currentNode.dataset.id.substring(5)})\n } else if (currentNode.hasAttribute('name')) {\n simplified_dom.push({type:'input', name:currentNode.getAttribute('name'), original_name:currentNode.getAttribute('data-orig_name')})\n }\n }\n\n simplified_dom = simplified_dom.map(function(item, i){\n var original_name_length = item.original_name == null ? item.name.length : item.original_name.length;\n item.suffix = item.name.substring(original_name_length);\n return item;\n });\n\n //console.table(simplified_dom);\n return simplified_dom;\n\n },\n\n updateMultistepState: function (multistep) {\n if (multistep == null) return;\n\n // update hidden input field\n\n var stepsData = {\n currentStep : multistep.currentStep,\n numSteps : multistep.numSteps,\n fieldsInCurrentStep : multistep.getFieldsInStep(multistep.currentStep)\n };\n multistep.form.$input_steps.val(JSON.stringify(stepsData));\n\n // update Buttons\n multistep.$btn_prev.removeClass('disabled');\n multistep.$btn_next.removeClass('disabled');\n if (multistep.currentStep == multistep.numSteps) {\n multistep.$btn_next.addClass('disabled');\n }\n if (multistep.currentStep == 1) {\n multistep.$btn_prev.addClass('disabled');\n }\n\n // replace next button with submit button on last step.\n // TODO: make this depend on a setting\n var $submit_button = multistep.form.$form.find('input[type=\"submit\"]').eq(0);\n if (multistep.currentStep == multistep.numSteps) {\n var $submit_clone = $submit_button.clone();\n $submit_button.hide();\n multistep.$btn_next.hide();\n multistep.$btn_next.parent().append($submit_clone);\n } else {\n multistep.$btn_next.parent().find('input[type=submit]').remove();\n $submit_button.show();\n multistep.$btn_next.show();\n }\n\n // update dots\n var $dots = multistep.$dots.find('.dot');\n $dots.removeClass('active').removeClass('completed');\n for(var step = 1; step <= multistep.numSteps; step++) {\n if (step < multistep.currentStep) {\n $dots.eq(step-1).addClass('completed');\n } else if (step == multistep.currentStep) {\n $dots.eq(step-1).addClass('active');\n }\n }\n\n },\n\n should_group_be_shown : function(condition, $current_form) {\n\n var $ = jQuery;\n\n var show_group = true;\n\n for (var and_rule_i = 0; and_rule_i < condition.and_rules.length; and_rule_i++) {\n\n var condition_ok = false;\n\n var condition_and_rule = condition.and_rules[and_rule_i];\n\n var $field = jQuery('[name=\"' + condition_and_rule.if_field + '\"], [name=\"' + condition_and_rule.if_field + '[]\"], [data-original-name=\"' + condition_and_rule.if_field + '\"], [data-original-name=\"' + condition_and_rule.if_field + '[]\"]',$current_form);\n\n var if_val = condition_and_rule.if_value;\n var if_val_as_number = isFinite(parseFloat(if_val)) ? parseFloat(if_val):0;\n var operator = condition_and_rule.operator;\n \n var regex_patt = /.*/i; // fallback regex pattern\n var isValidRegex = true;\n try {\n regex_patt = new RegExp(if_val, 'i');\n } catch(e) {\n isValidRegex = false;\n }\n\n\n //backwards compat\n operator = operator === '≤' ? 'less than or equals' : operator;\n operator = operator === '≥' ? 'greater than or equals' : operator;\n operator = operator === '>' ? 'greater than' : operator;\n operator = operator === '<' ? 'less than' : operator;\n\n\n if ($field.length === 1) {\n\n // single field (tested with text field, single checkbox, select with single value (dropdown), select with multiple values)\n\n if ($field.is('select')) {\n\n if (operator === 'not equals') {\n condition_ok = true;\n }\n\n $field.find('option:selected').each(function () {\n var $option = jQuery(this);\n var option_val = $option.val()\n if (\n operator === 'equals' && option_val === if_val ||\n operator === 'equals (regex)' && regex_patt.test($option.val())\n ) {\n condition_ok = true;\n } else if (\n operator === 'not equals' && option_val === if_val ||\n operator === 'not equals (regex)' && !regex_patt.test($option.val())\n ) {\n condition_ok = false;\n return false; // break out of the loop\n }\n });\n\n show_group = show_group && condition_ok;\n }\n\n var field_val = $field.val();\n var field_val_as_number = isFinite(parseFloat(field_val)) ? parseFloat(field_val):0;\n\n if ($field.attr('type') === 'checkbox') {\n var field_is_checked = $field.is(':checked');\n if (\n operator === 'equals' && field_is_checked && field_val === if_val ||\n operator === 'not equals' && !field_is_checked ||\n operator === 'is empty' && !field_is_checked ||\n operator === 'not empty' && field_is_checked ||\n operator === 'greater than' && field_is_checked && field_val_as_number > if_val_as_number ||\n operator === 'less than' && field_is_checked && field_val_as_number < if_val_as_number ||\n operator === 'greater than or equals' && field_is_checked && field_val_as_number >= if_val_as_number ||\n operator === 'less than or equals' && field_is_checked && field_val_as_number <= if_val_as_number ||\n operator === 'equals (regex)' && field_is_checked && regex_patt.test(field_val) ||\n operator === 'not equals (regex)' && !field_is_checked\n\n ) {\n condition_ok = true;\n }\n } else if (\n operator === 'equals' && field_val === if_val ||\n operator === 'not equals' && field_val !== if_val ||\n operator === 'equals (regex)' && regex_patt.test(field_val) ||\n operator === 'not equals (regex)' && !regex_patt.test(field_val) ||\n operator === 'greater than' && field_val_as_number > if_val_as_number ||\n operator === 'less than' && field_val_as_number < if_val_as_number ||\n operator === 'greater than or equals' && field_val_as_number >= if_val_as_number ||\n operator === 'less than or equals' && field_val_as_number <= if_val_as_number ||\n operator === 'is empty' && field_val === '' ||\n operator === 'not empty' && field_val !== '' ||\n (\n operator === 'function'\n && typeof window[if_val] == 'function'\n && window[if_val]($field)\n )\n ) {\n condition_ok = true;\n }\n\n\n } else if ($field.length > 1) {\n\n // multiple fields (tested with checkboxes, exclusive checkboxes, dropdown with multiple values)\n\n var all_values = [];\n var checked_values = [];\n $field.each(function () {\n all_values.push(jQuery(this).val());\n if (jQuery(this).is(':checked')) {\n checked_values.push(jQuery(this).val());\n }\n });\n\n var checked_value_index = jQuery.inArray(if_val, checked_values);\n var value_index = jQuery.inArray(if_val, all_values);\n\n if (\n ( operator === 'is empty' && checked_values.length === 0 ) ||\n ( operator === 'not empty' && checked_values.length > 0 )\n ) {\n condition_ok = true;\n }\n\n\n for (var ind = 0; ind < checked_values.length; ind++) {\n var checked_val = checked_values[ind];\n var checked_val_as_number = isFinite(parseFloat(checked_val)) ? parseFloat(checked_val):0;\n if (\n ( operator === 'equals' && checked_val === if_val ) ||\n ( operator === 'not equals' && checked_val !== if_val ) ||\n ( operator === 'equals (regex)' && regex_patt.test(checked_val) ) ||\n ( operator === 'not equals (regex)' && !regex_patt.test(checked_val) ) ||\n ( operator === 'greater than' && checked_val_as_number > if_val_as_number ) ||\n ( operator === 'less than' && checked_val_as_number < if_val_as_number ) ||\n ( operator === 'greater than or equals' && checked_val_as_number >= if_val_as_number ) ||\n ( operator === 'less than or equals' && checked_val_as_number <= if_val_as_number )\n ) {\n condition_ok = true;\n }\n }\n }\n\n show_group = show_group && condition_ok;\n }\n\n return show_group;\n\n }\n\n};\n\n\njQuery('.wpcf7-form').each(function(){\n wpcf7cf_forms.push(new Wpcf7cfForm(jQuery(this)));\n});\n\n// Call displayFields again on all forms\n// Necessary in case some theme or plugin changed a form value by the time the entire page is fully loaded.\njQuery('document').ready(function() {\n wpcf7cf_forms.forEach(function(f){\n f.displayFields();\n });\n});\n\n// fix for exclusive checkboxes in IE (this will call the change-event again after all other checkboxes are unchecked, triggering the display_fields() function)\nvar old_wpcf7ExclusiveCheckbox = jQuery.fn.wpcf7ExclusiveCheckbox;\njQuery.fn.wpcf7ExclusiveCheckbox = function() {\n return this.find('input:checkbox').click(function() {\n var name = jQuery(this).attr('name');\n jQuery(this).closest('form').find('input:checkbox[name=\"' + name + '\"]').not(this).prop('checked', false).eq(0).change();\n });\n};\n\n","module.exports = require(\"regenerator-runtime\");\n","/**\n * Copyright (c) 2014-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nvar runtime = (function (exports) {\n \"use strict\";\n\n var Op = Object.prototype;\n var hasOwn = Op.hasOwnProperty;\n var undefined; // More compressible than void 0.\n var $Symbol = typeof Symbol === \"function\" ? Symbol : {};\n var iteratorSymbol = $Symbol.iterator || \"@@iterator\";\n var asyncIteratorSymbol = $Symbol.asyncIterator || \"@@asyncIterator\";\n var toStringTagSymbol = $Symbol.toStringTag || \"@@toStringTag\";\n\n function wrap(innerFn, outerFn, self, tryLocsList) {\n // If outerFn provided and outerFn.prototype is a Generator, then outerFn.prototype instanceof Generator.\n var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator;\n var generator = Object.create(protoGenerator.prototype);\n var context = new Context(tryLocsList || []);\n\n // The ._invoke method unifies the implementations of the .next,\n // .throw, and .return methods.\n generator._invoke = makeInvokeMethod(innerFn, self, context);\n\n return generator;\n }\n exports.wrap = wrap;\n\n // Try/catch helper to minimize deoptimizations. Returns a completion\n // record like context.tryEntries[i].completion. This interface could\n // have been (and was previously) designed to take a closure to be\n // invoked without arguments, but in all the cases we care about we\n // already have an existing method we want to call, so there's no need\n // to create a new function object. We can even get away with assuming\n // the method takes exactly one argument, since that happens to be true\n // in every case, so we don't have to touch the arguments object. The\n // only additional allocation required is the completion record, which\n // has a stable shape and so hopefully should be cheap to allocate.\n function tryCatch(fn, obj, arg) {\n try {\n return { type: \"normal\", arg: fn.call(obj, arg) };\n } catch (err) {\n return { type: \"throw\", arg: err };\n }\n }\n\n var GenStateSuspendedStart = \"suspendedStart\";\n var GenStateSuspendedYield = \"suspendedYield\";\n var GenStateExecuting = \"executing\";\n var GenStateCompleted = \"completed\";\n\n // Returning this object from the innerFn has the same effect as\n // breaking out of the dispatch switch statement.\n var ContinueSentinel = {};\n\n // Dummy constructor functions that we use as the .constructor and\n // .constructor.prototype properties for functions that return Generator\n // objects. For full spec compliance, you may wish to configure your\n // minifier not to mangle the names of these two functions.\n function Generator() {}\n function GeneratorFunction() {}\n function GeneratorFunctionPrototype() {}\n\n // This is a polyfill for %IteratorPrototype% for environments that\n // don't natively support it.\n var IteratorPrototype = {};\n IteratorPrototype[iteratorSymbol] = function () {\n return this;\n };\n\n var getProto = Object.getPrototypeOf;\n var NativeIteratorPrototype = getProto && getProto(getProto(values([])));\n if (NativeIteratorPrototype &&\n NativeIteratorPrototype !== Op &&\n hasOwn.call(NativeIteratorPrototype, iteratorSymbol)) {\n // This environment has a native %IteratorPrototype%; use it instead\n // of the polyfill.\n IteratorPrototype = NativeIteratorPrototype;\n }\n\n var Gp = GeneratorFunctionPrototype.prototype =\n Generator.prototype = Object.create(IteratorPrototype);\n GeneratorFunction.prototype = Gp.constructor = GeneratorFunctionPrototype;\n GeneratorFunctionPrototype.constructor = GeneratorFunction;\n GeneratorFunctionPrototype[toStringTagSymbol] =\n GeneratorFunction.displayName = \"GeneratorFunction\";\n\n // Helper for defining the .next, .throw, and .return methods of the\n // Iterator interface in terms of a single ._invoke method.\n function defineIteratorMethods(prototype) {\n [\"next\", \"throw\", \"return\"].forEach(function(method) {\n prototype[method] = function(arg) {\n return this._invoke(method, arg);\n };\n });\n }\n\n exports.isGeneratorFunction = function(genFun) {\n var ctor = typeof genFun === \"function\" && genFun.constructor;\n return ctor\n ? ctor === GeneratorFunction ||\n // For the native GeneratorFunction constructor, the best we can\n // do is to check its .name property.\n (ctor.displayName || ctor.name) === \"GeneratorFunction\"\n : false;\n };\n\n exports.mark = function(genFun) {\n if (Object.setPrototypeOf) {\n Object.setPrototypeOf(genFun, GeneratorFunctionPrototype);\n } else {\n genFun.__proto__ = GeneratorFunctionPrototype;\n if (!(toStringTagSymbol in genFun)) {\n genFun[toStringTagSymbol] = \"GeneratorFunction\";\n }\n }\n genFun.prototype = Object.create(Gp);\n return genFun;\n };\n\n // Within the body of any async function, `await x` is transformed to\n // `yield regeneratorRuntime.awrap(x)`, so that the runtime can test\n // `hasOwn.call(value, \"__await\")` to determine if the yielded value is\n // meant to be awaited.\n exports.awrap = function(arg) {\n return { __await: arg };\n };\n\n function AsyncIterator(generator) {\n function invoke(method, arg, resolve, reject) {\n var record = tryCatch(generator[method], generator, arg);\n if (record.type === \"throw\") {\n reject(record.arg);\n } else {\n var result = record.arg;\n var value = result.value;\n if (value &&\n typeof value === \"object\" &&\n hasOwn.call(value, \"__await\")) {\n return Promise.resolve(value.__await).then(function(value) {\n invoke(\"next\", value, resolve, reject);\n }, function(err) {\n invoke(\"throw\", err, resolve, reject);\n });\n }\n\n return Promise.resolve(value).then(function(unwrapped) {\n // When a yielded Promise is resolved, its final value becomes\n // the .value of the Promise<{value,done}> result for the\n // current iteration.\n result.value = unwrapped;\n resolve(result);\n }, function(error) {\n // If a rejected Promise was yielded, throw the rejection back\n // into the async generator function so it can be handled there.\n return invoke(\"throw\", error, resolve, reject);\n });\n }\n }\n\n var previousPromise;\n\n function enqueue(method, arg) {\n function callInvokeWithMethodAndArg() {\n return new Promise(function(resolve, reject) {\n invoke(method, arg, resolve, reject);\n });\n }\n\n return previousPromise =\n // If enqueue has been called before, then we want to wait until\n // all previous Promises have been resolved before calling invoke,\n // so that results are always delivered in the correct order. If\n // enqueue has not been called before, then it is important to\n // call invoke immediately, without waiting on a callback to fire,\n // so that the async generator function has the opportunity to do\n // any necessary setup in a predictable way. This predictability\n // is why the Promise constructor synchronously invokes its\n // executor callback, and why async functions synchronously\n // execute code before the first await. Since we implement simple\n // async functions in terms of async generators, it is especially\n // important to get this right, even though it requires care.\n previousPromise ? previousPromise.then(\n callInvokeWithMethodAndArg,\n // Avoid propagating failures to Promises returned by later\n // invocations of the iterator.\n callInvokeWithMethodAndArg\n ) : callInvokeWithMethodAndArg();\n }\n\n // Define the unified helper method that is used to implement .next,\n // .throw, and .return (see defineIteratorMethods).\n this._invoke = enqueue;\n }\n\n defineIteratorMethods(AsyncIterator.prototype);\n AsyncIterator.prototype[asyncIteratorSymbol] = function () {\n return this;\n };\n exports.AsyncIterator = AsyncIterator;\n\n // Note that simple async functions are implemented on top of\n // AsyncIterator objects; they just return a Promise for the value of\n // the final result produced by the iterator.\n exports.async = function(innerFn, outerFn, self, tryLocsList) {\n var iter = new AsyncIterator(\n wrap(innerFn, outerFn, self, tryLocsList)\n );\n\n return exports.isGeneratorFunction(outerFn)\n ? iter // If outerFn is a generator, return the full iterator.\n : iter.next().then(function(result) {\n return result.done ? result.value : iter.next();\n });\n };\n\n function makeInvokeMethod(innerFn, self, context) {\n var state = GenStateSuspendedStart;\n\n return function invoke(method, arg) {\n if (state === GenStateExecuting) {\n throw new Error(\"Generator is already running\");\n }\n\n if (state === GenStateCompleted) {\n if (method === \"throw\") {\n throw arg;\n }\n\n // Be forgiving, per 25.3.3.3.3 of the spec:\n // https://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorresume\n return doneResult();\n }\n\n context.method = method;\n context.arg = arg;\n\n while (true) {\n var delegate = context.delegate;\n if (delegate) {\n var delegateResult = maybeInvokeDelegate(delegate, context);\n if (delegateResult) {\n if (delegateResult === ContinueSentinel) continue;\n return delegateResult;\n }\n }\n\n if (context.method === \"next\") {\n // Setting context._sent for legacy support of Babel's\n // function.sent implementation.\n context.sent = context._sent = context.arg;\n\n } else if (context.method === \"throw\") {\n if (state === GenStateSuspendedStart) {\n state = GenStateCompleted;\n throw context.arg;\n }\n\n context.dispatchException(context.arg);\n\n } else if (context.method === \"return\") {\n context.abrupt(\"return\", context.arg);\n }\n\n state = GenStateExecuting;\n\n var record = tryCatch(innerFn, self, context);\n if (record.type === \"normal\") {\n // If an exception is thrown from innerFn, we leave state ===\n // GenStateExecuting and loop back for another invocation.\n state = context.done\n ? GenStateCompleted\n : GenStateSuspendedYield;\n\n if (record.arg === ContinueSentinel) {\n continue;\n }\n\n return {\n value: record.arg,\n done: context.done\n };\n\n } else if (record.type === \"throw\") {\n state = GenStateCompleted;\n // Dispatch the exception by looping back around to the\n // context.dispatchException(context.arg) call above.\n context.method = \"throw\";\n context.arg = record.arg;\n }\n }\n };\n }\n\n // Call delegate.iterator[context.method](context.arg) and handle the\n // result, either by returning a { value, done } result from the\n // delegate iterator, or by modifying context.method and context.arg,\n // setting context.delegate to null, and returning the ContinueSentinel.\n function maybeInvokeDelegate(delegate, context) {\n var method = delegate.iterator[context.method];\n if (method === undefined) {\n // A .throw or .return when the delegate iterator has no .throw\n // method always terminates the yield* loop.\n context.delegate = null;\n\n if (context.method === \"throw\") {\n // Note: [\"return\"] must be used for ES3 parsing compatibility.\n if (delegate.iterator[\"return\"]) {\n // If the delegate iterator has a return method, give it a\n // chance to clean up.\n context.method = \"return\";\n context.arg = undefined;\n maybeInvokeDelegate(delegate, context);\n\n if (context.method === \"throw\") {\n // If maybeInvokeDelegate(context) changed context.method from\n // \"return\" to \"throw\", let that override the TypeError below.\n return ContinueSentinel;\n }\n }\n\n context.method = \"throw\";\n context.arg = new TypeError(\n \"The iterator does not provide a 'throw' method\");\n }\n\n return ContinueSentinel;\n }\n\n var record = tryCatch(method, delegate.iterator, context.arg);\n\n if (record.type === \"throw\") {\n context.method = \"throw\";\n context.arg = record.arg;\n context.delegate = null;\n return ContinueSentinel;\n }\n\n var info = record.arg;\n\n if (! info) {\n context.method = \"throw\";\n context.arg = new TypeError(\"iterator result is not an object\");\n context.delegate = null;\n return ContinueSentinel;\n }\n\n if (info.done) {\n // Assign the result of the finished delegate to the temporary\n // variable specified by delegate.resultName (see delegateYield).\n context[delegate.resultName] = info.value;\n\n // Resume execution at the desired location (see delegateYield).\n context.next = delegate.nextLoc;\n\n // If context.method was \"throw\" but the delegate handled the\n // exception, let the outer generator proceed normally. If\n // context.method was \"next\", forget context.arg since it has been\n // \"consumed\" by the delegate iterator. If context.method was\n // \"return\", allow the original .return call to continue in the\n // outer generator.\n if (context.method !== \"return\") {\n context.method = \"next\";\n context.arg = undefined;\n }\n\n } else {\n // Re-yield the result returned by the delegate method.\n return info;\n }\n\n // The delegate iterator is finished, so forget it and continue with\n // the outer generator.\n context.delegate = null;\n return ContinueSentinel;\n }\n\n // Define Generator.prototype.{next,throw,return} in terms of the\n // unified ._invoke helper method.\n defineIteratorMethods(Gp);\n\n Gp[toStringTagSymbol] = \"Generator\";\n\n // A Generator should always return itself as the iterator object when the\n // @@iterator function is called on it. Some browsers' implementations of the\n // iterator prototype chain incorrectly implement this, causing the Generator\n // object to not be returned from this call. This ensures that doesn't happen.\n // See https://github.com/facebook/regenerator/issues/274 for more details.\n Gp[iteratorSymbol] = function() {\n return this;\n };\n\n Gp.toString = function() {\n return \"[object Generator]\";\n };\n\n function pushTryEntry(locs) {\n var entry = { tryLoc: locs[0] };\n\n if (1 in locs) {\n entry.catchLoc = locs[1];\n }\n\n if (2 in locs) {\n entry.finallyLoc = locs[2];\n entry.afterLoc = locs[3];\n }\n\n this.tryEntries.push(entry);\n }\n\n function resetTryEntry(entry) {\n var record = entry.completion || {};\n record.type = \"normal\";\n delete record.arg;\n entry.completion = record;\n }\n\n function Context(tryLocsList) {\n // The root entry object (effectively a try statement without a catch\n // or a finally block) gives us a place to store values thrown from\n // locations where there is no enclosing try statement.\n this.tryEntries = [{ tryLoc: \"root\" }];\n tryLocsList.forEach(pushTryEntry, this);\n this.reset(true);\n }\n\n exports.keys = function(object) {\n var keys = [];\n for (var key in object) {\n keys.push(key);\n }\n keys.reverse();\n\n // Rather than returning an object with a next method, we keep\n // things simple and return the next function itself.\n return function next() {\n while (keys.length) {\n var key = keys.pop();\n if (key in object) {\n next.value = key;\n next.done = false;\n return next;\n }\n }\n\n // To avoid creating an additional object, we just hang the .value\n // and .done properties off the next function object itself. This\n // also ensures that the minifier will not anonymize the function.\n next.done = true;\n return next;\n };\n };\n\n function values(iterable) {\n if (iterable) {\n var iteratorMethod = iterable[iteratorSymbol];\n if (iteratorMethod) {\n return iteratorMethod.call(iterable);\n }\n\n if (typeof iterable.next === \"function\") {\n return iterable;\n }\n\n if (!isNaN(iterable.length)) {\n var i = -1, next = function next() {\n while (++i < iterable.length) {\n if (hasOwn.call(iterable, i)) {\n next.value = iterable[i];\n next.done = false;\n return next;\n }\n }\n\n next.value = undefined;\n next.done = true;\n\n return next;\n };\n\n return next.next = next;\n }\n }\n\n // Return an iterator with no values.\n return { next: doneResult };\n }\n exports.values = values;\n\n function doneResult() {\n return { value: undefined, done: true };\n }\n\n Context.prototype = {\n constructor: Context,\n\n reset: function(skipTempReset) {\n this.prev = 0;\n this.next = 0;\n // Resetting context._sent for legacy support of Babel's\n // function.sent implementation.\n this.sent = this._sent = undefined;\n this.done = false;\n this.delegate = null;\n\n this.method = \"next\";\n this.arg = undefined;\n\n this.tryEntries.forEach(resetTryEntry);\n\n if (!skipTempReset) {\n for (var name in this) {\n // Not sure about the optimal order of these conditions:\n if (name.charAt(0) === \"t\" &&\n hasOwn.call(this, name) &&\n !isNaN(+name.slice(1))) {\n this[name] = undefined;\n }\n }\n }\n },\n\n stop: function() {\n this.done = true;\n\n var rootEntry = this.tryEntries[0];\n var rootRecord = rootEntry.completion;\n if (rootRecord.type === \"throw\") {\n throw rootRecord.arg;\n }\n\n return this.rval;\n },\n\n dispatchException: function(exception) {\n if (this.done) {\n throw exception;\n }\n\n var context = this;\n function handle(loc, caught) {\n record.type = \"throw\";\n record.arg = exception;\n context.next = loc;\n\n if (caught) {\n // If the dispatched exception was caught by a catch block,\n // then let that catch block handle the exception normally.\n context.method = \"next\";\n context.arg = undefined;\n }\n\n return !! caught;\n }\n\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n var record = entry.completion;\n\n if (entry.tryLoc === \"root\") {\n // Exception thrown outside of any try block that could handle\n // it, so set the completion value of the entire function to\n // throw the exception.\n return handle(\"end\");\n }\n\n if (entry.tryLoc <= this.prev) {\n var hasCatch = hasOwn.call(entry, \"catchLoc\");\n var hasFinally = hasOwn.call(entry, \"finallyLoc\");\n\n if (hasCatch && hasFinally) {\n if (this.prev < entry.catchLoc) {\n return handle(entry.catchLoc, true);\n } else if (this.prev < entry.finallyLoc) {\n return handle(entry.finallyLoc);\n }\n\n } else if (hasCatch) {\n if (this.prev < entry.catchLoc) {\n return handle(entry.catchLoc, true);\n }\n\n } else if (hasFinally) {\n if (this.prev < entry.finallyLoc) {\n return handle(entry.finallyLoc);\n }\n\n } else {\n throw new Error(\"try statement without catch or finally\");\n }\n }\n }\n },\n\n abrupt: function(type, arg) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.tryLoc <= this.prev &&\n hasOwn.call(entry, \"finallyLoc\") &&\n this.prev < entry.finallyLoc) {\n var finallyEntry = entry;\n break;\n }\n }\n\n if (finallyEntry &&\n (type === \"break\" ||\n type === \"continue\") &&\n finallyEntry.tryLoc <= arg &&\n arg <= finallyEntry.finallyLoc) {\n // Ignore the finally entry if control is not jumping to a\n // location outside the try/catch block.\n finallyEntry = null;\n }\n\n var record = finallyEntry ? finallyEntry.completion : {};\n record.type = type;\n record.arg = arg;\n\n if (finallyEntry) {\n this.method = \"next\";\n this.next = finallyEntry.finallyLoc;\n return ContinueSentinel;\n }\n\n return this.complete(record);\n },\n\n complete: function(record, afterLoc) {\n if (record.type === \"throw\") {\n throw record.arg;\n }\n\n if (record.type === \"break\" ||\n record.type === \"continue\") {\n this.next = record.arg;\n } else if (record.type === \"return\") {\n this.rval = this.arg = record.arg;\n this.method = \"return\";\n this.next = \"end\";\n } else if (record.type === \"normal\" && afterLoc) {\n this.next = afterLoc;\n }\n\n return ContinueSentinel;\n },\n\n finish: function(finallyLoc) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.finallyLoc === finallyLoc) {\n this.complete(entry.completion, entry.afterLoc);\n resetTryEntry(entry);\n return ContinueSentinel;\n }\n }\n },\n\n \"catch\": function(tryLoc) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.tryLoc === tryLoc) {\n var record = entry.completion;\n if (record.type === \"throw\") {\n var thrown = record.arg;\n resetTryEntry(entry);\n }\n return thrown;\n }\n }\n\n // The context.catch method must only be called with a location\n // argument that corresponds to a known catch block.\n throw new Error(\"illegal catch attempt\");\n },\n\n delegateYield: function(iterable, resultName, nextLoc) {\n this.delegate = {\n iterator: values(iterable),\n resultName: resultName,\n nextLoc: nextLoc\n };\n\n if (this.method === \"next\") {\n // Deliberately forget the last sent value so that we don't\n // accidentally pass it on to the delegate.\n this.arg = undefined;\n }\n\n return ContinueSentinel;\n }\n };\n\n // Regardless of whether this script is executing as a CommonJS module\n // or not, return the runtime object so that we can declare the variable\n // regeneratorRuntime in the outer scope, which allows this module to be\n // injected easily by `bin/regenerator --include-runtime script.js`.\n return exports;\n\n}(\n // If this script is executing as a CommonJS module, use module.exports\n // as the regeneratorRuntime namespace. Otherwise create a new empty\n // object. Either way, the resulting object will be used to initialize\n // the regeneratorRuntime variable at the top of this file.\n typeof module === \"object\" ? module.exports : {}\n));\n\ntry {\n regeneratorRuntime = runtime;\n} catch (accidentalStrictMode) {\n // This module should not be running in strict mode, so the above\n // assignment should always work unless something is misconfigured. Just\n // in case runtime.js accidentally runs in strict mode, we can escape\n // strict mode using a global Function call. This could conceivably fail\n // if a Content Security Policy forbids using Function, but in that case\n // the proper solution is to fix the accidental strict mode problem. If\n // you've misconfigured your bundler to force strict mode and applied a\n // CSP to forbid Function, and you're not willing to fix either of those\n // problems, please detail your unique predicament in a GitHub issue.\n Function(\"r\", \"regeneratorRuntime = r\")(runtime);\n}\n","module.exports = function(module) {\n\tif (!module.webpackPolyfill) {\n\t\tmodule.deprecate = function() {};\n\t\tmodule.paths = [];\n\t\t// module.parent = undefined by default\n\t\tif (!module.children) module.children = [];\n\t\tObject.defineProperty(module, \"loaded\", {\n\t\t\tenumerable: true,\n\t\t\tget: function() {\n\t\t\t\treturn module.l;\n\t\t\t}\n\t\t});\n\t\tObject.defineProperty(module, \"id\", {\n\t\t\tenumerable: true,\n\t\t\tget: function() {\n\t\t\t\treturn module.i;\n\t\t\t}\n\t\t});\n\t\tmodule.webpackPolyfill = 1;\n\t}\n\treturn module;\n};\n"],"sourceRoot":""}
1
+ {"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./js/scripts_es6.js","webpack:///./node_modules/@babel/runtime/regenerator/index.js","webpack:///./node_modules/regenerator-runtime/runtime.js","webpack:///(webpack)/buildin/module.js"],"names":["cf7signature_resized","wpcf7cf_timeout","wpcf7cf_show_animation","wpcf7cf_hide_animation","wpcf7cf_show_step_animation","wpcf7cf_hide_step_animation","wpcf7cf_change_events","wpcf7cf_forms","String","prototype","endsWith","search","this_len","undefined","length","substring","Wpcf7cfForm","$form","options_element","find","eq","val","form","form_options","JSON","parse","$input_hidden_group_fields","$input_hidden_groups","$input_visible_groups","$input_repeaters","$input_steps","unit_tag","closest","attr","conditions","i","condition","and_rules","if_field","if_value","operator","initial_conditions","settings","$groups","jQuery","repeaters","multistep","fields","animation_intime","parseInt","animation_outtime","animation","updateGroups","updateEventListeners","displayFields","on","e","data","setTimeout","resetRepeaters","moveToStep","each","push","Wpcf7cfRepeater","stringify","map","item","params","$repeater","id","$multistep","Wpcf7cfMultistep","forEach","repeater","updateSubs","initial_subs","window","wpcf7cf","get_simplified_dom_model","wpcf7cf_conditions","wpcf7cf_settings","signatures","constructor","Array","canvas","width","$sig_canvas","$sig_wrap","height","addClass","show_group","should_group_be_shown","then_field","removeClass","index","$group","is","finish","css","hasClass","prop","show","trigger","animate","$inputs","not","$this","defaultValue","defaultChecked","change","hide","updateHiddenFields","updateSummaryFields","$summary","fd","FormData","formdata","serializeArray","key","input","append","name","value","ajax","url","wpcf7cf_global_settings","ajaxurl","type","processData","contentType","dataType","success","json","html","summaryHtml","hidden_fields","hidden_groups","visible_groups","get_nested_conditions","off","clearTimeout","text","$","num_subs","orig_id","min","max","$repeater_sub","children","$repeater_controls","$repeater_sub_clone","clone","addBack","prev_suffix","new_suffix","prev_name","orig_name","new_name","replace","prev_data_id","orig_data_id","new_data_id","prev_id","new_id","prev_for","orig_for","new_for","repeater_sub_html","outerHTML","$repeater_count_field","$button_add","$button_remove","click","remove","subs_to_show","subs_to_add","removeSubs","addSubs","showButtonRemove","showButtonAdd","html_str","sub_suffix","RegExp","$html","insertBefore","updateMultistepState","cf7mdInit","slice","duration","done","$steps","$btn_next","$btn_prev","$dots","currentStep","numSteps","validateStep","result","stopImmediatePropagation","document","ajaxComplete","xhr","hasOwnProperty","responseJSON","status","into","step_index","Promise","resolve","_cf7mls_db_form_data_id","checkError","invalid_fields","el","controlWrap","reason","console","log","parent","message","fail","always","previousStep","scrollIntoView","getFieldsInStep","simpleDom","inStep","filter","step","initForm","$current_form","simplified_dom","groups","sub_conditions","g","relevant_conditions","original_name","and_rule","suffix","concat","currentNode","ni","createNodeIterator","NodeFilter","SHOW_ELEMENT","nextNode","classList","contains","dataset","className","hasAttribute","getAttribute","original_name_length","stepsData","fieldsInCurrentStep","$submit_button","$ajax_loader","detach","appendTo","and_rule_i","condition_ok","condition_and_rule","$field","if_val","if_val_as_number","isFinite","parseFloat","regex_patt","isValidRegex","$option","option_val","test","field_val","field_val_as_number","field_is_checked","all_values","checked_values","checked_value_index","inArray","value_index","ind","checked_val","checked_val_as_number","ready","f","old_wpcf7ExclusiveCheckbox","fn","wpcf7ExclusiveCheckbox","module","exports","require","runtime","Op","Object","hasOwn","$Symbol","Symbol","iteratorSymbol","iterator","asyncIteratorSymbol","asyncIterator","toStringTagSymbol","toStringTag","wrap","innerFn","outerFn","self","tryLocsList","protoGenerator","Generator","generator","create","context","Context","_invoke","makeInvokeMethod","tryCatch","obj","arg","call","err","GenStateSuspendedStart","GenStateSuspendedYield","GenStateExecuting","GenStateCompleted","ContinueSentinel","GeneratorFunction","GeneratorFunctionPrototype","IteratorPrototype","getProto","getPrototypeOf","NativeIteratorPrototype","values","Gp","displayName","defineIteratorMethods","method","isGeneratorFunction","genFun","ctor","mark","setPrototypeOf","__proto__","awrap","__await","AsyncIterator","invoke","reject","record","then","unwrapped","error","previousPromise","enqueue","callInvokeWithMethodAndArg","async","iter","next","state","Error","doneResult","delegate","delegateResult","maybeInvokeDelegate","sent","_sent","dispatchException","abrupt","TypeError","info","resultName","nextLoc","toString","pushTryEntry","locs","entry","tryLoc","catchLoc","finallyLoc","afterLoc","tryEntries","resetTryEntry","completion","reset","keys","object","reverse","pop","iterable","iteratorMethod","isNaN","skipTempReset","prev","charAt","stop","rootEntry","rootRecord","rval","exception","handle","loc","caught","hasCatch","hasFinally","finallyEntry","complete","thrown","delegateYield","regeneratorRuntime","accidentalStrictMode","Function","webpackPolyfill","deprecate","paths","defineProperty","enumerable","get","l"],"mappings":"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","file":"scripts.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = \"./js/scripts_es6.js\");\n","\"use strict\";\n\nvar cf7signature_resized = 0; // for compatibility with contact-form-7-signature-addon\n\nvar wpcf7cf_timeout;\n\nvar wpcf7cf_show_animation = { \"height\": \"show\", \"marginTop\": \"show\", \"marginBottom\": \"show\", \"paddingTop\": \"show\", \"paddingBottom\": \"show\" };\nvar wpcf7cf_hide_animation = { \"height\": \"hide\", \"marginTop\": \"hide\", \"marginBottom\": \"hide\", \"paddingTop\": \"hide\", \"paddingBottom\": \"hide\" };\n\nvar wpcf7cf_show_step_animation = { \"opacity\": \"show\" };\nvar wpcf7cf_hide_step_animation = { \"opacity\": \"hide\" };\n\nvar wpcf7cf_change_events = 'input.wpcf7cf paste.wpcf7cf change.wpcf7cf click.wpcf7cf propertychange.wpcf7cf';\n\nvar wpcf7cf_forms = [];\n\n// endswith polyfill\nif (!String.prototype.endsWith) {\n\tString.prototype.endsWith = function(search, this_len) {\n\t\tif (this_len === undefined || this_len > this.length) {\n\t\t\tthis_len = this.length;\n\t\t}\n\t\treturn this.substring(this_len - search.length, this_len) === search;\n\t};\n}\n\nvar Wpcf7cfForm = function($form) {\n\n var options_element = $form.find('input[name=\"_wpcf7cf_options\"]').eq(0);\n if (!options_element.length || !options_element.val()) {\n // doesn't look like a CF7 form created with conditional fields plugin enabled.\n return false;\n }\n\n var form = this;\n\n var form_options = JSON.parse(options_element.val());\n\n form.$form = $form;\n form.$input_hidden_group_fields = $form.find('[name=\"_wpcf7cf_hidden_group_fields\"]');\n form.$input_hidden_groups = $form.find('[name=\"_wpcf7cf_hidden_groups\"]');\n form.$input_visible_groups = $form.find('[name=\"_wpcf7cf_visible_groups\"]');\n form.$input_repeaters = $form.find('[name=\"_wpcf7cf_repeaters\"]');\n form.$input_steps = $form.find('[name=\"_wpcf7cf_steps\"]');\n\n form.unit_tag = $form.closest('.wpcf7').attr('id');\n form.conditions = form_options['conditions'];\n\n // compatibility with conditional forms created with older versions of the plugin ( < 1.4 )\n for (var i=0; i < form.conditions.length; i++) {\n var condition = form.conditions[i];\n if (!('and_rules' in condition)) {\n condition.and_rules = [{'if_field':condition.if_field,'if_value':condition.if_value,'operator':condition.operator}];\n }\n }\n\n form.initial_conditions = form.conditions;\n form.settings = form_options['settings'];\n\n form.$groups = jQuery(); // empty jQuery set\n form.repeaters = [];\n form.multistep = null;\n form.fields = [];\n\n form.settings.animation_intime = parseInt(form.settings.animation_intime);\n form.settings.animation_outtime = parseInt(form.settings.animation_outtime);\n\n if (form.settings.animation === 'no') {\n form.settings.animation_intime = 0;\n form.settings.animation_outtime = 0;\n }\n\n form.updateGroups();\n form.updateEventListeners();\n form.displayFields();\n\n // bring form in initial state if the reset event is fired on it.\n form.$form.on('reset.wpcf7cf', form, function(e) {\n var form = e.data;\n setTimeout(function(){\n form.displayFields();\n form.resetRepeaters();\n if (form.multistep != null) {\n form.multistep.moveToStep(1); \n }\n },200);\n });\n\n // PRO ONLY\n\n jQuery('.wpcf7cf_repeater:not(.wpcf7cf_repeater .wpcf7cf_repeater)', $form).each(function(){\n form.repeaters.push(new Wpcf7cfRepeater(jQuery(this),form));\n });\n\n form.$input_repeaters.val(JSON.stringify(form.repeaters.map((item)=>item.params.$repeater.id)));\n\n var $multistep = jQuery('.wpcf7cf_multistep', $form);\n\n if ($multistep.length) {\n form.multistep = new Wpcf7cfMultistep($multistep, form);\n // window.wpcf7cf.updateMultistepState(form.multistep);\n }\n\n // END PRO ONLY\n\n}\n\n/**\n * reset initial number of subs for each repeater.\n * (does not clear values)\n */\nWpcf7cfForm.prototype.resetRepeaters = function() {\n var form = this;\n form.repeaters.forEach(repeater => {\n repeater.updateSubs( repeater.params.$repeater.initial_subs );\n });\n}\n\nWpcf7cfForm.prototype.displayFields = function() {\n\n var form = this;\n\n window.wpcf7cf.get_simplified_dom_model(form.$form);\n\n var unit_tag = this.unit_tag;\n var wpcf7cf_conditions = this.conditions;\n var wpcf7cf_settings = this.settings;\n\n //for compatibility with contact-form-7-signature-addon\n if (cf7signature_resized === 0 && typeof signatures !== 'undefined' && signatures.constructor === Array && signatures.length > 0 ) {\n for (var i = 0; i < signatures.length; i++) {\n if (signatures[i].canvas.width === 0) {\n\n var $sig_canvas = jQuery(\".wpcf7-form-control-signature-body>canvas\");\n var $sig_wrap = jQuery(\".wpcf7-form-control-signature-wrap\");\n $sig_canvas.eq(i).attr('width', $sig_wrap.width());\n $sig_canvas.eq(i).attr('height', $sig_wrap.height());\n\n cf7signature_resized = 1;\n }\n }\n }\n\n form.$groups.addClass('wpcf7cf-hidden');\n\n for (var i=0; i < wpcf7cf_conditions.length; i++) {\n\n var condition = wpcf7cf_conditions[i];\n\n var show_group = window.wpcf7cf.should_group_be_shown(condition, form.$form);\n\n if (show_group) {\n jQuery('[data-id='+condition.then_field+']',form.$form).eq(0).removeClass('wpcf7cf-hidden');\n }\n }\n\n var animation_intime = wpcf7cf_settings.animation_intime;\n var animation_outtime = wpcf7cf_settings.animation_outtime;\n\n form.$groups.each(function (index) {\n var $group = jQuery(this);\n if ($group.is(':animated')) $group.finish(); // stop any current animations on the group\n if ($group.css('display') === 'none' && !$group.hasClass('wpcf7cf-hidden')) {\n if ($group.prop('tagName') === 'SPAN') {\n $group.show().trigger('wpcf7cf_show_group');\n } else {\n $group.animate(wpcf7cf_show_animation, animation_intime).trigger('wpcf7cf_show_group'); // show\n }\n } else if ($group.css('display') !== 'none' && $group.hasClass('wpcf7cf-hidden')) {\n\n if ($group.attr('data-clear_on_hide') !== undefined) {\n var $inputs = jQuery(':input', $group).not(':button, :submit, :reset, :hidden');\n\n $inputs.each(function(){\n var $this = jQuery(this);\n $this.val(this.defaultValue);\n $this.prop('checked', this.defaultChecked);\n });\n\n $inputs.change();\n //display_fields();\n }\n\n if ($group.prop('tagName') === 'SPAN') {\n $group.hide().trigger('wpcf7cf_hide_group');\n } else {\n $group.animate(wpcf7cf_hide_animation, animation_outtime).trigger('wpcf7cf_hide_group'); // hide\n }\n\n }\n });\n\n form.updateHiddenFields();\n form.updateSummaryFields();\n};\n\nWpcf7cfForm.prototype.updateSummaryFields = function() {\n var $summary = jQuery('.wpcf7cf-summary', this.$form);\n\n if ($summary.length == 0 || !$summary.is(':visible')) return;\n\n var fd = new FormData();\n\n var formdata = this.$form.serializeArray();\n jQuery.each(formdata,function(key, input){\n fd.append(input.name, input.value);\n });\n\n jQuery.ajax({\n url: wpcf7cf_global_settings.ajaxurl + '?action=wpcf7cf_get_summary',\n type: 'POST',\n data: fd,\n processData: false,\n contentType: false,\n dataType: 'json',\n success: function(json) {\n $summary.html(json.summaryHtml);\n }\n });\n};\n\nWpcf7cfForm.prototype.updateHiddenFields = function() {\n\n var form = this;\n\n var hidden_fields = [];\n var hidden_groups = [];\n var visible_groups = [];\n\n form.$groups.each(function () {\n var $this = jQuery(this);\n if ($this.hasClass('wpcf7cf-hidden')) {\n hidden_groups.push($this.data('id'));\n $this.find('input,select,textarea').each(function () {\n hidden_fields.push(jQuery(this).attr('name'));\n });\n } else {\n visible_groups.push($this.data('id'));\n }\n });\n\n form.hidden_fields = hidden_fields;\n form.hidden_groups = hidden_groups;\n form.visible_groups = visible_groups;\n\n form.$input_hidden_group_fields.val(JSON.stringify(hidden_fields));\n form.$input_hidden_groups.val(JSON.stringify(hidden_groups));\n form.$input_visible_groups.val(JSON.stringify(visible_groups));\n\n return true;\n};\nWpcf7cfForm.prototype.updateGroups = function() {\n var form = this;\n form.$groups = form.$form.find('[data-class=\"wpcf7cf_group\"]');\n\n form.conditions = window.wpcf7cf.get_nested_conditions(form.initial_conditions, form.$form);\n\n};\nWpcf7cfForm.prototype.updateEventListeners = function() {\n\n var form = this;\n\n // monitor input changes, and call display_fields() if something has changed\n jQuery('input, select, textarea, button',form.$form).not('.wpcf7cf_add, .wpcf7cf_remove').off(wpcf7cf_change_events).on(wpcf7cf_change_events,form, function(e) {\n var form = e.data;\n clearTimeout(wpcf7cf_timeout);\n wpcf7cf_timeout = setTimeout(function() {\n form.displayFields();\n }, 100);\n });\n\n // PRO ONLY\n jQuery('.wpcf7cf-togglebutton', form.$form).off('click.toggle_wpcf7cf').on('click.toggle_wpcf7cf',function() {\n var $this = jQuery(this);\n if ($this.text() === $this.data('val-1')) {\n $this.text($this.data('val-2'));\n $this.val($this.data('val-2'));\n } else {\n $this.text($this.data('val-1'));\n $this.val($this.data('val-1'));\n }\n });\n // END PRO ONLY\n};\n\n// PRO ONLY\nfunction Wpcf7cfRepeater($repeater, form) {\n var $ = jQuery;\n\n var repeater = this;\n\n var wpcf7cf_settings = form.settings;\n\n repeater.form = form;\n\n $repeater.num_subs = 0;\n $repeater.id = $repeater.data('id');\n $repeater.orig_id = $repeater.data('orig_data_id');\n $repeater.min = typeof( $repeater.data('min')) !== 'undefined' ? parseInt($repeater.data('min')) : 1;\n $repeater.max = typeof( $repeater.data('max')) !== 'undefined' ? parseInt($repeater.data('max')) : 200;\n $repeater.initial_subs = typeof( $repeater.data('initial')) !== 'undefined' ? parseInt($repeater.data('initial')) : $repeater.min;\n if ($repeater.initial_subs > $repeater.max) $repeater.initial_subs = $repeater.max;\n var $repeater_sub = $repeater.children('.wpcf7cf_repeater_sub').eq(0);\n var $repeater_controls = $repeater.children('.wpcf7cf_repeater_controls').eq(0);\n\n var $repeater_sub_clone = $repeater_sub.clone();\n\n $repeater_sub_clone.find('.wpcf7cf_repeater_sub').addBack('.wpcf7cf_repeater_sub').each(function() {\n var $this = jQuery(this);\n var prev_suffix = $this.attr('data-repeater_sub_suffix');\n var new_suffix = prev_suffix+'__{{repeater_sub_suffix}}';\n $this.attr('data-repeater_sub_suffix', new_suffix);\n });\n\n $repeater_sub_clone.find('[name]').each(function() {\n var $this = jQuery(this);\n var prev_name = $this.attr('name');\n var orig_name = $this.attr('data-orig_name') != null ? $this.attr('data-orig_name') : prev_name;\n var new_name = prev_name+'__{{repeater_sub_suffix}}';\n\n if(prev_name.endsWith('_count')) {\n new_name = prev_name.replace('_count','__{{repeater_sub_suffix}}_count');\n }\n\n $this.attr('name', new_name);\n $this.attr('data-orig_name', orig_name);\n $this.closest('.wpcf7-form-control-wrap').addClass(new_name);\n });\n\n $repeater_sub_clone.find('.wpcf7cf_repeater,[data-class=\"wpcf7cf_group\"]').each(function() {\n var $this = jQuery(this);\n var prev_data_id = $this.attr('data-id');\n var orig_data_id = $this.attr('data-orig_data_id') != null ? $this.attr('data-orig_data_id') : prev_data_id;\n var new_data_id = prev_data_id+'__{{repeater_sub_suffix}}';\n\n if(prev_data_id.endsWith('_count')) {\n new_data_id = prev_data_id.replace('_count','__{{repeater_sub_suffix}}_count');\n }\n\n $this.attr('data-id', new_data_id);\n $this.attr('data-orig_data_id', orig_data_id);\n $this.closest('.wpcf7-form-control-wrap').addClass(new_data_id);\n });\n\n $repeater_sub_clone.find('[id]').each(function() {\n var $this = jQuery(this);\n var prev_id = $this.attr('id');\n var orig_id = $this.attr('data-orig_id') != null ? $this.attr('data-orig_id') : prev_id;\n var new_id = prev_id+'__{{repeater_sub_suffix}}';\n\n $this.attr('id', new_id);\n $this.attr('data-orig_id', orig_id);\n $this.closest('.wpcf7-form-control-wrap').addClass(new_id);\n });\n\n $repeater_sub_clone.find('[for]').each(function() {\n var $this = jQuery(this);\n var prev_for = $this.attr('for');\n var orig_for = $this.attr('data-orig_for') != null ? $this.attr('data-orig_for') : prev_for;\n var new_for = prev_for+'__{{repeater_sub_suffix}}';\n\n $this.attr('for', new_for);\n $this.attr('data-orig_for', orig_for);\n $this.closest('.wpcf7-form-control-wrap').addClass(new_for);\n });\n\n var repeater_sub_html = $repeater_sub_clone[0].outerHTML;\n\n var $repeater_count_field = $repeater.find('[name='+$repeater.id+'_count]').eq(0);\n var $button_add = $repeater_controls.find('.wpcf7cf_add').eq(0);\n var $button_remove = $repeater_controls.find('.wpcf7cf_remove').eq(0);\n\n var params = {\n $repeater: $repeater,\n $repeater_count_field: $repeater_count_field,\n repeater_sub_html: repeater_sub_html,\n $repeater_controls: $repeater_controls,\n $button_add: $button_add,\n $button_remove: $button_remove,\n wpcf7cf_settings: wpcf7cf_settings\n };\n \n this.params = params;\n\n $button_add.click( repeater, function(e) {\n var repeater = e.data;\n repeater.updateSubs(params.$repeater.num_subs+1);\n });\n\n $button_remove.click( repeater,function(e) {\n var repeater = e.data;\n repeater.updateSubs(params.$repeater.num_subs-1);\n });\n\n jQuery('> .wpcf7cf_repeater_sub',params.$repeater).eq(0).remove(); // remove the first sub, it's just a template.\n\n repeater.updateSubs($repeater.initial_subs); \n\n}\n\n\n\nWpcf7cfRepeater.prototype.updateSubs = function(subs_to_show) {\n var repeater = this;\n var params = repeater.params;\n var subs_to_add = subs_to_show - params.$repeater.num_subs;\n\n if (subs_to_add < 0) {\n repeater.removeSubs(-subs_to_add);\n } else if (subs_to_add > 0) {\n repeater.addSubs(subs_to_add);\n }\n\n var showButtonRemove = false;\n var showButtonAdd = false;\n\n if (params.$repeater.num_subs < params.$repeater.max) {\n showButtonAdd = true;\n }\n if (params.$repeater.num_subs > params.$repeater.min) {\n showButtonRemove = true;\n }\n\n if (showButtonAdd) {\n params.$button_add.show();\n } else {\n params.$button_add.hide();\n\n }\n\n if (showButtonRemove) {\n params.$button_remove.show();\n } else {\n params.$button_remove.hide();\n }\n\n params.$repeater_count_field.val(subs_to_show);\n\n};\nWpcf7cfRepeater.prototype.addSubs = function(subs_to_add) {\n var $ = jQuery;\n var params = this.params;\n var repeater = this;\n var form = repeater.form;\n\n\n var $repeater = params.$repeater; \n var $repeater_controls = params.$repeater_controls;\n\n //jQuery(params.repeater_sub_html.replace(/name=\"(.*?)\"/g,'name=\"wpcf7cf_repeater['+$repeater.id+']['+$repeater.num_subs+'][$1]\" data-original-name=\"$1\"')).hide().insertBefore($repeater_controls).animate(wpcf7cf_show_animation, params.wpcf7cf_settings.animation_intime);\n\n var html_str = '';\n\n for(var i=1; i<=subs_to_add; i++) {\n var sub_suffix = $repeater.num_subs+i;\n html_str += params.repeater_sub_html.replace(/\\{\\{repeater_sub_suffix\\}\\}/g,sub_suffix)\n .replace(new RegExp('\\{\\{'+$repeater.orig_id+'_index\\}\\}','g'),sub_suffix);\n }\n\n\n var $html = jQuery(html_str);\n\n // Add the newly created fields to the form\n $html.hide().insertBefore($repeater_controls).animate(wpcf7cf_show_animation, params.wpcf7cf_settings.animation_intime).trigger('wpcf7cf_repeater_added');\n\n jQuery('.wpcf7cf_repeater', $html).each(function(){\n form.repeaters.push(new Wpcf7cfRepeater(jQuery(this),form));\n });\n form.$input_repeaters.val(JSON.stringify(form.repeaters.map((item)=>item.params.$repeater.id)));\n\n $repeater.num_subs+= subs_to_add;\n\n window.wpcf7cf.updateMultistepState(form.multistep);\n form.updateGroups();\n form.updateEventListeners();\n form.displayFields();\n\n // Exclusive Checkbox\n $html.on( 'click', '.wpcf7-exclusive-checkbox input:checkbox', function() {\n var name = $( this ).attr( 'name' );\n $html.find( 'input:checkbox[name=\"' + name + '\"]' ).not( this ).prop( 'checked', false );\n } );\n\n //basic compatibility with material-design-for-contact-form-7\n if (typeof window.cf7mdInit === \"function\") {\n window.cf7mdInit();\n }\n\n return false;\n};\nWpcf7cfRepeater.prototype.removeSubs = function(num_subs) {\n var $ = jQuery;\n var params = this.params;\n var form = this.form;\n\n params.$repeater.num_subs-= num_subs;\n\n jQuery('> .wpcf7cf_repeater_sub',params.$repeater).slice(-num_subs).animate(wpcf7cf_hide_animation, {duration:params.wpcf7cf_settings.animation_intime, done:function() {\n var $this = jQuery(this);\n //remove the actual fields from the form\n $this.remove();\n params.$repeater.trigger('wpcf7cf_repeater_removed');\n window.wpcf7cf.updateMultistepState(form.multistep);\n form.updateGroups();\n form.updateEventListeners();\n form.displayFields();\n }});\n\n return false;\n};\n\nfunction Wpcf7cfMultistep($multistep, form) {\n var multistep = this;\n multistep.$multistep = $multistep;\n multistep.form = form;\n multistep.$steps = $multistep.find('.wpcf7cf_step');\n multistep.$btn_next = $multistep.find('.wpcf7cf_next');\n multistep.$btn_prev = $multistep.find('.wpcf7cf_prev');\n multistep.$dots = $multistep.find('.wpcf7cf_steps-dots');\n multistep.currentStep = 0;\n multistep.numSteps = multistep.$steps.length;\n\n\n multistep.$dots.html('');\n for (var i = 1; i <= multistep.numSteps; i++) {\n multistep.$dots.append(`\n <div class=\"dot\" data-step=\"${i}\">\n <div class=\"step-index\">${i}</div>\n <div class=\"step-title\">${multistep.$steps.eq(i-1).data('title')}</div>\n </div>\n `);\n }\n\n multistep.$btn_next.on('click.wpcf7cf_step', async function() {\n \n var result = await multistep.validateStep(multistep.currentStep);\n if (result === 'success') {\n multistep.moveToStep(multistep.currentStep+1); \n }\n\n });\n\n // If form is submitted (by pressing retrun for example), and if we are not on the last step,\n // then trigger click event on the $next button instead.\n multistep.form.$form.on('submit.wpcf7cf_step', function(e) {\n\n if (multistep.currentStep !== multistep.numSteps) {\n multistep.$btn_next.trigger('click.wpcf7cf_step');\n\n e.stopImmediatePropagation();\n return false;\n }\n });\n\n multistep.$btn_prev.click(function() {\n multistep.moveToStep(multistep.currentStep-1);\n });\n\n multistep.moveToStep(1);\n}\n\njQuery(document).ajaxComplete(function(e, xhr, settings){\n if (\n xhr.hasOwnProperty('responseJSON') &&\n xhr.responseJSON != null &&\n xhr.responseJSON.hasOwnProperty('status') &&\n xhr.responseJSON.hasOwnProperty('into') &&\n xhr.responseJSON.status === \"mail_success\"\n ) {\n jQuery( xhr.responseJSON.into ).trigger('reset.wpcf7cf');\n }\n});\n\nWpcf7cfMultistep.prototype.validateStep = function(step_index) {\n\n var multistep = this;\n var $multistep = multistep.$multistep;\n var $form = multistep.form.$form;\n\n $form.find('.wpcf7-response-output').addClass('wpcf7-display-none');\n\n return new Promise(resolve => {\n\n var fd = new FormData();\n\n // TEST IF FILES UPLOADS WORK? THEN REMOVE THIS\n // jQuery.each($form.find('[data-id=\"step'+step_index+'\"] input[type=\"file\"]'), function(index, el) {\n // fd.append(jQuery(el).attr('name'), jQuery(el)[0].files[0]);\n // });\n\n var formdata = $form.serializeArray();\n jQuery.each(formdata,function(key, input){\n fd.append(input.name, input.value);\n });\n\n jQuery.ajax({\n url: wpcf7cf_global_settings.ajaxurl + '?action=wpcf7cf_validate_step',\n type: 'POST',\n data: fd,\n processData: false,\n contentType: false,\n dataType: 'json',\n }).done(function(json) {\n\n /*\n * Insert _form_data_id if 'json variable' has\n */\n if (typeof json._cf7mls_db_form_data_id != 'undefined') {\n if (!form.find('input[name=\"_cf7mls_db_form_data_id\"]').length) {\n form.append('<input type=\"hidden\" name=\"_cf7mls_db_form_data_id\" value=\"'+json._cf7mls_db_form_data_id+'\" />');\n }\n }\n\n //reset error messages\n $multistep.find('.wpcf7-form-control-wrap').removeClass('cf7mls-invalid');\n $multistep.find('.wpcf7-form-control-wrap .wpcf7-not-valid-tip').remove();\n $multistep.find('.wpcf7-response-output').remove();\n $multistep.find('.wpcf7-response-output.wpcf7-validation-errors').removeClass('wpcf7-validation-errors');\n\n if (!json.success) {\n var checkError = 0;\n\n jQuery.each(json.invalid_fields, function(index, el) {\n if ($multistep.find('input[name=\"'+index+'\"]').length ||\n $multistep.find('input[name=\"'+index+'[]\"]').length ||\n $multistep.find('select[name=\"'+index+'\"]').length ||\n $multistep.find('select[name=\"'+index+'[]\"]').length ||\n $multistep.find('textarea[name=\"'+index+'\"]').length ||\n $multistep.find('textarea[name=\"'+index+'[]\"]').length\n ) {\n checkError = checkError + 1;\n\n var controlWrap = jQuery('.wpcf7-form-control-wrap.' + index, $form);\n controlWrap.addClass('cf7mls-invalid');\n controlWrap.find('span.wpcf7-not-valid-tip').remove();\n controlWrap.append('<span role=\"alert\" class=\"wpcf7-not-valid-tip\">' + el.reason + '</span>');\n\n //return false;\n }\n });\n\n resolve('failed');\n //$multistep.append('<div class=\"wpcf7-response-output wpcf7-display-none wpcf7-validation-errors\" style=\"display: block;\" role=\"alert\">' + json.message + '</div>');\n\n console.log($multistep.parent().find('.wpcf7-response-output'));\n $multistep.parent().find('.wpcf7-response-output').removeClass('wpcf7-display-none').html(json.message);\n\n } else if (json.success) {\n resolve('success');\n return false;\n }\n\n }).fail(function() {\n resolve('error');\n }).always(function() {\n // do nothing\n });\n });\n\n};\nWpcf7cfMultistep.prototype.moveToStep = function(step_index) {\n var multistep = this;\n var previousStep = multistep.currentStep;\n\n multistep.currentStep = step_index > multistep.numSteps ? multistep.numSteps\n : step_index < 1 ? 1\n : step_index;\n\n // ANIMATION DISABLED FOR NOW cause it's ugly\n // multistep.$steps.animate(wpcf7cf_hide_step_animation, multistep.form.settings.animation_outtime);\n // multistep.$steps.eq(multistep.currentStep-1).animate(wpcf7cf_show_step_animation, multistep.form.settings.animation_intime);\n\n multistep.$multistep.attr('data-current_step', multistep.currentStep);\n multistep.$steps.hide();\n multistep.$steps\n .eq(multistep.currentStep-1)\n .show()\n .trigger('wpcf7cf_change_step', [previousStep, multistep.currentStep]);\n\n multistep.form.$form[0].scrollIntoView();\n\n multistep.form.updateSummaryFields();\n\n window.wpcf7cf.updateMultistepState(multistep);\n};\n\nWpcf7cfMultistep.prototype.getFieldsInStep = function(step_index) {\n var simpleDom = window.wpcf7cf.get_simplified_dom_model(this.form.$form);\n var inStep = false;\n return simpleDom.filter(function(item, i) {\n if(item.type == 'step') {\n inStep = item.step == step_index+'';\n }\n return inStep && item.type == 'input';\n }).map(function(item) {\n return item.name;\n });\n};\n\n// END PRO ONLY\n\nwindow.wpcf7cf = {\n\n // keep this for backwards compatibility\n initForm : function($form) {\n wpcf7cf_forms.push(new Wpcf7cfForm($form));\n },\n\n get_nested_conditions : function(conditions, $current_form) {\n //loop trough conditions. Then loop trough the dom, and each repeater we pass we should update all sub_values we encounter with __index\n var simplified_dom = window.wpcf7cf.get_simplified_dom_model($current_form);\n var groups = simplified_dom.filter(function(item, i) {\n return item.type==='group';\n });\n\n var sub_conditions = [];\n\n for(var i = 0; i < groups.length; i++) {\n var g = groups[i];\n var relevant_conditions = conditions.filter(function(condition, i) {\n return condition.then_field === g.original_name;\n });\n \n var relevant_conditions = relevant_conditions.map(function(item,i) {\n return {\n then_field : g.name,\n and_rules : item.and_rules.map(function(and_rule, i) {\n return {\n if_field : and_rule.if_field+g.suffix,\n if_value : and_rule.if_value,\n operator : and_rule.operator\n };\n })\n }\n });\n\n sub_conditions = sub_conditions.concat(relevant_conditions);\n }\n return conditions.concat(sub_conditions);\n },\n\n get_simplified_dom_model : function($current_form) {\n // if the dom is something like:\n // <form>\n // <repeater ra>\n // <group ga__1>\n // <repeater rb__1>\n // <input txta__1__1 />\n // <input txta__1__2 />\n // </repeater>\n // <group gb__1>\n // <input txtb__1 />\n // </group>\n // </group>\n // <group ga__2>\n // <repeater rb__2>\n // <input txta__2__1 />\n // </repeater>\n // <group gb__2>\n // <input txtb__2 />\n // </group>\n // </group>\n // </repeater>\n // </form>\n // \n // return something like:\n // [{type:repeater, name:'ra', suffix: '__1'}, {type: group, name:'ga', suffix: '__1'}, ...]\n\n var currentNode;\n var ni = document.createNodeIterator($current_form[0], NodeFilter.SHOW_ELEMENT, null, false); //, NodeFilter.SHOW_ELEMENT, function(){ return NodeFilter.FILTER_ACCEPT; }\n\n var simplified_dom = [];\n\n while(currentNode = ni.nextNode()) {\n if (currentNode.classList.contains('wpcf7cf_repeater')) {\n simplified_dom.push({type:'repeater', name:currentNode.dataset.id, original_name:currentNode.dataset.orig_data_id})\n } else if (currentNode.dataset.class == 'wpcf7cf_group') {\n simplified_dom.push({type:'group', name:currentNode.dataset.id, original_name:currentNode.dataset.orig_data_id})\n } else if (currentNode.className == 'wpcf7cf_step') {\n simplified_dom.push({type:'step', name:currentNode.dataset.id, original_name:currentNode.dataset.id, step: currentNode.dataset.id.substring(5)})\n } else if (currentNode.hasAttribute('name')) {\n simplified_dom.push({type:'input', name:currentNode.getAttribute('name'), original_name:currentNode.getAttribute('data-orig_name')})\n }\n }\n\n simplified_dom = simplified_dom.map(function(item, i){\n var original_name_length = item.original_name == null ? item.name.length : item.original_name.length;\n item.suffix = item.name.substring(original_name_length);\n return item;\n });\n\n //console.table(simplified_dom);\n return simplified_dom;\n\n },\n\n updateMultistepState: function (multistep) {\n if (multistep == null) return;\n\n // update hidden input field\n\n var stepsData = {\n currentStep : multistep.currentStep,\n numSteps : multistep.numSteps,\n fieldsInCurrentStep : multistep.getFieldsInStep(multistep.currentStep)\n };\n multistep.form.$input_steps.val(JSON.stringify(stepsData));\n\n // update Buttons\n multistep.$btn_prev.removeClass('disabled');\n multistep.$btn_next.removeClass('disabled');\n if (multistep.currentStep == multistep.numSteps) {\n multistep.$btn_next.addClass('disabled');\n }\n if (multistep.currentStep == 1) {\n multistep.$btn_prev.addClass('disabled');\n }\n\n // replace next button with submit button on last step.\n // TODO: make this depend on a setting\n var $submit_button = multistep.form.$form.find('input[type=\"submit\"]').eq(0);\n var $ajax_loader = multistep.form.$form.find('.ajax-loader').eq(0);\n if (multistep.currentStep == multistep.numSteps) {\n multistep.$btn_next.hide();\n $ajax_loader.detach().appendTo(multistep.$btn_next.parent());\n $submit_button.detach().appendTo(multistep.$btn_next.parent());\n $submit_button.show();\n } else {\n $submit_button.hide();\n multistep.$btn_next.show();\n }\n\n // update dots\n var $dots = multistep.$dots.find('.dot');\n $dots.removeClass('active').removeClass('completed');\n for(var step = 1; step <= multistep.numSteps; step++) {\n if (step < multistep.currentStep) {\n $dots.eq(step-1).addClass('completed');\n } else if (step == multistep.currentStep) {\n $dots.eq(step-1).addClass('active');\n }\n }\n\n },\n\n should_group_be_shown : function(condition, $current_form) {\n\n var $ = jQuery;\n\n var show_group = true;\n\n for (var and_rule_i = 0; and_rule_i < condition.and_rules.length; and_rule_i++) {\n\n var condition_ok = false;\n\n var condition_and_rule = condition.and_rules[and_rule_i];\n\n var $field = jQuery('[name=\"' + condition_and_rule.if_field + '\"], [name=\"' + condition_and_rule.if_field + '[]\"], [data-original-name=\"' + condition_and_rule.if_field + '\"], [data-original-name=\"' + condition_and_rule.if_field + '[]\"]',$current_form);\n\n var if_val = condition_and_rule.if_value;\n var if_val_as_number = isFinite(parseFloat(if_val)) ? parseFloat(if_val):0;\n var operator = condition_and_rule.operator;\n \n var regex_patt = /.*/i; // fallback regex pattern\n var isValidRegex = true;\n try {\n regex_patt = new RegExp(if_val, 'i');\n } catch(e) {\n isValidRegex = false;\n }\n\n\n //backwards compat\n operator = operator === '≤' ? 'less than or equals' : operator;\n operator = operator === '≥' ? 'greater than or equals' : operator;\n operator = operator === '>' ? 'greater than' : operator;\n operator = operator === '<' ? 'less than' : operator;\n\n\n if ($field.length === 1) {\n\n // single field (tested with text field, single checkbox, select with single value (dropdown), select with multiple values)\n\n if ($field.is('select')) {\n\n if (operator === 'not equals') {\n condition_ok = true;\n }\n\n $field.find('option:selected').each(function () {\n var $option = jQuery(this);\n var option_val = $option.val()\n if (\n operator === 'equals' && option_val === if_val ||\n operator === 'equals (regex)' && regex_patt.test($option.val())\n ) {\n condition_ok = true;\n } else if (\n operator === 'not equals' && option_val === if_val ||\n operator === 'not equals (regex)' && !regex_patt.test($option.val())\n ) {\n condition_ok = false;\n return false; // break out of the loop\n }\n });\n\n show_group = show_group && condition_ok;\n }\n\n var field_val = $field.val();\n var field_val_as_number = isFinite(parseFloat(field_val)) ? parseFloat(field_val):0;\n\n if ($field.attr('type') === 'checkbox') {\n var field_is_checked = $field.is(':checked');\n if (\n operator === 'equals' && field_is_checked && field_val === if_val ||\n operator === 'not equals' && !field_is_checked ||\n operator === 'is empty' && !field_is_checked ||\n operator === 'not empty' && field_is_checked ||\n operator === 'greater than' && field_is_checked && field_val_as_number > if_val_as_number ||\n operator === 'less than' && field_is_checked && field_val_as_number < if_val_as_number ||\n operator === 'greater than or equals' && field_is_checked && field_val_as_number >= if_val_as_number ||\n operator === 'less than or equals' && field_is_checked && field_val_as_number <= if_val_as_number ||\n operator === 'equals (regex)' && field_is_checked && regex_patt.test(field_val) ||\n operator === 'not equals (regex)' && !field_is_checked\n\n ) {\n condition_ok = true;\n }\n } else if (\n operator === 'equals' && field_val === if_val ||\n operator === 'not equals' && field_val !== if_val ||\n operator === 'equals (regex)' && regex_patt.test(field_val) ||\n operator === 'not equals (regex)' && !regex_patt.test(field_val) ||\n operator === 'greater than' && field_val_as_number > if_val_as_number ||\n operator === 'less than' && field_val_as_number < if_val_as_number ||\n operator === 'greater than or equals' && field_val_as_number >= if_val_as_number ||\n operator === 'less than or equals' && field_val_as_number <= if_val_as_number ||\n operator === 'is empty' && field_val === '' ||\n operator === 'not empty' && field_val !== '' ||\n (\n operator === 'function'\n && typeof window[if_val] == 'function'\n && window[if_val]($field)\n )\n ) {\n condition_ok = true;\n }\n\n\n } else if ($field.length > 1) {\n\n // multiple fields (tested with checkboxes, exclusive checkboxes, dropdown with multiple values)\n\n var all_values = [];\n var checked_values = [];\n $field.each(function () {\n all_values.push(jQuery(this).val());\n if (jQuery(this).is(':checked')) {\n checked_values.push(jQuery(this).val());\n }\n });\n\n var checked_value_index = jQuery.inArray(if_val, checked_values);\n var value_index = jQuery.inArray(if_val, all_values);\n\n if (\n ( operator === 'is empty' && checked_values.length === 0 ) ||\n ( operator === 'not empty' && checked_values.length > 0 )\n ) {\n condition_ok = true;\n }\n\n\n for (var ind = 0; ind < checked_values.length; ind++) {\n var checked_val = checked_values[ind];\n var checked_val_as_number = isFinite(parseFloat(checked_val)) ? parseFloat(checked_val):0;\n if (\n ( operator === 'equals' && checked_val === if_val ) ||\n ( operator === 'not equals' && checked_val !== if_val ) ||\n ( operator === 'equals (regex)' && regex_patt.test(checked_val) ) ||\n ( operator === 'not equals (regex)' && !regex_patt.test(checked_val) ) ||\n ( operator === 'greater than' && checked_val_as_number > if_val_as_number ) ||\n ( operator === 'less than' && checked_val_as_number < if_val_as_number ) ||\n ( operator === 'greater than or equals' && checked_val_as_number >= if_val_as_number ) ||\n ( operator === 'less than or equals' && checked_val_as_number <= if_val_as_number )\n ) {\n condition_ok = true;\n }\n }\n }\n\n show_group = show_group && condition_ok;\n }\n\n return show_group;\n\n }\n\n};\n\n\njQuery('.wpcf7-form').each(function(){\n wpcf7cf_forms.push(new Wpcf7cfForm(jQuery(this)));\n});\n\n// Call displayFields again on all forms\n// Necessary in case some theme or plugin changed a form value by the time the entire page is fully loaded.\njQuery('document').ready(function() {\n wpcf7cf_forms.forEach(function(f){\n f.displayFields();\n });\n});\n\n// fix for exclusive checkboxes in IE (this will call the change-event again after all other checkboxes are unchecked, triggering the display_fields() function)\nvar old_wpcf7ExclusiveCheckbox = jQuery.fn.wpcf7ExclusiveCheckbox;\njQuery.fn.wpcf7ExclusiveCheckbox = function() {\n return this.find('input:checkbox').click(function() {\n var name = jQuery(this).attr('name');\n jQuery(this).closest('form').find('input:checkbox[name=\"' + name + '\"]').not(this).prop('checked', false).eq(0).change();\n });\n};\n\n","module.exports = require(\"regenerator-runtime\");\n","/**\n * Copyright (c) 2014-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nvar runtime = (function (exports) {\n \"use strict\";\n\n var Op = Object.prototype;\n var hasOwn = Op.hasOwnProperty;\n var undefined; // More compressible than void 0.\n var $Symbol = typeof Symbol === \"function\" ? Symbol : {};\n var iteratorSymbol = $Symbol.iterator || \"@@iterator\";\n var asyncIteratorSymbol = $Symbol.asyncIterator || \"@@asyncIterator\";\n var toStringTagSymbol = $Symbol.toStringTag || \"@@toStringTag\";\n\n function wrap(innerFn, outerFn, self, tryLocsList) {\n // If outerFn provided and outerFn.prototype is a Generator, then outerFn.prototype instanceof Generator.\n var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator;\n var generator = Object.create(protoGenerator.prototype);\n var context = new Context(tryLocsList || []);\n\n // The ._invoke method unifies the implementations of the .next,\n // .throw, and .return methods.\n generator._invoke = makeInvokeMethod(innerFn, self, context);\n\n return generator;\n }\n exports.wrap = wrap;\n\n // Try/catch helper to minimize deoptimizations. Returns a completion\n // record like context.tryEntries[i].completion. This interface could\n // have been (and was previously) designed to take a closure to be\n // invoked without arguments, but in all the cases we care about we\n // already have an existing method we want to call, so there's no need\n // to create a new function object. We can even get away with assuming\n // the method takes exactly one argument, since that happens to be true\n // in every case, so we don't have to touch the arguments object. The\n // only additional allocation required is the completion record, which\n // has a stable shape and so hopefully should be cheap to allocate.\n function tryCatch(fn, obj, arg) {\n try {\n return { type: \"normal\", arg: fn.call(obj, arg) };\n } catch (err) {\n return { type: \"throw\", arg: err };\n }\n }\n\n var GenStateSuspendedStart = \"suspendedStart\";\n var GenStateSuspendedYield = \"suspendedYield\";\n var GenStateExecuting = \"executing\";\n var GenStateCompleted = \"completed\";\n\n // Returning this object from the innerFn has the same effect as\n // breaking out of the dispatch switch statement.\n var ContinueSentinel = {};\n\n // Dummy constructor functions that we use as the .constructor and\n // .constructor.prototype properties for functions that return Generator\n // objects. For full spec compliance, you may wish to configure your\n // minifier not to mangle the names of these two functions.\n function Generator() {}\n function GeneratorFunction() {}\n function GeneratorFunctionPrototype() {}\n\n // This is a polyfill for %IteratorPrototype% for environments that\n // don't natively support it.\n var IteratorPrototype = {};\n IteratorPrototype[iteratorSymbol] = function () {\n return this;\n };\n\n var getProto = Object.getPrototypeOf;\n var NativeIteratorPrototype = getProto && getProto(getProto(values([])));\n if (NativeIteratorPrototype &&\n NativeIteratorPrototype !== Op &&\n hasOwn.call(NativeIteratorPrototype, iteratorSymbol)) {\n // This environment has a native %IteratorPrototype%; use it instead\n // of the polyfill.\n IteratorPrototype = NativeIteratorPrototype;\n }\n\n var Gp = GeneratorFunctionPrototype.prototype =\n Generator.prototype = Object.create(IteratorPrototype);\n GeneratorFunction.prototype = Gp.constructor = GeneratorFunctionPrototype;\n GeneratorFunctionPrototype.constructor = GeneratorFunction;\n GeneratorFunctionPrototype[toStringTagSymbol] =\n GeneratorFunction.displayName = \"GeneratorFunction\";\n\n // Helper for defining the .next, .throw, and .return methods of the\n // Iterator interface in terms of a single ._invoke method.\n function defineIteratorMethods(prototype) {\n [\"next\", \"throw\", \"return\"].forEach(function(method) {\n prototype[method] = function(arg) {\n return this._invoke(method, arg);\n };\n });\n }\n\n exports.isGeneratorFunction = function(genFun) {\n var ctor = typeof genFun === \"function\" && genFun.constructor;\n return ctor\n ? ctor === GeneratorFunction ||\n // For the native GeneratorFunction constructor, the best we can\n // do is to check its .name property.\n (ctor.displayName || ctor.name) === \"GeneratorFunction\"\n : false;\n };\n\n exports.mark = function(genFun) {\n if (Object.setPrototypeOf) {\n Object.setPrototypeOf(genFun, GeneratorFunctionPrototype);\n } else {\n genFun.__proto__ = GeneratorFunctionPrototype;\n if (!(toStringTagSymbol in genFun)) {\n genFun[toStringTagSymbol] = \"GeneratorFunction\";\n }\n }\n genFun.prototype = Object.create(Gp);\n return genFun;\n };\n\n // Within the body of any async function, `await x` is transformed to\n // `yield regeneratorRuntime.awrap(x)`, so that the runtime can test\n // `hasOwn.call(value, \"__await\")` to determine if the yielded value is\n // meant to be awaited.\n exports.awrap = function(arg) {\n return { __await: arg };\n };\n\n function AsyncIterator(generator) {\n function invoke(method, arg, resolve, reject) {\n var record = tryCatch(generator[method], generator, arg);\n if (record.type === \"throw\") {\n reject(record.arg);\n } else {\n var result = record.arg;\n var value = result.value;\n if (value &&\n typeof value === \"object\" &&\n hasOwn.call(value, \"__await\")) {\n return Promise.resolve(value.__await).then(function(value) {\n invoke(\"next\", value, resolve, reject);\n }, function(err) {\n invoke(\"throw\", err, resolve, reject);\n });\n }\n\n return Promise.resolve(value).then(function(unwrapped) {\n // When a yielded Promise is resolved, its final value becomes\n // the .value of the Promise<{value,done}> result for the\n // current iteration.\n result.value = unwrapped;\n resolve(result);\n }, function(error) {\n // If a rejected Promise was yielded, throw the rejection back\n // into the async generator function so it can be handled there.\n return invoke(\"throw\", error, resolve, reject);\n });\n }\n }\n\n var previousPromise;\n\n function enqueue(method, arg) {\n function callInvokeWithMethodAndArg() {\n return new Promise(function(resolve, reject) {\n invoke(method, arg, resolve, reject);\n });\n }\n\n return previousPromise =\n // If enqueue has been called before, then we want to wait until\n // all previous Promises have been resolved before calling invoke,\n // so that results are always delivered in the correct order. If\n // enqueue has not been called before, then it is important to\n // call invoke immediately, without waiting on a callback to fire,\n // so that the async generator function has the opportunity to do\n // any necessary setup in a predictable way. This predictability\n // is why the Promise constructor synchronously invokes its\n // executor callback, and why async functions synchronously\n // execute code before the first await. Since we implement simple\n // async functions in terms of async generators, it is especially\n // important to get this right, even though it requires care.\n previousPromise ? previousPromise.then(\n callInvokeWithMethodAndArg,\n // Avoid propagating failures to Promises returned by later\n // invocations of the iterator.\n callInvokeWithMethodAndArg\n ) : callInvokeWithMethodAndArg();\n }\n\n // Define the unified helper method that is used to implement .next,\n // .throw, and .return (see defineIteratorMethods).\n this._invoke = enqueue;\n }\n\n defineIteratorMethods(AsyncIterator.prototype);\n AsyncIterator.prototype[asyncIteratorSymbol] = function () {\n return this;\n };\n exports.AsyncIterator = AsyncIterator;\n\n // Note that simple async functions are implemented on top of\n // AsyncIterator objects; they just return a Promise for the value of\n // the final result produced by the iterator.\n exports.async = function(innerFn, outerFn, self, tryLocsList) {\n var iter = new AsyncIterator(\n wrap(innerFn, outerFn, self, tryLocsList)\n );\n\n return exports.isGeneratorFunction(outerFn)\n ? iter // If outerFn is a generator, return the full iterator.\n : iter.next().then(function(result) {\n return result.done ? result.value : iter.next();\n });\n };\n\n function makeInvokeMethod(innerFn, self, context) {\n var state = GenStateSuspendedStart;\n\n return function invoke(method, arg) {\n if (state === GenStateExecuting) {\n throw new Error(\"Generator is already running\");\n }\n\n if (state === GenStateCompleted) {\n if (method === \"throw\") {\n throw arg;\n }\n\n // Be forgiving, per 25.3.3.3.3 of the spec:\n // https://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorresume\n return doneResult();\n }\n\n context.method = method;\n context.arg = arg;\n\n while (true) {\n var delegate = context.delegate;\n if (delegate) {\n var delegateResult = maybeInvokeDelegate(delegate, context);\n if (delegateResult) {\n if (delegateResult === ContinueSentinel) continue;\n return delegateResult;\n }\n }\n\n if (context.method === \"next\") {\n // Setting context._sent for legacy support of Babel's\n // function.sent implementation.\n context.sent = context._sent = context.arg;\n\n } else if (context.method === \"throw\") {\n if (state === GenStateSuspendedStart) {\n state = GenStateCompleted;\n throw context.arg;\n }\n\n context.dispatchException(context.arg);\n\n } else if (context.method === \"return\") {\n context.abrupt(\"return\", context.arg);\n }\n\n state = GenStateExecuting;\n\n var record = tryCatch(innerFn, self, context);\n if (record.type === \"normal\") {\n // If an exception is thrown from innerFn, we leave state ===\n // GenStateExecuting and loop back for another invocation.\n state = context.done\n ? GenStateCompleted\n : GenStateSuspendedYield;\n\n if (record.arg === ContinueSentinel) {\n continue;\n }\n\n return {\n value: record.arg,\n done: context.done\n };\n\n } else if (record.type === \"throw\") {\n state = GenStateCompleted;\n // Dispatch the exception by looping back around to the\n // context.dispatchException(context.arg) call above.\n context.method = \"throw\";\n context.arg = record.arg;\n }\n }\n };\n }\n\n // Call delegate.iterator[context.method](context.arg) and handle the\n // result, either by returning a { value, done } result from the\n // delegate iterator, or by modifying context.method and context.arg,\n // setting context.delegate to null, and returning the ContinueSentinel.\n function maybeInvokeDelegate(delegate, context) {\n var method = delegate.iterator[context.method];\n if (method === undefined) {\n // A .throw or .return when the delegate iterator has no .throw\n // method always terminates the yield* loop.\n context.delegate = null;\n\n if (context.method === \"throw\") {\n // Note: [\"return\"] must be used for ES3 parsing compatibility.\n if (delegate.iterator[\"return\"]) {\n // If the delegate iterator has a return method, give it a\n // chance to clean up.\n context.method = \"return\";\n context.arg = undefined;\n maybeInvokeDelegate(delegate, context);\n\n if (context.method === \"throw\") {\n // If maybeInvokeDelegate(context) changed context.method from\n // \"return\" to \"throw\", let that override the TypeError below.\n return ContinueSentinel;\n }\n }\n\n context.method = \"throw\";\n context.arg = new TypeError(\n \"The iterator does not provide a 'throw' method\");\n }\n\n return ContinueSentinel;\n }\n\n var record = tryCatch(method, delegate.iterator, context.arg);\n\n if (record.type === \"throw\") {\n context.method = \"throw\";\n context.arg = record.arg;\n context.delegate = null;\n return ContinueSentinel;\n }\n\n var info = record.arg;\n\n if (! info) {\n context.method = \"throw\";\n context.arg = new TypeError(\"iterator result is not an object\");\n context.delegate = null;\n return ContinueSentinel;\n }\n\n if (info.done) {\n // Assign the result of the finished delegate to the temporary\n // variable specified by delegate.resultName (see delegateYield).\n context[delegate.resultName] = info.value;\n\n // Resume execution at the desired location (see delegateYield).\n context.next = delegate.nextLoc;\n\n // If context.method was \"throw\" but the delegate handled the\n // exception, let the outer generator proceed normally. If\n // context.method was \"next\", forget context.arg since it has been\n // \"consumed\" by the delegate iterator. If context.method was\n // \"return\", allow the original .return call to continue in the\n // outer generator.\n if (context.method !== \"return\") {\n context.method = \"next\";\n context.arg = undefined;\n }\n\n } else {\n // Re-yield the result returned by the delegate method.\n return info;\n }\n\n // The delegate iterator is finished, so forget it and continue with\n // the outer generator.\n context.delegate = null;\n return ContinueSentinel;\n }\n\n // Define Generator.prototype.{next,throw,return} in terms of the\n // unified ._invoke helper method.\n defineIteratorMethods(Gp);\n\n Gp[toStringTagSymbol] = \"Generator\";\n\n // A Generator should always return itself as the iterator object when the\n // @@iterator function is called on it. Some browsers' implementations of the\n // iterator prototype chain incorrectly implement this, causing the Generator\n // object to not be returned from this call. This ensures that doesn't happen.\n // See https://github.com/facebook/regenerator/issues/274 for more details.\n Gp[iteratorSymbol] = function() {\n return this;\n };\n\n Gp.toString = function() {\n return \"[object Generator]\";\n };\n\n function pushTryEntry(locs) {\n var entry = { tryLoc: locs[0] };\n\n if (1 in locs) {\n entry.catchLoc = locs[1];\n }\n\n if (2 in locs) {\n entry.finallyLoc = locs[2];\n entry.afterLoc = locs[3];\n }\n\n this.tryEntries.push(entry);\n }\n\n function resetTryEntry(entry) {\n var record = entry.completion || {};\n record.type = \"normal\";\n delete record.arg;\n entry.completion = record;\n }\n\n function Context(tryLocsList) {\n // The root entry object (effectively a try statement without a catch\n // or a finally block) gives us a place to store values thrown from\n // locations where there is no enclosing try statement.\n this.tryEntries = [{ tryLoc: \"root\" }];\n tryLocsList.forEach(pushTryEntry, this);\n this.reset(true);\n }\n\n exports.keys = function(object) {\n var keys = [];\n for (var key in object) {\n keys.push(key);\n }\n keys.reverse();\n\n // Rather than returning an object with a next method, we keep\n // things simple and return the next function itself.\n return function next() {\n while (keys.length) {\n var key = keys.pop();\n if (key in object) {\n next.value = key;\n next.done = false;\n return next;\n }\n }\n\n // To avoid creating an additional object, we just hang the .value\n // and .done properties off the next function object itself. This\n // also ensures that the minifier will not anonymize the function.\n next.done = true;\n return next;\n };\n };\n\n function values(iterable) {\n if (iterable) {\n var iteratorMethod = iterable[iteratorSymbol];\n if (iteratorMethod) {\n return iteratorMethod.call(iterable);\n }\n\n if (typeof iterable.next === \"function\") {\n return iterable;\n }\n\n if (!isNaN(iterable.length)) {\n var i = -1, next = function next() {\n while (++i < iterable.length) {\n if (hasOwn.call(iterable, i)) {\n next.value = iterable[i];\n next.done = false;\n return next;\n }\n }\n\n next.value = undefined;\n next.done = true;\n\n return next;\n };\n\n return next.next = next;\n }\n }\n\n // Return an iterator with no values.\n return { next: doneResult };\n }\n exports.values = values;\n\n function doneResult() {\n return { value: undefined, done: true };\n }\n\n Context.prototype = {\n constructor: Context,\n\n reset: function(skipTempReset) {\n this.prev = 0;\n this.next = 0;\n // Resetting context._sent for legacy support of Babel's\n // function.sent implementation.\n this.sent = this._sent = undefined;\n this.done = false;\n this.delegate = null;\n\n this.method = \"next\";\n this.arg = undefined;\n\n this.tryEntries.forEach(resetTryEntry);\n\n if (!skipTempReset) {\n for (var name in this) {\n // Not sure about the optimal order of these conditions:\n if (name.charAt(0) === \"t\" &&\n hasOwn.call(this, name) &&\n !isNaN(+name.slice(1))) {\n this[name] = undefined;\n }\n }\n }\n },\n\n stop: function() {\n this.done = true;\n\n var rootEntry = this.tryEntries[0];\n var rootRecord = rootEntry.completion;\n if (rootRecord.type === \"throw\") {\n throw rootRecord.arg;\n }\n\n return this.rval;\n },\n\n dispatchException: function(exception) {\n if (this.done) {\n throw exception;\n }\n\n var context = this;\n function handle(loc, caught) {\n record.type = \"throw\";\n record.arg = exception;\n context.next = loc;\n\n if (caught) {\n // If the dispatched exception was caught by a catch block,\n // then let that catch block handle the exception normally.\n context.method = \"next\";\n context.arg = undefined;\n }\n\n return !! caught;\n }\n\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n var record = entry.completion;\n\n if (entry.tryLoc === \"root\") {\n // Exception thrown outside of any try block that could handle\n // it, so set the completion value of the entire function to\n // throw the exception.\n return handle(\"end\");\n }\n\n if (entry.tryLoc <= this.prev) {\n var hasCatch = hasOwn.call(entry, \"catchLoc\");\n var hasFinally = hasOwn.call(entry, \"finallyLoc\");\n\n if (hasCatch && hasFinally) {\n if (this.prev < entry.catchLoc) {\n return handle(entry.catchLoc, true);\n } else if (this.prev < entry.finallyLoc) {\n return handle(entry.finallyLoc);\n }\n\n } else if (hasCatch) {\n if (this.prev < entry.catchLoc) {\n return handle(entry.catchLoc, true);\n }\n\n } else if (hasFinally) {\n if (this.prev < entry.finallyLoc) {\n return handle(entry.finallyLoc);\n }\n\n } else {\n throw new Error(\"try statement without catch or finally\");\n }\n }\n }\n },\n\n abrupt: function(type, arg) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.tryLoc <= this.prev &&\n hasOwn.call(entry, \"finallyLoc\") &&\n this.prev < entry.finallyLoc) {\n var finallyEntry = entry;\n break;\n }\n }\n\n if (finallyEntry &&\n (type === \"break\" ||\n type === \"continue\") &&\n finallyEntry.tryLoc <= arg &&\n arg <= finallyEntry.finallyLoc) {\n // Ignore the finally entry if control is not jumping to a\n // location outside the try/catch block.\n finallyEntry = null;\n }\n\n var record = finallyEntry ? finallyEntry.completion : {};\n record.type = type;\n record.arg = arg;\n\n if (finallyEntry) {\n this.method = \"next\";\n this.next = finallyEntry.finallyLoc;\n return ContinueSentinel;\n }\n\n return this.complete(record);\n },\n\n complete: function(record, afterLoc) {\n if (record.type === \"throw\") {\n throw record.arg;\n }\n\n if (record.type === \"break\" ||\n record.type === \"continue\") {\n this.next = record.arg;\n } else if (record.type === \"return\") {\n this.rval = this.arg = record.arg;\n this.method = \"return\";\n this.next = \"end\";\n } else if (record.type === \"normal\" && afterLoc) {\n this.next = afterLoc;\n }\n\n return ContinueSentinel;\n },\n\n finish: function(finallyLoc) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.finallyLoc === finallyLoc) {\n this.complete(entry.completion, entry.afterLoc);\n resetTryEntry(entry);\n return ContinueSentinel;\n }\n }\n },\n\n \"catch\": function(tryLoc) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.tryLoc === tryLoc) {\n var record = entry.completion;\n if (record.type === \"throw\") {\n var thrown = record.arg;\n resetTryEntry(entry);\n }\n return thrown;\n }\n }\n\n // The context.catch method must only be called with a location\n // argument that corresponds to a known catch block.\n throw new Error(\"illegal catch attempt\");\n },\n\n delegateYield: function(iterable, resultName, nextLoc) {\n this.delegate = {\n iterator: values(iterable),\n resultName: resultName,\n nextLoc: nextLoc\n };\n\n if (this.method === \"next\") {\n // Deliberately forget the last sent value so that we don't\n // accidentally pass it on to the delegate.\n this.arg = undefined;\n }\n\n return ContinueSentinel;\n }\n };\n\n // Regardless of whether this script is executing as a CommonJS module\n // or not, return the runtime object so that we can declare the variable\n // regeneratorRuntime in the outer scope, which allows this module to be\n // injected easily by `bin/regenerator --include-runtime script.js`.\n return exports;\n\n}(\n // If this script is executing as a CommonJS module, use module.exports\n // as the regeneratorRuntime namespace. Otherwise create a new empty\n // object. Either way, the resulting object will be used to initialize\n // the regeneratorRuntime variable at the top of this file.\n typeof module === \"object\" ? module.exports : {}\n));\n\ntry {\n regeneratorRuntime = runtime;\n} catch (accidentalStrictMode) {\n // This module should not be running in strict mode, so the above\n // assignment should always work unless something is misconfigured. Just\n // in case runtime.js accidentally runs in strict mode, we can escape\n // strict mode using a global Function call. This could conceivably fail\n // if a Content Security Policy forbids using Function, but in that case\n // the proper solution is to fix the accidental strict mode problem. If\n // you've misconfigured your bundler to force strict mode and applied a\n // CSP to forbid Function, and you're not willing to fix either of those\n // problems, please detail your unique predicament in a GitHub issue.\n Function(\"r\", \"regeneratorRuntime = r\")(runtime);\n}\n","module.exports = function(module) {\n\tif (!module.webpackPolyfill) {\n\t\tmodule.deprecate = function() {};\n\t\tmodule.paths = [];\n\t\t// module.parent = undefined by default\n\t\tif (!module.children) module.children = [];\n\t\tObject.defineProperty(module, \"loaded\", {\n\t\t\tenumerable: true,\n\t\t\tget: function() {\n\t\t\t\treturn module.l;\n\t\t\t}\n\t\t});\n\t\tObject.defineProperty(module, \"id\", {\n\t\t\tenumerable: true,\n\t\t\tget: function() {\n\t\t\t\treturn module.i;\n\t\t\t}\n\t\t});\n\t\tmodule.webpackPolyfill = 1;\n\t}\n\treturn module;\n};\n"],"sourceRoot":""}
js/scripts_es6.js CHANGED
@@ -80,7 +80,9 @@ var Wpcf7cfForm = function($form) {
80
  setTimeout(function(){
81
  form.displayFields();
82
  form.resetRepeaters();
83
- form.multistep.moveToStep(1);
 
 
84
  },200);
85
  });
86
 
@@ -817,14 +819,14 @@ window.wpcf7cf = {
817
  // replace next button with submit button on last step.
818
  // TODO: make this depend on a setting
819
  var $submit_button = multistep.form.$form.find('input[type="submit"]').eq(0);
 
820
  if (multistep.currentStep == multistep.numSteps) {
821
- var $submit_clone = $submit_button.clone();
822
- $submit_button.hide();
823
  multistep.$btn_next.hide();
824
- multistep.$btn_next.parent().append($submit_clone);
825
- } else {
826
- multistep.$btn_next.parent().find('input[type=submit]').remove();
827
  $submit_button.show();
 
 
828
  multistep.$btn_next.show();
829
  }
830
 
80
  setTimeout(function(){
81
  form.displayFields();
82
  form.resetRepeaters();
83
+ if (form.multistep != null) {
84
+ form.multistep.moveToStep(1);
85
+ }
86
  },200);
87
  });
88
 
819
  // replace next button with submit button on last step.
820
  // TODO: make this depend on a setting
821
  var $submit_button = multistep.form.$form.find('input[type="submit"]').eq(0);
822
+ var $ajax_loader = multistep.form.$form.find('.ajax-loader').eq(0);
823
  if (multistep.currentStep == multistep.numSteps) {
 
 
824
  multistep.$btn_next.hide();
825
+ $ajax_loader.detach().appendTo(multistep.$btn_next.parent());
826
+ $submit_button.detach().appendTo(multistep.$btn_next.parent());
 
827
  $submit_button.show();
828
+ } else {
829
+ $submit_button.hide();
830
  multistep.$btn_next.show();
831
  }
832
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Website: http://bdwm.be
6
  Tags: wordpress, contact form 7, forms, conditional fields
7
  Requires at least: 4.1
8
  Tested up to: 5.3
9
- Stable tag: 1.8.2
10
  Requires PHP: 5.6
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -102,114 +102,118 @@ The conditional fields javascript code is loaded during wp_footer, so a call to
102
 
103
  == Changelog ==
104
 
105
- = 1.8.2 (02-27-2020) =
 
 
 
 
106
  * Small patch. Add a check in the ajaxComplete event, to make sure xhr.responseJSON is not null or undefined. (this caused a JS error on some websites)
107
 
108
- = 1.8.1 (02-23-20) =
109
  * PRO: Bring form in initial state after submit, including going back to first step of multistep and resetting the initial number of sub-repeaters in each repeater.
110
- * PRO: New field: [summary]. https://conditional-fields-cf7.bdwm.be/summary/
111
  * PRO: Make form submission trigger next step (if not on last step)
112
  * PRO: Multistep: automatically scroll to top of form after moving to a different step.
113
  * PRO: Multistep: Replace h3 tag with div as step-title.
114
  * PRO: Made some small changes to the default multistep styles, for basic mobile friendly behaviour.
115
  * PRO: Make multistep compatibility with cf7-image-captcha plugin
116
 
117
- = 1.8 (02-03-20) =
118
- * WPML compatibility: Force conditions to be an array. (https://wordpress.org/support/topic/wpml-conditional-fields-not-working-on-translations/#post-12390827)
119
 
120
- = 1.7.9 (01-22-20) =
121
- * PRO (01-02-20) Added quick fix for problem with [_format_date "d m Y"] inside repeater. (see: https://github.com/pwkip/contact-form-7-conditional-fields/issues/38)
122
  * (01-22-20) Fixed Ajax by adding global wpcf7cf variable to window.
123
  * Changed min PHP version to 5.6 (might still be compatible with 5.4, but I suspect some edge case errors with older versions of PHP)
124
 
125
- = 1.7.8 (11-26-19) =
126
- * Updated/added Javascript events for groups, repeaters and multistep + added documentation at https://conditional-fields-cf7.bdwm.be/docs/examples/javascript-events/
127
- * Fixed bug where using invalid regex as a value would give a JS error (https://wordpress.org/support/topic/star-ratings-6/)
128
  * PRO Multistep: Added attribute to multistep `data-current_step` which holds the current step index. (can be used as css selector like this: `div[data-current_step=1]`)
129
- * PRO Repeater: The string `{{your-repeater_index}}` inside a repeater called `your-repeater` will be replaced with the index of the current sub repeater. (See updated example at https://conditional-fields-cf7.bdwm.be/repeater/)
130
 
131
- = 1.7.7 (11-05-19) =
132
  * PRO: Fix problem with parsing the "function" operator
133
 
134
- = 1.7.6 (11-01-19) =
135
- * Fixed small compatibility problem with CF7 Smart Grid (https://wordpress.org/support/topic/problem-on-save-form-when-the-active-tabs-are-not-conditional-form/#post-12085173)
136
  * Fixed some more porblems with parsing conditions (regex changes)
137
  * Got rid of screen_icon notice on CF settings page
138
 
139
- = 1.7.5 (10-31-19) =
140
  * Fixed bug in admin where settings got cleared if using some operators (mostly PRO operators)
141
 
142
- = 1.7.4 (10-29-19) =
143
  * PRO: made repeater (80%) compatible with material-design-for-contact-form-7
144
  * PRO: made exclusive checkbox work with repeater fields
145
  * PRO: trigger events when a repeater adds fields: 'wpcf7cf_repeater_added' - and when a repeater removes fields: 'wpcf7cf_repeater_removed'. Can be called with `$('form').on('wpcf7cf_repeater_removed', function() { /*...*/ })`
146
  * PRO: fixed bug with mutistep (formn did not work correctly if there were multiple forms on one page).
147
 
148
- = 1.7.3 (10-24-19) =
149
  * removed @babel/polyfill. All seems to be working fine without it in IE11. JS file is now back to 25kb instead of 100kb.
150
 
151
- = 1.7.2 (10-24-19) =
152
  * Bug fix: new javascript files where throwing errors. Should be okay now. (Also included JS source map for easier debugging)
153
 
154
- = 1.7.1 (10-23-19) =
155
- * PRO: Added basic support for multistep. No options available yet. You can insert [step] tags inside your code. More info at https://conditional-fields-cf7.bdwm.be/multistep/
156
  * Set up an NPM dev environment with babel and webpack. This means all the client side JS code will look super ugly, and it's also more bytes. But the plus side is that the plugin should also work fine in older browsers now.
157
  * Tested with WP version 5.3
158
 
159
- = 1.7 (10-18-19) =
160
  * code rewrite. Made code more testable by focusing more on a functional approach. Not completely finished yet, but getting there.
161
- * FIXED clear_on_hide not working for multi select https://github.com/pwkip/contact-form-7-conditional-fields/issues/35
162
- * PRO: FIXED https://github.com/pwkip/contact-form-7-conditional-fields/issues/34 - A real nest fest is now possible. You can put groups inside repeaters inside repeaters inside groups ...
163
- * FIXED make clear_on_hide restore initial values instead of clearing https://github.com/pwkip/contact-form-7-conditional-fields/issues/31
164
  * WP-admin: Renamed "Import/Export" to "Text view". Conditions specified in the input fields are now semi-automatically synced with the text view.
165
  * Internal change: When saving conditions, instead of posting all the input fields, the input fields are added to the "text view" textarea, and only the textarea will be sent. This is to prevent issues with PHP max_input_vars
166
 
167
- = 1.6.5 (10-15-19) =
168
  * Patched a minor security issue. From now on, only users with the 'wpcf7_edit_contact_form' capability will be able to reset the Conditional Fields settings to their defaults. Big thanks to Chloe from Wordfence for pointing this out!
169
  * Tested the plugin with WP version 5.2.4
170
 
171
- = 1.6.4 (07-04-19) =
172
  * PRO: Repeater: Fixed invalid HTML for the remove button
173
  * Free: Initialize form.$groups as a new jQuery object instead of an empty array, in order to prevent exotic bugs in case $groups aren't loaded by the time form.displayFields() is called. (https://wordpress.org/support/topic/typeerror-cannot-read-property-addclass-of-undefined-at-wpcf7cfform/)
174
 
175
- = 1.6.3 (07-04-19) =
176
  * Removed the word "Pro" from the title in the free plugin
177
 
178
- = 1.6.2 (06-25-19) =
179
  * Small changes to tag generator buttons
180
  * Multistep bug fix. All group conditions are evaluated a second time after the page has fully loaded.
181
- * PRO: added new operator 'function', allowing you to write custom javascript functions to determine whether or not a group should be shown https://conditional-fields-cf7.bdwm.be/advanced-conditional-logic-with-custom-javascript-functions/
182
  * PRO: fix bug with < (less than) operator
183
 
184
- = 1.6.1 (06-03-19) =
185
  * JS refactoring and small compatibility fix after code rewrite.
186
  * FREE: Added "Get PRO" button under Contact > Conditional Fields
187
 
188
- = 1.6 (06-01-19) =
189
  * JS code rewrite
190
  * PRO: allow groups inside repeater
191
  * PRO: make plugin ready for PRO release.
192
 
193
- = 1.5.5 (05-20-19) =
194
- * Fixed and explained how to disable loading of the styles and scripts and only enable it on certain pages. More info: https://conditional-fields-cf7.bdwm.be/docs/faq/can-i-load-js-and-css-only-when-necessary/
195
  * Made sure default settings get set after activating plugin, without the need to visit the Contact > Conditional Fields page first.
196
  * PRO: extended the repeater with min and max paramaters and the possibility to change the add and remove buttons texts
197
  * PRO: enabling the pro plugin will show a notification to disable the free plugin, instead of throwing a PHP error.
198
 
199
- = 1.5.4 (05-06-19) =
200
  * Make sure scripts get loaded late enough (wp_enqueue_scripts priority set to 20), because there was a problem with multistep where the multistep script was changing a value after the cf script ran. https://wordpress.org/support/topic/1-5-x-not-expanding-selected-hidden-groups-with-multi-step-on-previous-page/
201
 
202
- = 1.5.3 (05-03-19) =
203
  * Refix the fix from version 1.4.3 that got unfixed in version 1.5 somehow 🙄
204
 
205
- = 1.5.2 (05-03-19) =
206
  * by reverting changes in 1.5.1, the possibility to load forms via AJAX was destroyed. So, from now on the wpcf7cf scripts will be loaded in the 'wp_enqueue_scripts' hook. Analogous with the WPCF7_LOAD_JS constant, a new constant is defined called WPCF7CF_LOAD_JS wich is set to true by default.
207
 
208
- = 1.5.1 (05-02-19) =
209
  * revert changes: enqueue scripts in 'wpcf7_contact_form' hook instead of 'wpcf7_enqueue_scripts', because loading it in the latter would cause problems with plugins that disable WPCF7_LOAD_JS (like for example contact-form-7-paypal-add-on).
210
 
211
- = 1.5 (04-21-19) =
212
- * Make it possible to load forms with AJAX https://github.com/pwkip/contact-form-7-conditional-fields/issues/25 and https://conditional-fields-cf7.bdwm.be/docs/faq/how-to-initialize-the-conditional-logic-after-an-ajax-call/
213
  * Massive code reorganization in scripts.js
214
  * Fixed bug that could appear after removing an AND condition.
215
  * solve WPCF7_ADMIN_READ_WRITE_CAPABILITY - https://github.com/pwkip/contact-form-7-conditional-fields/pull/16
@@ -219,10 +223,10 @@ The conditional fields javascript code is loaded during wp_footer, so a call to
219
  * Allow conditional group tags in success and error messages. https://github.com/pwkip/contact-form-7-conditional-fields/issues/23
220
  * duplicating a form will also duplicate conditions https://github.com/pwkip/contact-form-7-conditional-fields/issues/28
221
 
222
- = 1.4.3 (04-12-19) =
223
  * Really fix clear_on_hide problem (https://wordpress.org/support/topic/clear_on_hide-still-not-working-right-after-1-4-2-update/)
224
 
225
- = 1.4.2 (04-10-19) =
226
  * Disabled mailbox syntax errors if there are group tags present. (this is overkill, and should be changed if the necassary hooks become available) https://wordpress.org/support/topic/filter-detect_invalid_mailbox_syntax/
227
  * Checked issue: https://github.com/pwkip/contact-form-7-conditional-fields/issues/26 (nothing changed, but turns out to be working fine)
228
  * Fixed issue where mail_2 added extra lines in the email message. https://github.com/pwkip/contact-form-7-conditional-fields/issues/30
@@ -231,13 +235,13 @@ The conditional fields javascript code is loaded during wp_footer, so a call to
231
  * Fixed some javascript errors that appeared on non-CF7CF subpages of CF7
232
  * Tested WP version 5.1.1
233
 
234
- = 1.4.1 (08-21-18) =
235
  * Fixed some CSS issues (https://wordpress.org/support/topic/crash-view-admin-the-list-of-posts-entry/)
236
  * Dropped support for PHP version 5.2, now PHP 5.3+ is required to run the plugin. Let's push things forward!
237
  * Added conditional group support to mail attachments field (https://github.com/pwkip/contact-form-7-conditional-fields/issues/22)
238
  * Added repeater field to PRO version.
239
 
240
- = 1.4 (08-15-18) =
241
  * Added basic drag and drop functionality to the back-end so conditional rules can be rearranged.
242
  * Added possibility to create inline groups by adding the option inline. Example: `[group my-group inline] ... [/group]`
243
  * Added property clear_on_hide to clear all fields within a group the moment the group gets hidden. Example: `[group my-group clear_on_hide] ... [/group]`
6
  Tags: wordpress, contact form 7, forms, conditional fields
7
  Requires at least: 4.1
8
  Tested up to: 5.3
9
+ Stable tag: 1.8.3
10
  Requires PHP: 5.6
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
102
 
103
  == Changelog ==
104
 
105
+ = 1.8.3 (2020-03-01) =
106
+ * Fix JS error on submit (reported by [@wasi7186](https://wordpress.org/support/topic/js-uncaught-typeerror-when-form-is-submitted/))
107
+ * PRO multistep: On the last step of a multistep form, instead of cloning and hiding the submit button, we now simply move it to the next-step-container. This solves a compatibility issue with a third party recaptcha plugin (and probably some other plugins too)
108
+
109
+ = 1.8.2 (2020-02-27) =
110
  * Small patch. Add a check in the ajaxComplete event, to make sure xhr.responseJSON is not null or undefined. (this caused a JS error on some websites)
111
 
112
+ = 1.8.1 (2020-02-23) =
113
  * PRO: Bring form in initial state after submit, including going back to first step of multistep and resetting the initial number of sub-repeaters in each repeater.
114
+ * PRO: New field: [[summary]](https://conditional-fields-cf7.bdwm.be/summary/)
115
  * PRO: Make form submission trigger next step (if not on last step)
116
  * PRO: Multistep: automatically scroll to top of form after moving to a different step.
117
  * PRO: Multistep: Replace h3 tag with div as step-title.
118
  * PRO: Made some small changes to the default multistep styles, for basic mobile friendly behaviour.
119
  * PRO: Make multistep compatibility with cf7-image-captcha plugin
120
 
121
+ = 1.8 (2020-02-03) =
122
+ * WPML compatibility: Force conditions to be an array. [link](https://wordpress.org/support/topic/wpml-conditional-fields-not-working-on-translations/#post-12390827)
123
 
124
+ = 1.7.9 (2020-01-22) =
125
+ * PRO (01-02-20) Added quick fix for problem with [_format_date "d m Y"] inside repeater. [link](https://github.com/pwkip/contact-form-7-conditional-fields/issues/38)
126
  * (01-22-20) Fixed Ajax by adding global wpcf7cf variable to window.
127
  * Changed min PHP version to 5.6 (might still be compatible with 5.4, but I suspect some edge case errors with older versions of PHP)
128
 
129
+ = 1.7.8 (2019-11-26) =
130
+ * Updated/added Javascript events for groups, repeaters and multistep + added [documentation](https://conditional-fields-cf7.bdwm.be/docs/examples/javascript-events/)
131
+ * Fixed bug where using invalid regex as a value would give a JS error [link](https://wordpress.org/support/topic/star-ratings-6/)
132
  * PRO Multistep: Added attribute to multistep `data-current_step` which holds the current step index. (can be used as css selector like this: `div[data-current_step=1]`)
133
+ * PRO Repeater: The string `{{your-repeater_index}}` inside a repeater called `your-repeater` will be replaced with the index of the current sub repeater. [Check out the updated example](https://conditional-fields-cf7.bdwm.be/repeater/)
134
 
135
+ = 1.7.7 (2019-11-05) =
136
  * PRO: Fix problem with parsing the "function" operator
137
 
138
+ = 1.7.6 (2019-11-01) =
139
+ * Fixed small compatibility problem with CF7 Smart Grid [link](https://wordpress.org/support/topic/problem-on-save-form-when-the-active-tabs-are-not-conditional-form/#post-12085173)
140
  * Fixed some more porblems with parsing conditions (regex changes)
141
  * Got rid of screen_icon notice on CF settings page
142
 
143
+ = 1.7.5 (2019-10-31) =
144
  * Fixed bug in admin where settings got cleared if using some operators (mostly PRO operators)
145
 
146
+ = 1.7.4 (2019-10-29) =
147
  * PRO: made repeater (80%) compatible with material-design-for-contact-form-7
148
  * PRO: made exclusive checkbox work with repeater fields
149
  * PRO: trigger events when a repeater adds fields: 'wpcf7cf_repeater_added' - and when a repeater removes fields: 'wpcf7cf_repeater_removed'. Can be called with `$('form').on('wpcf7cf_repeater_removed', function() { /*...*/ })`
150
  * PRO: fixed bug with mutistep (formn did not work correctly if there were multiple forms on one page).
151
 
152
+ = 1.7.3 (2019-10-24) =
153
  * removed @babel/polyfill. All seems to be working fine without it in IE11. JS file is now back to 25kb instead of 100kb.
154
 
155
+ = 1.7.2 (2019-10-24) =
156
  * Bug fix: new javascript files where throwing errors. Should be okay now. (Also included JS source map for easier debugging)
157
 
158
+ = 1.7.1 (2019-10-23) =
159
+ * PRO: Added basic support for multistep. No options available yet. You can insert [step] tags inside your code. [More info](https://conditional-fields-cf7.bdwm.be/multistep/)
160
  * Set up an NPM dev environment with babel and webpack. This means all the client side JS code will look super ugly, and it's also more bytes. But the plus side is that the plugin should also work fine in older browsers now.
161
  * Tested with WP version 5.3
162
 
163
+ = 1.7 (2019-10-18) =
164
  * code rewrite. Made code more testable by focusing more on a functional approach. Not completely finished yet, but getting there.
165
+ * FIXED clear_on_hide not working for multi select [github issue 35](https://github.com/pwkip/contact-form-7-conditional-fields/issues/35)
166
+ * PRO: FIXED [github issue 34](https://github.com/pwkip/contact-form-7-conditional-fields/issues/34) - A real nest fest is now possible. You can put groups inside repeaters inside repeaters inside groups ...
167
+ * FIXED make clear_on_hide restore initial values instead of clearing [github issue 31](https://github.com/pwkip/contact-form-7-conditional-fields/issues/31)
168
  * WP-admin: Renamed "Import/Export" to "Text view". Conditions specified in the input fields are now semi-automatically synced with the text view.
169
  * Internal change: When saving conditions, instead of posting all the input fields, the input fields are added to the "text view" textarea, and only the textarea will be sent. This is to prevent issues with PHP max_input_vars
170
 
171
+ = 1.6.5 (2019-10-15) =
172
  * Patched a minor security issue. From now on, only users with the 'wpcf7_edit_contact_form' capability will be able to reset the Conditional Fields settings to their defaults. Big thanks to Chloe from Wordfence for pointing this out!
173
  * Tested the plugin with WP version 5.2.4
174
 
175
+ = 1.6.4 (2019-07-04) =
176
  * PRO: Repeater: Fixed invalid HTML for the remove button
177
  * Free: Initialize form.$groups as a new jQuery object instead of an empty array, in order to prevent exotic bugs in case $groups aren't loaded by the time form.displayFields() is called. (https://wordpress.org/support/topic/typeerror-cannot-read-property-addclass-of-undefined-at-wpcf7cfform/)
178
 
179
+ = 1.6.3 (2019-07-04) =
180
  * Removed the word "Pro" from the title in the free plugin
181
 
182
+ = 1.6.2 (2019-06-25) =
183
  * Small changes to tag generator buttons
184
  * Multistep bug fix. All group conditions are evaluated a second time after the page has fully loaded.
185
+ * PRO: added new operator 'function', allowing you to write custom javascript functions to determine whether or not a group should be shown. [link](https://conditional-fields-cf7.bdwm.be/advanced-conditional-logic-with-custom-javascript-functions/)
186
  * PRO: fix bug with < (less than) operator
187
 
188
+ = 1.6.1 (2019-06-03) =
189
  * JS refactoring and small compatibility fix after code rewrite.
190
  * FREE: Added "Get PRO" button under Contact > Conditional Fields
191
 
192
+ = 1.6 (2019-06-01) =
193
  * JS code rewrite
194
  * PRO: allow groups inside repeater
195
  * PRO: make plugin ready for PRO release.
196
 
197
+ = 1.5.5 (2019-05-20) =
198
+ * Fixed and explained how to disable loading of the styles and scripts and only enable it on certain pages. [More info](https://conditional-fields-cf7.bdwm.be/docs/faq/can-i-load-js-and-css-only-when-necessary/)
199
  * Made sure default settings get set after activating plugin, without the need to visit the Contact > Conditional Fields page first.
200
  * PRO: extended the repeater with min and max paramaters and the possibility to change the add and remove buttons texts
201
  * PRO: enabling the pro plugin will show a notification to disable the free plugin, instead of throwing a PHP error.
202
 
203
+ = 1.5.4 (2019-05-06) =
204
  * Make sure scripts get loaded late enough (wp_enqueue_scripts priority set to 20), because there was a problem with multistep where the multistep script was changing a value after the cf script ran. https://wordpress.org/support/topic/1-5-x-not-expanding-selected-hidden-groups-with-multi-step-on-previous-page/
205
 
206
+ = 1.5.3 (2019-05-03) =
207
  * Refix the fix from version 1.4.3 that got unfixed in version 1.5 somehow 🙄
208
 
209
+ = 1.5.2 (2019-05-03) =
210
  * by reverting changes in 1.5.1, the possibility to load forms via AJAX was destroyed. So, from now on the wpcf7cf scripts will be loaded in the 'wp_enqueue_scripts' hook. Analogous with the WPCF7_LOAD_JS constant, a new constant is defined called WPCF7CF_LOAD_JS wich is set to true by default.
211
 
212
+ = 1.5.1 (2019-05-02) =
213
  * revert changes: enqueue scripts in 'wpcf7_contact_form' hook instead of 'wpcf7_enqueue_scripts', because loading it in the latter would cause problems with plugins that disable WPCF7_LOAD_JS (like for example contact-form-7-paypal-add-on).
214
 
215
+ = 1.5 (2019-04-21) =
216
+ * Make it possible to load forms with AJAX. [fixed github issue 25](https://github.com/pwkip/contact-form-7-conditional-fields/issues/25). [updated docs](https://conditional-fields-cf7.bdwm.be/docs/faq/how-to-initialize-the-conditional-logic-after-an-ajax-call/)
217
  * Massive code reorganization in scripts.js
218
  * Fixed bug that could appear after removing an AND condition.
219
  * solve WPCF7_ADMIN_READ_WRITE_CAPABILITY - https://github.com/pwkip/contact-form-7-conditional-fields/pull/16
223
  * Allow conditional group tags in success and error messages. https://github.com/pwkip/contact-form-7-conditional-fields/issues/23
224
  * duplicating a form will also duplicate conditions https://github.com/pwkip/contact-form-7-conditional-fields/issues/28
225
 
226
+ = 1.4.3 (2019-04-12) =
227
  * Really fix clear_on_hide problem (https://wordpress.org/support/topic/clear_on_hide-still-not-working-right-after-1-4-2-update/)
228
 
229
+ = 1.4.2 (2019-04-10) =
230
  * Disabled mailbox syntax errors if there are group tags present. (this is overkill, and should be changed if the necassary hooks become available) https://wordpress.org/support/topic/filter-detect_invalid_mailbox_syntax/
231
  * Checked issue: https://github.com/pwkip/contact-form-7-conditional-fields/issues/26 (nothing changed, but turns out to be working fine)
232
  * Fixed issue where mail_2 added extra lines in the email message. https://github.com/pwkip/contact-form-7-conditional-fields/issues/30
235
  * Fixed some javascript errors that appeared on non-CF7CF subpages of CF7
236
  * Tested WP version 5.1.1
237
 
238
+ = 1.4.1 (2018-08-21) =
239
  * Fixed some CSS issues (https://wordpress.org/support/topic/crash-view-admin-the-list-of-posts-entry/)
240
  * Dropped support for PHP version 5.2, now PHP 5.3+ is required to run the plugin. Let's push things forward!
241
  * Added conditional group support to mail attachments field (https://github.com/pwkip/contact-form-7-conditional-fields/issues/22)
242
  * Added repeater field to PRO version.
243
 
244
+ = 1.4 (2018-08-15) =
245
  * Added basic drag and drop functionality to the back-end so conditional rules can be rearranged.
246
  * Added possibility to create inline groups by adding the option inline. Example: `[group my-group inline] ... [/group]`
247
  * Added property clear_on_hide to clear all fields within a group the moment the group gets hidden. Example: `[group my-group clear_on_hide] ... [/group]`