@bolttech/form-engine 0.10.6 → 0.10.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/README.md +36 -1
- package/asFormField-b207200a.js +2 -0
- package/asFormField-b207200a.js.map +1 -0
- package/index.js +1 -1
- package/package.json +1 -1
- package/react.js +1 -1
- package/src/core/constants/events.d.ts +1 -0
- package/src/core/events/events.types.d.ts +1 -1
- package/src/core/handlers/common/templating.d.ts +1 -1
- package/src/core/handlers/field/api.d.ts +1 -1
- package/src/core/handlers/field/blur.d.ts +1 -1
- package/src/core/handlers/field/change.d.ts +1 -1
- package/src/core/handlers/field/clearFields.d.ts +1 -1
- package/src/core/handlers/field/data.d.ts +1 -1
- package/src/core/handlers/field/filter.d.ts +1 -1
- package/src/core/handlers/field/focus.d.ts +1 -1
- package/src/core/handlers/field/formatters.d.ts +1 -1
- package/src/core/handlers/field/htmlEventParser.d.ts +1 -1
- package/src/core/handlers/field/keydown.d.ts +1 -1
- package/src/core/handlers/field/keyup.d.ts +1 -1
- package/src/core/handlers/field/masks.d.ts +1 -1
- package/src/core/handlers/field/mount.d.ts +1 -1
- package/src/core/handlers/field/validations.d.ts +1 -1
- package/src/core/handlers/field/visibilityConditions.d.ts +1 -1
- package/src/core/handlers/flows.d.ts +2 -0
- package/src/core/handlers/form/changeFields.d.ts +3 -0
- package/src/core/handlers/form/hooks.d.ts +1 -1
- package/src/core/handlers/form/steps.d.ts +1 -1
- package/src/core/handlers/form/templating.d.ts +1 -1
- package/src/core/handlers/form/validate.d.ts +1 -1
- package/src/core/handlers/form/visibilityConditions.d.ts +1 -1
- package/src/core/types/index.d.ts +8 -3
- package/types.js.map +1 -1
- package/asFormField-473eb268.js +0 -2
- package/asFormField-473eb268.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.10.8](http://bitbucket.org/gofrank/bolttech-frontend/compare/form-engine-0.10.7...form-engine-0.10.8) (2024-02-12)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **ref:** adding field change ref attribute ([f824570](http://bitbucket.org/gofrank/bolttech-frontend/commit/f824570f8256d66582f5c4f67d9edabddb34db01))
|
|
11
|
+
* **ref:** removing additional flow event chain ([a9a597e](http://bitbucket.org/gofrank/bolttech-frontend/commit/a9a597e3e61e8ca065d4840b082fb928e580b9c6))
|
|
12
|
+
|
|
13
|
+
## [0.10.7](http://bitbucket.org/gofrank/bolttech-frontend/compare/form-engine-0.10.6...form-engine-0.10.7) (2024-02-07)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* add validation to convert boolean fields properly ([8048395](http://bitbucket.org/gofrank/bolttech-frontend/commit/8048395845999f600ccca60de7524a19904597d9))
|
|
19
|
+
|
|
5
20
|
## [0.10.6](http://bitbucket.org/gofrank/bolttech-frontend/compare/form-engine-0.10.5...form-engine-0.10.6) (2024-02-05)
|
|
6
21
|
|
|
7
22
|
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Achieve form logic re-usage with forms expressed in json format.
|
|
4
4
|
|
|
5
|
-
> stable version 0.10.
|
|
5
|
+
> stable version 0.10.7
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -25,6 +25,7 @@ Achieve form logic re-usage with forms expressed in json format.
|
|
|
25
25
|
- 3.8.1. [Scopes](#markdown-header-scope)
|
|
26
26
|
- 3.8.2. [Templates](#markdown-header-templates)
|
|
27
27
|
- 3.8.3. [varOps](#markdown-header-varops)
|
|
28
|
+
- 3.8.4. [Direct Fields Mapping](#markdown-header-direct-fields-mapping)
|
|
28
29
|
- 3.9. [State - Define component state](#markdown-header-state)
|
|
29
30
|
- 3.10. [Group](#markdown-header-group)
|
|
30
31
|
- 3.11. [Steps](#markdown-header-form-step)
|
|
@@ -1314,6 +1315,40 @@ PS: Don't's forget that we still have the default values provided with [template
|
|
|
1314
1315
|
- add(arg1,arg2)
|
|
1315
1316
|
- subtract(arg1,arg2)
|
|
1316
1317
|
|
|
1318
|
+
### Direct fields binding
|
|
1319
|
+
|
|
1320
|
+
You can change multiple field values and properties with `changeFields` using the form ref in the react adapter, example:
|
|
1321
|
+
|
|
1322
|
+
```js
|
|
1323
|
+
{
|
|
1324
|
+
const ref = useRef<TFormRefActions>(null);
|
|
1325
|
+
|
|
1326
|
+
return (
|
|
1327
|
+
<>
|
|
1328
|
+
<Form id="form" ref={ref} schema={foo}/>
|
|
1329
|
+
</>
|
|
1330
|
+
);
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
const handleFields = ( input1: string, input2: number ) =>
|
|
1334
|
+
ref.current?.changeFields({
|
|
1335
|
+
input1: {
|
|
1336
|
+
value: input1,
|
|
1337
|
+
props: {
|
|
1338
|
+
disabled: false,
|
|
1339
|
+
},
|
|
1340
|
+
},
|
|
1341
|
+
input2: {
|
|
1342
|
+
value: input2,
|
|
1343
|
+
props: {
|
|
1344
|
+
disabled: true,
|
|
1345
|
+
},
|
|
1346
|
+
},
|
|
1347
|
+
});
|
|
1348
|
+
```
|
|
1349
|
+
|
|
1350
|
+
All schema fields that has the same name as the passed keys will have his values/properties changed and validations executed
|
|
1351
|
+
|
|
1317
1352
|
## State
|
|
1318
1353
|
|
|
1319
1354
|
This key will allow you to set up some initial state on the field.
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var e=require("react/jsx-runtime"),t=require("react");require("./types.js");var r=require("credit-card-type");function n(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var o=n(t),i=n(r),a=function(e,t,r){return t?e+"/"+t+(r?"/"+r:""):e},u=function(e){return new RegExp("^(".concat(e,").*$"),"g")},c={ON_FIELD_VALIDATION_TOGGLE:"ON_FIELD_VALIDATION_TOGGLE",ON_FIELD_MOUNT:"ON_FIELD_MOUNT",ON_FIELD_CHANGE:"ON_FIELD_CHANGE",ON_FIELD_BLUR:"ON_FIELD_BLUR",ON_FIELD_FOCUS:"ON_FIELD_FOCUS",ON_FIELD_REHYDRATE:"ON_FIELD_REHYDRATE",ON_FIELD_CLEARED:"ON_FIELD_CLEARED",ON_FIELD_CLICK:"ON_FIELD_CLICK",ON_FIELD_KEYUP:"ON_FIELD_KEYUP",ON_FIELD_KEYDOWN:"ON_FIELD_KEYDOWN",AFTER_FIELD_API_CALL:"AFTER_FIELD_API_CALL",RUN_FIELD_VALIDATIONS:"RUN_FIELD_VALIDATIONS",RUN_FIELD_FORMATTERS:"RUN_FIELD_FORMATTERS",RUN_FIELD_MASKS:"RUN_FIELD_MASKS",ON_SCOPE_CHANGE:"ON_SCOPE_CHANGE",ON_FORM_REHYDRATE:"ON_FORM_REHYDRATE",ON_FORM_SUBMIT:"ON_FORM_SUBMIT",ON_FORM_MOUNT:"ON_FORM_MOUNT",ON_FORM_UN_MOUNT:"ON_FORM_UN_MOUNT",ON_FORM_DATA:"ON_FORM_DATA",NAVIGATE_STEP:"NAVIGATE_STEP",NAVIGATE_STEP_FORWARD:"NAVIGATE_STEP_FORWARD",NAVIGATE_STEP_BACK:"NAVIGATE_STEP_BACK",VALIDATE_FORM:"VALIDATE_FORM",CHANGE_FIELDS:"CHANGE_FIELDS",LOG:"LOG"},l="default_form_id",s="default_form_hook_id";function f(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,o,i,a,u=[],c=!0,l=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(n=i.call(r)).done)&&(u.push(n.value),u.length!==t);c=!0);}catch(e){l=!0,o=e}finally{try{if(!c&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(l)throw o}}return u}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return d(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var p,v,y=function(){var e=f(t.useState(0),2),r=e[0],n=e[1];return[r,function(){return n((function(e){return e+1}))}]};function h(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function b(e,t,r,n){return new(r||(r=Promise))((function(o,i){function a(e){try{c(n.next(e))}catch(e){i(e)}}function u(e){try{c(n.throw(e))}catch(e){i(e)}}function c(e){e.done?o(e.value):function(e){return e instanceof r?e:new r((function(t){t(e)}))}(e.value).then(a,u)}c((n=n.apply(e,t||[])).next())}))}function m(e,t,r,n){if("a"===r&&!n)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!n:!t.has(e))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===r?n:"a"===r?n.call(e):n?n.value:t.get(e)}function g(e,t,r,n,o){if("m"===n)throw new TypeError("Private method is not writable");if("a"===n&&!o)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!o:!t.has(e))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function O(e){return O="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},O(e)}function E(){/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */E=function(){return e};var e={},t=Object.prototype,r=t.hasOwnProperty,n=Object.defineProperty||function(e,t,r){e[t]=r.value},o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",u=o.toStringTag||"@@toStringTag";function c(e,t,r){return Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,r){return e[t]=r}}function l(e,t,r,o){var i=t&&t.prototype instanceof d?t:d,a=Object.create(i.prototype),u=new N(o||[]);return n(a,"_invoke",{value:S(e,r,u)}),a}function s(e,t,r){try{return{type:"normal",arg:e.call(t,r)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var f={};function d(){}function p(){}function v(){}var y={};c(y,i,(function(){return this}));var h=Object.getPrototypeOf,b=h&&h(h(I([])));b&&b!==t&&r.call(b,i)&&(y=b);var m=v.prototype=d.prototype=Object.create(y);function g(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function _(e,t){function o(n,i,a,u){var c=s(e[n],e,i);if("throw"!==c.type){var l=c.arg,f=l.value;return f&&"object"==O(f)&&r.call(f,"__await")?t.resolve(f.__await).then((function(e){o("next",e,a,u)}),(function(e){o("throw",e,a,u)})):t.resolve(f).then((function(e){l.value=e,a(l)}),(function(e){return o("throw",e,a,u)}))}u(c.arg)}var i;n(this,"_invoke",{value:function(e,r){function n(){return new t((function(t,n){o(e,r,t,n)}))}return i=i?i.then(n,n):n()}})}function S(e,t,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return F()}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var u=j(a,r);if(u){if(u===f)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var c=s(e,t,r);if("normal"===c.type){if(n=r.done?"completed":"suspendedYield",c.arg===f)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(n="completed",r.method="throw",r.arg=c.arg)}}}function j(e,t){var r=t.method,n=e.iterator[r];if(void 0===n)return t.delegate=null,"throw"===r&&e.iterator.return&&(t.method="return",t.arg=void 0,j(e,t),"throw"===t.method)||"return"!==r&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+r+"' method")),f;var o=s(n,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,f;var i=o.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,f):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,f)}function w(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function N(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(w,this),this.reset(!0)}function I(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var n=-1,o=function t(){for(;++n<e.length;)if(r.call(e,n))return t.value=e[n],t.done=!1,t;return t.value=void 0,t.done=!0,t};return o.next=o}}return{next:F}}function F(){return{value:void 0,done:!0}}return p.prototype=v,n(m,"constructor",{value:v,configurable:!0}),n(v,"constructor",{value:p,configurable:!0}),p.displayName=c(v,u,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===p||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,v):(e.__proto__=v,c(e,u,"GeneratorFunction")),e.prototype=Object.create(m),e},e.awrap=function(e){return{__await:e}},g(_.prototype),c(_.prototype,a,(function(){return this})),e.AsyncIterator=_,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new _(l(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},g(m),c(m,u,"Generator"),c(m,i,(function(){return this})),c(m,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=Object(e),r=[];for(var n in t)r.push(n);return r.reverse(),function e(){for(;r.length;){var n=r.pop();if(n in t)return e.value=n,e.done=!1,e}return e.done=!0,e}},e.values=I,N.prototype={constructor:N,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(A),!e)for(var t in this)"t"===t.charAt(0)&&r.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function n(r,n){return a.type="throw",a.arg=e,t.next=r,n&&(t.method="next",t.arg=void 0),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return n("end");if(i.tryLoc<=this.prev){var u=r.call(i,"catchLoc"),c=r.call(i,"finallyLoc");if(u&&c){if(this.prev<i.catchLoc)return n(i.catchLoc,!0);if(this.prev<i.finallyLoc)return n(i.finallyLoc)}else if(u){if(this.prev<i.catchLoc)return n(i.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return n(i.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=e,a.arg=t,i?(this.method="next",this.next=i.finallyLoc,f):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),f},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.finallyLoc===e)return this.complete(r.completion,r.afterLoc),A(r),f}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.tryLoc===e){var n=r.completion;if("throw"===n.type){var o=n.arg;A(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,r){return this.delegate={iterator:I(e),resultName:t,nextLoc:r},"next"===this.method&&(this.arg=void 0),f}},e}function _(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,(o=n.key,i=void 0,i=function(e,t){if("object"!==O(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!==O(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(o,"string"),"symbol"===O(i)?i:String(i)),n)}var o,i}var S,j=function(){function e(t){var r=this;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),p.set(this,void 0),v.set(this,{}),this.debounceTime=50,this.debounce=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:r.debounceTime;return b(r,void 0,void 0,E().mark((function r(){var n=this;return E().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:return r.abrupt("return",new Promise((function(r){m(n,v,"f")[e]&&clearTimeout(m(n,v,"f")[e]),m(n,v,"f")[e]=setTimeout((function(){clearTimeout(m(n,v,"f")[e]),r(e())}),t)})));case 1:case"end":return r.stop()}}),r)})))},g(this,p,t,"f"),this.publish=this.publish.bind(this),this.subscribe=this.subscribe.bind(this),this.debounce=this.debounce.bind(this),this.subscribeBulk=this.subscribeBulk.bind(this),this.subscriptions={}}var t,r,n;return t=e,r=[{key:"subscribe",value:function(e,t){this.subscriptions[e]&&this.subscriptions[e](),this.subscriptions[e]=m(this,p,"f").subscribe(e,t)}},{key:"subscribeBulk",value:function(e,t){var r=this;e.forEach((function(e){return r.subscribe(e,t)}))}},{key:"publish",value:function(e,t){m(this,p,"f").publish(e,t)}},{key:"publishFor",value:function(e){var t=this;return function(){var r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return b(t,void 0,void 0,E().mark((function t(){return E().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,m(this,p,"f").publish(e,r);case 2:return t.abrupt("return",t.sent);case 3:case"end":return t.stop()}}),t,this)})))}}},{key:"logError",value:function(e,t,r,n){m(this,p,"f").logError(e,t,r,n)}},{key:"logInfo",value:function(e,t,r,n){m(this,p,"f").logInfo(e,t,r,n)}}],r&&_(t.prototype,r),n&&_(t,n),Object.defineProperty(t,"prototype",{writable:!1}),e}();function w(e){return w="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},w(e)}function A(e,t,r){return(t=I(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function N(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,I(n.key),n)}}function I(e){var t=function(e,t){if("object"!==w(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!==w(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===w(t)?t:String(t)}function F(e,t){return F=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},F(e,t)}function L(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,n=D(e);if(t){var o=D(this).constructor;r=Reflect.construct(n,arguments,o)}else r=n.apply(this,arguments);return function(e,t){if(t&&("object"===w(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return k(e)}(this,r)}}function k(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function D(e){return D=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},D(e)}p=new WeakMap,v=new WeakMap;var x=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&F(e,t)}(i,j);var t,r,n,o=L(i);function i(e){var t;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,i),t=o.call(this,e),S.set(k(t),{global:{},api:{},hooks:{},configs:{},fields:{}}),t}return t=i,r=[{key:"scope",get:function(){return m(this,S,"f")||{}}},{key:"getGlobalScope",value:function(e,t){return e&&!t&&this.scope[e]?this.scope[e]:e&&t&&this.scope[e]?this.scope[e][t]:m(this,S,"f")}},{key:"initialScope",set:function(e){g(this,S,e||m(this,S,"f"),"f")}},{key:"globalScope",set:function(e){var t=e.namespace,r=e.key,n=e.data;r||(m(this,S,"f")[t]=n),r&&!m(this,S,"f")[t]&&(m(this,S,"f")[t]=A({},r,n)),m(this,S,"f")[t]&&r&&(m(this,S,"f")[t]=Object.assign(Object.assign({},m(this,S,"f")[t]),A({},r,n)));var o=r?a("ON_SCOPE_CHANGE",t,r):u(a("ON_SCOPE_CHANGE",t,r));this.publish(o,{scope:this.scope,namespace:t,key:r}),this.publish("ON_SCOPE_CHANGE")}}],r&&N(t.prototype,r),n&&N(t,n),Object.defineProperty(t,"prototype",{writable:!1}),i}();function T(e){return T="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},T(e)}function C(e,t,r){return(t=function(e){var t=function(e,t){if("object"!==T(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!==T(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===T(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function P(e){return function(e){if(Array.isArray(e))return V(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||M(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function R(e,t){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=M(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var n=0,o=function(){};return{s:o,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,u=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return a=e.done,e},e:function(e){u=!0,i=e},f:function(){try{a||null==r.return||r.return()}finally{if(u)throw i}}}}function M(e,t){if(e){if("string"==typeof e)return V(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?V(e,t):void 0}}function V(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}S=new WeakMap;var G={BEGIN:"${",END:"}",DEFAULT_SPLITTER:"||"},U=function(e){return/\$\{(.*)\}.*/g.test(e)},B="varOps.",H=")",Y="(",$=",",z=function(e){return e.includes(B)},K=function(e,t,r){var n=(e=e.toString()).lastIndexOf(G.BEGIN);if(-1===n)return e;var o=e.substring(n+G.BEGIN.length,e.length),i=o.substring(0,o.indexOf(G.END)),a=i.length,u="",c=i.split(G.DEFAULT_SPLITTER);if(c.length>1){i=c[0];var l,s=R(c);try{for(s.s();!(l=s.n()).done;){var f=l.value;if(f.includes("api")||f.includes("global")||f.includes("fields")||f.includes("hooks")||f.includes("configs")){var d=ee(r.scope.getGlobalScope(),f);d&&(u=d)}else u=f}}catch(e){s.e(e)}finally{s.f()}}var p=ee(t.scope.getGlobalScope(),i),v=void 0===p?u:p;if("string"!=typeof v&&0===n)return v;try{v=JSON.stringify(v).replace(/^"(.*)"$/,"$1")}catch(e){}return e.substring(0,n)+v+e.substring(n+a+G.BEGIN.length+G.END.length,e.length)},W=Object.freeze({__proto__:null,template:G,extractTargetString:K,handler:function(e){var t=e.field,r=e.form,n=function(){if(t){var e=t.component,r=e.children,n=e.wrapper,o=h(e,["children","wrapper"]),a=Object.assign({},i(o));t.scopedComponent=Object.assign(Object.assign(Object.assign({},o),a),{children:r,wrapper:n})}},o=function e(o){var i=(o=o.toString()).lastIndexOf(G.BEGIN);if(-1===i)return o;var u=o.substring(i+G.BEGIN.length,o.length),c=u.substring(0,u.indexOf(G.END)),l=c.length,s="",f=c.split(G.DEFAULT_SPLITTER);if(f.length>1){c=f[0];var d,p=R(f);try{for(p.s();!(d=p.n()).done;){var v=d.value;if(v.includes("api")||v.includes("global")||v.includes("fields")||v.includes("hooks")||v.includes("configs")){var y=ee(t.scope.getGlobalScope(),v);y&&(s=y)}else s=v}}catch(e){p.e(e)}finally{p.f()}}t&&function(e){var r,o,i,u,c=!(null===(u=null===(i=null===(o=null===(r=t.scope.scope.configs)||void 0===r?void 0:r.observables)||void 0===o?void 0:o.templates)||void 0===i?void 0:i.exclude)||void 0===u?void 0:u.includes(t.component.name)),l=e[0].split(".");c&&t.subscribe(a("ON_SCOPE_CHANGE",l[0],l[1]),(function(){n(),t.rehydrate()}))}(f);var h=ee(r.scope.getGlobalScope(),c),b=void 0===h?s:h;if("string"!=typeof b&&0===i)return b;if(!b&&!/^\$\{.*\}$/.test(o))return o.substring(0,i)+o.substring(o.indexOf(G.BEGIN),o.lastIndexOf(G.END)+1);try{b=JSON.stringify(b).replace(/^"(.*)"$/,"$1")}catch(e){}var m=o.substring(0,i)+b+o.substring(i+l+G.BEGIN.length+G.END.length,o.length);return z(m)&&!U(m)?m.replace(/([^\s]+)/g,(function(e){if(!z(e))return e;var t=function(e){return we[e.split(B)[1].split(Y)[0]]}(e);return t?t.apply(void 0,P(function(e){return e.split(B)[1].split(Y)[1].split(H)[0].split($)}(e))):void 0})):e(m)},i=function e(t){if("string"==typeof t)return o(t);if("number"==typeof t)return t;var r=Object.assign({},t);return Object.keys(r).reduce((function(t,n){if(null===r[n])return t;if(Array.isArray(r[n]))return Object.assign(Object.assign({},t),C({},n,r[n].map(e)));if("object"===T(r[n]))return Object.assign(Object.assign({},t),C({},n,Object.assign({},e(Object.assign({},r[n])))));if("string"!=typeof r[n])return Object.assign(Object.assign({},t),C({},n,r[n]));if(!U(r[n]))return Object.assign(Object.assign({},t),C({},n,r[n]));var i=o(r[n]);try{ae(i)&&(i=JSON.parse(i))}catch(e){}return Object.assign(Object.assign({},t),C({},n,i))}),{})};n(),function(){var e=r.schema||{};e.components;var t=h(e,["components"]),n=i(t);r.scopedSchema=n,r.rehydrate()}()}});function J(e){return J="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},J(e)}function q(e){return function(e){if(Array.isArray(e))return Z(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return Z(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Z(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Z(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Q(e,t,r){return(t=function(e){var t=function(e,t){if("object"!==J(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!==J(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===J(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var X=function(e,t,r,n,o){var i=function(e){return"boolean"==typeof r&&"string"==typeof e?/true/.test(e):r.constructor(e)},a=t.split(".");if(1===a.length)return Object.assign(Object.assign({},e),Q({},t,i(K(r,n,o))));return function e(t,a){var u=q(t);u.splice(0,1);var c=1!==t.length?e(u,a?a[t[0]]:{}):i(K(r,n,o));return Object.assign(Object.assign({},a),Q({},t[0],c))}(a,e)},ee=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(arguments.length>1&&void 0!==arguments[1]?arguments[1]:"").split(".").reduce((function(e,t){return(e||{})[t]}),e)};function te(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,o,i,a,u=[],c=!0,l=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(n=i.call(r)).done)&&(u.push(n.value),u.length!==t);c=!0);}catch(e){l=!0,o=e}finally{try{if(!c&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(l)throw o}}return u}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return re(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return re(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function re(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var ne=function(e,t){var r=oe(e.toString()),n=i.default(r);return[(null==t?void 0:t.length)?null==n?void 0:n.filter((function(e){var r=e.type;return t.some((function(e){return e===r}))}))[0]:n[0],r]},oe=function(e){return null==e?void 0:e.replace(/ /g,"")},ie=function(e,t){return t?function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],r=t.reduce((function(e,r,n){var o=te(e,2),i=o[0],a=o[1],u=r-(t[n-1]||0);return["".concat(i,"([0-9]{0,").concat(u,"})"),"".concat(a,"$").concat(n+1," ")]}),["",""]),n=te(r,2),o=n[0],i=n[1];return e.replace(new RegExp(o),i).trim()}(e.slice(0,null==t?void 0:t.lengths[0]),t.gaps):e.slice(0,19)};function ae(e){if("string"!=typeof e)return!1;try{var t=JSON.parse(e),r=Object.prototype.toString.call(t);return"[object Object]"===r||"[object Array]"===r}catch(e){return!1}}function ue(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,o,i,a,u=[],c=!0,l=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(n=i.call(r)).done)&&(u.push(n.value),u.length!==t);c=!0);}catch(e){l=!0,o=e}finally{try{if(!c&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(l)throw o}}return u}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return ce(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return ce(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ce(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var le=function(e){var t=e.value,r=e.formatterValue;if(!t)return t;var n="",o=0;return r.forEach((function(e,i){var a=0===i?i:r[i-1].position+1;t[e.position]==e.value&&o++,n+=t.slice(a,e.position)})),n+=t.slice(n.length+o)},se={splitter:function(e){var t=e.value,r=e.formatterValue;if(!t)return t;var n=le({value:t,formatterValue:r});return r.forEach((function(e){e.position>=t.length||(n=n.slice(0,e.position)+e.value+n.slice(e.position,null==n?void 0:n.length))})),n},undo_splitter:le,capitalize:function(e){var t=e.value;return t?t.charAt(0).toUpperCase()+t.slice(1):t},upperCase:function(e){var t=e.value;return t?t.toUpperCase():t},gapsCreditCard:function(e){var t=e.value,r=e.formatterValue;if(t){var n=ue(ne(t,r),2),o=n[0],i=n[1];return ie(i,o)}},onlyNumbers:function(e){return e.value.replace(/([^\d])+/gim,"")},onlyLetters:function(e){return e.value.replace(/([0-9:\s/-])+/g,"")},regex:function(e){var t=e.value,r=e.formatterValue;return t.replace(new RegExp(r,"g"),"")}},fe=function(e,t,r){var n=e;return Object.keys(t).forEach((function(e){var o=t[e],i=se[r?"undo_".concat(e):e];i&&(n=i({value:n,formatterValue:o}))})),n},de=function(e){var t=e.value,r=void 0===t?"":t,n=e.maskValue,o=r;return n.forEach((function(e){var t=e.to,n=void 0===t?o.length:t,i=e.mask,a=e.from;if(!(n>r.length-1)){0===a&&(a=1);var u=new Array(n-a+2).join(i);o=o.slice(0,a-1)+u+o.slice(n)}})),o},pe={generic:de,cardNumber:function(e){var t=e.value;return de({value:t,maskValue:[{from:1,to:4,mask:"x"},{from:6,to:9,mask:"x"},{from:11,to:14,mask:"x"},{from:16,to:19,mask:"x"}]})},hideCardNumber:function(e){var t=e.value;return de({value:t,maskValue:[{from:1,to:4,mask:"x"},{from:6,to:9,mask:"x"},{from:11,to:14,mask:"x"},{from:16,to:19,mask:"x"}]})},cardMask:function(e){return e.value.replace(/[^\dA-Z]/g,"").replace(/(.{4})/g,"$1 ").trim()},cardDate:function(e){var t=e.value.replace(/\D/g,""),r=t.slice(0,2);return t.length>=5?"".concat(r,"/").concat(t.slice(2,4)):t.length>=3?"".concat(r,"/").concat(t.slice(2)):t},currencyMask:function(e){var t=e.value,r=void 0===t?"":t,n=e.maskValue,o=r.replace(/[^0-9]/g,"");return new Intl.NumberFormat(n.locale,{minimumFractionDigits:0,maximumFractionDigits:0,style:"currency",currency:n.currency}).format(+o)},feinMask:function(e){var t=e.value.replace(/\D/g,""),r=t.slice(0,2);return t.length>=5?"".concat(r,"-").concat(t.slice(2,9)):t.length>=3?"".concat(r,"-").concat(t.slice(2)):t},replaceAll:function(e){var t=e.value,r=void 0===t?"":t,n=e.maskValue;return n&&"string"==typeof r?("number"==typeof n&&(n=null==n?void 0:n.toString()),new Array(r.length+1).join(n)):r}};function ve(e,t,r){return(t=function(e){var t=function(e,t){if("object"!==ye(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!==ye(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===ye(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function ye(e){return ye="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ye(e)}function he(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,o,i,a,u=[],c=!0,l=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(n=i.call(r)).done)&&(u.push(n.value),u.length!==t);c=!0);}catch(e){l=!0,o=e}finally{try{if(!c&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(l)throw o}}return u}}(e,t)||be(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function be(e,t){if(e){if("string"==typeof e)return me(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?me(e,t):void 0}}function me(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var ge=function(e){var t=e.value,r=e.validationValue,n=new RegExp(r);return{fail:!n.test(t)}},Oe=function(e){var t=e.value,r=void 0===t?"":t,n=e.validationValue.some((function(e){var t=e.to,n=e.from,o=e.validations,i=r.substring(t,n);return je(Se(i,o))}));return{fail:n}},Ee=function(e){var t,r,n,o,i,a=e.value,u=void 0===a?"":a,c=e.validationValue;if(!(null===(t=null==c?void 0:c.target)||void 0===t?void 0:t.value)&&!(null===(r=null==c?void 0:c.origin)||void 0===r?void 0:r.intervals))return{fail:!1};var l,s={DDMMYYYY:function(e){var t=e.split(e.includes("/")?"/":"-");return"".concat(t[1],"/").concat(t[0],"/").concat(t[2])},YYYYMMDD:function(e){var t=e.split(e.includes("/")?"/":"-");return"".concat(t[1],"/").concat(t[2],"/").concat(t[0])},YYYYDDMM:function(e){var t=e.split(e.includes("/")?"/":"-");return"".concat(t[2],"/").concat(t[1],"/").concat(t[0])},MMDDYYYY:function(e){return e},timestamp:function(e){return new Date(e).toString()}},f=c.origin.value||u,d=new Date(s[null==c?void 0:c.origin.format](f).toString()),p=new Date;if((null===(n=null==c?void 0:c.target)||void 0===n?void 0:n.format)&&(p=l=new Date(s[null===(o=null==c?void 0:c.target)||void 0===o?void 0:o.format](c.target.value).toString())),c.origin.intervals){p=function(e,t){var r={years:function(e,t){return new Date(e.setUTCFullYear(e.getUTCFullYear()+t))},months:function(e,t){return new Date(e.setUTCMonth(e.getUTCMonth()+t))},days:function(e,t){return new Date(e.setDate(e.getUTCDate()+t))}};return Object.keys(t).reduce((function(e,n){return r[n](e,t[n])}),new Date(e))}(d,c.origin.intervals);var v=new Date;(null===(i=c.target)||void 0===i?void 0:i.value)&&l&&(v.setDate(l.getDate()),v.setMonth(l.getMonth())),d=new Date("".concat(v.getUTCMonth()+1,"/").concat(v.getUTCDate(),"/").concat(v.getUTCFullYear()))}if(c.onlyValidDate&&(!(p instanceof Date&&isFinite(p))||!(p instanceof Date&&isFinite(d))||f.length<8))return{fail:!0};var y=d.getTime(),h=p.getTime();return{fail:{">":y>h,">=":y>=h,"<":y<h,"<=":y<=h,"===":y===h,"!==":y!==h}[null==c?void 0:c.operator]}},_e={between:function(e){var t,r=e.value,n=e.validationValue,o=!1;if(!(2==(null===(t=null==n?void 0:n.dates)||void 0===t?void 0:t.length)||(null==n?void 0:n.start)&&(null==n?void 0:n.end)))return{fail:!1};if(n.dates){var i,a=function(e,t){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=be(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var n=0,o=function(){};return{s:o,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,u=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return a=e.done,e},e:function(e){u=!0,i=e},f:function(){try{a||null==r.return||r.return()}finally{if(u)throw i}}}}(n.dates);try{for(a.s();!(i=a.n()).done;){var u=i.value;if(Ee({value:r,validationValue:u}).fail){o=!0;break}}}catch(e){a.e(e)}finally{a.f()}}else{var c=parseInt(r);n.isIncludedBoundaries?(c<n.start||c>n.end)&&(o=!0):(c<=n.start||c>=n.end)&&(o=!0)}return{fail:o}},conditions:function e(t){var r=t.value,n=void 0===r?"":r,o=t.validationValue;if(!o)return{fail:!1};var i=function(e){if(e.forceDefinedOrigin&&void 0===e.origin||e.forceDefinedTarget&&void 0===e.target)return{fail:!1};var t=void 0===e.origin?n:e.origin,r=void 0===e.target?n:e.target;return{"!==":(t||n)!==(r||n),"===":(t||n)===(r||n),"<":(t||n)<(r||n),">":(t||n)>(r||n),"<=":(t||n)<=(r||n),">=":(t||n)>=(r||n)}[e.condition]},a={and:function(){return!!o.set.every(i)},or:function(){return!!o.set.some(i)}}[o.rule]();return o.conditions&&(a="and"===o.rule?a&&e({value:n,validationValue:o.conditions}).fail:a||e({value:n,validationValue:o.conditions}).fail),{fail:a}},date:Ee,length:function(e){var t=e.value,r=e.validationValue,n=t;return"string"!=typeof n&&(n=null==t?void 0:t.toString()),{fail:!t||(null==n?void 0:n.length)===r}},greaterThan:function(e){var t=e.value,r=e.validationValue;return{fail:!t||parseInt(t)<=parseInt(r)}},maxLength:function(e){var t=e.value,r=void 0===t?"":t,n=e.validationValue,o=r;return Number.isInteger(o)&&(o=r.toString()),{fail:o.length>n}},minLength:function(e){var t=e.value,r=void 0===t?"":t,n=e.validationValue,o=r;return Number.isInteger(o)&&(o=r.toString()),{fail:o.length<n}},required:function(e){var t=e.value;return{fail:e.validationValue&&!t}},value:function(e){var t=e.value;return{fail:t!==e.validationValue}},bool:function(e){var t=e.validationValue,r=!1;return"boolean"==typeof t&&(r=t),{fail:r}},regex:ge,hasNoExtraSpaces:function(e){var t=e.value;return{fail:ge({value:t,validationValue:"^[A-Za-z0-9.-]+(?: +[A-Za-z0-9.-]+)*$",errorMessage:""}).fail}},isCreditCard:function(e){var t,r,n=e.value,o=e.validationValue;if(!n)return{fail:!0};var i=he(ne(n,o),1)[0];return{fail:!i,metadata:{typeCard:null==i?void 0:i.type,creditCardCC:null===(t=null==i?void 0:i.code)||void 0===t?void 0:t.name,creditCardCCSize:null===(r=null==i?void 0:i.code)||void 0===r?void 0:r.size}}},isCreditCardAndLength:function(e){var t=e.value,r=e.validationValue;if(!t)return{fail:!0};var n=he(ne(t,r),2),o=n[0],i=n[1];return{fail:o&&!o.lengths.includes(i.length)}},isCreditCodeMatch:function(e){var t,r=e.value,n=e.validationValue;if(!r)return{fail:!0};var o=he(ne(n.numberCard,n.availableOptions),1)[0];return{fail:(null===(t=null==o?void 0:o.code)||void 0===t?void 0:t.size)!==r.length}},onlyLetters:function(e){var t=e.value;return{fail:!/^[a-zA-Z\s]*$/.test(t)}},notAllowSpaces:function(e){var t=e.value;return{fail:/\s/.test(t)}},callback:function(e){var t=e.value,r=(0,e.validationValue)(t);return{message:r.errorMessage,fail:r.fail}},isNumber:function(e){var t=e.value;return{fail:!!t&&!/^[0-9\s]*$/.test(t)}},customValidation:function(e){var t=e.value,r=e.validationValue;return Oe({value:t,validationValue:r})},notEmpty:function(e){return{fail:!e.value.trim().length}},numericRange:function(e){var t=e.value,r=e.validationValue,n=String(t).replace(/[^0-9]/g,"");return{fail:!n||!Number.isInteger(parseInt(n.toString()))||+n>r.end||+n<r.start}},email:function(e){var t=e.value;return{fail:!/^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(t)}},lessThan:function(e){var t=e.value,r=e.validationValue;return{fail:!t||parseInt(t)>=parseInt(r)}},sequentialNumber:function(e){var t=e.value,r=String(t).replace(/[^0-9]/g,"");return{fail:!(-1==="0123456789".indexOf(r)&&-1==="9876543210".indexOf(r))}},repeatedNumbers:function(e){var t=e.value,r=String(t).replace(/[^0-9]/g,"");return{fail:/\b(\d)\1+\b/gm.test(r)}},url:function(e){var t=e.value;return{fail:!/[(http(s)?)://(www.)?a-zA-Z0-9@:%._+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_+.~#?&//=]*)/gi.test(t)}},path:function(e){var t=e.value,r=e.validationValue,n=function(e){var n=ee(t,e);if(r.preventUnMountValidation&&!(e in t))return{fail:!1};var o,i,a=Se(n,r);return i={fail:!1},(o=a)?Object.keys(o).reduce((function(e,t){return o[t].fail?o[t]:e}),i):i};return Array.isArray(r.paths)?r.paths.reduce((function(e,t){var r=n(t);return r.fail?r:e}),{}):n(r.path)},isInTheList:function(e){var t=e.value,r=e.validationValue;return t&&Array.isArray(r)?{fail:!r.some((function(e){return e===t||JSON.stringify(e)===t}))}:{fail:!0}},fields:function(e){var t=e.values,r=e.validationValue;return{fail:null==r?void 0:r.set[r.rule]((function(e){var r;return je(Se(null===(r=t[e.fieldName])||void 0===r?void 0:r.value,e.validations))}))}},customNameRule:function(e){var t=e.value,r=e.validationValue;return"object"!==ye(r)?{fail:!1}:{fail:je(Se(t,r))}},exists:function(e){return{fail:!e.validationValue}}},Se=function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o={};return Object.keys(t).forEach((function(i){var a=t[i],u=_e[i];u||(u=_e.customNameRule);var c=r[i]||r.default,l=u({value:e,validationValue:a,errorMessage:c,values:n});o=Object.assign(Object.assign({},o),ve({},i,Object.assign(Object.assign({},l),{validationValue:a,message:c})))})),o},je=function(e){return!!e&&!!Object.keys(e).find((function(t){return e&&e[t].fail}),[])},we=Object.freeze({__proto__:null,concatenate:function(e,t){return e+t},add:function(e,t){return((parseInt(e)||0)+(parseInt(t)||0)).toString()},subtract:function(e,t){return parseInt(e)-parseInt(t)},replaceAll:function(e,t,r){return e.replace(new RegExp(t,"g"),r)}}),Ae=Object.freeze({__proto__:null,handler:function(e){var t=e.field,r=e.data;t.data.changed=!0,t.data.metadata=r.metadata,t.value=r.parsedEventValue}}),Ne=Object.freeze({__proto__:null,handler:function(e){var t,r,n,o,i,u,c,l,s=e.form,f=e.field;f.subscribe(a("ON_SCOPE_CHANGE","configs","disable"),(function(){return f.rehydrate()}));var d=f.component.props,p=(void 0===d?{}:d)[null===(t=f.mappings)||void 0===t?void 0:t.setValue],v=f.component.group&&ee(s.initialValues,f.component.group),y=ee(s.initialValues,v===(null===(r=f.component.props)||void 0===r?void 0:r.value)&&v?f.component.group:f.component.name)||p;f.value=(null===(l=null===(o=null===(n=s.formData.form)||void 0===n?void 0:n.steps)||void 0===o?void 0:o.data[null===(c=null===(u=null===(i=s.formData)||void 0===i?void 0:i.form)||void 0===u?void 0:u.steps)||void 0===c?void 0:c.index])||void 0===l?void 0:l.formatted[f.component.name])||(f.data.mounted?void 0:y),f.data.mounted=!0}}),Ie=Object.freeze({__proto__:null,handler:function(e){e.field.data.blured=!0}}),Fe=Object.freeze({__proto__:null,handler:function(e){var t=e.field;t.data=Object.assign(Object.assign({},t.data),{focused:!0})}});function Le(e){return Le="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Le(e)}function ke(){/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ke=function(){return e};var e={},t=Object.prototype,r=t.hasOwnProperty,n=Object.defineProperty||function(e,t,r){e[t]=r.value},o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",u=o.toStringTag||"@@toStringTag";function c(e,t,r){return Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,r){return e[t]=r}}function l(e,t,r,o){var i=t&&t.prototype instanceof d?t:d,a=Object.create(i.prototype),u=new w(o||[]);return n(a,"_invoke",{value:E(e,r,u)}),a}function s(e,t,r){try{return{type:"normal",arg:e.call(t,r)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var f={};function d(){}function p(){}function v(){}var y={};c(y,i,(function(){return this}));var h=Object.getPrototypeOf,b=h&&h(h(A([])));b&&b!==t&&r.call(b,i)&&(y=b);var m=v.prototype=d.prototype=Object.create(y);function g(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function o(n,i,a,u){var c=s(e[n],e,i);if("throw"!==c.type){var l=c.arg,f=l.value;return f&&"object"==Le(f)&&r.call(f,"__await")?t.resolve(f.__await).then((function(e){o("next",e,a,u)}),(function(e){o("throw",e,a,u)})):t.resolve(f).then((function(e){l.value=e,a(l)}),(function(e){return o("throw",e,a,u)}))}u(c.arg)}var i;n(this,"_invoke",{value:function(e,r){function n(){return new t((function(t,n){o(e,r,t,n)}))}return i=i?i.then(n,n):n()}})}function E(e,t,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return N()}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var u=_(a,r);if(u){if(u===f)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var c=s(e,t,r);if("normal"===c.type){if(n=r.done?"completed":"suspendedYield",c.arg===f)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(n="completed",r.method="throw",r.arg=c.arg)}}}function _(e,t){var r=t.method,n=e.iterator[r];if(void 0===n)return t.delegate=null,"throw"===r&&e.iterator.return&&(t.method="return",t.arg=void 0,_(e,t),"throw"===t.method)||"return"!==r&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+r+"' method")),f;var o=s(n,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,f;var i=o.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,f):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,f)}function S(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function j(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function w(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(S,this),this.reset(!0)}function A(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var n=-1,o=function t(){for(;++n<e.length;)if(r.call(e,n))return t.value=e[n],t.done=!1,t;return t.value=void 0,t.done=!0,t};return o.next=o}}return{next:N}}function N(){return{value:void 0,done:!0}}return p.prototype=v,n(m,"constructor",{value:v,configurable:!0}),n(v,"constructor",{value:p,configurable:!0}),p.displayName=c(v,u,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===p||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,v):(e.__proto__=v,c(e,u,"GeneratorFunction")),e.prototype=Object.create(m),e},e.awrap=function(e){return{__await:e}},g(O.prototype),c(O.prototype,a,(function(){return this})),e.AsyncIterator=O,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new O(l(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},g(m),c(m,u,"Generator"),c(m,i,(function(){return this})),c(m,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=Object(e),r=[];for(var n in t)r.push(n);return r.reverse(),function e(){for(;r.length;){var n=r.pop();if(n in t)return e.value=n,e.done=!1,e}return e.done=!0,e}},e.values=A,w.prototype={constructor:w,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(j),!e)for(var t in this)"t"===t.charAt(0)&&r.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function n(r,n){return a.type="throw",a.arg=e,t.next=r,n&&(t.method="next",t.arg=void 0),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return n("end");if(i.tryLoc<=this.prev){var u=r.call(i,"catchLoc"),c=r.call(i,"finallyLoc");if(u&&c){if(this.prev<i.catchLoc)return n(i.catchLoc,!0);if(this.prev<i.finallyLoc)return n(i.finallyLoc)}else if(u){if(this.prev<i.catchLoc)return n(i.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return n(i.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=e,a.arg=t,i?(this.method="next",this.next=i.finallyLoc,f):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),f},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.finallyLoc===e)return this.complete(r.completion,r.afterLoc),j(r),f}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.tryLoc===e){var n=r.completion;if("throw"===n.type){var o=n.arg;j(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,r){return this.delegate={iterator:A(e),resultName:t,nextLoc:r},"next"===this.method&&(this.arg=void 0),f}},e}function De(e,t,r){return(t=function(e){var t=function(e,t){if("object"!==Le(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!==Le(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===Le(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function xe(e,t){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=function(e,t){if(!e)return;if("string"==typeof e)return Te(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Te(e,t)}(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var n=0,o=function(){};return{s:o,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,u=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return a=e.done,e},e:function(e){u=!0,i=e},f:function(){try{a||null==r.return||r.return()}finally{if(u)throw i}}}}function Te(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var Ce=Object.freeze({__proto__:null,handler:function(e){var t=e.field,r=e.form;return e.eventReducedSchema.api.forEach((function(e){var n,o=t.scope,i=Se(t.data.value,e.preConditions||{},t.scopedComponent.errorMessages,null===(n=null==r?void 0:r.formData)||void 0===n?void 0:n.fields);if(!(t.fieldHasError(i)||e.blockRequestWhenInvalid&&t.fieldValidationsHaveError(!1))){e.url.includes(G.BEGIN)&&(e.url=K(e.url,r,t));var u={},c=e.url;if(e.fieldValueAsPathParams){var l,s=xe(e.fieldValueAsPathParams);try{for(s.s();!(l=s.n()).done;){var f=l.value;Object.prototype.hasOwnProperty.call(r.fields,f)&&(c="".concat(c,"/").concat(r.fields[f].data.value))}}catch(e){s.e(e)}finally{s.f()}}if(e.fieldValueAsParams){for(var d in e.fieldValueAsParams)if(Object.prototype.hasOwnProperty.call(r.fields,d)){var p=e.fieldValueAsParams[d]||d;u=Object.assign(Object.assign({},u),De({},p,r.fields[d].data.value))}if(c.includes("?")){var v=c.split("?"),y=v.at(1).split("&");if(c=v.at(0),y.length>1){var h,m=xe(y);try{for(m.s();!(h=m.n()).done;){var g=h.value.split("=");u=Object.assign(Object.assign({},u),De({},g.at(0),g.at(1)))}}catch(e){m.e(e)}finally{m.f()}}else{var O=y.at(0).split("=");u=Object.assign(Object.assign({},u),De({},O.at(0),O.at(1)))}}var E=new URLSearchParams(u);c="".concat(c,"?").concat(E.toString())}o.globalScope={namespace:"api",key:e.scope,data:{loading:!0}},t.debounce((function(){return fetch(c,Object.assign(Object.assign({method:e.method},e.body&&{body:JSON.stringify(e.body)}),{headers:e.headers||{"Content-type":"application/json; charset=UTF-8"}})).then((function(e){var t=e.json();if(e.status>=400)throw t;return t})).then((function(t){o.globalScope={namespace:"api",key:e.scope,data:Object.assign({loading:!1,response:t},t)}})).catch((function(t){return b(void 0,void 0,void 0,ke().mark((function r(){var n;return ke().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:return r.next=2,t;case 2:n=r.sent,o.globalScope={namespace:"api",key:e.scope,data:{loading:!1,error:!0,err:n}};case 4:case"end":return r.stop()}}),r)})))})).finally((function(){return t.publish(a("AFTER_FIELD_API_CALL",t.component.name))}))}),e.debounceTime||200)}}))},events:function(e){return Object.keys(e.api||{})}});function Pe(e){return Pe="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Pe(e)}function Re(e,t,r){return(t=function(e){var t=function(e,t){if("object"!==Pe(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!==Pe(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===Pe(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Me(e){return function(e){if(Array.isArray(e))return Ve(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return Ve(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Ve(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Ve(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var Ge,Ue,Be=function(e){var t=e.form,r=e.field,n=function(e){var n;return Object.keys(e).reduce((function(e,n){var o,i,a,u,c,l=t.fields[n],s=l.data;if(!l||!l.data.visible||!l.data.name)return e;var f="";(null===(o=l.component)||void 0===o?void 0:o.group)&&(r&&r.component.name===l.component.name||!r&&!t.formData.formatted[l.component.group])&&(f=l.component.group);var d=f||n,p=void 0===s.value?t.initialValues[n]||(null===(i=t.schema)||void 0===i?void 0:i.formattedDataDefaults)&&(null===(a=t.schema)||void 0===a?void 0:a.formattedDataDefaults[n]):s.value;return{erroredFields:l.fieldHasError()?[].concat(Me(e.erroredFields),[n]):e.erroredFields,predictableErroredFields:l.fieldValidationsHaveError()?[].concat(Me(e.predictableErroredFields),[n]):e.predictableErroredFields,fields:Object.assign(Object.assign({},e.fields),Re({},n,s)),filteredFields:(null===(c=null===(u=t.schema)||void 0===u?void 0:u.filteredFields)||void 0===c?void 0:c.includes(d))?Object.assign(Object.assign(Object.assign({},e.filteredFields),void 0===p?{}:Re({},d,p)),f?Re({},f,p||e.formatted[f]):{}):e.filteredFields,formatted:Object.assign(Object.assign(Object.assign({},e.formatted),void 0===(null==s?void 0:s.value)||s.ignore?{}:X(e.formatted,n,null==s?void 0:s.value,t,l)||Re({},n,p)),f?Re({},f,p||e.formatted[f]):{})}}),{predictableErroredFields:[],erroredFields:[],fields:{},formatted:Object.assign({},null===(n=t.schema)||void 0===n?void 0:n.formattedDataDefaults),filteredFields:{}})},o=n(t.fields),i=n(t.steps[t.step.index]||{}),a=Object.assign(Object.assign({},o),{form:{scope:t.scope.getGlobalScope(),steps:Object.assign(Object.assign({},t.step),{data:Re({},t.step.index,i),isValid:!i.predictableErroredFields.length}),isValid:!o.predictableErroredFields.length,messages:function(e){var r;return(null===(r=t.schema)||void 0===r?void 0:r.messages)?Object.keys(t.schema.messages).reduce((function(r,n){var o,i,a,u=ee(e,n);return(null===(o=t.schema)||void 0===o?void 0:o.messages)&&(null===(i=t.schema)||void 0===i?void 0:i.messages[n])&&((null===(a=t.schema.messages[n].values)||void 0===a?void 0:a.includes(u))||t.schema.messages[n].value===u||t.schema.messages[n].required&&!u)?[].concat(Me(r),[t.schema.messages[n].name]):r}),[]):[]}(Object.assign(Object.assign({},t.initialValues),o.formatted))}});return t.formData=a,a},He=Object.freeze({__proto__:null,handler:Be}),Ye=function(e,t){var r=t.clearedValue!==e.data.value;e.value=t.clearedValue,r&&e.publish(a("ON_FIELD_CLEARED",e.component.name)),e.rehydrate()},$e=Object.freeze({__proto__:null,handler:function(e){var t=e.field,r=e.form,n=e.eventReducedSchema;null==n||n.clearFields.forEach((function(e){e.fields.forEach((function(n){var o=r.fields[n];if(o){if(!e.validations)return Ye(o,e);var i=Se(e.useCurrentFieldValidation?t.data.value:o.value,e.validations);o.fieldHasError(i)&&Ye(o,e)}}))}))},events:function(e){return Object.keys(e.clearFields||{})}});function ze(e){return ze="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ze(e)}function Ke(e){return function(e){if(Array.isArray(e))return We(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return We(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return We(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function We(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Je(e,t,r){return(t=function(e){var t=function(e,t){if("object"!==ze(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!==ze(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===ze(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}!function(e){e.AND="and",e.OR="or"}(Ue||(Ue={}));var qe=(Je(Ge={},Ue.OR,(function(e,t){return e.fieldHasError(Se(e.value,t))})),Je(Ge,Ue.AND,(function(e,t){var r=[];for(var n in t)r.push(e.fieldHasError(Se(e.value,Je({},n,t[n]))));return r.every((function(e){return e}))})),Ge),Ze=Object.freeze({__proto__:null,handler:function(e){var t,r=e.form,n=e.field;null===(t=e.eventReducedSchema.visibilityConditions)||void 0===t||t.forEach((function(e){var t=e.validations,o=e.fieldName,i=e.fieldNames,u=e.rule,c=e.showOnlyIfTrue,l=Ke(i||[o]),s=u||"or";l.forEach((function(e){if(e){var o=qe[s](n,t),i=c?!0===qe[s](n,t):!o;r.fields[e]?(r.fields[e].visibility=i,r.fields[e].rehydrate(),r.fields[e].visibility||(r.fields[e].errors={})):n.subscribe(a("ON_FIELD_MOUNT",e),(function(){r.fields[e].visibility=i,r.fields[e].rehydrate(),r.fields[e].visibility||(r.fields[e].errors={})}))}}))}))},events:function(e){return Object.keys(e.visibilityConditions||{})}});function Qe(e){return Qe="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Qe(e)}var Xe=Object.freeze({__proto__:null,handler:function(e){var t,r,n,o,i,a,u=e.field,c=e.data.event,l=void 0,s=void 0,f={number:function(){var e;return parseInt(null===(e=null==c?void 0:c.target)||void 0===e?void 0:e.value)},checkbox:function(){var e;return!!(null===(e=null==c?void 0:c.target)||void 0===e?void 0:e.checked)}};l=f[null===(t=null==c?void 0:c.target)||void 0===t?void 0:t.type]?f[null===(r=null==c?void 0:c.target)||void 0===r?void 0:r.type]():null===(n=null==c?void 0:c.target)||void 0===n?void 0:n.value,(Array.isArray(c)||"object"!==Qe(c)||"string"==typeof c||"number"==typeof c)&&(l=c),(null==c?void 0:c.id)&&(l=null==c?void 0:c.id,s=c),(null==c?void 0:c.options)&&(l=null==c?void 0:c.options);var d=(null==l?void 0:l.toString().length)<((null===(a=null===(i=null===(o=u.data)||void 0===o?void 0:o.value)||void 0===i?void 0:i.toString())||void 0===a?void 0:a.length)||0);return{parsedEventValue:l,metadata:s,isDeletingValue:d}}}),et=Object.freeze({__proto__:null,handler:function(e){var t=e.data,r=e.field,n=e.eventReducedSchema.formatters;n&&!t.isDeletingValue&&(r.data.value=fe(r.data.value,n))},events:function(e){return Object.keys((null==e?void 0:e.formatters)||[])}});function tt(e){return tt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},tt(e)}function rt(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,(o=n.key,i=void 0,i=function(e,t){if("object"!==tt(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!==tt(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(o,"string"),"symbol"===tt(i)?i:String(i)),n)}var o,i}function nt(e){var t=at();return function(){var r,n=ct(e);if(t){var o=ct(this).constructor;r=Reflect.construct(n,arguments,o)}else r=n.apply(this,arguments);return function(e,t){if(t&&("object"===tt(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}(this,r)}}function ot(e){var t="function"==typeof Map?new Map:void 0;return ot=function(e){if(null===e||(r=e,-1===Function.toString.call(r).indexOf("[native code]")))return e;var r;if("function"!=typeof e)throw new TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,n)}function n(){return it(e,arguments,ct(this).constructor)}return n.prototype=Object.create(e.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),ut(n,e)},ot(e)}function it(e,t,r){return it=at()?Reflect.construct.bind():function(e,t,r){var n=[null];n.push.apply(n,t);var o=new(Function.bind.apply(e,n));return r&&ut(o,r.prototype),o},it.apply(null,arguments)}function at(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}function ut(e,t){return ut=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},ut(e,t)}function ct(e){return ct=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},ct(e)}var lt=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&ut(e,t)}(i,ot(Error));var t,r,n,o=nt(i);function i(e,t){var r,n=t.breaksObservingChain;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,i),(r=o.call(this)).breaksObservingChain=!1,r.message=e,r.breaksObservingChain=n,r}return t=i,r&&rt(t.prototype,r),n&&rt(t,n),Object.defineProperty(t,"prototype",{writable:!1}),t}(),st=Object.freeze({__proto__:null,handler:function(e){var t=e.field,r=e.data,n=e.eventReducedSchema.formatters,o=t.scopedComponent,i=o.errorMessages,a=o.filter;if(a&&r.parsedEventValue&&!r.isDeletingValue){var u=n&&fe(r.parsedEventValue,n,!0)||r.parsedEventValue,c=Se(u,a,i);if(t.fieldHasError(c))throw new lt("Filter applied ".concat(JSON.stringify(a)),{breaksObservingChain:!0})}}}),ft=Object.freeze({__proto__:null,handler:function(e){var t=e.field,r=e.eventReducedSchema.masks;r&&(t.data.mask=(null==r?void 0:r.cleanMask)?void 0:function(e,t){var r=e;return Object.keys(t).forEach((function(e){var n=t[e],o=pe[e];o&&(r=o({value:r,maskValue:n}))})),r}(t.data.value,r))},events:function(e){return Object.keys(e.masks||{})}}),dt=function(e){var t=e.field,r=e.eventReducedSchema.validations,n=e.form;if(r){var o=Se(t.data.value,r,t.scopedComponent.errorMessages,n.formData.fields);t.fieldHasError(o)!==t.fieldHasError()&&t.publish("ON_FIELD_VALIDATION_TOGGLE",{field:t.data}),t.errors=t.data.visible?o:{},t.data.failedErrorMessages=t.getFieldErrorMessages(t.data)}},pt=Object.freeze({__proto__:null,handler:dt,events:function(e){return Object.keys(e.validations||{})}}),vt=Object.freeze({__proto__:null,handler:function(e){var t=e.field,r=e.data;t.data.keyup=!0,t.value=r.parsedEventValue}}),yt=Object.freeze({__proto__:null,handler:function(e){var t=e.field,r=e.data;t.data.keydown=!0,t.value=r.parsedEventValue}}),ht=Object.freeze({__proto__:null,handler:function(e){var t=e.form;return{setScope:function(e){return t.scope.globalScope=e}}}});function bt(e){return bt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},bt(e)}function mt(e,t,r){return(t=function(e){var t=function(e,t){if("object"!==bt(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!==bt(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===bt(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var gt=Object.freeze({__proto__:null,handler:function(e){var t,r=e.form,n=e.event,o=e.payload,i=(mt(t={},c.NAVIGATE_STEP_BACK,r.step.index-1),mt(t,c.NAVIGATE_STEP_FORWARD,r.step.index+1),t),a=r.schema.components,u=i[n],l=o.constructor===Object?a[i[n]]:"string"==typeof o?(u=a.findIndex((function(e){return e.name===o})),a.find((function(e){return e.name===o}))):"number"==typeof o?(u=o,a[o]):void 0;r.step=l?Object.assign(Object.assign({},r.step),{numSteps:a.length,navigated:!!l,index:l?u:r.step.index,currentStepSchema:l||r.step.currentStepSchema}):Object.assign(Object.assign({},r.step),{navigated:!1})}});function Ot(e){return Ot="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ot(e)}function Et(e,t,r){return(t=function(e){var t=function(e,t){if("object"!==Ot(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!==Ot(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===Ot(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var _t=Object.freeze({__proto__:null,handler:function(e){var t,r=e.form,n=e.payload,o=(t=function(e){if(e&&Object.keys(e).length&&(e.scopeBlurredChildren||e.scopeChangedChildren||e.childrenScope))return Object.keys(r.fields).filter((function(t){var n;return(null==e?void 0:e.scopeBlurredChildren)&&r.fields[t].data.blured||(null==e?void 0:e.scopeChangedChildren)&&r.fields[t].data.changed||(null===(n=null==e?void 0:e.childrenScope)||void 0===n?void 0:n.includes(t))}))}(n))?Object.keys(r.fields).reduce((function(e,n){return t.includes(n)?Object.assign(Object.assign({},e),Et({},n,r.fields[n])):e}),{}):r.fields;Object.keys(o).forEach((function(e){o[e].fieldValidationsHaveError(!0)&&o[e].rehydrate()}))}});function St(e){return St="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},St(e)}function jt(e,t,r){return(t=function(e){var t=function(e,t){if("object"!==St(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!==St(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===St(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var wt=Object.freeze({__proto__:null,handler:function(e){var t,r=e.form,n=e.payload,o=(t=Object.keys(n))?Object.keys(r.fields).reduce((function(e,n){return t.includes(n)?Object.assign(Object.assign({},e),jt({},n,r.fields[n])):e}),{}):r.fields;Object.keys(o).forEach((function(e){var t,i=null===(t=null==n?void 0:n[e])||void 0===t?void 0:t.value,a=o[e];a.value=i||"",a.scopedComponent=Object.assign(Object.assign({},a.scopedComponent),{props:Object.assign(Object.assign({},a.scopedComponent.props),n[e].props)});var u=Object.keys(a.scopedComponent.validations).reduce((function(e,t){return Object.assign(Object.assign({},e),a.eventReducedSchema(t).validations)}),{});dt({field:a,eventReducedSchema:{validations:u},form:r}),Be({form:r,field:a}),a.rehydrate()}))}});function At(e){return function(e){if(Array.isArray(e))return Nt(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return Nt(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Nt(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Nt(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var It=Object.freeze({__proto__:null,handler:function(e){var t,r=e.form,n=e.formEventDirectives;null===(t=null==n?void 0:n.visibilityConditions)||void 0===t||t.forEach((function(e){At(e.fieldNames||[e.fieldName]).forEach((function(t){if(t){var n=r.fields[t];r.fields[t].visibility=null==n?void 0:n.fieldHasError(Se(n.value,e.validations)),r.fields[t].rehydrate()}}))}))},events:function(e){return Object.keys((null==e?void 0:e.visibilityConditions)||{})}});function Ft(e){return Ft="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ft(e)}function Lt(e,t,r){return(t=function(e){var t=function(e,t){if("object"!==Ft(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!==Ft(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===Ft(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function kt(e,t){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=function(e,t){if(!e)return;if("string"==typeof e)return Dt(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Dt(e,t)}(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var n=0,o=function(){};return{s:o,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,u=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return a=e.done,e},e:function(e){u=!0,i=e},f:function(){try{a||null==r.return||r.return()}finally{if(u)throw i}}}}function Dt(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var xt="${",Tt="}",Ct="||",Pt=Object.freeze({__proto__:null,handler:function(e){var t,r=e.form,n=function e(t){var n=(t=t.toString()).lastIndexOf(xt);if(-1===n)return t;var o=t.substring(n+xt.length,t.length),i=o.substring(0,o.indexOf(Tt)),a=i.length,u="",c=i.split(Ct);if(c.length>1){i=c[0];var l,s=kt(c);try{for(s.s();!(l=s.n()).done;){var f=l.value;if(f.includes("api")||f.includes("global")||f.includes("fields")||f.includes("hooks")||f.includes("configs")){var d=ee(r.scope.getGlobalScope(),f);d&&(u=d)}else u=f}}catch(e){s.e(e)}finally{s.f()}}var p=ee(r.scope.getGlobalScope(),i),v=void 0===p?u:p;if("string"!=typeof v&&0===n)return v;try{v=JSON.stringify(v).replace(/^"(.*)"$/,"$1")}catch(e){}return e(t.substring(0,n)+v+t.substring(n+a+xt.length+Tt.length,t.length))};r.scopedSchema=Object.assign(Object.assign({},r.schema),function e(t){if("string"==typeof t)return n(t);if("number"==typeof t)return t;var r=Object.assign({},t);return Object.keys(r).reduce((function(t,o){if(null===r[o])return t;if(Array.isArray(r[o]))return Object.assign(Object.assign({},t),Lt({},o,r[o].map(e)));if("object"===Ft(r[o]))return Object.assign(Object.assign({},t),Lt({},o,Object.assign({},e(Object.assign({},r[o])))));if("string"!=typeof r[o])return Object.assign(Object.assign({},t),Lt({},o,r[o]));if(!function(e){return/\$\{(.*)\}.*/g.test(e)}(r[o]))return Object.assign(Object.assign({},t),Lt({},o,r[o]));var i=n(r[o]);try{ae(i)&&(i=JSON.parse(i))}catch(e){}return Object.assign(Object.assign({},t),Lt({},o,i))}),{})}({visibilityConditions:null===(t=null==r?void 0:r.schema)||void 0===t?void 0:t.visibilityConditions}))}});function Rt(e){return Rt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Rt(e)}function Mt(e,t,r){return(t=function(e){var t=function(e,t){if("object"!==Rt(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!==Rt(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===Rt(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var Vt,Gt,Ut,Bt,Ht=function(e,t,r){var n=t();Object.keys(n).forEach((function(t){n[t].forEach((function(n){if(n.events){var o=n.events(r);if(Array.isArray(o)&&!o.includes(t))return}e.subscribe(a(t,null==r?void 0:r.name),n.handler)}))}))},Yt=function(){var e;return Mt(e={},"ON_FIELD_MOUNT",[W,Ne,Ce,pt,et,Ze,$e,ft,He]),Mt(e,"ON_FIELD_CHANGE",[Xe,st,Ae,pt,et,Ze,$e,Ce,He,ft]),Mt(e,"ON_FIELD_KEYUP",[Xe,st,vt,pt,et,Ze,$e,Ce,He,ft]),Mt(e,"ON_FIELD_KEYDOWN",[Xe,st,yt,pt,et,Ze,$e,Ce,He,ft]),Mt(e,"ON_FIELD_REHYDRATE",[pt]),Mt(e,"ON_FIELD_CLEARED",[et,ft,st,pt,Ce]),Mt(e,"ON_FIELD_CLICK",[pt,Ce,Ze,$e]),Mt(e,"ON_FIELD_BLUR",[Ie,et,ft,pt,Ce,Ze,$e,He]),Mt(e,"ON_FIELD_FOCUS",[Fe,ft]),Mt(e,"AFTER_FIELD_API_CALL",[Xe,st,pt,et,ft,He,Ze,$e]),e},$t=function(){var e;return Mt(e={},"ON_SCOPE_CHANGE",[Pt,It]),Mt(e,"ON_FORM_MOUNT",[W,ht,gt,It]),Mt(e,"VALIDATE_FORM",[_t]),Mt(e,"ON_FORM_SUBMIT",[ht]),Mt(e,"ON_FORM_UN_MOUNT",[ht]),Mt(e,"NAVIGATE_STEP",[gt]),Mt(e,"NAVIGATE_STEP_BACK",[gt]),Mt(e,"NAVIGATE_STEP_FORWARD",[gt]),Mt(e,u("ON_SCOPE_CHANGE"),[It,W]),Mt(e,"ON_FORM_REHYDRATE",[It]),Mt(e,"ON_FIELD_CHANGE",[It]),Mt(e,"CHANGE_FIELDS",[wt]),e};function zt(e){return zt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},zt(e)}function Kt(e){return function(e){if(Array.isArray(e))return Wt(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return Wt(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Wt(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Wt(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Jt(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,qt(n.key),n)}}function qt(e){var t=function(e,t){if("object"!==zt(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!==zt(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===zt(t)?t:String(t)}function Zt(e,t){return Zt=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},Zt(e,t)}function Qt(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,n=er(e);if(t){var o=er(this).constructor;r=Reflect.construct(n,arguments,o)}else r=n.apply(this,arguments);return function(e,t){if(t&&("object"===zt(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return Xt(e)}(this,r)}}function Xt(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function er(e){return er=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},er(e)}var tr,rr,nr,or=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&Zt(e,t)}(i,j);var t,r,n,o=Qt(i);function i(e,t,r,n){var a,u,c;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,i),a=o.call(this,e),Vt.set(Xt(a),void 0),Gt.set(Xt(a),void 0),Ut.set(Xt(a),void 0),Bt.set(Xt(a),void 0),a.scopedComponent=t,g(Xt(a),Gt,t,"f"),g(Xt(a),Bt,r,"f"),a.scope=n,g(Xt(a),Vt,{blured:!1,changed:!1,mounted:!1,focused:!1,errors:{},failedErrorMessages:[],visible:!(null===(u=t.state)||void 0===u?void 0:u.hidden),ignore:null===(c=t.state)||void 0===c?void 0:c.ignoreValue,name:t.name},"f"),Ht(e,Yt,t),a}return t=i,r=[{key:"value",get:function(){return m(this,Bt,"f").setValue&&m(this,Gt,"f").props&&this.scopedComponent.props&&void 0!==this.scopedComponent.props[m(this,Bt,"f").setValue]&&this.scopedComponent.props[m(this,Bt,"f").setValue]!==m(this,Gt,"f").props[m(this,Bt,"f").setValue]?void 0!==m(this,Vt,"f").value&&m(this,Gt,"f").props[m(this,Bt,"f").setValue]!==m(this,Vt,"f").value?m(this,Vt,"f").value:this.scopedComponent.props[m(this,Bt,"f").setValue]:m(this,Vt,"f").mask||m(this,Vt,"f").value},set:function(e){m(this,Vt,"f").value=e,this.scope.globalScope={namespace:"fields",key:m(this,Gt,"f").name,data:m(this,Vt,"f")}}},{key:"component",get:function(){return m(this,Gt,"f")}},{key:"data",get:function(){return m(this,Vt,"f")},set:function(e){g(this,Vt,Object.assign(Object.assign({},m(this,Vt,"f")),e),"f"),this.scope.globalScope={namespace:"fields",key:m(this,Gt,"f").name,data:m(this,Vt,"f")}}},{key:"visibility",set:function(e){m(this,Vt,"f").visible=e}},{key:"scopedComponent",get:function(){return m(this,Ut,"f")},set:function(e){g(this,Ut,e,"f")}},{key:"errors",get:function(){return m(this,Vt,"f").errors},set:function(e){m(this,Vt,"f").errors=e,this.scope.globalScope={namespace:"fields",key:m(this,Gt,"f").name,data:m(this,Vt,"f")}}},{key:"props",get:function(){var e,t=this;if(!this.scopedComponent.name||!m(this,Bt,"f"))return this.scopedComponent.props;var r={getValue:function(e){t.publish(a("ON_FIELD_CHANGE",t.component.name),{event:e}),t.publish("ON_FIELD_CHANGE",{component:t.component.name,event:e})},onBlur:function(e){return t.publish(a("ON_FIELD_BLUR",t.component.name),{event:e})},onClick:function(e){return t.publish(a("ON_FIELD_CLICK",t.component.name),{event:e})},onFocus:function(e){return t.publish(a("ON_FIELD_FOCUS",t.component.name),{event:e})},onKeyUp:function(e){return t.publish(a("ON_FIELD_KEYUP",t.component.name),{event:e})},onKeyDown:function(e){return t.publish(a("ON_FIELD_KEYDOWN",t.component.name),{event:e})},setValue:this.value,setErrorMessage:this.getFieldErrorMessages()[0],setErrorState:this.fieldHasError()};return Object.keys(m(this,Bt,"f")).reduce((function(e,n){return void 0===r[n]?e:Object.assign(Object.assign({},e),function(e,t,r){return(t=qt(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}({},m(t,Bt,"f")[n],r[n]))}),Object.assign({disabled:null===(e=this.scope.scope.configs)||void 0===e?void 0:e.disable},m(this,Ut,"f").props))}},{key:"mappings",get:function(){return m(this,Bt,"f")}},{key:"getFieldErrorMessages",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:m(this,Vt,"f");return t.errors?Object.keys(t.errors).reduce((function(r,n){var o=t.errors;return(void 0===o?{}:o)[n].fail&&e.scopedComponent.errorMessages?[].concat(Kt(r),[e.scopedComponent.errorMessages[n]||e.scopedComponent.errorMessages.default]):r}),[]):[]}},{key:"fieldHasError",value:function(e){return e||(e=m(this,Vt,"f").errors||{}),!!Object.keys(e).find((function(t){return e&&e[t].fail}),[])}},{key:"fieldValidationsHaveError",value:function(e,t){var r=this;return!(!m(this,Ut,"f").validations||!m(this,Vt,"f").visible||!Object.keys(m(this,Ut,"f").validations).find((function(n){var o=m(r,Ut,"f"),i=o.validations,a=void 0===i?{}:i,u=o.errorMessages,c=Se(m(r,Vt,"f").value,a[t||n],u);return e&&(r.errors=c),r.fieldHasError(c)})))}},{key:"eventReducedSchema",value:function(e){return{api:m(this,Ut,"f").api&&m(this,Ut,"f").api[e],clearFields:m(this,Ut,"f").clearFields&&m(this,Ut,"f").clearFields[e],formatters:m(this,Ut,"f").formatters&&m(this,Ut,"f").formatters[e],masks:m(this,Ut,"f").masks&&m(this,Ut,"f").masks[e],validations:m(this,Ut,"f").validations&&m(this,Ut,"f").validations[e],visibilityConditions:m(this,Ut,"f").visibilityConditions&&m(this,Ut,"f").visibilityConditions[e]}}},{key:"rehydrate",value:function(){this.publish(a("ON_FIELD_REHYDRATE",m(this,Gt,"f").name),{checksum:JSON.stringify(this.data)+JSON.stringify(this.scopedComponent)})}}],r&&Jt(t.prototype,r),n&&Jt(t,n),Object.defineProperty(t,"prototype",{writable:!1}),i}();function ir(e){return ir="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ir(e)}function ar(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,ur(n.key),n)}}function ur(e){var t=function(e,t){if("object"!==ir(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!==ir(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===ir(t)?t:String(t)}function cr(e,t){return cr=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},cr(e,t)}function lr(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,n=fr(e);if(t){var o=fr(this).constructor;r=Reflect.construct(n,arguments,o)}else r=n.apply(this,arguments);return function(e,t){if(t&&("object"===ir(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return sr(e)}(this,r)}}function sr(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function fr(e){return fr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},fr(e)}Vt=new WeakMap,Gt=new WeakMap,Ut=new WeakMap,Bt=new WeakMap;var dr,pr,vr=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&cr(e,t)}(i,j);var t,r,n,o=lr(i);function i(e,t,r,n,a,u){var c;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,i),c=o.call(this,t),tr.set(sr(c),{}),rr.set(sr(c),void 0),nr.set(sr(c),void 0),c.steps={},g(sr(c),rr,t,"f"),c.schema=n,c.scopedSchema=n,c.scope=r,c.formId=e,c.initialValues=null==a?void 0:a.initialValues,c.group=u,g(sr(c),nr,{numSteps:null==n?void 0:n.components.length,navigated:!1,index:0,currentStepSchema:null==n?void 0:n.components[0],isValid:!1,data:{}},"f"),c.formData={predictableErroredFields:[],erroredFields:[],fields:{},formatted:{},form:{scope:r.getGlobalScope(),steps:m(sr(c),nr,"f"),isValid:!1,messages:[]}},Ht(t,$t,n),c}return t=i,r=[{key:"step",get:function(){return m(this,nr,"f")},set:function(e){g(this,nr,e,"f")}},{key:"fields",get:function(){return m(this,tr,"f")||{}}},{key:"eventReducedSchema",value:function(e){var t=this;return this.scopedSchema?Object.keys(this.scopedSchema).reduce((function(r,n){return t.scopedSchema[n]?Object.assign(Object.assign({},r),function(e,t,r){return(t=ur(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}({},n,t.scopedSchema[n][e])):r}),{}):{}}},{key:"getFieldInstance",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return e.name=e.name||e.component+"_"+JSON.stringify(e.props),this.steps[m(this,nr,"f").index]||(this.steps[m(this,nr,"f").index]={}),this.fields[e.name]||(this.fields[e.name]=new or(m(this,rr,"f"),e,t,this.scope),this.steps[m(this,nr,"f").index][e.name]=this.fields[e.name]),this.fields[e.name]}},{key:"rehydrate",value:function(){var e=this.scopedSchema;e.components;var t=h(e,["components"]);this.publish("ON_FORM_REHYDRATE",{checksum:JSON.stringify(t)})}},{key:"destroyField",value:function(e){m(this,tr,"f")[e]&&(delete m(this,tr,"f")[e],delete this.steps[m(this,nr,"f").index][e])}}],r&&ar(t.prototype,r),n&&ar(t,n),Object.defineProperty(t,"prototype",{writable:!1}),i}();function yr(e,t){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=gr(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var n=0,o=function(){};return{s:o,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,u=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return a=e.done,e},e:function(e){u=!0,i=e},f:function(){try{a||null==r.return||r.return()}finally{if(u)throw i}}}}function hr(){/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */hr=function(){return e};var e={},t=Object.prototype,r=t.hasOwnProperty,n=Object.defineProperty||function(e,t,r){e[t]=r.value},o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",u=o.toStringTag||"@@toStringTag";function c(e,t,r){return Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,r){return e[t]=r}}function l(e,t,r,o){var i=t&&t.prototype instanceof d?t:d,a=Object.create(i.prototype),u=new w(o||[]);return n(a,"_invoke",{value:E(e,r,u)}),a}function s(e,t,r){try{return{type:"normal",arg:e.call(t,r)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var f={};function d(){}function p(){}function v(){}var y={};c(y,i,(function(){return this}));var h=Object.getPrototypeOf,b=h&&h(h(A([])));b&&b!==t&&r.call(b,i)&&(y=b);var m=v.prototype=d.prototype=Object.create(y);function g(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function o(n,i,a,u){var c=s(e[n],e,i);if("throw"!==c.type){var l=c.arg,f=l.value;return f&&"object"==Er(f)&&r.call(f,"__await")?t.resolve(f.__await).then((function(e){o("next",e,a,u)}),(function(e){o("throw",e,a,u)})):t.resolve(f).then((function(e){l.value=e,a(l)}),(function(e){return o("throw",e,a,u)}))}u(c.arg)}var i;n(this,"_invoke",{value:function(e,r){function n(){return new t((function(t,n){o(e,r,t,n)}))}return i=i?i.then(n,n):n()}})}function E(e,t,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return N()}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var u=_(a,r);if(u){if(u===f)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var c=s(e,t,r);if("normal"===c.type){if(n=r.done?"completed":"suspendedYield",c.arg===f)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(n="completed",r.method="throw",r.arg=c.arg)}}}function _(e,t){var r=t.method,n=e.iterator[r];if(void 0===n)return t.delegate=null,"throw"===r&&e.iterator.return&&(t.method="return",t.arg=void 0,_(e,t),"throw"===t.method)||"return"!==r&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+r+"' method")),f;var o=s(n,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,f;var i=o.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,f):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,f)}function S(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function j(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function w(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(S,this),this.reset(!0)}function A(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var n=-1,o=function t(){for(;++n<e.length;)if(r.call(e,n))return t.value=e[n],t.done=!1,t;return t.value=void 0,t.done=!0,t};return o.next=o}}return{next:N}}function N(){return{value:void 0,done:!0}}return p.prototype=v,n(m,"constructor",{value:v,configurable:!0}),n(v,"constructor",{value:p,configurable:!0}),p.displayName=c(v,u,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===p||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,v):(e.__proto__=v,c(e,u,"GeneratorFunction")),e.prototype=Object.create(m),e},e.awrap=function(e){return{__await:e}},g(O.prototype),c(O.prototype,a,(function(){return this})),e.AsyncIterator=O,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new O(l(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},g(m),c(m,u,"Generator"),c(m,i,(function(){return this})),c(m,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=Object(e),r=[];for(var n in t)r.push(n);return r.reverse(),function e(){for(;r.length;){var n=r.pop();if(n in t)return e.value=n,e.done=!1,e}return e.done=!0,e}},e.values=A,w.prototype={constructor:w,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(j),!e)for(var t in this)"t"===t.charAt(0)&&r.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function n(r,n){return a.type="throw",a.arg=e,t.next=r,n&&(t.method="next",t.arg=void 0),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return n("end");if(i.tryLoc<=this.prev){var u=r.call(i,"catchLoc"),c=r.call(i,"finallyLoc");if(u&&c){if(this.prev<i.catchLoc)return n(i.catchLoc,!0);if(this.prev<i.finallyLoc)return n(i.finallyLoc)}else if(u){if(this.prev<i.catchLoc)return n(i.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return n(i.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=e,a.arg=t,i?(this.method="next",this.next=i.finallyLoc,f):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),f},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.finallyLoc===e)return this.complete(r.completion,r.afterLoc),j(r),f}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.tryLoc===e){var n=r.completion;if("throw"===n.type){var o=n.arg;j(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,r){return this.delegate={iterator:A(e),resultName:t,nextLoc:r},"next"===this.method&&(this.arg=void 0),f}},e}function br(e,t,r){return(t=wr(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function mr(e){return function(e){if(Array.isArray(e))return Or(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||gr(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function gr(e,t){if(e){if("string"==typeof e)return Or(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Or(e,t):void 0}}function Or(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Er(e){return Er="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Er(e)}function _r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Sr(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,wr(n.key),n)}}function jr(e,t,r){return t&&Sr(e.prototype,t),r&&Sr(e,r),Object.defineProperty(e,"prototype",{writable:!1}),e}function wr(e){var t=function(e,t){if("object"!==Er(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!==Er(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===Er(t)?t:String(t)}tr=new WeakMap,rr=new WeakMap,nr=new WeakMap,function(e){e.OBSERVER="OBSERVER",e.REACT_FIELD_ADAPTER="REACT FIELD ADAPTER",e.FIELD_HANDLER="FIELD HANDLER"}(dr||(dr={}));var Ar=function(){function e(){_r(this,e),this.workers={},this.getFormInstance=this.getFormInstance.bind(this),this.getGroupFormsIds=this.getGroupFormsIds.bind(this)}return jr(e,[{key:"getGroupFormsIds",value:function(e){var t=this;return Object.keys(this.workers||{}).filter((function(r){return t.workers[r].group===e}),[])}},{key:"getFormInstance",value:function(){var e,t,r,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:l,o=arguments.length>1?arguments[1]:void 0;if(this.workers[n]&&!(null==o?void 0:o.newInstance))return this.workers[n];var i=new Nr(n,null===(t=null===(e=null==o?void 0:o.initialScope)||void 0===e?void 0:e.configs)||void 0===t?void 0:t.enableLogging),a=new x(i);return a.initialScope=Object.assign(Object.assign({},null==o?void 0:o.initialScope),null===(r=null==o?void 0:o.schema)||void 0===r?void 0:r.iVars),this.workers[n]=new vr(n,i,a,null==o?void 0:o.schema,{initialValues:(null==o?void 0:o.initialValues)||{}},null==o?void 0:o.group),this.workers[n]}}]),e}(),Nr=function(){function e(t){var r=this,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];_r(this,e),this.regexBasedEvents={},this.events={},this.history={},pr.set(this,(function(e){var t=e.event,n=e.data,o=e.payload,i=function(e){return e.split("/")[1]||""}(t),a=Fr(r.namespace,null==n?void 0:n.opts),u=a.fields[i],c=function(e){return Array.isArray(e.split("/"))?e.split("/")[0]:e}(t);return{eventReducedSchema:u&&u.eventReducedSchema(c),formEventDirectives:a&&a.eventReducedSchema(c),namespace:r.namespace,coreEvent:c,form:a,field:u,event:t,data:n,payload:o}})),this.namespace=t,this.enableLogging=n}return jr(e,[{key:"runForRegexBasedEvent",value:function(e,t){for(var r=!1,n=0,o=Object.keys(this.events);n<o.length;n++){var i=o[n];(r=e.test(i))&&t(i)}return r}},{key:"handleRegexSubscription",value:function(e,t){var r=this;this.runForRegexBasedEvent(e,(function(e){return r.subscribe(e,t)}))||(this.regexBasedEvents[e]={regex:e,handlers:Array.isArray(this.events[e])?[].concat(mr(this.events[e]),[t]):[t]})}},{key:"subscribe",value:function(e,t){var r=this;return"object"===Er(e)?(this.handleRegexSubscription(e,t),function(){}):(this.events=Object.assign(Object.assign({},this.events),br({},e,Array.isArray(this.events[e])?[].concat(mr(this.events[e]),[t]):[t])),function(){r.unsubscribe(e,t)})}},{key:"unsubscribe",value:function(e,t){this.events=Object.assign(Object.assign({},this.events),br({},e,this.events[e].filter((function(e){return e!==t}))))}},{key:"isAsyncFunction",value:function(e){var t=e.toString().trim();return!!("AsyncFunction"===e[Symbol.toStringTag]||"AsyncFunction"==e.constructor.name||t.match(/^async /)||t.match(/return _ref[^\\.]*\.apply/)||e instanceof Promise)}},{key:"publish",value:function(e,t){return b(this,void 0,void 0,hr().mark((function r(){var n,o,i,a=this;return hr().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:if(!(null==t?void 0:t.checksum)||this.history[e]!==(null==t?void 0:t.checksum)){r.next=2;break}return r.abrupt("return");case 2:if(this.history[e]=null==t?void 0:t.checksum,"object"!==Er(e)){r.next=6;break}return this.runForRegexBasedEvent(e,(function(e){return a.publish(e,t)})),r.abrupt("return");case 6:n=0,o=Object.keys(this.regexBasedEvents);case 7:if(!(n<o.length)){r.next=16;break}if(i=o[n],!new RegExp(this.regexBasedEvents[i].regex).test(e)){r.next=13;break}return r.next=13,this.publishForEvents(e,t,br({},e,this.regexBasedEvents[i].handlers));case 13:n++,r.next=7;break;case 16:return r.abrupt("return",this.publishForEvents(e,t,this.events));case 17:case"end":return r.stop()}}),r,this)})))}},{key:"publishForEvents",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;return b(this,void 0,void 0,hr().mark((function n(){var o,i,a,u,c,l=this;return hr().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:if(r[e]){n.next=2;break}return n.abrupt("return",{});case 2:o={},i=yr(r[e]),n.prev=4,u=hr().mark((function r(){var n,i,u;return hr().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:if(n=a.value,r.prev=1,n){r.next=4;break}return r.abrupt("return",{v:void 0});case 4:if(i=m(l,pr,"f").call(l,{data:Object.assign(Object.assign({},t),o),payload:t,event:e,namespace:l.namespace}),!l.isAsyncFunction(n)){r.next=12;break}return r.next=9,n(i,(function(){return l.unsubscribe(e,n)}));case 9:r.t0=r.sent,r.next=13;break;case 12:r.t0=n(i,(function(){return l.unsubscribe(e,n)}));case 13:u=r.t0,o=Object.assign(Object.assign({},o),u),r.next=23;break;case 17:if(r.prev=17,r.t1=r.catch(1),!(r.t1 instanceof lt&&r.t1.breaksObservingChain)){r.next=22;break}return l.logError(dr.OBSERVER,e,"publish",r.t1),r.abrupt("return",{v:{}});case 22:throw r.t1;case 23:case"end":return r.stop()}}),r,null,[[1,17]])})),i.s();case 7:if((a=i.n()).done){n.next=14;break}return n.delegateYield(u(),"t0",9);case 9:if("object"!==Er(c=n.t0)){n.next=12;break}return n.abrupt("return",c.v);case 12:n.next=7;break;case 14:n.next=19;break;case 16:n.prev=16,n.t1=n.catch(4),i.e(n.t1);case 19:return n.prev=19,i.f(),n.finish(19);case 22:return n.abrupt("return",Object.assign(Object.assign({},o),Fr(this.namespace).formData));case 23:case"end":return n.stop()}}),n,this,[[4,16,19,22]])})))}},{key:"logError",value:function(e,t,r,n){this.enableLogging&&"LOG"!==t&&this.publish("LOG",{level:"error",data:{event:t,error:n},action:r,flow:e})}},{key:"logInfo",value:function(e,t,r,n){this.enableLogging&&"LOG"!==t&&this.publish("LOG",{level:"info",data:Object.assign({event:t},n),action:r,flow:e})}}]),e}();pr=new WeakMap;var Ir=new Ar,Fr=Ir.getFormInstance,Lr=Ir.getGroupFormsIds;const kr=({children:r,component:n,wrapper:o,propsMapping:i={},formId:u,onMount:c,onChange:l,onFocus:s,onBlur:f,onClick:d,onRehydrate:p,afterApiCall:v})=>{const[h,b]=y(),[m,g]=y(),[O,E]=y(),[_,S]=y(),[j,w]=y(),[A,N]=y(),I=t.useMemo((()=>Fr(u).getFieldInstance(n,i)),[]),F=t.useMemo((()=>o),[o]);return t.useMemo((()=>{I.publish(a("ON_FIELD_MOUNT",n.name)),c(I.data)}),[]),t.useEffect((()=>{m&&p(I.data)}),[m]),t.useEffect((()=>{h&&l(I.data)}),[h]),t.useEffect((()=>{O&&f(I.data)}),[O]),t.useEffect((()=>{_&&s(I.data)}),[_]),t.useEffect((()=>{j&&d(I.data)}),[j]),t.useEffect((()=>{A&&v(I.data)}),[A]),t.useEffect((()=>I.subscribe(a("ON_FIELD_REHYDRATE",n.name),(()=>g()))),[]),t.useEffect((()=>I.subscribe(a("ON_FIELD_BLUR",n.name),(()=>E()))),[]),t.useEffect((()=>I.subscribe(a("ON_FIELD_CHANGE",n.name),(()=>b()))),[]),t.useEffect((()=>I.subscribe(a("ON_FIELD_FOCUS",n.name),(()=>S()))),[]),t.useEffect((()=>I.subscribe(a("ON_FIELD_CLICK",n.name),(()=>w()))),[]),t.useEffect((()=>I.subscribe(a("AFTER_FIELD_API_CALL",n.name),(()=>N()))),[]),I.data.visible&&I.data.mounted?e.jsx(F,Object.assign({},I.props,{children:r})):null},Dr=t.forwardRef(((t,r)=>e.jsx("input",{ref:r,type:"submit",style:{display:"none"}})));Dr.displayName="Submit";const xr=t.createContext({});xr.displayName="FormContext";const Tr=o.default.forwardRef((({autoComplete:r,hooks:n,iVars:i,id:a=l,submitOnValidOnly:s=!0,initialValues:f={},className:d,schema:p,group:v,onData:y,onSubmit:h,onBlur:b,onClick:m,afterApiCall:g,onFormMount:O,onFieldMount:E,onStep:_,onFocus:S,onLog:j,onScopeChange:w,onFieldRehydrate:A,renderFieldWrapper:N,disable:I},F)=>{var L;const[,k]=t.useReducer((e=>e+1),0),D=t.useRef(null),x=t.useRef(null),{mapper:T,propsMapping:C}=t.useContext(xr),P=t.useMemo((()=>Fr(a,{group:v,schema:p,newInstance:!0,initialScope:{configs:Object.assign(Object.assign({},null==p?void 0:p.configs),{enableLogging:!!j,disable:I}),global:Object.assign(Object.assign({},null==p?void 0:p.iVars),i)},initialValues:f})),[]);t.useEffect((()=>{P.publish("ON_FORM_MOUNT")}),[]);const R=t.useMemo((()=>T.step?T.step.component:o.default.Fragment),[]),M=t.useMemo((()=>{if(!P.step.currentStepSchema)return;const t=(r,n=0)=>{var o;return null===(o=r.children)||void 0===o?void 0:o.map(((r,o)=>{var i;const u=null===(i=T[r.component])||void 0===i?void 0:i.component,c=e.jsx(kr,Object.assign({component:r,wrapper:u,propsMapping:C[r.component]||C.__default__,formId:a,onMount:e=>{E&&E(P.formData,r,e)},onRehydrate:e=>{A&&A(P.formData,r,e)},onChange:e=>{y&&y(P.formData,r,e)},onBlur:e=>{b&&b(P.formData,r,e)},onClick:e=>{m&&m(P.formData,e)},afterApiCall:e=>{g&&g(P.formData,r,e)},onFocus:e=>{S&&S(P.formData,r,Object.assign(Object.assign({},e),{schemaLocation:{step:P.step.index,depth:n,index:o}}))}},{children:Array.isArray(r.children)?t(r,n++):r.children}),`${P.step.index}_${n}_${r.name}_${r.component}_${o}`);return N?N(r,c):c}))};return t(P.step.currentStepSchema)}),[P.step.index,a]);return t.useEffect((()=>{P.scope.globalScope={namespace:"configs",data:{disable:I}}}),[I]),t.useEffect((()=>{O&&O(P.formData)}),[]),t.useEffect((()=>{P.scope.globalScope={namespace:"configs",data:{disable:I}}}),[I]),t.useEffect((()=>{P.scope.globalScope={namespace:"global",data:Object.assign(Object.assign({},null==p?void 0:p.iVars),i)}}),[JSON.stringify(i)]),t.useEffect((()=>P.subscribe("ON_FORM_REHYDRATE",(()=>{k()}))),[]),t.useEffect((()=>P.subscribe("LOG",(({data:e})=>j&&j(e)))),[]),t.useMemo((()=>P.subscribe(u("ON_SCOPE_CHANGE"),(e=>w&&w(P.scope.scope,e.data.namespace,e.data.key)))),[]),t.useEffect((()=>P.subscribe("ON_FORM_SUBMIT",(({data:e})=>{const t=(null==n?void 0:n.preSubmit)&&(null==n?void 0:n.preSubmit(P.formData));!P.formData.form.isValid&&s||h&&h(e.event,Object.assign(Object.assign({},P.formData),{formatted:Object.assign(Object.assign({},P.formData.formatted),t)}))}))),[]),t.useEffect((()=>P.subscribeBulk([c.NAVIGATE_STEP_BACK,c.NAVIGATE_STEP_FORWARD,c.NAVIGATE_STEP],(()=>{_&&_(P.formData),k()}))),[]),t.useImperativeHandle(F,(()=>({values:()=>P.formData,step:P.publishFor(c.NAVIGATE_STEP),stepForward:P.publishFor(c.NAVIGATE_STEP_FORWARD),changeFields:P.publishFor(c.CHANGE_FIELDS),stepBack:P.publishFor(c.NAVIGATE_STEP_BACK),validateForm:P.publishFor(c.VALIDATE_FORM),submit:()=>{var e;return null===(e=x.current)||void 0===e?void 0:e.click()},schema:p})),[]),e.jsxs("form",Object.assign({action:P.scopedSchema.action,method:P.scopedSchema.method,className:d,ref:D,autoComplete:r,onSubmit:e=>{P.publish(c.ON_FORM_SUBMIT,{event:e})}},{children:[e.jsx(R,Object.assign({},null===(L=P.step.currentStepSchema)||void 0===L?void 0:L.props,{children:M})),!P.scopedSchema.disableFormSubmit&&e.jsx(Dr,{ref:x})]}))})),Cr=o.default.forwardRef(((t,r)=>t.schema?e.jsx(Tr,Object.assign({},t,{ref:r})):t.renderLoading?t.renderLoading():e.jsx(e.Fragment,{})));exports.ALL_NAMESPACE_EVENTS=u,exports.BUILD_EVENT=a,exports.CoreEvents=c,exports.FormProvider=({children:t,mapper:r,propsMapping:n})=>e.jsx(xr.Provider,Object.assign({value:{mapper:r,propsMapping:n}},{children:t})),exports.SchemaGuard=Cr,exports.asFormField=({Comp:r,propsMapping:n})=>o=>{var{name:i,validations:u,errorMessages:c,masks:l,filter:f,formatters:d,visibilityConditions:p,formId:v=s,visibility:b=!0,value:m}=o,g=h(o,["name","validations","errorMessages","masks","filter","formatters","visibilityConditions","formId","visibility","value"]);const[,O]=y(),E=t.useMemo((()=>({state:{hidden:!b},component:"",name:i,validations:u,errorMessages:c,masks:l,filter:f,visibilityConditions:p,formatters:d})),[c,i,f,d,l,u,p]),_=t.useMemo((()=>Fr(v).getFieldInstance(E,n)),[]);return t.useMemo((()=>{_.subscribeBulk([a("ON_FIELD_MOUNT",E.name),a("ON_FIELD_REHYDRATE",E.name)],O)}),[]),t.useMemo((()=>{_.subscribe(a("ON_FIELD_CHANGE",E.name),(({data:e})=>{O(),g[n.getValue]&&g[n.getValue](e.event,_.data)}))}),[g[n.getValue]]),t.useMemo((()=>{_.subscribe(a("ON_FIELD_BLUR",E.name),(({data:e})=>{O(),g[n.onBlur]&&g[n.onBlur](e.event)}))}),[g[n.onBlur]]),t.useMemo((()=>{_.subscribe(a("ON_FIELD_FOCUS",E.name),(({data:e})=>{O(),g[n.onFocus]&&g[n.onFocus](e.event)}))}),[g[n.onFocus]]),t.useMemo((()=>{_.subscribe(a("ON_FIELD_KEYUP",E.name),(({data:e})=>{O(),g[n.onKeyUp]&&g[n.onKeyUp](e.event)}))}),[g[n.onKeyUp]]),t.useMemo((()=>{_.subscribe(a("ON_FIELD_KEYDOWN",E.name),(({data:e})=>{O(),g[n.onKeyDown]&&g[n.onKeyDown](e.event)}))}),[g[n.onKeyDown]]),t.useEffect((()=>{void 0!==m&&(_.value=m,_.rehydrate())}),[m]),t.useEffect((()=>{_.visibility=b,_.rehydrate()}),[b]),t.useEffect((()=>()=>Fr(v).destroyField(i)),[]),_.data.visible?e.jsx(r,Object.assign({},g,_.props)):e.jsx(e.Fragment,{})},exports.getFormInstance=Fr,exports.getGroupFormsIds=Lr,exports.useForm=({onValid:e,onData:r,onSubmit:n,id:o=s,ids:i})=>{const a=(e,t)=>{t&&(i?i.map((r=>Fr(r).subscribe(e,(({data:e})=>t(Fr(r).formData,{field:e.field}))))):Fr(o).subscribe(e,t))},l=()=>i?i.reduce(((e,t)=>Object.keys(e).reduce(((r,n)=>Object.assign(Object.assign({},r),{[n]:Object.assign(Object.assign({},e[n]),Fr(t).formData[n])})),{})),{formatted:{},erroredFields:{},fields:{},form:{},predictableErroredFields:{},filteredFields:{}}):Fr(o).formData,f=t.useCallback((()=>{let e=Fr(o).formData;i&&(e=i.reduce(((e,t)=>Object.assign(Object.assign({},e),{[t]:Fr(t).formData})),{})),r&&r(e)}),[r,e]);t.useEffect((()=>a("ON_FIELD_VALIDATION_TOGGLE",e)),[e]),t.useEffect((()=>a(u(c.ON_FIELD_CHANGE),f)),[r,e]),t.useEffect((()=>a(u(c.ON_FIELD_REHYDRATE),f)),[r,e]),t.useEffect((()=>a(c.ON_FORM_SUBMIT,(()=>{n&&n(l())}))),[n]);return{submitForm:()=>Fr(i?i[0]:o).publish(c.ON_FORM_SUBMIT),formData:l}};
|
|
2
|
+
//# sourceMappingURL=asFormField-b207200a.js.map
|