diff --git a/.gitignore b/.gitignore index 521c6875..585a5657 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ .vscode node_modules +docs lib dist .dccache diff --git a/Changelog.md b/Changelog.md index b2c099ea..521d47ec 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,7 @@ +## 1.3.0-rc.18 +### Fixed + - revert accidental deletion of templateSettings + ## 1.3.0-rc.16 ### Fixed - Adding exports to libraries. diff --git a/docs/.nojekyll b/docs/.nojekyll deleted file mode 100644 index e2ac6616..00000000 --- a/docs/.nojekyll +++ /dev/null @@ -1 +0,0 @@ -TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. \ No newline at end of file diff --git a/docs/assets/highlight.css b/docs/assets/highlight.css deleted file mode 100644 index 22d9a711..00000000 --- a/docs/assets/highlight.css +++ /dev/null @@ -1,134 +0,0 @@ -:root { - --light-hl-0: #001080; - --dark-hl-0: #9CDCFE; - --light-hl-1: #000000; - --dark-hl-1: #D4D4D4; - --light-hl-2: #AF00DB; - --dark-hl-2: #C586C0; - --light-hl-3: #A31515; - --dark-hl-3: #CE9178; - --light-hl-4: #795E26; - --dark-hl-4: #DCDCAA; - --light-hl-5: #0000FF; - --dark-hl-5: #569CD6; - --light-hl-6: #000000FF; - --dark-hl-6: #D4D4D4; - --light-hl-7: #0070C1; - --dark-hl-7: #4FC1FF; - --light-hl-8: #008000; - --dark-hl-8: #6A9955; - --light-hl-9: #267F99; - --dark-hl-9: #4EC9B0; - --light-hl-10: #000000; - --dark-hl-10: #C8C8C8; - --light-hl-11: #098658; - --dark-hl-11: #B5CEA8; - --light-hl-12: #800000; - --dark-hl-12: #808080; - --light-hl-13: #800000; - --dark-hl-13: #569CD6; - --light-hl-14: #E50000; - --dark-hl-14: #9CDCFE; - --light-hl-15: #0000FF; - --dark-hl-15: #CE9178; - --light-code-background: #FFFFFF; - --dark-code-background: #1E1E1E; -} - -@media (prefers-color-scheme: light) { :root { - --hl-0: var(--light-hl-0); - --hl-1: var(--light-hl-1); - --hl-2: var(--light-hl-2); - --hl-3: var(--light-hl-3); - --hl-4: var(--light-hl-4); - --hl-5: var(--light-hl-5); - --hl-6: var(--light-hl-6); - --hl-7: var(--light-hl-7); - --hl-8: var(--light-hl-8); - --hl-9: var(--light-hl-9); - --hl-10: var(--light-hl-10); - --hl-11: var(--light-hl-11); - --hl-12: var(--light-hl-12); - --hl-13: var(--light-hl-13); - --hl-14: var(--light-hl-14); - --hl-15: var(--light-hl-15); - --code-background: var(--light-code-background); -} } - -@media (prefers-color-scheme: dark) { :root { - --hl-0: var(--dark-hl-0); - --hl-1: var(--dark-hl-1); - --hl-2: var(--dark-hl-2); - --hl-3: var(--dark-hl-3); - --hl-4: var(--dark-hl-4); - --hl-5: var(--dark-hl-5); - --hl-6: var(--dark-hl-6); - --hl-7: var(--dark-hl-7); - --hl-8: var(--dark-hl-8); - --hl-9: var(--dark-hl-9); - --hl-10: var(--dark-hl-10); - --hl-11: var(--dark-hl-11); - --hl-12: var(--dark-hl-12); - --hl-13: var(--dark-hl-13); - --hl-14: var(--dark-hl-14); - --hl-15: var(--dark-hl-15); - --code-background: var(--dark-code-background); -} } - -:root[data-theme='light'] { - --hl-0: var(--light-hl-0); - --hl-1: var(--light-hl-1); - --hl-2: var(--light-hl-2); - --hl-3: var(--light-hl-3); - --hl-4: var(--light-hl-4); - --hl-5: var(--light-hl-5); - --hl-6: var(--light-hl-6); - --hl-7: var(--light-hl-7); - --hl-8: var(--light-hl-8); - --hl-9: var(--light-hl-9); - --hl-10: var(--light-hl-10); - --hl-11: var(--light-hl-11); - --hl-12: var(--light-hl-12); - --hl-13: var(--light-hl-13); - --hl-14: var(--light-hl-14); - --hl-15: var(--light-hl-15); - --code-background: var(--light-code-background); -} - -:root[data-theme='dark'] { - --hl-0: var(--dark-hl-0); - --hl-1: var(--dark-hl-1); - --hl-2: var(--dark-hl-2); - --hl-3: var(--dark-hl-3); - --hl-4: var(--dark-hl-4); - --hl-5: var(--dark-hl-5); - --hl-6: var(--dark-hl-6); - --hl-7: var(--dark-hl-7); - --hl-8: var(--dark-hl-8); - --hl-9: var(--dark-hl-9); - --hl-10: var(--dark-hl-10); - --hl-11: var(--dark-hl-11); - --hl-12: var(--dark-hl-12); - --hl-13: var(--dark-hl-13); - --hl-14: var(--dark-hl-14); - --hl-15: var(--dark-hl-15); - --code-background: var(--dark-code-background); -} - -.hl-0 { color: var(--hl-0); } -.hl-1 { color: var(--hl-1); } -.hl-2 { color: var(--hl-2); } -.hl-3 { color: var(--hl-3); } -.hl-4 { color: var(--hl-4); } -.hl-5 { color: var(--hl-5); } -.hl-6 { color: var(--hl-6); } -.hl-7 { color: var(--hl-7); } -.hl-8 { color: var(--hl-8); } -.hl-9 { color: var(--hl-9); } -.hl-10 { color: var(--hl-10); } -.hl-11 { color: var(--hl-11); } -.hl-12 { color: var(--hl-12); } -.hl-13 { color: var(--hl-13); } -.hl-14 { color: var(--hl-14); } -.hl-15 { color: var(--hl-15); } -pre, code { background: var(--code-background); } diff --git a/docs/assets/main.js b/docs/assets/main.js deleted file mode 100644 index 4c8fa615..00000000 --- a/docs/assets/main.js +++ /dev/null @@ -1,58 +0,0 @@ -"use strict"; -"use strict";(()=>{var Se=Object.create;var re=Object.defineProperty;var we=Object.getOwnPropertyDescriptor;var Te=Object.getOwnPropertyNames;var ke=Object.getPrototypeOf,Qe=Object.prototype.hasOwnProperty;var Pe=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var Ie=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Te(e))!Qe.call(t,i)&&i!==r&&re(t,i,{get:()=>e[i],enumerable:!(n=we(e,i))||n.enumerable});return t};var Ce=(t,e,r)=>(r=t!=null?Se(ke(t)):{},Ie(e||!t||!t.__esModule?re(r,"default",{value:t,enumerable:!0}):r,t));var ae=Pe((se,oe)=>{(function(){var t=function(e){var r=new t.Builder;return r.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),r.searchPipeline.add(t.stemmer),e.call(r,r),r.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(r){e.console&&console.warn&&console.warn(r)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var r=Object.create(null),n=Object.keys(e),i=0;i0){var d=t.utils.clone(r)||{};d.position=[a,u],d.index=s.length,s.push(new t.Token(n.slice(a,o),d))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,r){r in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+r),e.label=r,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var r=e.label&&e.label in this.registeredFunctions;r||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. -`,e)},t.Pipeline.load=function(e){var r=new t.Pipeline;return e.forEach(function(n){var i=t.Pipeline.registeredFunctions[n];if(i)r.add(i);else throw new Error("Cannot load unregistered function: "+n)}),r},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(r){t.Pipeline.warnIfFunctionNotRegistered(r),this._stack.push(r)},this)},t.Pipeline.prototype.after=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");n=n+1,this._stack.splice(n,0,r)},t.Pipeline.prototype.before=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");this._stack.splice(n,0,r)},t.Pipeline.prototype.remove=function(e){var r=this._stack.indexOf(e);r!=-1&&this._stack.splice(r,1)},t.Pipeline.prototype.run=function(e){for(var r=this._stack.length,n=0;n1&&(oe&&(n=s),o!=e);)i=n-r,s=r+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(ol?d+=2:a==l&&(r+=n[u+1]*i[d+1],u+=2,d+=2);return r},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),r=1,n=0;r0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}if(s.str.length==0&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}s.str.length==1&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var d=s.str.charAt(0),m=s.str.charAt(1),y;m in s.node.edges?y=s.node.edges[m]:(y=new t.TokenSet,s.node.edges[m]=y),s.str.length==1&&(y.final=!0),i.push({node:y,editsRemaining:s.editsRemaining-1,str:d+s.str.slice(2)})}}}return n},t.TokenSet.fromString=function(e){for(var r=new t.TokenSet,n=r,i=0,s=e.length;i=e;r--){var n=this.uncheckedNodes[r],i=n.child.toString();i in this.minimizedNodes?n.parent.edges[n.char]=this.minimizedNodes[i]:(n.child._str=i,this.minimizedNodes[i]=n.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(r){var n=new t.QueryParser(e,r);n.parse()})},t.Index.prototype.query=function(e){for(var r=new t.Query(this.fields),n=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),l=0;l1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,r){var n=e[this._ref],i=Object.keys(this._fields);this._documents[n]=r||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,r;do e=this.next(),r=e.charCodeAt(0);while(r>47&&r<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var r=e.next();if(r==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(r.charCodeAt(0)==92){e.escapeCharacter();continue}if(r==":")return t.QueryLexer.lexField;if(r=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(r=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(r=="+"&&e.width()===1||r=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(r.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,r){this.lexer=new t.QueryLexer(e),this.query=r,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var r=e.peekLexeme();if(r!=null)switch(r.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(n+=" with value '"+r.str+"'"),new t.QueryParseError(n,r.start,r.end)}},t.QueryParser.parsePresence=function(e){var r=e.consumeLexeme();if(r!=null){switch(r.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var n="unrecognised presence operator'"+r.str+"'";throw new t.QueryParseError(n,r.start,r.end)}var i=e.peekLexeme();if(i==null){var n="expecting term or field, found nothing";throw new t.QueryParseError(n,r.start,r.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(n,i.start,i.end)}}},t.QueryParser.parseField=function(e){var r=e.consumeLexeme();if(r!=null){if(e.query.allFields.indexOf(r.str)==-1){var n=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+r.str+"', possible fields: "+n;throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.fields=[r.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,r.start,r.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var r=e.consumeLexeme();if(r!=null){e.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var n=e.peekLexeme();if(n==null){e.nextClause();return}switch(n.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+n.type+"'";throw new t.QueryParseError(i,n.start,n.end)}}},t.QueryParser.parseEditDistance=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="edit distance must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.editDistance=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="boost must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.boost=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,r){typeof define=="function"&&define.amd?define(r):typeof se=="object"?oe.exports=r():e.lunr=r()}(this,function(){return t})})()});var ne=[];function G(t,e){ne.push({selector:e,constructor:t})}var U=class{constructor(){this.alwaysVisibleMember=null;this.createComponents(document.body),this.ensureActivePageVisible(),this.ensureFocusedElementVisible(),this.listenForCodeCopies(),window.addEventListener("hashchange",()=>this.ensureFocusedElementVisible())}createComponents(e){ne.forEach(r=>{e.querySelectorAll(r.selector).forEach(n=>{n.dataset.hasInstance||(new r.constructor({el:n,app:this}),n.dataset.hasInstance=String(!0))})})}filterChanged(){this.ensureFocusedElementVisible()}ensureActivePageVisible(){let e=document.querySelector(".tsd-navigation .current"),r=e?.parentElement;for(;r&&!r.classList.contains(".tsd-navigation");)r instanceof HTMLDetailsElement&&(r.open=!0),r=r.parentElement;if(e){let n=e.getBoundingClientRect().top-document.documentElement.clientHeight/4;document.querySelector(".site-menu").scrollTop=n}}ensureFocusedElementVisible(){if(this.alwaysVisibleMember&&(this.alwaysVisibleMember.classList.remove("always-visible"),this.alwaysVisibleMember.firstElementChild.remove(),this.alwaysVisibleMember=null),!location.hash)return;let e=document.getElementById(location.hash.substring(1));if(!e)return;let r=e.parentElement;for(;r&&r.tagName!=="SECTION";)r=r.parentElement;if(r&&r.offsetParent==null){this.alwaysVisibleMember=r,r.classList.add("always-visible");let n=document.createElement("p");n.classList.add("warning"),n.textContent="This member is normally hidden due to your filter settings.",r.prepend(n)}}listenForCodeCopies(){document.querySelectorAll("pre > button").forEach(e=>{let r;e.addEventListener("click",()=>{e.previousElementSibling instanceof HTMLElement&&navigator.clipboard.writeText(e.previousElementSibling.innerText.trim()),e.textContent="Copied!",e.classList.add("visible"),clearTimeout(r),r=setTimeout(()=>{e.classList.remove("visible"),r=setTimeout(()=>{e.textContent="Copy"},100)},1e3)})})}};var ie=(t,e=100)=>{let r;return()=>{clearTimeout(r),r=setTimeout(()=>t(),e)}};var ce=Ce(ae());function de(){let t=document.getElementById("tsd-search");if(!t)return;let e=document.getElementById("tsd-search-script");t.classList.add("loading"),e&&(e.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),e.addEventListener("load",()=>{t.classList.remove("loading"),t.classList.add("ready")}),window.searchData&&t.classList.remove("loading"));let r=document.querySelector("#tsd-search input"),n=document.querySelector("#tsd-search .results");if(!r||!n)throw new Error("The input field or the result list wrapper was not found");let i=!1;n.addEventListener("mousedown",()=>i=!0),n.addEventListener("mouseup",()=>{i=!1,t.classList.remove("has-focus")}),r.addEventListener("focus",()=>t.classList.add("has-focus")),r.addEventListener("blur",()=>{i||(i=!1,t.classList.remove("has-focus"))});let s={base:t.dataset.base+"/"};Oe(t,n,r,s)}function Oe(t,e,r,n){r.addEventListener("input",ie(()=>{Re(t,e,r,n)},200));let i=!1;r.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?Fe(e,r):s.key=="Escape"?r.blur():s.key=="ArrowUp"?ue(e,-1):s.key==="ArrowDown"?ue(e,1):i=!1}),r.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!r.matches(":focus")&&s.key==="/"&&(r.focus(),s.preventDefault())})}function _e(t,e){t.index||window.searchData&&(e.classList.remove("loading"),e.classList.add("ready"),t.data=window.searchData,t.index=ce.Index.load(window.searchData.index))}function Re(t,e,r,n){if(_e(n,t),!n.index||!n.data)return;e.textContent="";let i=r.value.trim(),s=i?n.index.search(`*${i}*`):[];for(let o=0;oa.score-o.score);for(let o=0,a=Math.min(10,s.length);o${le(l.parent,i)}.${u}`);let d=document.createElement("li");d.classList.value=l.classes??"";let m=document.createElement("a");m.href=n.base+l.url,m.innerHTML=u,d.append(m),e.appendChild(d)}}function ue(t,e){let r=t.querySelector(".current");if(!r)r=t.querySelector(e==1?"li:first-child":"li:last-child"),r&&r.classList.add("current");else{let n=r;if(e===1)do n=n.nextElementSibling??void 0;while(n instanceof HTMLElement&&n.offsetParent==null);else do n=n.previousElementSibling??void 0;while(n instanceof HTMLElement&&n.offsetParent==null);n&&(r.classList.remove("current"),n.classList.add("current"))}}function Fe(t,e){let r=t.querySelector(".current");if(r||(r=t.querySelector("li:first-child")),r){let n=r.querySelector("a");n&&(window.location.href=n.href),e.blur()}}function le(t,e){if(e==="")return t;let r=t.toLocaleLowerCase(),n=e.toLocaleLowerCase(),i=[],s=0,o=r.indexOf(n);for(;o!=-1;)i.push(K(t.substring(s,o)),`${K(t.substring(o,o+n.length))}`),s=o+n.length,o=r.indexOf(n,s);return i.push(K(t.substring(s))),i.join("")}var Me={"&":"&","<":"<",">":">","'":"'",'"':"""};function K(t){return t.replace(/[&<>"'"]/g,e=>Me[e])}var P=class{constructor(e){this.el=e.el,this.app=e.app}};var M="mousedown",fe="mousemove",N="mouseup",J={x:0,y:0},he=!1,ee=!1,De=!1,D=!1,pe=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(pe?"is-mobile":"not-mobile");pe&&"ontouchstart"in document.documentElement&&(De=!0,M="touchstart",fe="touchmove",N="touchend");document.addEventListener(M,t=>{ee=!0,D=!1;let e=M=="touchstart"?t.targetTouches[0]:t;J.y=e.pageY||0,J.x=e.pageX||0});document.addEventListener(fe,t=>{if(ee&&!D){let e=M=="touchstart"?t.targetTouches[0]:t,r=J.x-(e.pageX||0),n=J.y-(e.pageY||0);D=Math.sqrt(r*r+n*n)>10}});document.addEventListener(N,()=>{ee=!1});document.addEventListener("click",t=>{he&&(t.preventDefault(),t.stopImmediatePropagation(),he=!1)});var X=class extends P{constructor(r){super(r);this.className=this.el.dataset.toggle||"",this.el.addEventListener(N,n=>this.onPointerUp(n)),this.el.addEventListener("click",n=>n.preventDefault()),document.addEventListener(M,n=>this.onDocumentPointerDown(n)),document.addEventListener(N,n=>this.onDocumentPointerUp(n))}setActive(r){if(this.active==r)return;this.active=r,document.documentElement.classList.toggle("has-"+this.className,r),this.el.classList.toggle("active",r);let n=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(n),setTimeout(()=>document.documentElement.classList.remove(n),500)}onPointerUp(r){D||(this.setActive(!0),r.preventDefault())}onDocumentPointerDown(r){if(this.active){if(r.target.closest(".col-sidebar, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(r){if(!D&&this.active&&r.target.closest(".col-sidebar")){let n=r.target.closest("a");if(n){let i=window.location.href;i.indexOf("#")!=-1&&(i=i.substring(0,i.indexOf("#"))),n.href.substring(0,i.length)==i&&setTimeout(()=>this.setActive(!1),250)}}}};var te;try{te=localStorage}catch{te={getItem(){return null},setItem(){}}}var Q=te;var me=document.head.appendChild(document.createElement("style"));me.dataset.for="filters";var Y=class extends P{constructor(r){super(r);this.key=`filter-${this.el.name}`,this.value=this.el.checked,this.el.addEventListener("change",()=>{this.setLocalStorage(this.el.checked)}),this.setLocalStorage(this.fromLocalStorage()),me.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; } -`}fromLocalStorage(){let r=Q.getItem(this.key);return r?r==="true":this.el.checked}setLocalStorage(r){Q.setItem(this.key,r.toString()),this.value=r,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),this.app.filterChanged(),document.querySelectorAll(".tsd-index-section").forEach(r=>{r.style.display="block";let n=Array.from(r.querySelectorAll(".tsd-index-link")).every(i=>i.offsetParent==null);r.style.display=n?"none":"block"})}};var Z=class extends P{constructor(r){super(r);this.summary=this.el.querySelector(".tsd-accordion-summary"),this.icon=this.summary.querySelector("svg"),this.key=`tsd-accordion-${this.summary.dataset.key??this.summary.textContent.trim().replace(/\s+/g,"-").toLowerCase()}`;let n=Q.getItem(this.key);this.el.open=n?n==="true":this.el.open,this.el.addEventListener("toggle",()=>this.update()),this.update()}update(){this.icon.style.transform=`rotate(${this.el.open?0:-90}deg)`,Q.setItem(this.key,this.el.open.toString())}};function ve(t){let e=Q.getItem("tsd-theme")||"os";t.value=e,ye(e),t.addEventListener("change",()=>{Q.setItem("tsd-theme",t.value),ye(t.value)})}function ye(t){document.documentElement.dataset.theme=t}de();G(X,"a[data-toggle]");G(Z,".tsd-index-accordion");G(Y,".tsd-filter-item input[type=checkbox]");var ge=document.getElementById("tsd-theme");ge&&ve(ge);var Ae=new U;Object.defineProperty(window,"app",{value:Ae});document.querySelectorAll("summary a").forEach(t=>{t.addEventListener("click",()=>{location.assign(t.href)})});})(); -/*! Bundled license information: - -lunr/lunr.js: - (** - * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 - * Copyright (C) 2020 Oliver Nightingale - * @license MIT - *) - (*! - * lunr.utils - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.Set - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.tokenizer - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.Pipeline - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.Vector - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.stemmer - * Copyright (C) 2020 Oliver Nightingale - * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt - *) - (*! - * lunr.stopWordFilter - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.trimmer - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.TokenSet - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.Index - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.Builder - * Copyright (C) 2020 Oliver Nightingale - *) -*/ diff --git a/docs/assets/search.js b/docs/assets/search.js deleted file mode 100644 index 4194f402..00000000 --- a/docs/assets/search.js +++ /dev/null @@ -1 +0,0 @@ -window.searchData = JSON.parse("{\"rows\":[{\"kind\":2,\"name\":\"core\",\"url\":\"modules/core.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"usePlugin\",\"url\":\"functions/core.usePlugin.html\",\"classes\":\"\",\"parent\":\"core\"},{\"kind\":64,\"name\":\"useModule\",\"url\":\"functions/core.useModule.html\",\"classes\":\"\",\"parent\":\"core\"},{\"kind\":64,\"name\":\"use\",\"url\":\"functions/core.use.html\",\"classes\":\"\",\"parent\":\"core\"},{\"kind\":2,\"name\":\"ejs\",\"url\":\"modules/ejs.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"default\",\"url\":\"variables/ejs.default.html\",\"classes\":\"\",\"parent\":\"ejs\"},{\"kind\":2,\"name\":\"index\",\"url\":\"modules/index.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"base/Components\",\"url\":\"modules/base_Components.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"render\",\"url\":\"functions/base_Components.render.html\",\"classes\":\"\",\"parent\":\"base/Components\"},{\"kind\":128,\"name\":\"Components\",\"url\":\"classes/base_Components.Components.html\",\"classes\":\"\",\"parent\":\"base/Components\"},{\"kind\":1024,\"name\":\"components\",\"url\":\"classes/base_Components.Components.html#components\",\"classes\":\"\",\"parent\":\"base/Components.Components\"},{\"kind\":1024,\"name\":\"decorators\",\"url\":\"classes/base_Components.Components.html#decorators\",\"classes\":\"\",\"parent\":\"base/Components.Components\"},{\"kind\":2048,\"name\":\"component\",\"url\":\"classes/base_Components.Components.html#component\",\"classes\":\"\",\"parent\":\"base/Components.Components\"},{\"kind\":2048,\"name\":\"create\",\"url\":\"classes/base_Components.Components.html#create\",\"classes\":\"\",\"parent\":\"base/Components.Components\"},{\"kind\":2048,\"name\":\"addDecorator\",\"url\":\"classes/base_Components.Components.html#addDecorator\",\"classes\":\"\",\"parent\":\"base/Components.Components\"},{\"kind\":2048,\"name\":\"addComponent\",\"url\":\"classes/base_Components.Components.html#addComponent\",\"classes\":\"\",\"parent\":\"base/Components.Components\"},{\"kind\":2048,\"name\":\"importComponent\",\"url\":\"classes/base_Components.Components.html#importComponent\",\"classes\":\"\",\"parent\":\"base/Components.Components\"},{\"kind\":2048,\"name\":\"setComponents\",\"url\":\"classes/base_Components.Components.html#setComponents\",\"classes\":\"\",\"parent\":\"base/Components.Components\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/base_Components.Components.html#constructor\",\"classes\":\"\",\"parent\":\"base/Components.Components\"},{\"kind\":2,\"name\":\"base/Template\",\"url\":\"modules/base_Template.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"Template\",\"url\":\"classes/base_Template.Template.html\",\"classes\":\"\",\"parent\":\"base/Template\"},{\"kind\":1024,\"name\":\"templates\",\"url\":\"classes/base_Template.Template.html#templates\",\"classes\":\"\",\"parent\":\"base/Template.Template\"},{\"kind\":1024,\"name\":\"_current\",\"url\":\"classes/base_Template.Template.html#_current\",\"classes\":\"\",\"parent\":\"base/Template.Template\"},{\"kind\":1024,\"name\":\"_framework\",\"url\":\"classes/base_Template.Template.html#_framework\",\"classes\":\"\",\"parent\":\"base/Template.Template\"},{\"kind\":2048,\"name\":\"addTemplates\",\"url\":\"classes/base_Template.Template.html#addTemplates\",\"classes\":\"\",\"parent\":\"base/Template.Template\"},{\"kind\":2048,\"name\":\"addTemplate\",\"url\":\"classes/base_Template.Template.html#addTemplate\",\"classes\":\"\",\"parent\":\"base/Template.Template\"},{\"kind\":2048,\"name\":\"extendTemplate\",\"url\":\"classes/base_Template.Template.html#extendTemplate\",\"classes\":\"\",\"parent\":\"base/Template.Template\"},{\"kind\":2048,\"name\":\"setTemplate\",\"url\":\"classes/base_Template.Template.html#setTemplate\",\"classes\":\"\",\"parent\":\"base/Template.Template\"},{\"kind\":262144,\"name\":\"current\",\"url\":\"classes/base_Template.Template.html#current\",\"classes\":\"\",\"parent\":\"base/Template.Template\"},{\"kind\":262144,\"name\":\"framework\",\"url\":\"classes/base_Template.Template.html#framework\",\"classes\":\"\",\"parent\":\"base/Template.Template\"},{\"kind\":2048,\"name\":\"render\",\"url\":\"classes/base_Template.Template.html#render\",\"classes\":\"\",\"parent\":\"base/Template.Template\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/base_Template.Template.html#constructor\",\"classes\":\"\",\"parent\":\"base/Template.Template\"},{\"kind\":2,\"name\":\"base\",\"url\":\"modules/base.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"components/datatable\",\"url\":\"modules/components_datatable.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"DataTable\",\"url\":\"classes/components_datatable.DataTable.html\",\"classes\":\"\",\"parent\":\"components/datatable\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/components_datatable.DataTable.html#constructor\",\"classes\":\"\",\"parent\":\"components/datatable.DataTable\"},{\"kind\":1024,\"name\":\"component\",\"url\":\"classes/components_datatable.DataTable.html#component\",\"classes\":\"\",\"parent\":\"components/datatable.DataTable\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/components_datatable.DataTable.html#options\",\"classes\":\"\",\"parent\":\"components/datatable.DataTable\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"classes/components_datatable.DataTable.html#data\",\"classes\":\"\",\"parent\":\"components/datatable.DataTable\"},{\"kind\":2048,\"name\":\"renderClasses\",\"url\":\"classes/components_datatable.DataTable.html#renderClasses\",\"classes\":\"\",\"parent\":\"components/datatable.DataTable\"},{\"kind\":2048,\"name\":\"renderContext\",\"url\":\"classes/components_datatable.DataTable.html#renderContext\",\"classes\":\"\",\"parent\":\"components/datatable.DataTable\"},{\"kind\":128,\"name\":\"DataTableComponent\",\"url\":\"classes/components_datatable.DataTableComponent.html\",\"classes\":\"\",\"parent\":\"components/datatable\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/components_datatable.DataTableComponent.html#constructor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/datatable.DataTableComponent\"},{\"kind\":1024,\"name\":\"component\",\"url\":\"classes/components_datatable.DataTableComponent.html#component\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/datatable.DataTableComponent\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/components_datatable.DataTableComponent.html#options\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/datatable.DataTableComponent\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"classes/components_datatable.DataTableComponent.html#data\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/datatable.DataTableComponent\"},{\"kind\":2048,\"name\":\"renderClasses\",\"url\":\"classes/components_datatable.DataTableComponent.html#renderClasses\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/datatable.DataTableComponent\"},{\"kind\":2048,\"name\":\"renderContext\",\"url\":\"classes/components_datatable.DataTableComponent.html#renderContext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/datatable.DataTableComponent\"},{\"kind\":2,\"name\":\"components/datavalue\",\"url\":\"modules/components_datavalue.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"DataValueComponent\",\"url\":\"classes/components_datavalue.DataValueComponent.html\",\"classes\":\"\",\"parent\":\"components/datavalue\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/components_datavalue.DataValueComponent.html#constructor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/datavalue.DataValueComponent\"},{\"kind\":1024,\"name\":\"component\",\"url\":\"classes/components_datavalue.DataValueComponent.html#component\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/datavalue.DataValueComponent\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/components_datavalue.DataValueComponent.html#options\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/datavalue.DataValueComponent\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"classes/components_datavalue.DataValueComponent.html#data\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/datavalue.DataValueComponent\"},{\"kind\":2048,\"name\":\"getAttributes\",\"url\":\"classes/components_datavalue.DataValueComponent.html#getAttributes\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/datavalue.DataValueComponent\"},{\"kind\":2048,\"name\":\"renderContext\",\"url\":\"classes/components_datavalue.DataValueComponent.html#renderContext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/datavalue.DataValueComponent\"},{\"kind\":2,\"name\":\"components/html\",\"url\":\"modules/components_html.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"HTMLProperties\",\"url\":\"variables/components_html.HTMLProperties.html\",\"classes\":\"\",\"parent\":\"components/html\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/components_html.HTMLProperties.html#__type\",\"classes\":\"\",\"parent\":\"components/html.HTMLProperties\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"variables/components_html.HTMLProperties.html#__type.type\",\"classes\":\"\",\"parent\":\"components/html.HTMLProperties.__type\"},{\"kind\":1024,\"name\":\"schema\",\"url\":\"variables/components_html.HTMLProperties.html#__type.schema\",\"classes\":\"\",\"parent\":\"components/html.HTMLProperties.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/components_html.HTMLProperties.html#__type.schema.__type-1\",\"classes\":\"\",\"parent\":\"components/html.HTMLProperties.__type.schema\"},{\"kind\":1024,\"name\":\"tag\",\"url\":\"variables/components_html.HTMLProperties.html#__type.schema.__type-1.tag\",\"classes\":\"\",\"parent\":\"components/html.HTMLProperties.__type.schema.__type\"},{\"kind\":1024,\"name\":\"content\",\"url\":\"variables/components_html.HTMLProperties.html#__type.schema.__type-1.content\",\"classes\":\"\",\"parent\":\"components/html.HTMLProperties.__type.schema.__type\"},{\"kind\":1024,\"name\":\"attrs\",\"url\":\"variables/components_html.HTMLProperties.html#__type.schema.__type-1.attrs\",\"classes\":\"\",\"parent\":\"components/html.HTMLProperties.__type.schema.__type\"},{\"kind\":1024,\"name\":\"className\",\"url\":\"variables/components_html.HTMLProperties.html#__type.schema.__type-1.className\",\"classes\":\"\",\"parent\":\"components/html.HTMLProperties.__type.schema.__type\"},{\"kind\":1024,\"name\":\"template\",\"url\":\"variables/components_html.HTMLProperties.html#__type.template\",\"classes\":\"\",\"parent\":\"components/html.HTMLProperties.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/components_html.HTMLProperties.html#__type.template.__type-2\",\"classes\":\"\",\"parent\":\"components/html.HTMLProperties.__type.template\"},{\"kind\":128,\"name\":\"HTML\",\"url\":\"classes/components_html.HTML.html\",\"classes\":\"\",\"parent\":\"components/html\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/components_html.HTML.html#constructor\",\"classes\":\"\",\"parent\":\"components/html.HTML\"},{\"kind\":1024,\"name\":\"component\",\"url\":\"classes/components_html.HTML.html#component\",\"classes\":\"\",\"parent\":\"components/html.HTML\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/components_html.HTML.html#options\",\"classes\":\"\",\"parent\":\"components/html.HTML\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"classes/components_html.HTML.html#data\",\"classes\":\"\",\"parent\":\"components/html.HTML\"},{\"kind\":2048,\"name\":\"getAttributes\",\"url\":\"classes/components_html.HTML.html#getAttributes\",\"classes\":\"\",\"parent\":\"components/html.HTML\"},{\"kind\":2048,\"name\":\"renderContext\",\"url\":\"classes/components_html.HTML.html#renderContext\",\"classes\":\"\",\"parent\":\"components/html.HTML\"},{\"kind\":128,\"name\":\"HTMLComponent\",\"url\":\"classes/components_html.HTMLComponent.html\",\"classes\":\"\",\"parent\":\"components/html\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/components_html.HTMLComponent.html#constructor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/html.HTMLComponent\"},{\"kind\":1024,\"name\":\"component\",\"url\":\"classes/components_html.HTMLComponent.html#component\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/html.HTMLComponent\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/components_html.HTMLComponent.html#options\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/html.HTMLComponent\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"classes/components_html.HTMLComponent.html#data\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/html.HTMLComponent\"},{\"kind\":2048,\"name\":\"getAttributes\",\"url\":\"classes/components_html.HTMLComponent.html#getAttributes\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/html.HTMLComponent\"},{\"kind\":2048,\"name\":\"renderContext\",\"url\":\"classes/components_html.HTMLComponent.html#renderContext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/html.HTMLComponent\"},{\"kind\":2,\"name\":\"components/htmlcontainer\",\"url\":\"modules/components_htmlcontainer.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"HTMLContainer\",\"url\":\"classes/components_htmlcontainer.HTMLContainer.html\",\"classes\":\"\",\"parent\":\"components/htmlcontainer\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/components_htmlcontainer.HTMLContainer.html#constructor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/htmlcontainer.HTMLContainer\"},{\"kind\":2048,\"name\":\"renderContext\",\"url\":\"classes/components_htmlcontainer.HTMLContainer.html#renderContext\",\"classes\":\"\",\"parent\":\"components/htmlcontainer.HTMLContainer\"},{\"kind\":1024,\"name\":\"component\",\"url\":\"classes/components_htmlcontainer.HTMLContainer.html#component\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/htmlcontainer.HTMLContainer\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/components_htmlcontainer.HTMLContainer.html#options\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/htmlcontainer.HTMLContainer\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"classes/components_htmlcontainer.HTMLContainer.html#data\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/htmlcontainer.HTMLContainer\"},{\"kind\":2048,\"name\":\"getAttributes\",\"url\":\"classes/components_htmlcontainer.HTMLContainer.html#getAttributes\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/htmlcontainer.HTMLContainer\"},{\"kind\":128,\"name\":\"HTMLContainerComponent\",\"url\":\"classes/components_htmlcontainer.HTMLContainerComponent.html\",\"classes\":\"\",\"parent\":\"components/htmlcontainer\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/components_htmlcontainer.HTMLContainerComponent.html#constructor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/htmlcontainer.HTMLContainerComponent\"},{\"kind\":2048,\"name\":\"renderContext\",\"url\":\"classes/components_htmlcontainer.HTMLContainerComponent.html#renderContext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/htmlcontainer.HTMLContainerComponent\"},{\"kind\":1024,\"name\":\"component\",\"url\":\"classes/components_htmlcontainer.HTMLContainerComponent.html#component\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/htmlcontainer.HTMLContainerComponent\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/components_htmlcontainer.HTMLContainerComponent.html#options\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/htmlcontainer.HTMLContainerComponent\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"classes/components_htmlcontainer.HTMLContainerComponent.html#data\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/htmlcontainer.HTMLContainerComponent\"},{\"kind\":2048,\"name\":\"getAttributes\",\"url\":\"classes/components_htmlcontainer.HTMLContainerComponent.html#getAttributes\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/htmlcontainer.HTMLContainerComponent\"},{\"kind\":2,\"name\":\"components\",\"url\":\"modules/components.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"default\",\"url\":\"variables/components.default.html\",\"classes\":\"\",\"parent\":\"components\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/components.default.html#__type\",\"classes\":\"\",\"parent\":\"components.default\"},{\"kind\":1024,\"name\":\"components\",\"url\":\"variables/components.default.html#__type.components\",\"classes\":\"\",\"parent\":\"components.default.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/components.default.html#__type.components.__type-1\",\"classes\":\"\",\"parent\":\"components.default.__type.components\"},{\"kind\":1024,\"name\":\"html\",\"url\":\"variables/components.default.html#__type.components.__type-1.html\",\"classes\":\"\",\"parent\":\"components.default.__type.components.__type\"},{\"kind\":1024,\"name\":\"htmlcontainer\",\"url\":\"variables/components.default.html#__type.components.__type-1.htmlcontainer\",\"classes\":\"\",\"parent\":\"components.default.__type.components.__type\"},{\"kind\":1024,\"name\":\"datatable\",\"url\":\"variables/components.default.html#__type.components.__type-1.datatable\",\"classes\":\"\",\"parent\":\"components.default.__type.components.__type\"},{\"kind\":1024,\"name\":\"datavalue\",\"url\":\"variables/components.default.html#__type.components.__type-1.datavalue\",\"classes\":\"\",\"parent\":\"components.default.__type.components.__type\"},{\"kind\":1024,\"name\":\"input\",\"url\":\"variables/components.default.html#__type.components.__type-1.input\",\"classes\":\"\",\"parent\":\"components.default.__type.components.__type\"},{\"kind\":1024,\"name\":\"templates\",\"url\":\"variables/components.default.html#__type.templates\",\"classes\":\"\",\"parent\":\"components.default.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/components.default.html#__type.templates.__type-2\",\"classes\":\"\",\"parent\":\"components.default.__type.templates\"},{\"kind\":1024,\"name\":\"bootstrap\",\"url\":\"variables/components.default.html#__type.templates.__type-2.bootstrap\",\"classes\":\"\",\"parent\":\"components.default.__type.templates.__type\"},{\"kind\":2,\"name\":\"components/test\",\"url\":\"modules/components_test.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"error/FieldError\",\"url\":\"modules/error_FieldError.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"FieldError\",\"url\":\"classes/error_FieldError.FieldError.html\",\"classes\":\"\",\"parent\":\"error/FieldError\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/error_FieldError.FieldError.html#constructor\",\"classes\":\"\",\"parent\":\"error/FieldError.FieldError\"},{\"kind\":1024,\"name\":\"context\",\"url\":\"classes/error_FieldError.FieldError.html#context\",\"classes\":\"\",\"parent\":\"error/FieldError.FieldError\"},{\"kind\":1024,\"name\":\"errorKeyOrMessage\",\"url\":\"classes/error_FieldError.FieldError.html#errorKeyOrMessage\",\"classes\":\"\",\"parent\":\"error/FieldError.FieldError\"},{\"kind\":1024,\"name\":\"level\",\"url\":\"classes/error_FieldError.FieldError.html#level\",\"classes\":\"\",\"parent\":\"error/FieldError.FieldError\"},{\"kind\":2,\"name\":\"error/ValidatorError\",\"url\":\"modules/error_ValidatorError.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"ValidatorError\",\"url\":\"classes/error_ValidatorError.ValidatorError.html\",\"classes\":\"\",\"parent\":\"error/ValidatorError\"},{\"kind\":2,\"name\":\"error\",\"url\":\"modules/error.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"model/EventEmitter\",\"url\":\"modules/model_EventEmitter.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"EventEmitter\",\"url\":\"functions/model_EventEmitter.EventEmitter.html\",\"classes\":\"\",\"parent\":\"model/EventEmitter\"},{\"kind\":256,\"name\":\"ModelInterface\",\"url\":\"interfaces/model_EventEmitter.ModelInterface.html\",\"classes\":\"\",\"parent\":\"model/EventEmitter\"},{\"kind\":1024,\"name\":\"component\",\"url\":\"interfaces/model_EventEmitter.ModelInterface.html#component\",\"classes\":\"\",\"parent\":\"model/EventEmitter.ModelInterface\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/model_EventEmitter.ModelInterface.html#options\",\"classes\":\"\",\"parent\":\"model/EventEmitter.ModelInterface\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"interfaces/model_EventEmitter.ModelInterface.html#data\",\"classes\":\"\",\"parent\":\"model/EventEmitter.ModelInterface\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"interfaces/model_EventEmitter.ModelInterface.html#constructor\",\"classes\":\"\",\"parent\":\"model/EventEmitter.ModelInterface\"},{\"kind\":2,\"name\":\"model/Model\",\"url\":\"modules/model_Model.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"Model\",\"url\":\"functions/model_Model.Model.html\",\"classes\":\"\",\"parent\":\"model/Model\"},{\"kind\":256,\"name\":\"ModelDecoratorInterface\",\"url\":\"interfaces/model_Model.ModelDecoratorInterface.html\",\"classes\":\"\",\"parent\":\"model/Model\"},{\"kind\":2,\"name\":\"model/NestedArrayModel\",\"url\":\"modules/model_NestedArrayModel.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"NestedArrayModel\",\"url\":\"functions/model_NestedArrayModel.NestedArrayModel.html\",\"classes\":\"\",\"parent\":\"model/NestedArrayModel\"},{\"kind\":2,\"name\":\"model/NestedDataModel\",\"url\":\"modules/model_NestedDataModel.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"NestedDataModel\",\"url\":\"functions/model_NestedDataModel.NestedDataModel.html\",\"classes\":\"\",\"parent\":\"model/NestedDataModel\"},{\"kind\":2,\"name\":\"model/NestedModel\",\"url\":\"modules/model_NestedModel.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"NestedModel\",\"url\":\"functions/model_NestedModel.NestedModel.html\",\"classes\":\"\",\"parent\":\"model/NestedModel\"},{\"kind\":2,\"name\":\"model\",\"url\":\"modules/model.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"modules\",\"url\":\"modules/modules.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"default\",\"url\":\"variables/modules.default.html\",\"classes\":\"\",\"parent\":\"modules\"},{\"kind\":2,\"name\":\"process\",\"url\":\"modules/process.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"process/process\",\"url\":\"modules/process_process.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"process\",\"url\":\"functions/process_process.process.html\",\"classes\":\"\",\"parent\":\"process/process\"},{\"kind\":64,\"name\":\"processSync\",\"url\":\"functions/process_process.processSync.html\",\"classes\":\"\",\"parent\":\"process/process\"},{\"kind\":2,\"name\":\"process/processOne\",\"url\":\"modules/process_processOne.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"processOne\",\"url\":\"functions/process_processOne.processOne.html\",\"classes\":\"\",\"parent\":\"process/processOne\"},{\"kind\":64,\"name\":\"processOneSync\",\"url\":\"functions/process_processOne.processOneSync.html\",\"classes\":\"\",\"parent\":\"process/processOne\"},{\"kind\":2,\"name\":\"sdk/Formio\",\"url\":\"modules/sdk_Formio.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"FormioOptions\",\"url\":\"interfaces/sdk_Formio.FormioOptions.html\",\"classes\":\"\",\"parent\":\"sdk/Formio\"},{\"kind\":1024,\"name\":\"base\",\"url\":\"interfaces/sdk_Formio.FormioOptions.html#base\",\"classes\":\"\",\"parent\":\"sdk/Formio.FormioOptions\"},{\"kind\":1024,\"name\":\"project\",\"url\":\"interfaces/sdk_Formio.FormioOptions.html#project\",\"classes\":\"\",\"parent\":\"sdk/Formio.FormioOptions\"},{\"kind\":1024,\"name\":\"useSessionToken\",\"url\":\"interfaces/sdk_Formio.FormioOptions.html#useSessionToken\",\"classes\":\"\",\"parent\":\"sdk/Formio.FormioOptions\"},{\"kind\":8,\"name\":\"FormioPathType\",\"url\":\"enums/sdk_Formio.FormioPathType.html\",\"classes\":\"\",\"parent\":\"sdk/Formio\"},{\"kind\":16,\"name\":\"Subdirectories\",\"url\":\"enums/sdk_Formio.FormioPathType.html#Subdirectories\",\"classes\":\"\",\"parent\":\"sdk/Formio.FormioPathType\"},{\"kind\":16,\"name\":\"Subdomains\",\"url\":\"enums/sdk_Formio.FormioPathType.html#Subdomains\",\"classes\":\"\",\"parent\":\"sdk/Formio.FormioPathType\"},{\"kind\":128,\"name\":\"Formio\",\"url\":\"classes/sdk_Formio.Formio.html\",\"classes\":\"\",\"parent\":\"sdk/Formio\"},{\"kind\":1024,\"name\":\"baseUrl\",\"url\":\"classes/sdk_Formio.Formio.html#baseUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"projectUrl\",\"url\":\"classes/sdk_Formio.Formio.html#projectUrl-1\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"authUrl\",\"url\":\"classes/sdk_Formio.Formio.html#authUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"pathType\",\"url\":\"classes/sdk_Formio.Formio.html#pathType-1\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"projectUrlSet\",\"url\":\"classes/sdk_Formio.Formio.html#projectUrlSet\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"classes/sdk_Formio.Formio.html#cache\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"namespace\",\"url\":\"classes/sdk_Formio.Formio.html#namespace\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"events\",\"url\":\"classes/sdk_Formio.Formio.html#events\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"libraries\",\"url\":\"classes/sdk_Formio.Formio.html#libraries\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"fetch\",\"url\":\"classes/sdk_Formio.Formio.html#fetch\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"Headers\",\"url\":\"classes/sdk_Formio.Formio.html#Headers\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"tokens\",\"url\":\"classes/sdk_Formio.Formio.html#tokens\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"classes/sdk_Formio.Formio.html#version\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"loadProjects\",\"url\":\"classes/sdk_Formio.Formio.html#loadProjects\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"getUrlParts\",\"url\":\"classes/sdk_Formio.Formio.html#getUrlParts-2\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"serialize\",\"url\":\"classes/sdk_Formio.Formio.html#serialize\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"getRequestArgs\",\"url\":\"classes/sdk_Formio.Formio.html#getRequestArgs\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"makeStaticRequest\",\"url\":\"classes/sdk_Formio.Formio.html#makeStaticRequest\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"makeRequest\",\"url\":\"classes/sdk_Formio.Formio.html#makeRequest-2\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"request\",\"url\":\"classes/sdk_Formio.Formio.html#request\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":262144,\"name\":\"token\",\"url\":\"classes/sdk_Formio.Formio.html#token\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"useSessionToken\",\"url\":\"classes/sdk_Formio.Formio.html#useSessionToken\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"setToken\",\"url\":\"classes/sdk_Formio.Formio.html#setToken-2\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"getToken\",\"url\":\"classes/sdk_Formio.Formio.html#getToken-2\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"setUser\",\"url\":\"classes/sdk_Formio.Formio.html#setUser\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"getUser\",\"url\":\"classes/sdk_Formio.Formio.html#getUser\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"setBaseUrl\",\"url\":\"classes/sdk_Formio.Formio.html#setBaseUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"getBaseUrl\",\"url\":\"classes/sdk_Formio.Formio.html#getBaseUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"setApiUrl\",\"url\":\"classes/sdk_Formio.Formio.html#setApiUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"getApiUrl\",\"url\":\"classes/sdk_Formio.Formio.html#getApiUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"setAppUrl\",\"url\":\"classes/sdk_Formio.Formio.html#setAppUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"setProjectUrl\",\"url\":\"classes/sdk_Formio.Formio.html#setProjectUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"setAuthUrl\",\"url\":\"classes/sdk_Formio.Formio.html#setAuthUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"getAppUrl\",\"url\":\"classes/sdk_Formio.Formio.html#getAppUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"getProjectUrl\",\"url\":\"classes/sdk_Formio.Formio.html#getProjectUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"clearCache\",\"url\":\"classes/sdk_Formio.Formio.html#clearCache\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"accessInfo\",\"url\":\"classes/sdk_Formio.Formio.html#accessInfo-2\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"projectRoles\",\"url\":\"classes/sdk_Formio.Formio.html#projectRoles\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"currentUser\",\"url\":\"classes/sdk_Formio.Formio.html#currentUser-2\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"logout\",\"url\":\"classes/sdk_Formio.Formio.html#logout\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"pageQuery\",\"url\":\"classes/sdk_Formio.Formio.html#pageQuery\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"oAuthCurrentUser\",\"url\":\"classes/sdk_Formio.Formio.html#oAuthCurrentUser\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"oauthLogoutURI\",\"url\":\"classes/sdk_Formio.Formio.html#oauthLogoutURI-2\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"samlInit\",\"url\":\"classes/sdk_Formio.Formio.html#samlInit\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"oktaInit\",\"url\":\"classes/sdk_Formio.Formio.html#oktaInit\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"ssoInit\",\"url\":\"classes/sdk_Formio.Formio.html#ssoInit\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"requireLibrary\",\"url\":\"classes/sdk_Formio.Formio.html#requireLibrary\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"libraryReady\",\"url\":\"classes/sdk_Formio.Formio.html#libraryReady\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"cloneResponse\",\"url\":\"classes/sdk_Formio.Formio.html#cloneResponse\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"setPathType\",\"url\":\"classes/sdk_Formio.Formio.html#setPathType\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"getPathType\",\"url\":\"classes/sdk_Formio.Formio.html#getPathType\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"plugins\",\"url\":\"classes/sdk_Formio.Formio.html#plugins\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"deregisterPlugin\",\"url\":\"classes/sdk_Formio.Formio.html#deregisterPlugin\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/sdk_Formio.Formio.html#deregisterPlugin.__type\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio.deregisterPlugin\"},{\"kind\":1024,\"name\":\"registerPlugin\",\"url\":\"classes/sdk_Formio.Formio.html#registerPlugin\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/sdk_Formio.Formio.html#registerPlugin.__type-10\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio.registerPlugin\"},{\"kind\":1024,\"name\":\"getPlugin\",\"url\":\"classes/sdk_Formio.Formio.html#getPlugin\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/sdk_Formio.Formio.html#getPlugin.__type-2\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio.getPlugin\"},{\"kind\":1024,\"name\":\"pluginWait\",\"url\":\"classes/sdk_Formio.Formio.html#pluginWait\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/sdk_Formio.Formio.html#pluginWait.__type-8\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio.pluginWait\"},{\"kind\":1024,\"name\":\"pluginGet\",\"url\":\"classes/sdk_Formio.Formio.html#pluginGet\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/sdk_Formio.Formio.html#pluginGet.__type-6\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio.pluginGet\"},{\"kind\":1024,\"name\":\"pluginAlter\",\"url\":\"classes/sdk_Formio.Formio.html#pluginAlter\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/sdk_Formio.Formio.html#pluginAlter.__type-4\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio.pluginAlter\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/sdk_Formio.Formio.html#constructor\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"base\",\"url\":\"classes/sdk_Formio.Formio.html#base\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"projectsUrl\",\"url\":\"classes/sdk_Formio.Formio.html#projectsUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"projectUrl\",\"url\":\"classes/sdk_Formio.Formio.html#projectUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"projectId\",\"url\":\"classes/sdk_Formio.Formio.html#projectId\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"roleUrl\",\"url\":\"classes/sdk_Formio.Formio.html#roleUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"rolesUrl\",\"url\":\"classes/sdk_Formio.Formio.html#rolesUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"roleId\",\"url\":\"classes/sdk_Formio.Formio.html#roleId\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"formUrl\",\"url\":\"classes/sdk_Formio.Formio.html#formUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"formsUrl\",\"url\":\"classes/sdk_Formio.Formio.html#formsUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"formId\",\"url\":\"classes/sdk_Formio.Formio.html#formId\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"submissionsUrl\",\"url\":\"classes/sdk_Formio.Formio.html#submissionsUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"submissionUrl\",\"url\":\"classes/sdk_Formio.Formio.html#submissionUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"submissionId\",\"url\":\"classes/sdk_Formio.Formio.html#submissionId\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"actionsUrl\",\"url\":\"classes/sdk_Formio.Formio.html#actionsUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"actionId\",\"url\":\"classes/sdk_Formio.Formio.html#actionId\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"actionUrl\",\"url\":\"classes/sdk_Formio.Formio.html#actionUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"vsUrl\",\"url\":\"classes/sdk_Formio.Formio.html#vsUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"vId\",\"url\":\"classes/sdk_Formio.Formio.html#vId\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"vUrl\",\"url\":\"classes/sdk_Formio.Formio.html#vUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"query\",\"url\":\"classes/sdk_Formio.Formio.html#query\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"pathType\",\"url\":\"classes/sdk_Formio.Formio.html#pathType\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"noProject\",\"url\":\"classes/sdk_Formio.Formio.html#noProject\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"path\",\"url\":\"classes/sdk_Formio.Formio.html#path\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/sdk_Formio.Formio.html#options\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"delete\",\"url\":\"classes/sdk_Formio.Formio.html#delete\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"index\",\"url\":\"classes/sdk_Formio.Formio.html#index\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"save\",\"url\":\"classes/sdk_Formio.Formio.html#save\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"load\",\"url\":\"classes/sdk_Formio.Formio.html#load\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"makeRequest\",\"url\":\"classes/sdk_Formio.Formio.html#makeRequest\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"loadProject\",\"url\":\"classes/sdk_Formio.Formio.html#loadProject\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"saveProject\",\"url\":\"classes/sdk_Formio.Formio.html#saveProject\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"deleteProject\",\"url\":\"classes/sdk_Formio.Formio.html#deleteProject\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"loadRole\",\"url\":\"classes/sdk_Formio.Formio.html#loadRole\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"saveRole\",\"url\":\"classes/sdk_Formio.Formio.html#saveRole\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"deleteRole\",\"url\":\"classes/sdk_Formio.Formio.html#deleteRole\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"loadRoles\",\"url\":\"classes/sdk_Formio.Formio.html#loadRoles\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"loadForm\",\"url\":\"classes/sdk_Formio.Formio.html#loadForm\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"saveForm\",\"url\":\"classes/sdk_Formio.Formio.html#saveForm\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"deleteForm\",\"url\":\"classes/sdk_Formio.Formio.html#deleteForm\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"loadForms\",\"url\":\"classes/sdk_Formio.Formio.html#loadForms\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"loadSubmission\",\"url\":\"classes/sdk_Formio.Formio.html#loadSubmission\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"saveSubmission\",\"url\":\"classes/sdk_Formio.Formio.html#saveSubmission\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"deleteSubmission\",\"url\":\"classes/sdk_Formio.Formio.html#deleteSubmission\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"loadSubmissions\",\"url\":\"classes/sdk_Formio.Formio.html#loadSubmissions\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"loadAction\",\"url\":\"classes/sdk_Formio.Formio.html#loadAction\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"saveAction\",\"url\":\"classes/sdk_Formio.Formio.html#saveAction\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"deleteAction\",\"url\":\"classes/sdk_Formio.Formio.html#deleteAction\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"loadActions\",\"url\":\"classes/sdk_Formio.Formio.html#loadActions\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"availableActions\",\"url\":\"classes/sdk_Formio.Formio.html#availableActions\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"actionInfo\",\"url\":\"classes/sdk_Formio.Formio.html#actionInfo\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"isObjectId\",\"url\":\"classes/sdk_Formio.Formio.html#isObjectId\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"getProjectId\",\"url\":\"classes/sdk_Formio.Formio.html#getProjectId\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"getFormId\",\"url\":\"classes/sdk_Formio.Formio.html#getFormId\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"currentUser\",\"url\":\"classes/sdk_Formio.Formio.html#currentUser\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"accessInfo\",\"url\":\"classes/sdk_Formio.Formio.html#accessInfo\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"oauthLogoutURI\",\"url\":\"classes/sdk_Formio.Formio.html#oauthLogoutURI\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"getToken\",\"url\":\"classes/sdk_Formio.Formio.html#getToken\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"setToken\",\"url\":\"classes/sdk_Formio.Formio.html#setToken\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"getTempToken\",\"url\":\"classes/sdk_Formio.Formio.html#getTempToken\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"getDownloadUrl\",\"url\":\"classes/sdk_Formio.Formio.html#getDownloadUrl\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"userPermissions\",\"url\":\"classes/sdk_Formio.Formio.html#userPermissions\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"canSubmit\",\"url\":\"classes/sdk_Formio.Formio.html#canSubmit\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2048,\"name\":\"getUrlParts\",\"url\":\"classes/sdk_Formio.Formio.html#getUrlParts\",\"classes\":\"\",\"parent\":\"sdk/Formio.Formio\"},{\"kind\":2,\"name\":\"sdk/Plugins\",\"url\":\"modules/sdk_Plugins.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"PluginInitFunction\",\"url\":\"interfaces/sdk_Plugins.PluginInitFunction.html\",\"classes\":\"\",\"parent\":\"sdk/Plugins\"},{\"kind\":256,\"name\":\"PluginDeregisterFunction\",\"url\":\"interfaces/sdk_Plugins.PluginDeregisterFunction.html\",\"classes\":\"\",\"parent\":\"sdk/Plugins\"},{\"kind\":256,\"name\":\"Plugin\",\"url\":\"interfaces/sdk_Plugins.Plugin.html\",\"classes\":\"\",\"parent\":\"sdk/Plugins\"},{\"kind\":1024,\"name\":\"__name\",\"url\":\"interfaces/sdk_Plugins.Plugin.html#__name\",\"classes\":\"\",\"parent\":\"sdk/Plugins.Plugin\"},{\"kind\":1024,\"name\":\"priority\",\"url\":\"interfaces/sdk_Plugins.Plugin.html#priority\",\"classes\":\"\",\"parent\":\"sdk/Plugins.Plugin\"},{\"kind\":1024,\"name\":\"init\",\"url\":\"interfaces/sdk_Plugins.Plugin.html#init\",\"classes\":\"\",\"parent\":\"sdk/Plugins.Plugin\"},{\"kind\":1024,\"name\":\"deregister\",\"url\":\"interfaces/sdk_Plugins.Plugin.html#deregister\",\"classes\":\"\",\"parent\":\"sdk/Plugins.Plugin\"},{\"kind\":128,\"name\":\"default\",\"url\":\"classes/sdk_Plugins.default.html\",\"classes\":\"\",\"parent\":\"sdk/Plugins\"},{\"kind\":1024,\"name\":\"plugins\",\"url\":\"classes/sdk_Plugins.default.html#plugins\",\"classes\":\"\",\"parent\":\"sdk/Plugins.default\"},{\"kind\":1024,\"name\":\"Formio\",\"url\":\"classes/sdk_Plugins.default.html#Formio\",\"classes\":\"\",\"parent\":\"sdk/Plugins.default\"},{\"kind\":2048,\"name\":\"identity\",\"url\":\"classes/sdk_Plugins.default.html#identity\",\"classes\":\"\",\"parent\":\"sdk/Plugins.default\"},{\"kind\":2048,\"name\":\"deregisterPlugin\",\"url\":\"classes/sdk_Plugins.default.html#deregisterPlugin\",\"classes\":\"\",\"parent\":\"sdk/Plugins.default\"},{\"kind\":2048,\"name\":\"registerPlugin\",\"url\":\"classes/sdk_Plugins.default.html#registerPlugin\",\"classes\":\"\",\"parent\":\"sdk/Plugins.default\"},{\"kind\":2048,\"name\":\"getPlugin\",\"url\":\"classes/sdk_Plugins.default.html#getPlugin\",\"classes\":\"\",\"parent\":\"sdk/Plugins.default\"},{\"kind\":2048,\"name\":\"pluginWait\",\"url\":\"classes/sdk_Plugins.default.html#pluginWait\",\"classes\":\"\",\"parent\":\"sdk/Plugins.default\"},{\"kind\":2048,\"name\":\"pluginGet\",\"url\":\"classes/sdk_Plugins.default.html#pluginGet\",\"classes\":\"\",\"parent\":\"sdk/Plugins.default\"},{\"kind\":2048,\"name\":\"pluginAlter\",\"url\":\"classes/sdk_Plugins.default.html#pluginAlter\",\"classes\":\"\",\"parent\":\"sdk/Plugins.default\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/sdk_Plugins.default.html#constructor\",\"classes\":\"\",\"parent\":\"sdk/Plugins.default\"},{\"kind\":2,\"name\":\"sdk\",\"url\":\"modules/sdk.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"types/Access\",\"url\":\"modules/types_Access.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"Access\",\"url\":\"types/types_Access.Access.html\",\"classes\":\"\",\"parent\":\"types/Access\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_Access.Access.html#__type\",\"classes\":\"\",\"parent\":\"types/Access.Access\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/types_Access.Access.html#__type.type\",\"classes\":\"\",\"parent\":\"types/Access.Access.__type\"},{\"kind\":1024,\"name\":\"roles\",\"url\":\"types/types_Access.Access.html#__type.roles\",\"classes\":\"\",\"parent\":\"types/Access.Access.__type\"},{\"kind\":4194304,\"name\":\"AccessType\",\"url\":\"types/types_Access.AccessType.html\",\"classes\":\"\",\"parent\":\"types/Access\"},{\"kind\":2,\"name\":\"types/Action\",\"url\":\"modules/types_Action.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ActionId\",\"url\":\"types/types_Action.ActionId.html\",\"classes\":\"\",\"parent\":\"types/Action\"},{\"kind\":4194304,\"name\":\"ActionSettings\",\"url\":\"types/types_Action.ActionSettings.html\",\"classes\":\"\",\"parent\":\"types/Action\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_Action.ActionSettings.html#__type\",\"classes\":\"\",\"parent\":\"types/Action.ActionSettings\"},{\"kind\":1024,\"name\":\"association\",\"url\":\"types/types_Action.ActionSettings.html#__type.association\",\"classes\":\"\",\"parent\":\"types/Action.ActionSettings.__type\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/types_Action.ActionSettings.html#__type.type\",\"classes\":\"\",\"parent\":\"types/Action.ActionSettings.__type\"},{\"kind\":1024,\"name\":\"role\",\"url\":\"types/types_Action.ActionSettings.html#__type.role\",\"classes\":\"\",\"parent\":\"types/Action.ActionSettings.__type\"},{\"kind\":4194304,\"name\":\"FormAction\",\"url\":\"types/types_Action.FormAction.html\",\"classes\":\"\",\"parent\":\"types/Action\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_Action.FormAction.html#__type\",\"classes\":\"\",\"parent\":\"types/Action.FormAction\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"types/types_Action.FormAction.html#__type._id\",\"classes\":\"\",\"parent\":\"types/Action.FormAction.__type\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/types_Action.FormAction.html#__type.title\",\"classes\":\"\",\"parent\":\"types/Action.FormAction.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/types_Action.FormAction.html#__type.name\",\"classes\":\"\",\"parent\":\"types/Action.FormAction.__type\"},{\"kind\":1024,\"name\":\"handler\",\"url\":\"types/types_Action.FormAction.html#__type.handler\",\"classes\":\"\",\"parent\":\"types/Action.FormAction.__type\"},{\"kind\":1024,\"name\":\"method\",\"url\":\"types/types_Action.FormAction.html#__type.method\",\"classes\":\"\",\"parent\":\"types/Action.FormAction.__type\"},{\"kind\":1024,\"name\":\"condition\",\"url\":\"types/types_Action.FormAction.html#__type.condition\",\"classes\":\"\",\"parent\":\"types/Action.FormAction.__type\"},{\"kind\":1024,\"name\":\"priority\",\"url\":\"types/types_Action.FormAction.html#__type.priority\",\"classes\":\"\",\"parent\":\"types/Action.FormAction.__type\"},{\"kind\":1024,\"name\":\"settings\",\"url\":\"types/types_Action.FormAction.html#__type.settings\",\"classes\":\"\",\"parent\":\"types/Action.FormAction.__type\"},{\"kind\":1024,\"name\":\"form\",\"url\":\"types/types_Action.FormAction.html#__type.form\",\"classes\":\"\",\"parent\":\"types/Action.FormAction.__type\"},{\"kind\":1024,\"name\":\"deleted\",\"url\":\"types/types_Action.FormAction.html#__type.deleted\",\"classes\":\"\",\"parent\":\"types/Action.FormAction.__type\"},{\"kind\":2,\"name\":\"types/BaseComponent\",\"url\":\"modules/types_BaseComponent.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"BaseComponent\",\"url\":\"types/types_BaseComponent.BaseComponent.html\",\"classes\":\"\",\"parent\":\"types/BaseComponent\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent\"},{\"kind\":1024,\"name\":\"input\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.input\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.type\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"key\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.key\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"tableView\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.tableView\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"placeholder\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.placeholder\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"prefix\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.prefix\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"customClass\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.customClass\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"mask\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.mask\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"suffix\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.suffix\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.multiple\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"protected\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.protected\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.unique\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"persistent\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.persistent\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"hidden\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.hidden\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"clearOnHide\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.clearOnHide\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"refreshOn\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.refreshOn\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"redrawOn\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.redrawOn\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"modalEdit\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.modalEdit\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"label\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.label\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"dataGridLabel\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.dataGridLabel\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"labelPosition\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.labelPosition\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.description\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"errorLabel\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.errorLabel\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"tooltip\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.tooltip\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"hideLabel\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.hideLabel\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"widget\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.widget\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"tabindex\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.tabindex\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"disabled\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.disabled\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"autofocus\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.autofocus\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"dbIndex\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.dbIndex\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"customDefaultValue\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.customDefaultValue\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"calculateValue\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.calculateValue\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"calculateServer\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.calculateServer\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"attributes\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.attributes\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"validateOn\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.validateOn\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"validate\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.validate\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.validate.__type-3\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.validate\"},{\"kind\":1024,\"name\":\"required\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.validate.__type-3.required\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.validate.__type\"},{\"kind\":1024,\"name\":\"custom\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.validate.__type-3.custom\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.validate.__type\"},{\"kind\":1024,\"name\":\"customPrivate\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.validate.__type-3.customPrivate\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.validate.__type\"},{\"kind\":1024,\"name\":\"customMessage\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.validate.__type-3.customMessage\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.validate.__type\"},{\"kind\":1024,\"name\":\"strictDateValidation\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.validate.__type-3.strictDateValidation\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.validate.__type\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.validate.__type-3.multiple-1\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.validate.__type\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.validate.__type-3.unique-1\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.validate.__type\"},{\"kind\":1024,\"name\":\"json\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.validate.__type-3.json\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.validate.__type\"},{\"kind\":1024,\"name\":\"row\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.validate.__type-3.row\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.validate.__type\"},{\"kind\":1024,\"name\":\"conditional\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.conditional\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.conditional.__type-1\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.conditional\"},{\"kind\":1024,\"name\":\"show\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.conditional.__type-1.show\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.conditional.__type\"},{\"kind\":1024,\"name\":\"when\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.conditional.__type-1.when\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.conditional.__type\"},{\"kind\":1024,\"name\":\"eq\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.conditional.__type-1.eq\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.conditional.__type\"},{\"kind\":1024,\"name\":\"customConditional\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.customConditional\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"overlay\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.overlay\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.overlay.__type-2\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.overlay\"},{\"kind\":1024,\"name\":\"style\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.overlay.__type-2.style\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.overlay.__type\"},{\"kind\":1024,\"name\":\"left\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.overlay.__type-2.left\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.overlay.__type\"},{\"kind\":1024,\"name\":\"top\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.overlay.__type-2.top\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.overlay.__type\"},{\"kind\":1024,\"name\":\"width\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.overlay.__type-2.width\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.overlay.__type\"},{\"kind\":1024,\"name\":\"height\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.overlay.__type-2.height\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type.overlay.__type\"},{\"kind\":1024,\"name\":\"allowCalculateOverride\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.allowCalculateOverride\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"encrypted\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.encrypted\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"showCharCount\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.showCharCount\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"showWordCount\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.showWordCount\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.properties\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"allowMultipleMasks\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.allowMultipleMasks\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"addons\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.addons\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"inputType\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.inputType\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"errors\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.errors\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":1024,\"name\":\"truncateMultipleSpaces\",\"url\":\"types/types_BaseComponent.BaseComponent.html#__type.truncateMultipleSpaces\",\"classes\":\"\",\"parent\":\"types/BaseComponent.BaseComponent.__type\"},{\"kind\":2,\"name\":\"types/Component\",\"url\":\"modules/types_Component.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"Component\",\"url\":\"types/types_Component.Component.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"CalendarPickerOptions\",\"url\":\"types/types_Component.CalendarPickerOptions.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"BootstrapSizing\",\"url\":\"types/types_Component.BootstrapSizing.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"TextFieldComponent\",\"url\":\"types/types_Component.TextFieldComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"NestedComponent\",\"url\":\"types/types_Component.NestedComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"ContainerComponent\",\"url\":\"types/types_Component.ContainerComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"AddressComponent\",\"url\":\"types/types_Component.AddressComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"ButtonComponent\",\"url\":\"types/types_Component.ButtonComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"CheckboxComponent\",\"url\":\"types/types_Component.CheckboxComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"ColumnsComponent\",\"url\":\"types/types_Component.ColumnsComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"ContentComponent\",\"url\":\"types/types_Component.ContentComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"NumberComponent\",\"url\":\"types/types_Component.NumberComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"NestedArrayComponent\",\"url\":\"types/types_Component.NestedArrayComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"DataGridComponent\",\"url\":\"types/types_Component.DataGridComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"DataMapComponent\",\"url\":\"types/types_Component.DataMapComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"DateTimeComponent\",\"url\":\"types/types_Component.DateTimeComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"DayComponent\",\"url\":\"types/types_Component.DayComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"EditGridComponent\",\"url\":\"types/types_Component.EditGridComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"EmailComponent\",\"url\":\"types/types_Component.EmailComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"FieldSetComponent\",\"url\":\"types/types_Component.FieldSetComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"FileComponent\",\"url\":\"types/types_Component.FileComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"FormComponent\",\"url\":\"types/types_Component.FormComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"HiddenComponent\",\"url\":\"types/types_Component.HiddenComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"HtmlComponent\",\"url\":\"types/types_Component.HtmlComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"PanelComponent\",\"url\":\"types/types_Component.PanelComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"PasswordComponent\",\"url\":\"types/types_Component.PasswordComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"PhoneNumberComponent\",\"url\":\"types/types_Component.PhoneNumberComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"ListComponent\",\"url\":\"types/types_Component.ListComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"RadioComponent\",\"url\":\"types/types_Component.RadioComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"RecaptchaComponent\",\"url\":\"types/types_Component.RecaptchaComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"SelectComponentOptions\",\"url\":\"types/types_Component.SelectComponentOptions.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"SelectComponent\",\"url\":\"types/types_Component.SelectComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"ResourceComponent\",\"url\":\"types/types_Component.ResourceComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"SelectBoxesComponent\",\"url\":\"types/types_Component.SelectBoxesComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"SignatureComponent\",\"url\":\"types/types_Component.SignatureComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"SurveyComponent\",\"url\":\"types/types_Component.SurveyComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"RowComponent\",\"url\":\"types/types_Component.RowComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"TabsComponent\",\"url\":\"types/types_Component.TabsComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"TagsComponent\",\"url\":\"types/types_Component.TagsComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"TextAreaComponent\",\"url\":\"types/types_Component.TextAreaComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"TimeComponent\",\"url\":\"types/types_Component.TimeComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"TreeComponent\",\"url\":\"types/types_Component.TreeComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"UrlComponent\",\"url\":\"types/types_Component.UrlComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":4194304,\"name\":\"WellComponent\",\"url\":\"types/types_Component.WellComponent.html\",\"classes\":\"\",\"parent\":\"types/Component\"},{\"kind\":2,\"name\":\"types/DataObject\",\"url\":\"modules/types_DataObject.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"DataObject\",\"url\":\"types/types_DataObject.DataObject.html\",\"classes\":\"\",\"parent\":\"types/DataObject\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_DataObject.DataObject.html#__type\",\"classes\":\"\",\"parent\":\"types/DataObject.DataObject\"},{\"kind\":4194304,\"name\":\"AutocompleteAddressComponentDataObject\",\"url\":\"types/types_DataObject.AutocompleteAddressComponentDataObject.html\",\"classes\":\"\",\"parent\":\"types/DataObject\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_DataObject.AutocompleteAddressComponentDataObject.html#__type\",\"classes\":\"\",\"parent\":\"types/DataObject.AutocompleteAddressComponentDataObject\"},{\"kind\":1024,\"name\":\"mode\",\"url\":\"types/types_DataObject.AutocompleteAddressComponentDataObject.html#__type.mode\",\"classes\":\"\",\"parent\":\"types/DataObject.AutocompleteAddressComponentDataObject.__type\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"types/types_DataObject.AutocompleteAddressComponentDataObject.html#__type.address\",\"classes\":\"\",\"parent\":\"types/DataObject.AutocompleteAddressComponentDataObject.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_DataObject.AutocompleteAddressComponentDataObject.html#__type.address.__type-1\",\"classes\":\"\",\"parent\":\"types/DataObject.AutocompleteAddressComponentDataObject.__type.address\"},{\"kind\":4194304,\"name\":\"ManualAddressComponentDataObject\",\"url\":\"types/types_DataObject.ManualAddressComponentDataObject.html\",\"classes\":\"\",\"parent\":\"types/DataObject\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_DataObject.ManualAddressComponentDataObject.html#__type\",\"classes\":\"\",\"parent\":\"types/DataObject.ManualAddressComponentDataObject\"},{\"kind\":1024,\"name\":\"mode\",\"url\":\"types/types_DataObject.ManualAddressComponentDataObject.html#__type.mode\",\"classes\":\"\",\"parent\":\"types/DataObject.ManualAddressComponentDataObject.__type\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"types/types_DataObject.ManualAddressComponentDataObject.html#__type.address\",\"classes\":\"\",\"parent\":\"types/DataObject.ManualAddressComponentDataObject.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_DataObject.ManualAddressComponentDataObject.html#__type.address.__type-1\",\"classes\":\"\",\"parent\":\"types/DataObject.ManualAddressComponentDataObject.__type.address\"},{\"kind\":1024,\"name\":\"address1\",\"url\":\"types/types_DataObject.ManualAddressComponentDataObject.html#__type.address.__type-1.address1\",\"classes\":\"\",\"parent\":\"types/DataObject.ManualAddressComponentDataObject.__type.address.__type\"},{\"kind\":1024,\"name\":\"address2\",\"url\":\"types/types_DataObject.ManualAddressComponentDataObject.html#__type.address.__type-1.address2\",\"classes\":\"\",\"parent\":\"types/DataObject.ManualAddressComponentDataObject.__type.address.__type\"},{\"kind\":1024,\"name\":\"city\",\"url\":\"types/types_DataObject.ManualAddressComponentDataObject.html#__type.address.__type-1.city\",\"classes\":\"\",\"parent\":\"types/DataObject.ManualAddressComponentDataObject.__type.address.__type\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"types/types_DataObject.ManualAddressComponentDataObject.html#__type.address.__type-1.state\",\"classes\":\"\",\"parent\":\"types/DataObject.ManualAddressComponentDataObject.__type.address.__type\"},{\"kind\":1024,\"name\":\"country\",\"url\":\"types/types_DataObject.ManualAddressComponentDataObject.html#__type.address.__type-1.country\",\"classes\":\"\",\"parent\":\"types/DataObject.ManualAddressComponentDataObject.__type.address.__type\"},{\"kind\":1024,\"name\":\"zip\",\"url\":\"types/types_DataObject.ManualAddressComponentDataObject.html#__type.address.__type-1.zip\",\"classes\":\"\",\"parent\":\"types/DataObject.ManualAddressComponentDataObject.__type.address.__type\"},{\"kind\":4194304,\"name\":\"AddressComponentDataObject\",\"url\":\"types/types_DataObject.AddressComponentDataObject.html\",\"classes\":\"\",\"parent\":\"types/DataObject\"},{\"kind\":2,\"name\":\"types/Form\",\"url\":\"modules/types_Form.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"FormId\",\"url\":\"types/types_Form.FormId.html\",\"classes\":\"\",\"parent\":\"types/Form\"},{\"kind\":256,\"name\":\"Form\",\"url\":\"interfaces/types_Form.Form.html\",\"classes\":\"\",\"parent\":\"types/Form\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/types_Form.Form.html#_id\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"_vid\",\"url\":\"interfaces/types_Form.Form.html#_vid\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/types_Form.Form.html#title\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/types_Form.Form.html#name\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"path\",\"url\":\"interfaces/types_Form.Form.html#path\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/types_Form.Form.html#type\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"display\",\"url\":\"interfaces/types_Form.Form.html#display\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"action\",\"url\":\"interfaces/types_Form.Form.html#action\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"tags\",\"url\":\"interfaces/types_Form.Form.html#tags\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"access\",\"url\":\"interfaces/types_Form.Form.html#access\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"submissionAccess\",\"url\":\"interfaces/types_Form.Form.html#submissionAccess\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"fieldMatchAccess\",\"url\":\"interfaces/types_Form.Form.html#fieldMatchAccess\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"owner\",\"url\":\"interfaces/types_Form.Form.html#owner\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"machineName\",\"url\":\"interfaces/types_Form.Form.html#machineName\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"components\",\"url\":\"interfaces/types_Form.Form.html#components\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"settings\",\"url\":\"interfaces/types_Form.Form.html#settings\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"interfaces/types_Form.Form.html#properties\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"project\",\"url\":\"interfaces/types_Form.Form.html#project\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"revisions\",\"url\":\"interfaces/types_Form.Form.html#revisions\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"submissionRevisions\",\"url\":\"interfaces/types_Form.Form.html#submissionRevisions\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"controller\",\"url\":\"interfaces/types_Form.Form.html#controller\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"builder\",\"url\":\"interfaces/types_Form.Form.html#builder\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"page\",\"url\":\"interfaces/types_Form.Form.html#page\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"created\",\"url\":\"interfaces/types_Form.Form.html#created\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"modified\",\"url\":\"interfaces/types_Form.Form.html#modified\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":1024,\"name\":\"deleted\",\"url\":\"interfaces/types_Form.Form.html#deleted\",\"classes\":\"\",\"parent\":\"types/Form.Form\"},{\"kind\":4194304,\"name\":\"FormType\",\"url\":\"types/types_Form.FormType.html\",\"classes\":\"\",\"parent\":\"types/Form\"},{\"kind\":4194304,\"name\":\"FormDisplay\",\"url\":\"types/types_Form.FormDisplay.html\",\"classes\":\"\",\"parent\":\"types/Form\"},{\"kind\":4194304,\"name\":\"FormSettings\",\"url\":\"types/types_Form.FormSettings.html\",\"classes\":\"\",\"parent\":\"types/Form\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_Form.FormSettings.html#__type\",\"classes\":\"\",\"parent\":\"types/Form.FormSettings\"},{\"kind\":1024,\"name\":\"collection\",\"url\":\"types/types_Form.FormSettings.html#__type.collection\",\"classes\":\"\",\"parent\":\"types/Form.FormSettings.__type\"},{\"kind\":1024,\"name\":\"condensedMode\",\"url\":\"types/types_Form.FormSettings.html#__type.condensedMode\",\"classes\":\"\",\"parent\":\"types/Form.FormSettings.__type\"},{\"kind\":1024,\"name\":\"disableAutocomplete\",\"url\":\"types/types_Form.FormSettings.html#__type.disableAutocomplete\",\"classes\":\"\",\"parent\":\"types/Form.FormSettings.__type\"},{\"kind\":1024,\"name\":\"fontSize\",\"url\":\"types/types_Form.FormSettings.html#__type.fontSize\",\"classes\":\"\",\"parent\":\"types/Form.FormSettings.__type\"},{\"kind\":1024,\"name\":\"hideTitle\",\"url\":\"types/types_Form.FormSettings.html#__type.hideTitle\",\"classes\":\"\",\"parent\":\"types/Form.FormSettings.__type\"},{\"kind\":1024,\"name\":\"layout\",\"url\":\"types/types_Form.FormSettings.html#__type.layout\",\"classes\":\"\",\"parent\":\"types/Form.FormSettings.__type\"},{\"kind\":1024,\"name\":\"margins\",\"url\":\"types/types_Form.FormSettings.html#__type.margins\",\"classes\":\"\",\"parent\":\"types/Form.FormSettings.__type\"},{\"kind\":1024,\"name\":\"showCheckboxBacground\",\"url\":\"types/types_Form.FormSettings.html#__type.showCheckboxBacground\",\"classes\":\"\",\"parent\":\"types/Form.FormSettings.__type\"},{\"kind\":1024,\"name\":\"theme\",\"url\":\"types/types_Form.FormSettings.html#__type.theme\",\"classes\":\"\",\"parent\":\"types/Form.FormSettings.__type\"},{\"kind\":1024,\"name\":\"viewAsHtml\",\"url\":\"types/types_Form.FormSettings.html#__type.viewAsHtml\",\"classes\":\"\",\"parent\":\"types/Form.FormSettings.__type\"},{\"kind\":1024,\"name\":\"viewer\",\"url\":\"types/types_Form.FormSettings.html#__type.viewer\",\"classes\":\"\",\"parent\":\"types/Form.FormSettings.__type\"},{\"kind\":1024,\"name\":\"wizardHeaderType\",\"url\":\"types/types_Form.FormSettings.html#__type.wizardHeaderType\",\"classes\":\"\",\"parent\":\"types/Form.FormSettings.__type\"},{\"kind\":1024,\"name\":\"pdf\",\"url\":\"types/types_Form.FormSettings.html#__type.pdf\",\"classes\":\"\",\"parent\":\"types/Form.FormSettings.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_Form.FormSettings.html#__type.pdf.__type-1\",\"classes\":\"\",\"parent\":\"types/Form.FormSettings.__type.pdf\"},{\"kind\":1024,\"name\":\"src\",\"url\":\"types/types_Form.FormSettings.html#__type.pdf.__type-1.src\",\"classes\":\"\",\"parent\":\"types/Form.FormSettings.__type.pdf.__type\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/types_Form.FormSettings.html#__type.pdf.__type-1.id\",\"classes\":\"\",\"parent\":\"types/Form.FormSettings.__type.pdf.__type\"},{\"kind\":2,\"name\":\"types/PassedComponentInstance\",\"url\":\"modules/types_PassedComponentInstance.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"PassedComponentInstance\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html#__type\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance.PassedComponentInstance\"},{\"kind\":1024,\"name\":\"evalContext\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html#__type.evalContext\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance.PassedComponentInstance.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html#__type.evalContext.__type-1\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance.PassedComponentInstance.__type.evalContext\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html#__type.evalContext.__type-1.__type-2.__type-3\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance.PassedComponentInstance.__type.evalContext.__type.__type\"},{\"kind\":1024,\"name\":\"component\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html#__type.evalContext.__type-1.__type-2.__type-3.component\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance.PassedComponentInstance.__type.evalContext.__type.__type.__type\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html#__type.evalContext.__type-1.__type-2.__type-3.data\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance.PassedComponentInstance.__type.evalContext.__type.__type.__type\"},{\"kind\":1024,\"name\":\"row\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html#__type.evalContext.__type-1.__type-2.__type-3.row\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance.PassedComponentInstance.__type.evalContext.__type.__type.__type\"},{\"kind\":1024,\"name\":\"rowIndex\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html#__type.evalContext.__type-1.__type-2.__type-3.rowIndex\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance.PassedComponentInstance.__type.evalContext.__type.__type.__type\"},{\"kind\":1024,\"name\":\"iconClass\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html#__type.evalContext.__type-1.__type-2.__type-3.iconClass\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance.PassedComponentInstance.__type.evalContext.__type.__type.__type\"},{\"kind\":1024,\"name\":\"t\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html#__type.evalContext.__type-1.__type-2.__type-3.t\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance.PassedComponentInstance.__type.evalContext.__type.__type.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html#__type.evalContext.__type-1.__type-2.__type-3.t.__type-5\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance.PassedComponentInstance.__type.evalContext.__type.__type.__type.t\"},{\"kind\":1024,\"name\":\"submission\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html#__type.evalContext.__type-1.__type-2.__type-3.submission\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance.PassedComponentInstance.__type.evalContext.__type.__type.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html#__type.evalContext.__type-1.__type-2.__type-3.submission.__type-4\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance.PassedComponentInstance.__type.evalContext.__type.__type.__type.submission\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html#__type.evalContext.__type-1.__type-2.__type-3.submission.__type-4.data-1\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance.PassedComponentInstance.__type.evalContext.__type.__type.__type.submission.__type\"},{\"kind\":1024,\"name\":\"form\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html#__type.evalContext.__type-1.__type-2.__type-3.form\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance.PassedComponentInstance.__type.evalContext.__type.__type.__type\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html#__type.evalContext.__type-1.__type-2.__type-3.options\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance.PassedComponentInstance.__type.evalContext.__type.__type.__type\"},{\"kind\":1024,\"name\":\"shouldSkipValidation\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html#__type.shouldSkipValidation\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance.PassedComponentInstance.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_PassedComponentInstance.PassedComponentInstance.html#__type.shouldSkipValidation.__type-7\",\"classes\":\"\",\"parent\":\"types/PassedComponentInstance.PassedComponentInstance.__type.shouldSkipValidation\"},{\"kind\":2,\"name\":\"types/Role\",\"url\":\"modules/types_Role.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"RoleId\",\"url\":\"types/types_Role.RoleId.html\",\"classes\":\"\",\"parent\":\"types/Role\"},{\"kind\":4194304,\"name\":\"Role\",\"url\":\"types/types_Role.Role.html\",\"classes\":\"\",\"parent\":\"types/Role\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_Role.Role.html#__type\",\"classes\":\"\",\"parent\":\"types/Role.Role\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"types/types_Role.Role.html#__type._id\",\"classes\":\"\",\"parent\":\"types/Role.Role.__type\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/types_Role.Role.html#__type.title\",\"classes\":\"\",\"parent\":\"types/Role.Role.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/types_Role.Role.html#__type.description\",\"classes\":\"\",\"parent\":\"types/Role.Role.__type\"},{\"kind\":1024,\"name\":\"default\",\"url\":\"types/types_Role.Role.html#__type.default\",\"classes\":\"\",\"parent\":\"types/Role.Role.__type\"},{\"kind\":1024,\"name\":\"admin\",\"url\":\"types/types_Role.Role.html#__type.admin\",\"classes\":\"\",\"parent\":\"types/Role.Role.__type\"},{\"kind\":1024,\"name\":\"project\",\"url\":\"types/types_Role.Role.html#__type.project\",\"classes\":\"\",\"parent\":\"types/Role.Role.__type\"},{\"kind\":1024,\"name\":\"machineName\",\"url\":\"types/types_Role.Role.html#__type.machineName\",\"classes\":\"\",\"parent\":\"types/Role.Role.__type\"},{\"kind\":1024,\"name\":\"created\",\"url\":\"types/types_Role.Role.html#__type.created\",\"classes\":\"\",\"parent\":\"types/Role.Role.__type\"},{\"kind\":1024,\"name\":\"modified\",\"url\":\"types/types_Role.Role.html#__type.modified\",\"classes\":\"\",\"parent\":\"types/Role.Role.__type\"},{\"kind\":1024,\"name\":\"delted\",\"url\":\"types/types_Role.Role.html#__type.delted\",\"classes\":\"\",\"parent\":\"types/Role.Role.__type\"},{\"kind\":2,\"name\":\"types/RuleFn\",\"url\":\"modules/types_RuleFn.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"RuleContext\",\"url\":\"types/types_RuleFn.RuleContext.html\",\"classes\":\"\",\"parent\":\"types/RuleFn\"},{\"kind\":4194304,\"name\":\"RuleFn\",\"url\":\"types/types_RuleFn.RuleFn.html\",\"classes\":\"\",\"parent\":\"types/RuleFn\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_RuleFn.RuleFn.html#__type\",\"classes\":\"\",\"parent\":\"types/RuleFn.RuleFn\"},{\"kind\":4194304,\"name\":\"RuleFnSync\",\"url\":\"types/types_RuleFn.RuleFnSync.html\",\"classes\":\"\",\"parent\":\"types/RuleFn\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_RuleFn.RuleFnSync.html#__type\",\"classes\":\"\",\"parent\":\"types/RuleFn.RuleFnSync\"},{\"kind\":2,\"name\":\"types/Submission\",\"url\":\"modules/types_Submission.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"SubmissionId\",\"url\":\"types/types_Submission.SubmissionId.html\",\"classes\":\"\",\"parent\":\"types/Submission\"},{\"kind\":256,\"name\":\"Submission\",\"url\":\"interfaces/types_Submission.Submission.html\",\"classes\":\"\",\"parent\":\"types/Submission\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/types_Submission.Submission.html#_id\",\"classes\":\"\",\"parent\":\"types/Submission.Submission\"},{\"kind\":1024,\"name\":\"_fvid\",\"url\":\"interfaces/types_Submission.Submission.html#_fvid\",\"classes\":\"\",\"parent\":\"types/Submission.Submission\"},{\"kind\":1024,\"name\":\"form\",\"url\":\"interfaces/types_Submission.Submission.html#form\",\"classes\":\"\",\"parent\":\"types/Submission.Submission\"},{\"kind\":1024,\"name\":\"owner\",\"url\":\"interfaces/types_Submission.Submission.html#owner\",\"classes\":\"\",\"parent\":\"types/Submission.Submission\"},{\"kind\":1024,\"name\":\"roles\",\"url\":\"interfaces/types_Submission.Submission.html#roles\",\"classes\":\"\",\"parent\":\"types/Submission.Submission\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/types_Submission.Submission.html#metadata\",\"classes\":\"\",\"parent\":\"types/Submission.Submission\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"interfaces/types_Submission.Submission.html#data\",\"classes\":\"\",\"parent\":\"types/Submission.Submission\"},{\"kind\":1024,\"name\":\"project\",\"url\":\"interfaces/types_Submission.Submission.html#project\",\"classes\":\"\",\"parent\":\"types/Submission.Submission\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/types_Submission.Submission.html#state\",\"classes\":\"\",\"parent\":\"types/Submission.Submission\"},{\"kind\":1024,\"name\":\"access\",\"url\":\"interfaces/types_Submission.Submission.html#access\",\"classes\":\"\",\"parent\":\"types/Submission.Submission\"},{\"kind\":1024,\"name\":\"externalIds\",\"url\":\"interfaces/types_Submission.Submission.html#externalIds\",\"classes\":\"\",\"parent\":\"types/Submission.Submission\"},{\"kind\":1024,\"name\":\"externalTokens\",\"url\":\"interfaces/types_Submission.Submission.html#externalTokens\",\"classes\":\"\",\"parent\":\"types/Submission.Submission\"},{\"kind\":1024,\"name\":\"permission\",\"url\":\"interfaces/types_Submission.Submission.html#permission\",\"classes\":\"\",\"parent\":\"types/Submission.Submission\"},{\"kind\":1024,\"name\":\"created\",\"url\":\"interfaces/types_Submission.Submission.html#created\",\"classes\":\"\",\"parent\":\"types/Submission.Submission\"},{\"kind\":1024,\"name\":\"modified\",\"url\":\"interfaces/types_Submission.Submission.html#modified\",\"classes\":\"\",\"parent\":\"types/Submission.Submission\"},{\"kind\":1024,\"name\":\"deleted\",\"url\":\"interfaces/types_Submission.Submission.html#deleted\",\"classes\":\"\",\"parent\":\"types/Submission.Submission\"},{\"kind\":4194304,\"name\":\"SubmissionState\",\"url\":\"types/types_Submission.SubmissionState.html\",\"classes\":\"\",\"parent\":\"types/Submission\"},{\"kind\":4194304,\"name\":\"SubmissionMetadata\",\"url\":\"types/types_Submission.SubmissionMetadata.html\",\"classes\":\"\",\"parent\":\"types/Submission\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_Submission.SubmissionMetadata.html#__type\",\"classes\":\"\",\"parent\":\"types/Submission.SubmissionMetadata\"},{\"kind\":1024,\"name\":\"ssoteam\",\"url\":\"types/types_Submission.SubmissionMetadata.html#__type.ssoteam\",\"classes\":\"\",\"parent\":\"types/Submission.SubmissionMetadata.__type\"},{\"kind\":1024,\"name\":\"memberCount\",\"url\":\"types/types_Submission.SubmissionMetadata.html#__type.memberCount\",\"classes\":\"\",\"parent\":\"types/Submission.SubmissionMetadata.__type\"},{\"kind\":1024,\"name\":\"selectData\",\"url\":\"types/types_Submission.SubmissionMetadata.html#__type.selectData\",\"classes\":\"\",\"parent\":\"types/Submission.SubmissionMetadata.__type\"},{\"kind\":1024,\"name\":\"timezone\",\"url\":\"types/types_Submission.SubmissionMetadata.html#__type.timezone\",\"classes\":\"\",\"parent\":\"types/Submission.SubmissionMetadata.__type\"},{\"kind\":1024,\"name\":\"offset\",\"url\":\"types/types_Submission.SubmissionMetadata.html#__type.offset\",\"classes\":\"\",\"parent\":\"types/Submission.SubmissionMetadata.__type\"},{\"kind\":1024,\"name\":\"origin\",\"url\":\"types/types_Submission.SubmissionMetadata.html#__type.origin\",\"classes\":\"\",\"parent\":\"types/Submission.SubmissionMetadata.__type\"},{\"kind\":1024,\"name\":\"referrer\",\"url\":\"types/types_Submission.SubmissionMetadata.html#__type.referrer\",\"classes\":\"\",\"parent\":\"types/Submission.SubmissionMetadata.__type\"},{\"kind\":1024,\"name\":\"browserName\",\"url\":\"types/types_Submission.SubmissionMetadata.html#__type.browserName\",\"classes\":\"\",\"parent\":\"types/Submission.SubmissionMetadata.__type\"},{\"kind\":1024,\"name\":\"userAgent\",\"url\":\"types/types_Submission.SubmissionMetadata.html#__type.userAgent\",\"classes\":\"\",\"parent\":\"types/Submission.SubmissionMetadata.__type\"},{\"kind\":1024,\"name\":\"pathName\",\"url\":\"types/types_Submission.SubmissionMetadata.html#__type.pathName\",\"classes\":\"\",\"parent\":\"types/Submission.SubmissionMetadata.__type\"},{\"kind\":1024,\"name\":\"onLine\",\"url\":\"types/types_Submission.SubmissionMetadata.html#__type.onLine\",\"classes\":\"\",\"parent\":\"types/Submission.SubmissionMetadata.__type\"},{\"kind\":1024,\"name\":\"headers\",\"url\":\"types/types_Submission.SubmissionMetadata.html#__type.headers\",\"classes\":\"\",\"parent\":\"types/Submission.SubmissionMetadata.__type\"},{\"kind\":2,\"name\":\"types/ValidatorConfig\",\"url\":\"modules/types_ValidatorConfig.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ProcessConfig\",\"url\":\"types/types_ValidatorConfig.ProcessConfig.html\",\"classes\":\"\",\"parent\":\"types/ValidatorConfig\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_ValidatorConfig.ProcessConfig.html#__type\",\"classes\":\"\",\"parent\":\"types/ValidatorConfig.ProcessConfig\"},{\"kind\":1024,\"name\":\"database\",\"url\":\"types/types_ValidatorConfig.ProcessConfig.html#__type.database\",\"classes\":\"\",\"parent\":\"types/ValidatorConfig.ProcessConfig.__type\"},{\"kind\":1024,\"name\":\"evaluator\",\"url\":\"types/types_ValidatorConfig.ProcessConfig.html#__type.evaluator\",\"classes\":\"\",\"parent\":\"types/ValidatorConfig.ProcessConfig.__type\"},{\"kind\":1024,\"name\":\"token\",\"url\":\"types/types_ValidatorConfig.ProcessConfig.html#__type.token\",\"classes\":\"\",\"parent\":\"types/ValidatorConfig.ProcessConfig.__type\"},{\"kind\":2,\"name\":\"types/formUtil\",\"url\":\"modules/types_formUtil.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"AsyncComponentDataCallback\",\"url\":\"types/types_formUtil.AsyncComponentDataCallback.html\",\"classes\":\"\",\"parent\":\"types/formUtil\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_formUtil.AsyncComponentDataCallback.html#__type\",\"classes\":\"\",\"parent\":\"types/formUtil.AsyncComponentDataCallback\"},{\"kind\":4194304,\"name\":\"ComponentDataCallback\",\"url\":\"types/types_formUtil.ComponentDataCallback.html\",\"classes\":\"\",\"parent\":\"types/formUtil\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_formUtil.ComponentDataCallback.html#__type\",\"classes\":\"\",\"parent\":\"types/formUtil.ComponentDataCallback\"},{\"kind\":2,\"name\":\"types\",\"url\":\"modules/types.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"utils/Database\",\"url\":\"modules/utils_Database.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"Database\",\"url\":\"classes/utils_Database.Database.html\",\"classes\":\"\",\"parent\":\"utils/Database\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/utils_Database.Database.html#constructor\",\"classes\":\"\",\"parent\":\"utils/Database.Database\"},{\"kind\":2048,\"name\":\"findOne\",\"url\":\"classes/utils_Database.Database.html#findOne\",\"classes\":\"\",\"parent\":\"utils/Database.Database\"},{\"kind\":2048,\"name\":\"isUnique\",\"url\":\"classes/utils_Database.Database.html#isUnique\",\"classes\":\"\",\"parent\":\"utils/Database.Database\"},{\"kind\":2,\"name\":\"utils/Evaluator\",\"url\":\"modules/utils_Evaluator.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"BaseEvaluator\",\"url\":\"classes/utils_Evaluator.BaseEvaluator.html\",\"classes\":\"\",\"parent\":\"utils/Evaluator\"},{\"kind\":1024,\"name\":\"noeval\",\"url\":\"classes/utils_Evaluator.BaseEvaluator.html#noeval\",\"classes\":\"\",\"parent\":\"utils/Evaluator.BaseEvaluator\"},{\"kind\":2048,\"name\":\"evaluator\",\"url\":\"classes/utils_Evaluator.BaseEvaluator.html#evaluator\",\"classes\":\"\",\"parent\":\"utils/Evaluator.BaseEvaluator\"},{\"kind\":2048,\"name\":\"interpolateString\",\"url\":\"classes/utils_Evaluator.BaseEvaluator.html#interpolateString\",\"classes\":\"\",\"parent\":\"utils/Evaluator.BaseEvaluator\"},{\"kind\":2048,\"name\":\"interpolate\",\"url\":\"classes/utils_Evaluator.BaseEvaluator.html#interpolate\",\"classes\":\"\",\"parent\":\"utils/Evaluator.BaseEvaluator\"},{\"kind\":2048,\"name\":\"evaluate\",\"url\":\"classes/utils_Evaluator.BaseEvaluator.html#evaluate\",\"classes\":\"\",\"parent\":\"utils/Evaluator.BaseEvaluator\"},{\"kind\":2048,\"name\":\"execute\",\"url\":\"classes/utils_Evaluator.BaseEvaluator.html#execute\",\"classes\":\"\",\"parent\":\"utils/Evaluator.BaseEvaluator\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/utils_Evaluator.BaseEvaluator.html#constructor\",\"classes\":\"\",\"parent\":\"utils/Evaluator.BaseEvaluator\"},{\"kind\":128,\"name\":\"Evaluator\",\"url\":\"classes/utils_Evaluator.Evaluator.html\",\"classes\":\"\",\"parent\":\"utils/Evaluator\"},{\"kind\":2048,\"name\":\"registerEvaluator\",\"url\":\"classes/utils_Evaluator.Evaluator.html#registerEvaluator\",\"classes\":\"\",\"parent\":\"utils/Evaluator.Evaluator\"},{\"kind\":1024,\"name\":\"noeval\",\"url\":\"classes/utils_Evaluator.Evaluator.html#noeval\",\"classes\":\"tsd-is-inherited\",\"parent\":\"utils/Evaluator.Evaluator\"},{\"kind\":2048,\"name\":\"evaluator\",\"url\":\"classes/utils_Evaluator.Evaluator.html#evaluator\",\"classes\":\"tsd-is-inherited\",\"parent\":\"utils/Evaluator.Evaluator\"},{\"kind\":2048,\"name\":\"interpolateString\",\"url\":\"classes/utils_Evaluator.Evaluator.html#interpolateString\",\"classes\":\"tsd-is-inherited\",\"parent\":\"utils/Evaluator.Evaluator\"},{\"kind\":2048,\"name\":\"interpolate\",\"url\":\"classes/utils_Evaluator.Evaluator.html#interpolate\",\"classes\":\"tsd-is-inherited\",\"parent\":\"utils/Evaluator.Evaluator\"},{\"kind\":2048,\"name\":\"evaluate\",\"url\":\"classes/utils_Evaluator.Evaluator.html#evaluate\",\"classes\":\"tsd-is-inherited\",\"parent\":\"utils/Evaluator.Evaluator\"},{\"kind\":2048,\"name\":\"execute\",\"url\":\"classes/utils_Evaluator.Evaluator.html#execute\",\"classes\":\"tsd-is-inherited\",\"parent\":\"utils/Evaluator.Evaluator\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/utils_Evaluator.Evaluator.html#constructor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"utils/Evaluator.Evaluator\"},{\"kind\":2,\"name\":\"utils/date\",\"url\":\"modules/utils_date.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"currentTimezone\",\"url\":\"functions/utils_date.currentTimezone.html\",\"classes\":\"\",\"parent\":\"utils/date\"},{\"kind\":64,\"name\":\"convertFormatToMoment\",\"url\":\"functions/utils_date.convertFormatToMoment.html\",\"classes\":\"\",\"parent\":\"utils/date\"},{\"kind\":64,\"name\":\"momentDate\",\"url\":\"functions/utils_date.momentDate.html\",\"classes\":\"\",\"parent\":\"utils/date\"},{\"kind\":64,\"name\":\"formatDate\",\"url\":\"functions/utils_date.formatDate.html\",\"classes\":\"\",\"parent\":\"utils/date\"},{\"kind\":64,\"name\":\"getDateSetting\",\"url\":\"functions/utils_date.getDateSetting.html\",\"classes\":\"\",\"parent\":\"utils/date\"},{\"kind\":64,\"name\":\"getDateValidationFormat\",\"url\":\"functions/utils_date.getDateValidationFormat.html\",\"classes\":\"\",\"parent\":\"utils/date\"},{\"kind\":64,\"name\":\"isPartialDay\",\"url\":\"functions/utils_date.isPartialDay.html\",\"classes\":\"\",\"parent\":\"utils/date\"},{\"kind\":2,\"name\":\"utils/dom\",\"url\":\"modules/utils_dom.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"appendTo\",\"url\":\"functions/utils_dom.appendTo.html\",\"classes\":\"\",\"parent\":\"utils/dom\"},{\"kind\":64,\"name\":\"prependTo\",\"url\":\"functions/utils_dom.prependTo.html\",\"classes\":\"\",\"parent\":\"utils/dom\"},{\"kind\":64,\"name\":\"removeChildFrom\",\"url\":\"functions/utils_dom.removeChildFrom.html\",\"classes\":\"\",\"parent\":\"utils/dom\"},{\"kind\":64,\"name\":\"empty\",\"url\":\"functions/utils_dom.empty.html\",\"classes\":\"\",\"parent\":\"utils/dom\"},{\"kind\":2,\"name\":\"utils/error\",\"url\":\"modules/utils_error.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"getErrorMessage\",\"url\":\"functions/utils_error.getErrorMessage.html\",\"classes\":\"\",\"parent\":\"utils/error\"},{\"kind\":2,\"name\":\"utils/formUtil\",\"url\":\"modules/utils_formUtil.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"flattenComponents\",\"url\":\"functions/utils_formUtil.flattenComponents.html\",\"classes\":\"\",\"parent\":\"utils/formUtil\"},{\"kind\":64,\"name\":\"guid\",\"url\":\"functions/utils_formUtil.guid.html\",\"classes\":\"\",\"parent\":\"utils/formUtil\"},{\"kind\":64,\"name\":\"uniqueName\",\"url\":\"functions/utils_formUtil.uniqueName.html\",\"classes\":\"\",\"parent\":\"utils/formUtil\"},{\"kind\":64,\"name\":\"eachComponent\",\"url\":\"functions/utils_formUtil.eachComponent.html\",\"classes\":\"\",\"parent\":\"utils/formUtil\"},{\"kind\":64,\"name\":\"eachComponentAsync\",\"url\":\"functions/utils_formUtil.eachComponentAsync.html\",\"classes\":\"\",\"parent\":\"utils/formUtil\"},{\"kind\":64,\"name\":\"eachComponentDataAsync\",\"url\":\"functions/utils_formUtil.eachComponentDataAsync.html\",\"classes\":\"\",\"parent\":\"utils/formUtil\"},{\"kind\":64,\"name\":\"eachComponentData\",\"url\":\"functions/utils_formUtil.eachComponentData.html\",\"classes\":\"\",\"parent\":\"utils/formUtil\"},{\"kind\":2,\"name\":\"utils\",\"url\":\"modules/utils.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"utils/jwtDecode\",\"url\":\"modules/utils_jwtDecode.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"jwtDecode\",\"url\":\"functions/utils_jwtDecode.jwtDecode.html\",\"classes\":\"\",\"parent\":\"utils/jwtDecode\"},{\"kind\":2,\"name\":\"utils/mask\",\"url\":\"modules/utils_mask.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"getInputMask\",\"url\":\"functions/utils_mask.getInputMask.html\",\"classes\":\"\",\"parent\":\"utils/mask\"},{\"kind\":64,\"name\":\"matchInputMask\",\"url\":\"functions/utils_mask.matchInputMask.html\",\"classes\":\"\",\"parent\":\"utils/mask\"},{\"kind\":2,\"name\":\"utils/override\",\"url\":\"modules/utils_override.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"override\",\"url\":\"functions/utils_override.override.html\",\"classes\":\"\",\"parent\":\"utils/override\"},{\"kind\":2,\"name\":\"utils/sanitize\",\"url\":\"modules/utils_sanitize.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"sanitize\",\"url\":\"functions/utils_sanitize.sanitize.html\",\"classes\":\"\",\"parent\":\"utils/sanitize\"},{\"kind\":2,\"name\":\"utils/unwind\",\"url\":\"modules/utils_unwind.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"mergeObject\",\"url\":\"functions/utils_unwind.mergeObject.html\",\"classes\":\"\",\"parent\":\"utils/unwind\"},{\"kind\":64,\"name\":\"mergeArray\",\"url\":\"functions/utils_unwind.mergeArray.html\",\"classes\":\"\",\"parent\":\"utils/unwind\"},{\"kind\":64,\"name\":\"rewind\",\"url\":\"functions/utils_unwind.rewind.html\",\"classes\":\"\",\"parent\":\"utils/unwind\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/utils_unwind.rewind.html#rewind.__type\",\"classes\":\"\",\"parent\":\"utils/unwind.rewind.rewind\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"functions/utils_unwind.rewind.html#rewind.__type.data\",\"classes\":\"\",\"parent\":\"utils/unwind.rewind.rewind.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/utils_unwind.rewind.html#rewind.__type.data.__type-1\",\"classes\":\"\",\"parent\":\"utils/unwind.rewind.rewind.__type.data\"},{\"kind\":64,\"name\":\"unwind\",\"url\":\"functions/utils_unwind.unwind.html\",\"classes\":\"\",\"parent\":\"utils/unwind\"},{\"kind\":2,\"name\":\"utils/utils\",\"url\":\"modules/utils_utils.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"escapeRegExCharacters\",\"url\":\"functions/utils_utils.escapeRegExCharacters.html\",\"classes\":\"\",\"parent\":\"utils/utils\"},{\"kind\":64,\"name\":\"boolValue\",\"url\":\"functions/utils_utils.boolValue.html\",\"classes\":\"\",\"parent\":\"utils/utils\"},{\"kind\":2,\"name\":\"base/array/ArrayComponent\",\"url\":\"modules/base_array_ArrayComponent.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"ArrayComponent\",\"url\":\"functions/base_array_ArrayComponent.ArrayComponent.html\",\"classes\":\"\",\"parent\":\"base/array/ArrayComponent\"},{\"kind\":2,\"name\":\"base/component/Component\",\"url\":\"modules/base_component_Component.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"Component\",\"url\":\"functions/base_component_Component.Component.html\",\"classes\":\"\",\"parent\":\"base/component/Component\"},{\"kind\":256,\"name\":\"ComponentSchema\",\"url\":\"interfaces/base_component_Component.ComponentSchema.html\",\"classes\":\"\",\"parent\":\"base/component/Component\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/base_component_Component.ComponentSchema.html#type\",\"classes\":\"\",\"parent\":\"base/component/Component.ComponentSchema\"},{\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/base_component_Component.ComponentSchema.html#key\",\"classes\":\"\",\"parent\":\"base/component/Component.ComponentSchema\"},{\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/base_component_Component.ComponentSchema.html#label\",\"classes\":\"\",\"parent\":\"base/component/Component.ComponentSchema\"},{\"kind\":256,\"name\":\"ComponentOptions\",\"url\":\"interfaces/base_component_Component.ComponentOptions.html\",\"classes\":\"\",\"parent\":\"base/component/Component\"},{\"kind\":1024,\"name\":\"language\",\"url\":\"interfaces/base_component_Component.ComponentOptions.html#language\",\"classes\":\"\",\"parent\":\"base/component/Component.ComponentOptions\"},{\"kind\":1024,\"name\":\"i18n\",\"url\":\"interfaces/base_component_Component.ComponentOptions.html#i18n\",\"classes\":\"\",\"parent\":\"base/component/Component.ComponentOptions\"},{\"kind\":1024,\"name\":\"namespace\",\"url\":\"interfaces/base_component_Component.ComponentOptions.html#namespace\",\"classes\":\"\",\"parent\":\"base/component/Component.ComponentOptions\"},{\"kind\":1024,\"name\":\"hooks\",\"url\":\"interfaces/base_component_Component.ComponentOptions.html#hooks\",\"classes\":\"\",\"parent\":\"base/component/Component.ComponentOptions\"},{\"kind\":1024,\"name\":\"template\",\"url\":\"interfaces/base_component_Component.ComponentOptions.html#template\",\"classes\":\"\",\"parent\":\"base/component/Component.ComponentOptions\"},{\"kind\":1024,\"name\":\"noInit\",\"url\":\"interfaces/base_component_Component.ComponentOptions.html#noInit\",\"classes\":\"\",\"parent\":\"base/component/Component.ComponentOptions\"},{\"kind\":256,\"name\":\"ComponentInterface\",\"url\":\"interfaces/base_component_Component.ComponentInterface.html\",\"classes\":\"\",\"parent\":\"base/component/Component\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"interfaces/base_component_Component.ComponentInterface.html#constructor\",\"classes\":\"\",\"parent\":\"base/component/Component.ComponentInterface\"},{\"kind\":2,\"name\":\"base/data/DataComponent\",\"url\":\"modules/base_data_DataComponent.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"DataComponent\",\"url\":\"functions/base_data_DataComponent.DataComponent.html\",\"classes\":\"\",\"parent\":\"base/data/DataComponent\"},{\"kind\":2,\"name\":\"base/nested/NestedComponent\",\"url\":\"modules/base_nested_NestedComponent.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"NestedComponent\",\"url\":\"functions/base_nested_NestedComponent.NestedComponent.html\",\"classes\":\"\",\"parent\":\"base/nested/NestedComponent\"},{\"kind\":256,\"name\":\"NestedComponentSchema\",\"url\":\"interfaces/base_nested_NestedComponent.NestedComponentSchema.html\",\"classes\":\"\",\"parent\":\"base/nested/NestedComponent\"},{\"kind\":1024,\"name\":\"components\",\"url\":\"interfaces/base_nested_NestedComponent.NestedComponentSchema.html#components\",\"classes\":\"\",\"parent\":\"base/nested/NestedComponent.NestedComponentSchema\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/base_nested_NestedComponent.NestedComponentSchema.html#type\",\"classes\":\"tsd-is-inherited\",\"parent\":\"base/nested/NestedComponent.NestedComponentSchema\"},{\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/base_nested_NestedComponent.NestedComponentSchema.html#key\",\"classes\":\"tsd-is-inherited\",\"parent\":\"base/nested/NestedComponent.NestedComponentSchema\"},{\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/base_nested_NestedComponent.NestedComponentSchema.html#label\",\"classes\":\"tsd-is-inherited\",\"parent\":\"base/nested/NestedComponent.NestedComponentSchema\"},{\"kind\":2,\"name\":\"components/__tests__/datatable.test\",\"url\":\"modules/components___tests___datatable_test.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"components/__tests__/datavalue.test\",\"url\":\"modules/components___tests___datavalue_test.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"components/__tests__/html.test\",\"url\":\"modules/components___tests___html_test.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"components/__tests__/htmlcontainer.test\",\"url\":\"modules/components___tests___htmlcontainer_test.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"components/input/input\",\"url\":\"modules/components_input_input.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"Input\",\"url\":\"classes/components_input_input.Input.html\",\"classes\":\"\",\"parent\":\"components/input/input\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/components_input_input.Input.html#constructor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/input/input.Input\"},{\"kind\":1024,\"name\":\"element\",\"url\":\"classes/components_input_input.Input.html#element\",\"classes\":\"\",\"parent\":\"components/input/input.Input\"},{\"kind\":2048,\"name\":\"getAttributes\",\"url\":\"classes/components_input_input.Input.html#getAttributes\",\"classes\":\"\",\"parent\":\"components/input/input.Input\"},{\"kind\":2048,\"name\":\"onInput\",\"url\":\"classes/components_input_input.Input.html#onInput\",\"classes\":\"\",\"parent\":\"components/input/input.Input\"},{\"kind\":2048,\"name\":\"attach\",\"url\":\"classes/components_input_input.Input.html#attach\",\"classes\":\"\",\"parent\":\"components/input/input.Input\"},{\"kind\":2048,\"name\":\"detach\",\"url\":\"classes/components_input_input.Input.html#detach\",\"classes\":\"\",\"parent\":\"components/input/input.Input\"},{\"kind\":2048,\"name\":\"setValue\",\"url\":\"classes/components_input_input.Input.html#setValue\",\"classes\":\"\",\"parent\":\"components/input/input.Input\"},{\"kind\":1024,\"name\":\"component\",\"url\":\"classes/components_input_input.Input.html#component\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/input/input.Input\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/components_input_input.Input.html#options\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/input/input.Input\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"classes/components_input_input.Input.html#data\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/input/input.Input\"},{\"kind\":2048,\"name\":\"renderContext\",\"url\":\"classes/components_input_input.Input.html#renderContext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/input/input.Input\"},{\"kind\":128,\"name\":\"InputComponent\",\"url\":\"classes/components_input_input.InputComponent.html\",\"classes\":\"\",\"parent\":\"components/input/input\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/components_input_input.InputComponent.html#constructor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/input/input.InputComponent\"},{\"kind\":1024,\"name\":\"element\",\"url\":\"classes/components_input_input.InputComponent.html#element\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/input/input.InputComponent\"},{\"kind\":2048,\"name\":\"getAttributes\",\"url\":\"classes/components_input_input.InputComponent.html#getAttributes\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/input/input.InputComponent\"},{\"kind\":2048,\"name\":\"onInput\",\"url\":\"classes/components_input_input.InputComponent.html#onInput\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/input/input.InputComponent\"},{\"kind\":2048,\"name\":\"attach\",\"url\":\"classes/components_input_input.InputComponent.html#attach\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/input/input.InputComponent\"},{\"kind\":2048,\"name\":\"detach\",\"url\":\"classes/components_input_input.InputComponent.html#detach\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/input/input.InputComponent\"},{\"kind\":2048,\"name\":\"setValue\",\"url\":\"classes/components_input_input.InputComponent.html#setValue\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/input/input.InputComponent\"},{\"kind\":1024,\"name\":\"component\",\"url\":\"classes/components_input_input.InputComponent.html#component\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/input/input.InputComponent\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/components_input_input.InputComponent.html#options\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/input/input.InputComponent\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"classes/components_input_input.InputComponent.html#data\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/input/input.InputComponent\"},{\"kind\":2048,\"name\":\"renderContext\",\"url\":\"classes/components_input_input.InputComponent.html#renderContext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"components/input/input.InputComponent\"},{\"kind\":2,\"name\":\"components/templates\",\"url\":\"modules/components_templates.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"default\",\"url\":\"variables/components_templates.default.html\",\"classes\":\"\",\"parent\":\"components/templates\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/components_templates.default.html#__type\",\"classes\":\"\",\"parent\":\"components/templates.default\"},{\"kind\":1024,\"name\":\"bootstrap\",\"url\":\"variables/components_templates.default.html#__type.bootstrap\",\"classes\":\"\",\"parent\":\"components/templates.default.__type\"},{\"kind\":2,\"name\":\"model/__tests__/Model.test\",\"url\":\"modules/model___tests___Model_test.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"modules/jsonlogic\",\"url\":\"modules/modules_jsonlogic.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"default\",\"url\":\"variables/modules_jsonlogic.default.html\",\"classes\":\"\",\"parent\":\"modules/jsonlogic\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/modules_jsonlogic.default.html#__type\",\"classes\":\"\",\"parent\":\"modules/jsonlogic.default\"},{\"kind\":1024,\"name\":\"evaluator\",\"url\":\"variables/modules_jsonlogic.default.html#__type.evaluator\",\"classes\":\"\",\"parent\":\"modules/jsonlogic.default.__type\"},{\"kind\":1024,\"name\":\"jsonLogic\",\"url\":\"variables/modules_jsonlogic.default.html#__type.jsonLogic\",\"classes\":\"\",\"parent\":\"modules/jsonlogic.default.__type\"},{\"kind\":2,\"name\":\"modules/jsonlogic/jsonLogic\",\"url\":\"modules/modules_jsonlogic_jsonLogic.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"modules/jsonlogic/operators\",\"url\":\"modules/modules_jsonlogic_operators.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"lodashOperators\",\"url\":\"variables/modules_jsonlogic_operators.lodashOperators.html\",\"classes\":\"\",\"parent\":\"modules/jsonlogic/operators\"},{\"kind\":2,\"name\":\"process/validation\",\"url\":\"modules/process_validation.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"process/validation/util\",\"url\":\"modules/process_validation_util.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"isComponentPersistent\",\"url\":\"functions/process_validation_util.isComponentPersistent.html\",\"classes\":\"\",\"parent\":\"process/validation/util\"},{\"kind\":64,\"name\":\"isComponentProtected\",\"url\":\"functions/process_validation_util.isComponentProtected.html\",\"classes\":\"\",\"parent\":\"process/validation/util\"},{\"kind\":64,\"name\":\"shouldSkipValidation\",\"url\":\"functions/process_validation_util.shouldSkipValidation.html\",\"classes\":\"\",\"parent\":\"process/validation/util\"},{\"kind\":64,\"name\":\"isEmptyObject\",\"url\":\"functions/process_validation_util.isEmptyObject.html\",\"classes\":\"\",\"parent\":\"process/validation/util\"},{\"kind\":64,\"name\":\"getComponentErrorField\",\"url\":\"functions/process_validation_util.getComponentErrorField.html\",\"classes\":\"\",\"parent\":\"process/validation/util\"},{\"kind\":64,\"name\":\"toBoolean\",\"url\":\"functions/process_validation_util.toBoolean.html\",\"classes\":\"\",\"parent\":\"process/validation/util\"},{\"kind\":64,\"name\":\"isPromise\",\"url\":\"functions/process_validation_util.isPromise.html\",\"classes\":\"\",\"parent\":\"process/validation/util\"},{\"kind\":64,\"name\":\"isObject\",\"url\":\"functions/process_validation_util.isObject.html\",\"classes\":\"\",\"parent\":\"process/validation/util\"},{\"kind\":64,\"name\":\"getEmptyValue\",\"url\":\"functions/process_validation_util.getEmptyValue.html\",\"classes\":\"\",\"parent\":\"process/validation/util\"},{\"kind\":64,\"name\":\"isEmpty\",\"url\":\"functions/process_validation_util.isEmpty.html\",\"classes\":\"\",\"parent\":\"process/validation/util\"},{\"kind\":2,\"name\":\"process/validation/validate\",\"url\":\"modules/process_validation_validate.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"validate\",\"url\":\"functions/process_validation_validate.validate.html\",\"classes\":\"\",\"parent\":\"process/validation/validate\"},{\"kind\":64,\"name\":\"validateSync\",\"url\":\"functions/process_validation_validate.validateSync.html\",\"classes\":\"\",\"parent\":\"process/validation/validate\"},{\"kind\":2,\"name\":\"sdk/__tests__/Formio.test\",\"url\":\"modules/sdk___tests___Formio_test.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"server/actions\",\"url\":\"modules/server_actions.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"types/process/ProcessContext\",\"url\":\"modules/types_process_ProcessContext.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ProcessContext\",\"url\":\"types/types_process_ProcessContext.ProcessContext.html\",\"classes\":\"\",\"parent\":\"types/process/ProcessContext\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_process_ProcessContext.ProcessContext.html#__type\",\"classes\":\"\",\"parent\":\"types/process/ProcessContext.ProcessContext\"},{\"kind\":1024,\"name\":\"components\",\"url\":\"types/types_process_ProcessContext.ProcessContext.html#__type.components\",\"classes\":\"\",\"parent\":\"types/process/ProcessContext.ProcessContext.__type\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"types/types_process_ProcessContext.ProcessContext.html#__type.data\",\"classes\":\"\",\"parent\":\"types/process/ProcessContext.ProcessContext.__type\"},{\"kind\":1024,\"name\":\"instances\",\"url\":\"types/types_process_ProcessContext.ProcessContext.html#__type.instances\",\"classes\":\"\",\"parent\":\"types/process/ProcessContext.ProcessContext.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_process_ProcessContext.ProcessContext.html#__type.instances.__type-1\",\"classes\":\"\",\"parent\":\"types/process/ProcessContext.ProcessContext.__type.instances\"},{\"kind\":1024,\"name\":\"before\",\"url\":\"types/types_process_ProcessContext.ProcessContext.html#__type.before\",\"classes\":\"\",\"parent\":\"types/process/ProcessContext.ProcessContext.__type\"},{\"kind\":1024,\"name\":\"after\",\"url\":\"types/types_process_ProcessContext.ProcessContext.html#__type.after\",\"classes\":\"\",\"parent\":\"types/process/ProcessContext.ProcessContext.__type\"},{\"kind\":1024,\"name\":\"process\",\"url\":\"types/types_process_ProcessContext.ProcessContext.html#__type.process\",\"classes\":\"\",\"parent\":\"types/process/ProcessContext.ProcessContext.__type\"},{\"kind\":4194304,\"name\":\"ProcessContextSync\",\"url\":\"types/types_process_ProcessContext.ProcessContextSync.html\",\"classes\":\"\",\"parent\":\"types/process/ProcessContext\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_process_ProcessContext.ProcessContextSync.html#__type\",\"classes\":\"\",\"parent\":\"types/process/ProcessContext.ProcessContextSync\"},{\"kind\":1024,\"name\":\"components\",\"url\":\"types/types_process_ProcessContext.ProcessContextSync.html#__type.components\",\"classes\":\"\",\"parent\":\"types/process/ProcessContext.ProcessContextSync.__type\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"types/types_process_ProcessContext.ProcessContextSync.html#__type.data\",\"classes\":\"\",\"parent\":\"types/process/ProcessContext.ProcessContextSync.__type\"},{\"kind\":1024,\"name\":\"instances\",\"url\":\"types/types_process_ProcessContext.ProcessContextSync.html#__type.instances\",\"classes\":\"\",\"parent\":\"types/process/ProcessContext.ProcessContextSync.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_process_ProcessContext.ProcessContextSync.html#__type.instances.__type-1\",\"classes\":\"\",\"parent\":\"types/process/ProcessContext.ProcessContextSync.__type.instances\"},{\"kind\":1024,\"name\":\"before\",\"url\":\"types/types_process_ProcessContext.ProcessContextSync.html#__type.before\",\"classes\":\"\",\"parent\":\"types/process/ProcessContext.ProcessContextSync.__type\"},{\"kind\":1024,\"name\":\"after\",\"url\":\"types/types_process_ProcessContext.ProcessContextSync.html#__type.after\",\"classes\":\"\",\"parent\":\"types/process/ProcessContext.ProcessContextSync.__type\"},{\"kind\":1024,\"name\":\"process\",\"url\":\"types/types_process_ProcessContext.ProcessContextSync.html#__type.process\",\"classes\":\"\",\"parent\":\"types/process/ProcessContext.ProcessContextSync.__type\"},{\"kind\":2,\"name\":\"types/process/ProcessOneContext\",\"url\":\"modules/types_process_ProcessOneContext.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ProcessOneContext\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContext.html\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContext.html#__type\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext.ProcessOneContext\"},{\"kind\":1024,\"name\":\"component\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContext.html#__type.component\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext.ProcessOneContext.__type\"},{\"kind\":1024,\"name\":\"path\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContext.html#__type.path\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext.ProcessOneContext.__type\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContext.html#__type.data\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext.ProcessOneContext.__type\"},{\"kind\":1024,\"name\":\"row\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContext.html#__type.row\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext.ProcessOneContext.__type\"},{\"kind\":1024,\"name\":\"instance\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContext.html#__type.instance\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext.ProcessOneContext.__type\"},{\"kind\":1024,\"name\":\"before\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContext.html#__type.before\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext.ProcessOneContext.__type\"},{\"kind\":1024,\"name\":\"after\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContext.html#__type.after\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext.ProcessOneContext.__type\"},{\"kind\":1024,\"name\":\"process\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContext.html#__type.process\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext.ProcessOneContext.__type\"},{\"kind\":4194304,\"name\":\"ProcessOneContextSync\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContextSync.html\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContextSync.html#__type\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext.ProcessOneContextSync\"},{\"kind\":1024,\"name\":\"component\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContextSync.html#__type.component\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext.ProcessOneContextSync.__type\"},{\"kind\":1024,\"name\":\"path\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContextSync.html#__type.path\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext.ProcessOneContextSync.__type\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContextSync.html#__type.data\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext.ProcessOneContextSync.__type\"},{\"kind\":1024,\"name\":\"row\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContextSync.html#__type.row\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext.ProcessOneContextSync.__type\"},{\"kind\":1024,\"name\":\"instance\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContextSync.html#__type.instance\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext.ProcessOneContextSync.__type\"},{\"kind\":1024,\"name\":\"before\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContextSync.html#__type.before\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext.ProcessOneContextSync.__type\"},{\"kind\":1024,\"name\":\"after\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContextSync.html#__type.after\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext.ProcessOneContextSync.__type\"},{\"kind\":1024,\"name\":\"process\",\"url\":\"types/types_process_ProcessOneContext.ProcessOneContextSync.html#__type.process\",\"classes\":\"\",\"parent\":\"types/process/ProcessOneContext.ProcessOneContextSync.__type\"},{\"kind\":2,\"name\":\"types/process/ProcessType\",\"url\":\"modules/types_process_ProcessType.html\",\"classes\":\"\"},{\"kind\":8,\"name\":\"ProcessType\",\"url\":\"enums/types_process_ProcessType.ProcessType.html\",\"classes\":\"\",\"parent\":\"types/process/ProcessType\"},{\"kind\":16,\"name\":\"Change\",\"url\":\"enums/types_process_ProcessType.ProcessType.html#Change\",\"classes\":\"\",\"parent\":\"types/process/ProcessType.ProcessType\"},{\"kind\":16,\"name\":\"Submit\",\"url\":\"enums/types_process_ProcessType.ProcessType.html#Submit\",\"classes\":\"\",\"parent\":\"types/process/ProcessType.ProcessType\"},{\"kind\":16,\"name\":\"Save\",\"url\":\"enums/types_process_ProcessType.ProcessType.html#Save\",\"classes\":\"\",\"parent\":\"types/process/ProcessType.ProcessType\"},{\"kind\":2,\"name\":\"types/process/ProcessorContext\",\"url\":\"modules/types_process_ProcessorContext.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ProcessorContext\",\"url\":\"types/types_process_ProcessorContext.ProcessorContext.html\",\"classes\":\"\",\"parent\":\"types/process/ProcessorContext\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_process_ProcessorContext.ProcessorContext.html#__type\",\"classes\":\"\",\"parent\":\"types/process/ProcessorContext.ProcessorContext\"},{\"kind\":1024,\"name\":\"component\",\"url\":\"types/types_process_ProcessorContext.ProcessorContext.html#__type.component\",\"classes\":\"\",\"parent\":\"types/process/ProcessorContext.ProcessorContext.__type\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"types/types_process_ProcessorContext.ProcessorContext.html#__type.data\",\"classes\":\"\",\"parent\":\"types/process/ProcessorContext.ProcessorContext.__type\"},{\"kind\":1024,\"name\":\"row\",\"url\":\"types/types_process_ProcessorContext.ProcessorContext.html#__type.row\",\"classes\":\"\",\"parent\":\"types/process/ProcessorContext.ProcessorContext.__type\"},{\"kind\":1024,\"name\":\"path\",\"url\":\"types/types_process_ProcessorContext.ProcessorContext.html#__type.path\",\"classes\":\"\",\"parent\":\"types/process/ProcessorContext.ProcessorContext.__type\"},{\"kind\":1024,\"name\":\"instance\",\"url\":\"types/types_process_ProcessorContext.ProcessorContext.html#__type.instance\",\"classes\":\"\",\"parent\":\"types/process/ProcessorContext.ProcessorContext.__type\"},{\"kind\":1024,\"name\":\"processor\",\"url\":\"types/types_process_ProcessorContext.ProcessorContext.html#__type.processor\",\"classes\":\"\",\"parent\":\"types/process/ProcessorContext.ProcessorContext.__type\"},{\"kind\":1024,\"name\":\"errors\",\"url\":\"types/types_process_ProcessorContext.ProcessorContext.html#__type.errors\",\"classes\":\"\",\"parent\":\"types/process/ProcessorContext.ProcessorContext.__type\"},{\"kind\":1024,\"name\":\"process\",\"url\":\"types/types_process_ProcessorContext.ProcessorContext.html#__type.process\",\"classes\":\"\",\"parent\":\"types/process/ProcessorContext.ProcessorContext.__type\"},{\"kind\":1024,\"name\":\"index\",\"url\":\"types/types_process_ProcessorContext.ProcessorContext.html#__type.index\",\"classes\":\"\",\"parent\":\"types/process/ProcessorContext.ProcessorContext.__type\"},{\"kind\":1024,\"name\":\"config\",\"url\":\"types/types_process_ProcessorContext.ProcessorContext.html#__type.config\",\"classes\":\"\",\"parent\":\"types/process/ProcessorContext.ProcessorContext.__type\"},{\"kind\":2,\"name\":\"types/process/ProcessorFn\",\"url\":\"modules/types_process_ProcessorFn.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ProcessorFn\",\"url\":\"types/types_process_ProcessorFn.ProcessorFn.html\",\"classes\":\"\",\"parent\":\"types/process/ProcessorFn\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_process_ProcessorFn.ProcessorFn.html#__type\",\"classes\":\"\",\"parent\":\"types/process/ProcessorFn.ProcessorFn\"},{\"kind\":4194304,\"name\":\"ProcessorFnSync\",\"url\":\"types/types_process_ProcessorFn.ProcessorFnSync.html\",\"classes\":\"\",\"parent\":\"types/process/ProcessorFn\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_process_ProcessorFn.ProcessorFnSync.html#__type\",\"classes\":\"\",\"parent\":\"types/process/ProcessorFn.ProcessorFnSync\"},{\"kind\":2,\"name\":\"types/process/ProcessorType\",\"url\":\"modules/types_process_ProcessorType.html\",\"classes\":\"\"},{\"kind\":8,\"name\":\"ProcessorType\",\"url\":\"enums/types_process_ProcessorType.ProcessorType.html\",\"classes\":\"\",\"parent\":\"types/process/ProcessorType\"},{\"kind\":16,\"name\":\"Validate\",\"url\":\"enums/types_process_ProcessorType.ProcessorType.html#Validate\",\"classes\":\"\",\"parent\":\"types/process/ProcessorType.ProcessorType\"},{\"kind\":16,\"name\":\"Custom\",\"url\":\"enums/types_process_ProcessorType.ProcessorType.html#Custom\",\"classes\":\"\",\"parent\":\"types/process/ProcessorType.ProcessorType\"},{\"kind\":2,\"name\":\"types/process\",\"url\":\"modules/types_process.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"types/project/Project\",\"url\":\"modules/types_project_Project.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ProjectId\",\"url\":\"types/types_project_Project.ProjectId.html\",\"classes\":\"\",\"parent\":\"types/project/Project\"},{\"kind\":4194304,\"name\":\"Project\",\"url\":\"types/types_project_Project.Project.html\",\"classes\":\"\",\"parent\":\"types/project/Project\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_project_Project.Project.html#__type\",\"classes\":\"\",\"parent\":\"types/project/Project.Project\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"types/types_project_Project.Project.html#__type._id\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/types_project_Project.Project.html#__type.title\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/types_project_Project.Project.html#__type.name\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/types_project_Project.Project.html#__type.type\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/types_project_Project.Project.html#__type.description\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"tag\",\"url\":\"types/types_project_Project.Project.html#__type.tag\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"owner\",\"url\":\"types/types_project_Project.Project.html#__type.owner\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"project\",\"url\":\"types/types_project_Project.Project.html#__type.project\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"remote\",\"url\":\"types/types_project_Project.Project.html#__type.remote\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"plan\",\"url\":\"types/types_project_Project.Project.html#__type.plan\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"billing\",\"url\":\"types/types_project_Project.Project.html#__type.billing\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"apiCalls\",\"url\":\"types/types_project_Project.Project.html#__type.apiCalls\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"steps\",\"url\":\"types/types_project_Project.Project.html#__type.steps\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"framework\",\"url\":\"types/types_project_Project.Project.html#__type.framework\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"primary\",\"url\":\"types/types_project_Project.Project.html#__type.primary\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"access\",\"url\":\"types/types_project_Project.Project.html#__type.access\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"trial\",\"url\":\"types/types_project_Project.Project.html#__type.trial\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"lastDeploy\",\"url\":\"types/types_project_Project.Project.html#__type.lastDeploy\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"stageTitle\",\"url\":\"types/types_project_Project.Project.html#__type.stageTitle\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"machineName\",\"url\":\"types/types_project_Project.Project.html#__type.machineName\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"config\",\"url\":\"types/types_project_Project.Project.html#__type.config\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"protect\",\"url\":\"types/types_project_Project.Project.html#__type.protect\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"settings\",\"url\":\"types/types_project_Project.Project.html#__type.settings\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"remoteSecret\",\"url\":\"types/types_project_Project.Project.html#__type.remoteSecret\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"formDefaults\",\"url\":\"types/types_project_Project.Project.html#__type.formDefaults\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_project_Project.Project.html#__type.formDefaults.__type-1\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type.formDefaults\"},{\"kind\":1024,\"name\":\"revisions\",\"url\":\"types/types_project_Project.Project.html#__type.formDefaults.__type-1.revisions\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type.formDefaults.__type\"},{\"kind\":1024,\"name\":\"public\",\"url\":\"types/types_project_Project.Project.html#__type.public\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_project_Project.Project.html#__type.public.__type-2\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type.public\"},{\"kind\":1024,\"name\":\"custom\",\"url\":\"types/types_project_Project.Project.html#__type.public.__type-2.custom\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type.public.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_project_Project.Project.html#__type.public.__type-2.custom.__type-3\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type.public.__type.custom\"},{\"kind\":1024,\"name\":\"css\",\"url\":\"types/types_project_Project.Project.html#__type.public.__type-2.custom.__type-3.css\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type.public.__type.custom.__type\"},{\"kind\":1024,\"name\":\"js\",\"url\":\"types/types_project_Project.Project.html#__type.public.__type-2.custom.__type-3.js\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type.public.__type.custom.__type\"},{\"kind\":1024,\"name\":\"formModule\",\"url\":\"types/types_project_Project.Project.html#__type.public.__type-2.formModule\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type.public.__type\"},{\"kind\":1024,\"name\":\"created\",\"url\":\"types/types_project_Project.Project.html#__type.created\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"modified\",\"url\":\"types/types_project_Project.Project.html#__type.modified\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":1024,\"name\":\"deleted\",\"url\":\"types/types_project_Project.Project.html#__type.deleted\",\"classes\":\"\",\"parent\":\"types/project/Project.Project.__type\"},{\"kind\":4194304,\"name\":\"ProjectType\",\"url\":\"types/types_project_Project.ProjectType.html\",\"classes\":\"\",\"parent\":\"types/project/Project\"},{\"kind\":4194304,\"name\":\"ProjectPlan\",\"url\":\"types/types_project_Project.ProjectPlan.html\",\"classes\":\"\",\"parent\":\"types/project/Project\"},{\"kind\":4194304,\"name\":\"ProjectFramework\",\"url\":\"types/types_project_Project.ProjectFramework.html\",\"classes\":\"\",\"parent\":\"types/project/Project\"},{\"kind\":4194304,\"name\":\"ProjectUsage\",\"url\":\"types/types_project_Project.ProjectUsage.html\",\"classes\":\"\",\"parent\":\"types/project/Project\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage\"},{\"kind\":1024,\"name\":\"projects\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.projects\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":1024,\"name\":\"tenants\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.tenants\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":1024,\"name\":\"stages\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.stages\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":1024,\"name\":\"livestages\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.livestages\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":1024,\"name\":\"forms\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.forms\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":1024,\"name\":\"emails\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.emails\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":1024,\"name\":\"submissionRequests\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.submissionRequests\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":1024,\"name\":\"formRequests\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.formRequests\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":1024,\"name\":\"pdfs\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.pdfs\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":1024,\"name\":\"pdfDownloads\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.pdfDownloads\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":1024,\"name\":\"remoteStages\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.remoteStages\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":1024,\"name\":\"apiServers\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.apiServers\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":1024,\"name\":\"pdfServers\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.pdfServers\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":1024,\"name\":\"formManagers\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.formManagers\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":1024,\"name\":\"vpats\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.vpats\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":1024,\"name\":\"submissionServers\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.submissionServers\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":1024,\"name\":\"plan\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.plan\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":1024,\"name\":\"startDate\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.startDate\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.options\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.options.__type-1\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type.options\"},{\"kind\":1024,\"name\":\"sac\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.options.__type-1.sac\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type.options.__type\"},{\"kind\":1024,\"name\":\"vpat\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.options.__type-1.vpat\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type.options.__type\"},{\"kind\":1024,\"name\":\"pdfBasic\",\"url\":\"types/types_project_Project.ProjectUsage.html#__type.options.__type-1.pdfBasic\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectUsage.__type.options.__type\"},{\"kind\":4194304,\"name\":\"ProjectBilling\",\"url\":\"types/types_project_Project.ProjectBilling.html\",\"classes\":\"\",\"parent\":\"types/project/Project\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_project_Project.ProjectBilling.html#__type\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectBilling\"},{\"kind\":1024,\"name\":\"calls\",\"url\":\"types/types_project_Project.ProjectBilling.html#__type.calls\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectBilling.__type\"},{\"kind\":1024,\"name\":\"checked\",\"url\":\"types/types_project_Project.ProjectBilling.html#__type.checked\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectBilling.__type\"},{\"kind\":1024,\"name\":\"exceeds\",\"url\":\"types/types_project_Project.ProjectBilling.html#__type.exceeds\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectBilling.__type\"},{\"kind\":1024,\"name\":\"usage\",\"url\":\"types/types_project_Project.ProjectBilling.html#__type.usage\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectBilling.__type\"},{\"kind\":4194304,\"name\":\"ProjectApiCalls\",\"url\":\"types/types_project_Project.ProjectApiCalls.html\",\"classes\":\"\",\"parent\":\"types/project/Project\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_project_Project.ProjectApiCalls.html#__type\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectApiCalls\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"types/types_project_Project.ProjectApiCalls.html#__type.limit\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectApiCalls.__type\"},{\"kind\":1024,\"name\":\"used\",\"url\":\"types/types_project_Project.ProjectApiCalls.html#__type.used\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectApiCalls.__type\"},{\"kind\":1024,\"name\":\"reset\",\"url\":\"types/types_project_Project.ProjectApiCalls.html#__type.reset\",\"classes\":\"\",\"parent\":\"types/project/Project.ProjectApiCalls.__type\"},{\"kind\":2,\"name\":\"types/project\",\"url\":\"modules/types_project.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"utils/__tests__/Evaluator.test\",\"url\":\"modules/utils___tests___Evaluator_test.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"utils/__tests__/jwtDecode.test\",\"url\":\"modules/utils___tests___jwtDecode_test.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"utils/__tests__/unwind.test\",\"url\":\"modules/utils___tests___unwind_test.html\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"Formio\",\"url\":\"modules/core.html#Formio\",\"classes\":\"\",\"parent\":\"core\"},{\"kind\":8388608,\"name\":\"usePlugin\",\"url\":\"modules/index.html#usePlugin\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"useModule\",\"url\":\"modules/index.html#useModule\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"use\",\"url\":\"modules/index.html#use\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"Formio\",\"url\":\"modules/index.html#Formio\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"Components\",\"url\":\"modules/index.html#Components\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"render\",\"url\":\"modules/index.html#render\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"Component\",\"url\":\"modules/index.html#Component\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"NestedComponent\",\"url\":\"modules/index.html#NestedComponent\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"DataComponent\",\"url\":\"modules/index.html#DataComponent\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"ArrayComponent\",\"url\":\"modules/index.html#ArrayComponent\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"Template\",\"url\":\"modules/index.html#Template\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"EventEmitter\",\"url\":\"modules/index.html#EventEmitter\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"Model\",\"url\":\"modules/index.html#Model\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"ModelDecoratorInterface\",\"url\":\"modules/index.html#ModelDecoratorInterface\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"ModelInterface\",\"url\":\"modules/index.html#ModelInterface\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"NestedModel\",\"url\":\"modules/index.html#NestedModel\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"NestedDataModel\",\"url\":\"modules/index.html#NestedDataModel\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"NestedArrayModel\",\"url\":\"modules/index.html#NestedArrayModel\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"Evaluator\",\"url\":\"modules/index.html#Evaluator\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"BaseEvaluator\",\"url\":\"modules/index.html#BaseEvaluator\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"sanitize\",\"url\":\"modules/index.html#sanitize\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"override\",\"url\":\"modules/index.html#override\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"unwind\",\"url\":\"modules/index.html#unwind\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"Utils\",\"url\":\"modules/index.html#Utils\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"dom\",\"url\":\"modules/index.html#dom\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"escapeRegExCharacters\",\"url\":\"modules/index.html#escapeRegExCharacters\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"boolValue\",\"url\":\"modules/index.html#boolValue\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"currentTimezone\",\"url\":\"modules/index.html#currentTimezone\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"convertFormatToMoment\",\"url\":\"modules/index.html#convertFormatToMoment\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"momentDate\",\"url\":\"modules/index.html#momentDate\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"formatDate\",\"url\":\"modules/index.html#formatDate\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"getDateSetting\",\"url\":\"modules/index.html#getDateSetting\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"getDateValidationFormat\",\"url\":\"modules/index.html#getDateValidationFormat\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"isPartialDay\",\"url\":\"modules/index.html#isPartialDay\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"getInputMask\",\"url\":\"modules/index.html#getInputMask\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"matchInputMask\",\"url\":\"modules/index.html#matchInputMask\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"Database\",\"url\":\"modules/index.html#Database\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"HTML\",\"url\":\"modules/index.html#HTML\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"HTMLComponent\",\"url\":\"modules/index.html#HTMLComponent\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"HTMLContainer\",\"url\":\"modules/index.html#HTMLContainer\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"HTMLContainerComponent\",\"url\":\"modules/index.html#HTMLContainerComponent\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"DataTable\",\"url\":\"modules/index.html#DataTable\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"DataTableComponent\",\"url\":\"modules/index.html#DataTableComponent\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"DataValueComponent\",\"url\":\"modules/index.html#DataValueComponent\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"Input\",\"url\":\"modules/index.html#Input\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"InputComponent\",\"url\":\"modules/index.html#InputComponent\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"validate\",\"url\":\"modules/index.html#validate\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"validateSync\",\"url\":\"modules/index.html#validateSync\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"isComponentPersistent\",\"url\":\"modules/index.html#isComponentPersistent\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"isComponentProtected\",\"url\":\"modules/index.html#isComponentProtected\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"shouldSkipValidation\",\"url\":\"modules/index.html#shouldSkipValidation\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"isEmptyObject\",\"url\":\"modules/index.html#isEmptyObject\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"getComponentErrorField\",\"url\":\"modules/index.html#getComponentErrorField\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"toBoolean\",\"url\":\"modules/index.html#toBoolean\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"isPromise\",\"url\":\"modules/index.html#isPromise\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"isObject\",\"url\":\"modules/index.html#isObject\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"getEmptyValue\",\"url\":\"modules/index.html#getEmptyValue\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"isEmpty\",\"url\":\"modules/index.html#isEmpty\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"process\",\"url\":\"modules/index.html#process\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"processSync\",\"url\":\"modules/index.html#processSync\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"processOne\",\"url\":\"modules/index.html#processOne\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"processOneSync\",\"url\":\"modules/index.html#processOneSync\",\"classes\":\"\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"Components\",\"url\":\"modules/base.html#Components\",\"classes\":\"\",\"parent\":\"base\"},{\"kind\":8388608,\"name\":\"render\",\"url\":\"modules/base.html#render\",\"classes\":\"\",\"parent\":\"base\"},{\"kind\":8388608,\"name\":\"Component\",\"url\":\"modules/base.html#Component\",\"classes\":\"\",\"parent\":\"base\"},{\"kind\":8388608,\"name\":\"NestedComponent\",\"url\":\"modules/base.html#NestedComponent\",\"classes\":\"\",\"parent\":\"base\"},{\"kind\":8388608,\"name\":\"DataComponent\",\"url\":\"modules/base.html#DataComponent\",\"classes\":\"\",\"parent\":\"base\"},{\"kind\":8388608,\"name\":\"ArrayComponent\",\"url\":\"modules/base.html#ArrayComponent\",\"classes\":\"\",\"parent\":\"base\"},{\"kind\":8388608,\"name\":\"Template\",\"url\":\"modules/base.html#Template\",\"classes\":\"\",\"parent\":\"base\"},{\"kind\":8388608,\"name\":\"EventEmitter\",\"url\":\"modules/base.html#EventEmitter\",\"classes\":\"\",\"parent\":\"base\"},{\"kind\":8388608,\"name\":\"Model\",\"url\":\"modules/base.html#Model\",\"classes\":\"\",\"parent\":\"base\"},{\"kind\":8388608,\"name\":\"ModelDecoratorInterface\",\"url\":\"modules/base.html#ModelDecoratorInterface\",\"classes\":\"\",\"parent\":\"base\"},{\"kind\":8388608,\"name\":\"ModelInterface\",\"url\":\"modules/base.html#ModelInterface\",\"classes\":\"\",\"parent\":\"base\"},{\"kind\":8388608,\"name\":\"NestedModel\",\"url\":\"modules/base.html#NestedModel\",\"classes\":\"\",\"parent\":\"base\"},{\"kind\":8388608,\"name\":\"NestedDataModel\",\"url\":\"modules/base.html#NestedDataModel\",\"classes\":\"\",\"parent\":\"base\"},{\"kind\":8388608,\"name\":\"NestedArrayModel\",\"url\":\"modules/base.html#NestedArrayModel\",\"classes\":\"\",\"parent\":\"base\"},{\"kind\":8388608,\"name\":\"HTML\",\"url\":\"modules/components.html#HTML\",\"classes\":\"\",\"parent\":\"components\"},{\"kind\":8388608,\"name\":\"HTMLComponent\",\"url\":\"modules/components.html#HTMLComponent\",\"classes\":\"\",\"parent\":\"components\"},{\"kind\":8388608,\"name\":\"HTMLContainer\",\"url\":\"modules/components.html#HTMLContainer\",\"classes\":\"\",\"parent\":\"components\"},{\"kind\":8388608,\"name\":\"HTMLContainerComponent\",\"url\":\"modules/components.html#HTMLContainerComponent\",\"classes\":\"\",\"parent\":\"components\"},{\"kind\":8388608,\"name\":\"DataTable\",\"url\":\"modules/components.html#DataTable\",\"classes\":\"\",\"parent\":\"components\"},{\"kind\":8388608,\"name\":\"DataTableComponent\",\"url\":\"modules/components.html#DataTableComponent\",\"classes\":\"\",\"parent\":\"components\"},{\"kind\":8388608,\"name\":\"DataValueComponent\",\"url\":\"modules/components.html#DataValueComponent\",\"classes\":\"\",\"parent\":\"components\"},{\"kind\":8388608,\"name\":\"Input\",\"url\":\"modules/components.html#Input\",\"classes\":\"\",\"parent\":\"components\"},{\"kind\":8388608,\"name\":\"InputComponent\",\"url\":\"modules/components.html#InputComponent\",\"classes\":\"\",\"parent\":\"components\"},{\"kind\":8388608,\"name\":\"HTML\",\"url\":\"modules/components_test.html#HTML\",\"classes\":\"\",\"parent\":\"components/test\"},{\"kind\":8388608,\"name\":\"HTMLComponent\",\"url\":\"modules/components_test.html#HTMLComponent\",\"classes\":\"\",\"parent\":\"components/test\"},{\"kind\":8388608,\"name\":\"HTMLContainer\",\"url\":\"modules/components_test.html#HTMLContainer\",\"classes\":\"\",\"parent\":\"components/test\"},{\"kind\":8388608,\"name\":\"HTMLContainerComponent\",\"url\":\"modules/components_test.html#HTMLContainerComponent\",\"classes\":\"\",\"parent\":\"components/test\"},{\"kind\":8388608,\"name\":\"DataTable\",\"url\":\"modules/components_test.html#DataTable\",\"classes\":\"\",\"parent\":\"components/test\"},{\"kind\":8388608,\"name\":\"DataTableComponent\",\"url\":\"modules/components_test.html#DataTableComponent\",\"classes\":\"\",\"parent\":\"components/test\"},{\"kind\":8388608,\"name\":\"DataValueComponent\",\"url\":\"modules/components_test.html#DataValueComponent\",\"classes\":\"\",\"parent\":\"components/test\"},{\"kind\":8388608,\"name\":\"Input\",\"url\":\"modules/components_test.html#Input\",\"classes\":\"\",\"parent\":\"components/test\"},{\"kind\":8388608,\"name\":\"InputComponent\",\"url\":\"modules/components_test.html#InputComponent\",\"classes\":\"\",\"parent\":\"components/test\"},{\"kind\":8388608,\"name\":\"FieldError\",\"url\":\"modules/error.html#FieldError\",\"classes\":\"\",\"parent\":\"error\"},{\"kind\":8388608,\"name\":\"ValidatorError\",\"url\":\"modules/error.html#ValidatorError\",\"classes\":\"\",\"parent\":\"error\"},{\"kind\":8388608,\"name\":\"ModelInterface\",\"url\":\"modules/model_Model.html#ModelInterface\",\"classes\":\"\",\"parent\":\"model/Model\"},{\"kind\":8388608,\"name\":\"EventEmitter\",\"url\":\"modules/model.html#EventEmitter\",\"classes\":\"\",\"parent\":\"model\"},{\"kind\":8388608,\"name\":\"Model\",\"url\":\"modules/model.html#Model\",\"classes\":\"\",\"parent\":\"model\"},{\"kind\":8388608,\"name\":\"ModelDecoratorInterface\",\"url\":\"modules/model.html#ModelDecoratorInterface\",\"classes\":\"\",\"parent\":\"model\"},{\"kind\":8388608,\"name\":\"ModelInterface\",\"url\":\"modules/model.html#ModelInterface\",\"classes\":\"\",\"parent\":\"model\"},{\"kind\":8388608,\"name\":\"NestedModel\",\"url\":\"modules/model.html#NestedModel\",\"classes\":\"\",\"parent\":\"model\"},{\"kind\":8388608,\"name\":\"NestedDataModel\",\"url\":\"modules/model.html#NestedDataModel\",\"classes\":\"\",\"parent\":\"model\"},{\"kind\":8388608,\"name\":\"NestedArrayModel\",\"url\":\"modules/model.html#NestedArrayModel\",\"classes\":\"\",\"parent\":\"model\"},{\"kind\":8388608,\"name\":\"process\",\"url\":\"modules/process.html#process\",\"classes\":\"\",\"parent\":\"process\"},{\"kind\":8388608,\"name\":\"processSync\",\"url\":\"modules/process.html#processSync\",\"classes\":\"\",\"parent\":\"process\"},{\"kind\":8388608,\"name\":\"processOne\",\"url\":\"modules/process.html#processOne\",\"classes\":\"\",\"parent\":\"process\"},{\"kind\":8388608,\"name\":\"processOneSync\",\"url\":\"modules/process.html#processOneSync\",\"classes\":\"\",\"parent\":\"process\"},{\"kind\":8388608,\"name\":\"Formio\",\"url\":\"modules/sdk.html#Formio\",\"classes\":\"\",\"parent\":\"sdk\"},{\"kind\":8388608,\"name\":\"ProjectId\",\"url\":\"modules/types.html#ProjectId\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"Project\",\"url\":\"modules/types.html#Project\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ProjectType\",\"url\":\"modules/types.html#ProjectType\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ProjectPlan\",\"url\":\"modules/types.html#ProjectPlan\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ProjectFramework\",\"url\":\"modules/types.html#ProjectFramework\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ProjectUsage\",\"url\":\"modules/types.html#ProjectUsage\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ProjectBilling\",\"url\":\"modules/types.html#ProjectBilling\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ProjectApiCalls\",\"url\":\"modules/types.html#ProjectApiCalls\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"FormId\",\"url\":\"modules/types.html#FormId\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"Form\",\"url\":\"modules/types.html#Form\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"FormType\",\"url\":\"modules/types.html#FormType\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"FormDisplay\",\"url\":\"modules/types.html#FormDisplay\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"FormSettings\",\"url\":\"modules/types.html#FormSettings\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"SubmissionId\",\"url\":\"modules/types.html#SubmissionId\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"Submission\",\"url\":\"modules/types.html#Submission\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"SubmissionState\",\"url\":\"modules/types.html#SubmissionState\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"SubmissionMetadata\",\"url\":\"modules/types.html#SubmissionMetadata\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"RoleId\",\"url\":\"modules/types.html#RoleId\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"Role\",\"url\":\"modules/types.html#Role\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ActionId\",\"url\":\"modules/types.html#ActionId\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ActionSettings\",\"url\":\"modules/types.html#ActionSettings\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"FormAction\",\"url\":\"modules/types.html#FormAction\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"Access\",\"url\":\"modules/types.html#Access\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"AccessType\",\"url\":\"modules/types.html#AccessType\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"RuleContext\",\"url\":\"modules/types.html#RuleContext\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"RuleFn\",\"url\":\"modules/types.html#RuleFn\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"RuleFnSync\",\"url\":\"modules/types.html#RuleFnSync\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"Component\",\"url\":\"modules/types.html#Component\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"CalendarPickerOptions\",\"url\":\"modules/types.html#CalendarPickerOptions\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"BootstrapSizing\",\"url\":\"modules/types.html#BootstrapSizing\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"TextFieldComponent\",\"url\":\"modules/types.html#TextFieldComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"NestedComponent\",\"url\":\"modules/types.html#NestedComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ContainerComponent\",\"url\":\"modules/types.html#ContainerComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"AddressComponent\",\"url\":\"modules/types.html#AddressComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ButtonComponent\",\"url\":\"modules/types.html#ButtonComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"CheckboxComponent\",\"url\":\"modules/types.html#CheckboxComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ColumnsComponent\",\"url\":\"modules/types.html#ColumnsComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ContentComponent\",\"url\":\"modules/types.html#ContentComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"NumberComponent\",\"url\":\"modules/types.html#NumberComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"NestedArrayComponent\",\"url\":\"modules/types.html#NestedArrayComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"DataGridComponent\",\"url\":\"modules/types.html#DataGridComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"DataMapComponent\",\"url\":\"modules/types.html#DataMapComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"DateTimeComponent\",\"url\":\"modules/types.html#DateTimeComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"DayComponent\",\"url\":\"modules/types.html#DayComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"EditGridComponent\",\"url\":\"modules/types.html#EditGridComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"EmailComponent\",\"url\":\"modules/types.html#EmailComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"FieldSetComponent\",\"url\":\"modules/types.html#FieldSetComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"FileComponent\",\"url\":\"modules/types.html#FileComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"FormComponent\",\"url\":\"modules/types.html#FormComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"HiddenComponent\",\"url\":\"modules/types.html#HiddenComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"HtmlComponent\",\"url\":\"modules/types.html#HtmlComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"PanelComponent\",\"url\":\"modules/types.html#PanelComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"PasswordComponent\",\"url\":\"modules/types.html#PasswordComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"PhoneNumberComponent\",\"url\":\"modules/types.html#PhoneNumberComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ListComponent\",\"url\":\"modules/types.html#ListComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"RadioComponent\",\"url\":\"modules/types.html#RadioComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"RecaptchaComponent\",\"url\":\"modules/types.html#RecaptchaComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"SelectComponentOptions\",\"url\":\"modules/types.html#SelectComponentOptions\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"SelectComponent\",\"url\":\"modules/types.html#SelectComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ResourceComponent\",\"url\":\"modules/types.html#ResourceComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"SelectBoxesComponent\",\"url\":\"modules/types.html#SelectBoxesComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"SignatureComponent\",\"url\":\"modules/types.html#SignatureComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"SurveyComponent\",\"url\":\"modules/types.html#SurveyComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"RowComponent\",\"url\":\"modules/types.html#RowComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"TabsComponent\",\"url\":\"modules/types.html#TabsComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"TagsComponent\",\"url\":\"modules/types.html#TagsComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"TextAreaComponent\",\"url\":\"modules/types.html#TextAreaComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"TimeComponent\",\"url\":\"modules/types.html#TimeComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"TreeComponent\",\"url\":\"modules/types.html#TreeComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"UrlComponent\",\"url\":\"modules/types.html#UrlComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"WellComponent\",\"url\":\"modules/types.html#WellComponent\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ProcessConfig\",\"url\":\"modules/types.html#ProcessConfig\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ProcessType\",\"url\":\"modules/types.html#ProcessType\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ProcessorType\",\"url\":\"modules/types.html#ProcessorType\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ProcessorContext\",\"url\":\"modules/types.html#ProcessorContext\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ProcessorFn\",\"url\":\"modules/types.html#ProcessorFn\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ProcessorFnSync\",\"url\":\"modules/types.html#ProcessorFnSync\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ProcessContext\",\"url\":\"modules/types.html#ProcessContext\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ProcessContextSync\",\"url\":\"modules/types.html#ProcessContextSync\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ProcessOneContext\",\"url\":\"modules/types.html#ProcessOneContext\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ProcessOneContextSync\",\"url\":\"modules/types.html#ProcessOneContextSync\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"DataObject\",\"url\":\"modules/types.html#DataObject\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"AutocompleteAddressComponentDataObject\",\"url\":\"modules/types.html#AutocompleteAddressComponentDataObject\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ManualAddressComponentDataObject\",\"url\":\"modules/types.html#ManualAddressComponentDataObject\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"AddressComponentDataObject\",\"url\":\"modules/types.html#AddressComponentDataObject\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"AsyncComponentDataCallback\",\"url\":\"modules/types.html#AsyncComponentDataCallback\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"ComponentDataCallback\",\"url\":\"modules/types.html#ComponentDataCallback\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"PassedComponentInstance\",\"url\":\"modules/types.html#PassedComponentInstance\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":8388608,\"name\":\"dayjs\",\"url\":\"modules/utils_date.html#dayjs\",\"classes\":\"\",\"parent\":\"utils/date\"},{\"kind\":8388608,\"name\":\"Evaluator\",\"url\":\"modules/utils.html#Evaluator\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"BaseEvaluator\",\"url\":\"modules/utils.html#BaseEvaluator\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"sanitize\",\"url\":\"modules/utils.html#sanitize\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"override\",\"url\":\"modules/utils.html#override\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"unwind\",\"url\":\"modules/utils.html#unwind\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"Utils\",\"url\":\"modules/utils.html#Utils\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"dom\",\"url\":\"modules/utils.html#dom\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"escapeRegExCharacters\",\"url\":\"modules/utils.html#escapeRegExCharacters\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"boolValue\",\"url\":\"modules/utils.html#boolValue\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"currentTimezone\",\"url\":\"modules/utils.html#currentTimezone\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"convertFormatToMoment\",\"url\":\"modules/utils.html#convertFormatToMoment\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"momentDate\",\"url\":\"modules/utils.html#momentDate\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"formatDate\",\"url\":\"modules/utils.html#formatDate\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"getDateSetting\",\"url\":\"modules/utils.html#getDateSetting\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"getDateValidationFormat\",\"url\":\"modules/utils.html#getDateValidationFormat\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"isPartialDay\",\"url\":\"modules/utils.html#isPartialDay\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"dayjs\",\"url\":\"modules/utils.html#dayjs\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"getInputMask\",\"url\":\"modules/utils.html#getInputMask\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"matchInputMask\",\"url\":\"modules/utils.html#matchInputMask\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"Database\",\"url\":\"modules/utils.html#Database\",\"classes\":\"\",\"parent\":\"utils\"},{\"kind\":8388608,\"name\":\"validate\",\"url\":\"modules/process_validation.html#validate\",\"classes\":\"\",\"parent\":\"process/validation\"},{\"kind\":8388608,\"name\":\"validateSync\",\"url\":\"modules/process_validation.html#validateSync\",\"classes\":\"\",\"parent\":\"process/validation\"},{\"kind\":8388608,\"name\":\"isComponentPersistent\",\"url\":\"modules/process_validation.html#isComponentPersistent\",\"classes\":\"\",\"parent\":\"process/validation\"},{\"kind\":8388608,\"name\":\"isComponentProtected\",\"url\":\"modules/process_validation.html#isComponentProtected\",\"classes\":\"\",\"parent\":\"process/validation\"},{\"kind\":8388608,\"name\":\"shouldSkipValidation\",\"url\":\"modules/process_validation.html#shouldSkipValidation\",\"classes\":\"\",\"parent\":\"process/validation\"},{\"kind\":8388608,\"name\":\"isEmptyObject\",\"url\":\"modules/process_validation.html#isEmptyObject\",\"classes\":\"\",\"parent\":\"process/validation\"},{\"kind\":8388608,\"name\":\"getComponentErrorField\",\"url\":\"modules/process_validation.html#getComponentErrorField\",\"classes\":\"\",\"parent\":\"process/validation\"},{\"kind\":8388608,\"name\":\"toBoolean\",\"url\":\"modules/process_validation.html#toBoolean\",\"classes\":\"\",\"parent\":\"process/validation\"},{\"kind\":8388608,\"name\":\"isPromise\",\"url\":\"modules/process_validation.html#isPromise\",\"classes\":\"\",\"parent\":\"process/validation\"},{\"kind\":8388608,\"name\":\"isObject\",\"url\":\"modules/process_validation.html#isObject\",\"classes\":\"\",\"parent\":\"process/validation\"},{\"kind\":8388608,\"name\":\"getEmptyValue\",\"url\":\"modules/process_validation.html#getEmptyValue\",\"classes\":\"\",\"parent\":\"process/validation\"},{\"kind\":8388608,\"name\":\"isEmpty\",\"url\":\"modules/process_validation.html#isEmpty\",\"classes\":\"\",\"parent\":\"process/validation\"},{\"kind\":8388608,\"name\":\"ProcessType\",\"url\":\"modules/types_process.html#ProcessType\",\"classes\":\"\",\"parent\":\"types/process\"},{\"kind\":8388608,\"name\":\"ProcessorType\",\"url\":\"modules/types_process.html#ProcessorType\",\"classes\":\"\",\"parent\":\"types/process\"},{\"kind\":8388608,\"name\":\"ProcessorContext\",\"url\":\"modules/types_process.html#ProcessorContext\",\"classes\":\"\",\"parent\":\"types/process\"},{\"kind\":8388608,\"name\":\"ProcessorFn\",\"url\":\"modules/types_process.html#ProcessorFn\",\"classes\":\"\",\"parent\":\"types/process\"},{\"kind\":8388608,\"name\":\"ProcessorFnSync\",\"url\":\"modules/types_process.html#ProcessorFnSync\",\"classes\":\"\",\"parent\":\"types/process\"},{\"kind\":8388608,\"name\":\"ProcessContext\",\"url\":\"modules/types_process.html#ProcessContext\",\"classes\":\"\",\"parent\":\"types/process\"},{\"kind\":8388608,\"name\":\"ProcessContextSync\",\"url\":\"modules/types_process.html#ProcessContextSync\",\"classes\":\"\",\"parent\":\"types/process\"},{\"kind\":8388608,\"name\":\"ProcessOneContext\",\"url\":\"modules/types_process.html#ProcessOneContext\",\"classes\":\"\",\"parent\":\"types/process\"},{\"kind\":8388608,\"name\":\"ProcessOneContextSync\",\"url\":\"modules/types_process.html#ProcessOneContextSync\",\"classes\":\"\",\"parent\":\"types/process\"},{\"kind\":8388608,\"name\":\"ProjectId\",\"url\":\"modules/types_project.html#ProjectId\",\"classes\":\"\",\"parent\":\"types/project\"},{\"kind\":8388608,\"name\":\"Project\",\"url\":\"modules/types_project.html#Project\",\"classes\":\"\",\"parent\":\"types/project\"},{\"kind\":8388608,\"name\":\"ProjectType\",\"url\":\"modules/types_project.html#ProjectType\",\"classes\":\"\",\"parent\":\"types/project\"},{\"kind\":8388608,\"name\":\"ProjectPlan\",\"url\":\"modules/types_project.html#ProjectPlan\",\"classes\":\"\",\"parent\":\"types/project\"},{\"kind\":8388608,\"name\":\"ProjectFramework\",\"url\":\"modules/types_project.html#ProjectFramework\",\"classes\":\"\",\"parent\":\"types/project\"},{\"kind\":8388608,\"name\":\"ProjectUsage\",\"url\":\"modules/types_project.html#ProjectUsage\",\"classes\":\"\",\"parent\":\"types/project\"},{\"kind\":8388608,\"name\":\"ProjectBilling\",\"url\":\"modules/types_project.html#ProjectBilling\",\"classes\":\"\",\"parent\":\"types/project\"},{\"kind\":8388608,\"name\":\"ProjectApiCalls\",\"url\":\"modules/types_project.html#ProjectApiCalls\",\"classes\":\"\",\"parent\":\"types/project\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,66.447]],[\"comment/0\",[]],[\"name/1\",[1,61.338]],[\"comment/1\",[]],[\"name/2\",[2,61.338]],[\"comment/2\",[]],[\"name/3\",[3,61.338]],[\"comment/3\",[]],[\"name/4\",[4,66.447]],[\"comment/4\",[]],[\"name/5\",[5,50.352]],[\"comment/5\",[]],[\"name/6\",[6,57.974]],[\"comment/6\",[]],[\"name/7\",[7,66.447]],[\"comment/7\",[]],[\"name/8\",[8,55.46]],[\"comment/8\",[]],[\"name/9\",[9,46.987]],[\"comment/9\",[]],[\"name/10\",[9,46.987]],[\"comment/10\",[]],[\"name/11\",[10,66.447]],[\"comment/11\",[]],[\"name/12\",[11,40.297]],[\"comment/12\",[]],[\"name/13\",[12,66.447]],[\"comment/13\",[]],[\"name/14\",[13,66.447]],[\"comment/14\",[]],[\"name/15\",[14,66.447]],[\"comment/15\",[]],[\"name/16\",[15,66.447]],[\"comment/16\",[]],[\"name/17\",[16,66.447]],[\"comment/17\",[]],[\"name/18\",[17,40.797]],[\"comment/18\",[]],[\"name/19\",[18,66.447]],[\"comment/19\",[]],[\"name/20\",[19,53.454]],[\"comment/20\",[]],[\"name/21\",[20,61.338]],[\"comment/21\",[]],[\"name/22\",[21,66.447]],[\"comment/22\",[]],[\"name/23\",[22,66.447]],[\"comment/23\",[]],[\"name/24\",[23,66.447]],[\"comment/24\",[]],[\"name/25\",[24,66.447]],[\"comment/25\",[]],[\"name/26\",[25,66.447]],[\"comment/26\",[]],[\"name/27\",[26,66.447]],[\"comment/27\",[]],[\"name/28\",[27,66.447]],[\"comment/28\",[]],[\"name/29\",[28,61.338]],[\"comment/29\",[]],[\"name/30\",[8,55.46]],[\"comment/30\",[]],[\"name/31\",[17,40.797]],[\"comment/31\",[]],[\"name/32\",[29,57.974]],[\"comment/32\",[]],[\"name/33\",[30,66.447]],[\"comment/33\",[]],[\"name/34\",[31,53.454]],[\"comment/34\",[]],[\"name/35\",[17,40.797]],[\"comment/35\",[]],[\"name/36\",[11,40.297]],[\"comment/36\",[]],[\"name/37\",[32,44.474]],[\"comment/37\",[]],[\"name/38\",[33,40.797]],[\"comment/38\",[]],[\"name/39\",[34,61.338]],[\"comment/39\",[]],[\"name/40\",[35,47.988]],[\"comment/40\",[]],[\"name/41\",[36,55.46]],[\"comment/41\",[]],[\"name/42\",[17,40.797]],[\"comment/42\",[]],[\"name/43\",[11,40.297]],[\"comment/43\",[]],[\"name/44\",[32,44.474]],[\"comment/44\",[]],[\"name/45\",[33,40.797]],[\"comment/45\",[]],[\"name/46\",[34,61.338]],[\"comment/46\",[]],[\"name/47\",[35,47.988]],[\"comment/47\",[]],[\"name/48\",[37,66.447]],[\"comment/48\",[]],[\"name/49\",[38,55.46]],[\"comment/49\",[]],[\"name/50\",[17,40.797]],[\"comment/50\",[]],[\"name/51\",[11,40.297]],[\"comment/51\",[]],[\"name/52\",[32,44.474]],[\"comment/52\",[]],[\"name/53\",[33,40.797]],[\"comment/53\",[]],[\"name/54\",[39,50.352]],[\"comment/54\",[]],[\"name/55\",[35,47.988]],[\"comment/55\",[]],[\"name/56\",[40,66.447]],[\"comment/56\",[]],[\"name/57\",[41,66.447]],[\"comment/57\",[]],[\"name/58\",[42,29.475]],[\"comment/58\",[]],[\"name/59\",[43,49.101]],[\"comment/59\",[]],[\"name/60\",[44,66.447]],[\"comment/60\",[]],[\"name/61\",[42,29.475]],[\"comment/61\",[]],[\"name/62\",[45,61.338]],[\"comment/62\",[]],[\"name/63\",[46,66.447]],[\"comment/63\",[]],[\"name/64\",[47,66.447]],[\"comment/64\",[]],[\"name/65\",[48,66.447]],[\"comment/65\",[]],[\"name/66\",[19,53.454]],[\"comment/66\",[]],[\"name/67\",[42,29.475]],[\"comment/67\",[]],[\"name/68\",[49,53.454]],[\"comment/68\",[]],[\"name/69\",[17,40.797]],[\"comment/69\",[]],[\"name/70\",[11,40.297]],[\"comment/70\",[]],[\"name/71\",[32,44.474]],[\"comment/71\",[]],[\"name/72\",[33,40.797]],[\"comment/72\",[]],[\"name/73\",[39,50.352]],[\"comment/73\",[]],[\"name/74\",[35,47.988]],[\"comment/74\",[]],[\"name/75\",[50,51.783]],[\"comment/75\",[]],[\"name/76\",[17,40.797]],[\"comment/76\",[]],[\"name/77\",[11,40.297]],[\"comment/77\",[]],[\"name/78\",[32,44.474]],[\"comment/78\",[]],[\"name/79\",[33,40.797]],[\"comment/79\",[]],[\"name/80\",[39,50.352]],[\"comment/80\",[]],[\"name/81\",[35,47.988]],[\"comment/81\",[]],[\"name/82\",[51,66.447]],[\"comment/82\",[]],[\"name/83\",[52,53.454]],[\"comment/83\",[]],[\"name/84\",[17,40.797]],[\"comment/84\",[]],[\"name/85\",[35,47.988]],[\"comment/85\",[]],[\"name/86\",[11,40.297]],[\"comment/86\",[]],[\"name/87\",[32,44.474]],[\"comment/87\",[]],[\"name/88\",[33,40.797]],[\"comment/88\",[]],[\"name/89\",[39,50.352]],[\"comment/89\",[]],[\"name/90\",[53,55.46]],[\"comment/90\",[]],[\"name/91\",[17,40.797]],[\"comment/91\",[]],[\"name/92\",[35,47.988]],[\"comment/92\",[]],[\"name/93\",[11,40.297]],[\"comment/93\",[]],[\"name/94\",[32,44.474]],[\"comment/94\",[]],[\"name/95\",[33,40.797]],[\"comment/95\",[]],[\"name/96\",[39,50.352]],[\"comment/96\",[]],[\"name/97\",[9,46.987]],[\"comment/97\",[]],[\"name/98\",[5,50.352]],[\"comment/98\",[]],[\"name/99\",[42,29.475]],[\"comment/99\",[]],[\"name/100\",[9,46.987]],[\"comment/100\",[]],[\"name/101\",[42,29.475]],[\"comment/101\",[]],[\"name/102\",[49,53.454]],[\"comment/102\",[]],[\"name/103\",[52,53.454]],[\"comment/103\",[]],[\"name/104\",[31,53.454]],[\"comment/104\",[]],[\"name/105\",[54,66.447]],[\"comment/105\",[]],[\"name/106\",[55,51.783]],[\"comment/106\",[]],[\"name/107\",[20,61.338]],[\"comment/107\",[]],[\"name/108\",[42,29.475]],[\"comment/108\",[]],[\"name/109\",[56,61.338]],[\"comment/109\",[]],[\"name/110\",[57,66.447]],[\"comment/110\",[]],[\"name/111\",[58,66.447]],[\"comment/111\",[]],[\"name/112\",[59,61.338]],[\"comment/112\",[]],[\"name/113\",[17,40.797]],[\"comment/113\",[]],[\"name/114\",[60,66.447]],[\"comment/114\",[]],[\"name/115\",[61,66.447]],[\"comment/115\",[]],[\"name/116\",[62,66.447]],[\"comment/116\",[]],[\"name/117\",[63,66.447]],[\"comment/117\",[]],[\"name/118\",[64,61.338]],[\"comment/118\",[]],[\"name/119\",[65,66.447]],[\"comment/119\",[]],[\"name/120\",[66,66.447]],[\"comment/120\",[]],[\"name/121\",[67,55.46]],[\"comment/121\",[]],[\"name/122\",[68,53.454]],[\"comment/122\",[]],[\"name/123\",[11,40.297]],[\"comment/123\",[]],[\"name/124\",[32,44.474]],[\"comment/124\",[]],[\"name/125\",[33,40.797]],[\"comment/125\",[]],[\"name/126\",[17,40.797]],[\"comment/126\",[]],[\"name/127\",[69,66.447]],[\"comment/127\",[]],[\"name/128\",[70,53.454]],[\"comment/128\",[]],[\"name/129\",[71,55.46]],[\"comment/129\",[]],[\"name/130\",[72,66.447]],[\"comment/130\",[]],[\"name/131\",[73,55.46]],[\"comment/131\",[]],[\"name/132\",[74,66.447]],[\"comment/132\",[]],[\"name/133\",[75,55.46]],[\"comment/133\",[]],[\"name/134\",[76,66.447]],[\"comment/134\",[]],[\"name/135\",[77,55.46]],[\"comment/135\",[]],[\"name/136\",[70,53.454]],[\"comment/136\",[]],[\"name/137\",[78,66.447]],[\"comment/137\",[]],[\"name/138\",[5,50.352]],[\"comment/138\",[]],[\"name/139\",[79,47.988]],[\"comment/139\",[]],[\"name/140\",[80,66.447]],[\"comment/140\",[]],[\"name/141\",[79,47.988]],[\"comment/141\",[]],[\"name/142\",[81,57.974]],[\"comment/142\",[]],[\"name/143\",[82,66.447]],[\"comment/143\",[]],[\"name/144\",[83,57.974]],[\"comment/144\",[]],[\"name/145\",[84,57.974]],[\"comment/145\",[]],[\"name/146\",[85,66.447]],[\"comment/146\",[]],[\"name/147\",[86,66.447]],[\"comment/147\",[]],[\"name/148\",[29,57.974]],[\"comment/148\",[]],[\"name/149\",[87,49.101]],[\"comment/149\",[]],[\"name/150\",[88,61.338]],[\"comment/150\",[]],[\"name/151\",[89,66.447]],[\"comment/151\",[]],[\"name/152\",[90,66.447]],[\"comment/152\",[]],[\"name/153\",[91,66.447]],[\"comment/153\",[]],[\"name/154\",[92,53.454]],[\"comment/154\",[]],[\"name/155\",[93,66.447]],[\"comment/155\",[]],[\"name/156\",[94,61.338]],[\"comment/156\",[]],[\"name/157\",[95,66.447]],[\"comment/157\",[]],[\"name/158\",[96,61.338]],[\"comment/158\",[]],[\"name/159\",[97,66.447]],[\"comment/159\",[]],[\"name/160\",[98,66.447]],[\"comment/160\",[]],[\"name/161\",[99,61.338]],[\"comment/161\",[]],[\"name/162\",[100,66.447]],[\"comment/162\",[]],[\"name/163\",[101,66.447]],[\"comment/163\",[]],[\"name/164\",[102,66.447]],[\"comment/164\",[]],[\"name/165\",[103,61.338]],[\"comment/165\",[]],[\"name/166\",[104,66.447]],[\"comment/166\",[]],[\"name/167\",[105,66.447]],[\"comment/167\",[]],[\"name/168\",[106,66.447]],[\"comment/168\",[]],[\"name/169\",[107,61.338]],[\"comment/169\",[]],[\"name/170\",[108,66.447]],[\"comment/170\",[]],[\"name/171\",[109,66.447]],[\"comment/171\",[]],[\"name/172\",[110,66.447]],[\"comment/172\",[]],[\"name/173\",[111,61.338]],[\"comment/173\",[]],[\"name/174\",[112,66.447]],[\"comment/174\",[]],[\"name/175\",[113,61.338]],[\"comment/175\",[]],[\"name/176\",[88,61.338]],[\"comment/176\",[]],[\"name/177\",[114,61.338]],[\"comment/177\",[]],[\"name/178\",[115,61.338]],[\"comment/178\",[]],[\"name/179\",[116,66.447]],[\"comment/179\",[]],[\"name/180\",[117,66.447]],[\"comment/180\",[]],[\"name/181\",[118,66.447]],[\"comment/181\",[]],[\"name/182\",[119,66.447]],[\"comment/182\",[]],[\"name/183\",[120,66.447]],[\"comment/183\",[]],[\"name/184\",[121,66.447]],[\"comment/184\",[]],[\"name/185\",[122,66.447]],[\"comment/185\",[]],[\"name/186\",[123,66.447]],[\"comment/186\",[]],[\"name/187\",[124,66.447]],[\"comment/187\",[]],[\"name/188\",[125,66.447]],[\"comment/188\",[]],[\"name/189\",[126,66.447]],[\"comment/189\",[]],[\"name/190\",[127,66.447]],[\"comment/190\",[]],[\"name/191\",[128,61.338]],[\"comment/191\",[]],[\"name/192\",[129,66.447]],[\"comment/192\",[]],[\"name/193\",[130,61.338]],[\"comment/193\",[]],[\"name/194\",[131,66.447]],[\"comment/194\",[]],[\"name/195\",[132,66.447]],[\"comment/195\",[]],[\"name/196\",[133,66.447]],[\"comment/196\",[]],[\"name/197\",[134,61.338]],[\"comment/197\",[]],[\"name/198\",[135,66.447]],[\"comment/198\",[]],[\"name/199\",[136,66.447]],[\"comment/199\",[]],[\"name/200\",[137,66.447]],[\"comment/200\",[]],[\"name/201\",[138,66.447]],[\"comment/201\",[]],[\"name/202\",[139,66.447]],[\"comment/202\",[]],[\"name/203\",[140,66.447]],[\"comment/203\",[]],[\"name/204\",[141,66.447]],[\"comment/204\",[]],[\"name/205\",[142,66.447]],[\"comment/205\",[]],[\"name/206\",[143,61.338]],[\"comment/206\",[]],[\"name/207\",[144,61.338]],[\"comment/207\",[]],[\"name/208\",[42,29.475]],[\"comment/208\",[]],[\"name/209\",[145,61.338]],[\"comment/209\",[]],[\"name/210\",[42,29.475]],[\"comment/210\",[]],[\"name/211\",[146,61.338]],[\"comment/211\",[]],[\"name/212\",[42,29.475]],[\"comment/212\",[]],[\"name/213\",[147,61.338]],[\"comment/213\",[]],[\"name/214\",[42,29.475]],[\"comment/214\",[]],[\"name/215\",[148,61.338]],[\"comment/215\",[]],[\"name/216\",[42,29.475]],[\"comment/216\",[]],[\"name/217\",[149,61.338]],[\"comment/217\",[]],[\"name/218\",[42,29.475]],[\"comment/218\",[]],[\"name/219\",[17,40.797]],[\"comment/219\",[]],[\"name/220\",[29,57.974]],[\"comment/220\",[]],[\"name/221\",[150,66.447]],[\"comment/221\",[]],[\"name/222\",[94,61.338]],[\"comment/222\",[]],[\"name/223\",[151,55.46]],[\"comment/223\",[]],[\"name/224\",[152,66.447]],[\"comment/224\",[]],[\"name/225\",[153,66.447]],[\"comment/225\",[]],[\"name/226\",[154,57.974]],[\"comment/226\",[]],[\"name/227\",[155,66.447]],[\"comment/227\",[]],[\"name/228\",[156,66.447]],[\"comment/228\",[]],[\"name/229\",[157,57.974]],[\"comment/229\",[]],[\"name/230\",[158,66.447]],[\"comment/230\",[]],[\"name/231\",[159,66.447]],[\"comment/231\",[]],[\"name/232\",[160,57.974]],[\"comment/232\",[]],[\"name/233\",[161,66.447]],[\"comment/233\",[]],[\"name/234\",[162,57.974]],[\"comment/234\",[]],[\"name/235\",[163,66.447]],[\"comment/235\",[]],[\"name/236\",[164,66.447]],[\"comment/236\",[]],[\"name/237\",[165,66.447]],[\"comment/237\",[]],[\"name/238\",[166,66.447]],[\"comment/238\",[]],[\"name/239\",[167,66.447]],[\"comment/239\",[]],[\"name/240\",[96,61.338]],[\"comment/240\",[]],[\"name/241\",[168,66.447]],[\"comment/241\",[]],[\"name/242\",[169,53.454]],[\"comment/242\",[]],[\"name/243\",[32,44.474]],[\"comment/243\",[]],[\"name/244\",[170,66.447]],[\"comment/244\",[]],[\"name/245\",[6,57.974]],[\"comment/245\",[]],[\"name/246\",[171,61.338]],[\"comment/246\",[]],[\"name/247\",[172,66.447]],[\"comment/247\",[]],[\"name/248\",[111,61.338]],[\"comment/248\",[]],[\"name/249\",[173,66.447]],[\"comment/249\",[]],[\"name/250\",[174,66.447]],[\"comment/250\",[]],[\"name/251\",[175,66.447]],[\"comment/251\",[]],[\"name/252\",[176,66.447]],[\"comment/252\",[]],[\"name/253\",[177,66.447]],[\"comment/253\",[]],[\"name/254\",[178,66.447]],[\"comment/254\",[]],[\"name/255\",[179,66.447]],[\"comment/255\",[]],[\"name/256\",[180,66.447]],[\"comment/256\",[]],[\"name/257\",[181,66.447]],[\"comment/257\",[]],[\"name/258\",[182,66.447]],[\"comment/258\",[]],[\"name/259\",[183,66.447]],[\"comment/259\",[]],[\"name/260\",[184,66.447]],[\"comment/260\",[]],[\"name/261\",[185,66.447]],[\"comment/261\",[]],[\"name/262\",[186,66.447]],[\"comment/262\",[]],[\"name/263\",[187,66.447]],[\"comment/263\",[]],[\"name/264\",[188,66.447]],[\"comment/264\",[]],[\"name/265\",[189,66.447]],[\"comment/265\",[]],[\"name/266\",[190,66.447]],[\"comment/266\",[]],[\"name/267\",[191,66.447]],[\"comment/267\",[]],[\"name/268\",[192,66.447]],[\"comment/268\",[]],[\"name/269\",[193,66.447]],[\"comment/269\",[]],[\"name/270\",[194,66.447]],[\"comment/270\",[]],[\"name/271\",[195,66.447]],[\"comment/271\",[]],[\"name/272\",[196,66.447]],[\"comment/272\",[]],[\"name/273\",[130,61.338]],[\"comment/273\",[]],[\"name/274\",[128,61.338]],[\"comment/274\",[]],[\"name/275\",[134,61.338]],[\"comment/275\",[]],[\"name/276\",[115,61.338]],[\"comment/276\",[]],[\"name/277\",[114,61.338]],[\"comment/277\",[]],[\"name/278\",[197,66.447]],[\"comment/278\",[]],[\"name/279\",[198,66.447]],[\"comment/279\",[]],[\"name/280\",[199,66.447]],[\"comment/280\",[]],[\"name/281\",[200,66.447]],[\"comment/281\",[]],[\"name/282\",[107,61.338]],[\"comment/282\",[]],[\"name/283\",[201,66.447]],[\"comment/283\",[]],[\"name/284\",[202,66.447]],[\"comment/284\",[]],[\"name/285\",[203,66.447]],[\"comment/285\",[]],[\"name/286\",[204,66.447]],[\"comment/286\",[]],[\"name/287\",[205,66.447]],[\"comment/287\",[]],[\"name/288\",[206,61.338]],[\"comment/288\",[]],[\"name/289\",[207,66.447]],[\"comment/289\",[]],[\"name/290\",[208,66.447]],[\"comment/290\",[]],[\"name/291\",[5,50.352]],[\"comment/291\",[]],[\"name/292\",[143,61.338]],[\"comment/292\",[]],[\"name/293\",[92,53.454]],[\"comment/293\",[]],[\"name/294\",[209,66.447]],[\"comment/294\",[]],[\"name/295\",[144,61.338]],[\"comment/295\",[]],[\"name/296\",[145,61.338]],[\"comment/296\",[]],[\"name/297\",[146,61.338]],[\"comment/297\",[]],[\"name/298\",[147,61.338]],[\"comment/298\",[]],[\"name/299\",[148,61.338]],[\"comment/299\",[]],[\"name/300\",[149,61.338]],[\"comment/300\",[]],[\"name/301\",[17,40.797]],[\"comment/301\",[]],[\"name/302\",[210,66.447]],[\"comment/302\",[]],[\"name/303\",[211,66.447]],[\"comment/303\",[]],[\"name/304\",[212,53.454]],[\"comment/304\",[]],[\"name/305\",[42,29.475]],[\"comment/305\",[]],[\"name/306\",[43,49.101]],[\"comment/306\",[]],[\"name/307\",[213,61.338]],[\"comment/307\",[]],[\"name/308\",[214,61.338]],[\"comment/308\",[]],[\"name/309\",[215,66.447]],[\"comment/309\",[]],[\"name/310\",[162,57.974]],[\"comment/310\",[]],[\"name/311\",[216,61.338]],[\"comment/311\",[]],[\"name/312\",[42,29.475]],[\"comment/312\",[]],[\"name/313\",[217,66.447]],[\"comment/313\",[]],[\"name/314\",[43,49.101]],[\"comment/314\",[]],[\"name/315\",[218,57.974]],[\"comment/315\",[]],[\"name/316\",[219,61.338]],[\"comment/316\",[]],[\"name/317\",[42,29.475]],[\"comment/317\",[]],[\"name/318\",[220,53.454]],[\"comment/318\",[]],[\"name/319\",[221,55.46]],[\"comment/319\",[]],[\"name/320\",[222,57.974]],[\"comment/320\",[]],[\"name/321\",[223,66.447]],[\"comment/321\",[]],[\"name/322\",[224,66.447]],[\"comment/322\",[]],[\"name/323\",[225,66.447]],[\"comment/323\",[]],[\"name/324\",[206,61.338]],[\"comment/324\",[]],[\"name/325\",[226,57.974]],[\"comment/325\",[]],[\"name/326\",[227,53.454]],[\"comment/326\",[]],[\"name/327\",[228,55.46]],[\"comment/327\",[]],[\"name/328\",[229,66.447]],[\"comment/328\",[]],[\"name/329\",[230,66.447]],[\"comment/329\",[]],[\"name/330\",[42,29.475]],[\"comment/330\",[]],[\"name/331\",[55,51.783]],[\"comment/331\",[]],[\"name/332\",[43,49.101]],[\"comment/332\",[]],[\"name/333\",[231,57.974]],[\"comment/333\",[]],[\"name/334\",[232,66.447]],[\"comment/334\",[]],[\"name/335\",[233,66.447]],[\"comment/335\",[]],[\"name/336\",[234,66.447]],[\"comment/336\",[]],[\"name/337\",[235,66.447]],[\"comment/337\",[]],[\"name/338\",[236,66.447]],[\"comment/338\",[]],[\"name/339\",[237,66.447]],[\"comment/339\",[]],[\"name/340\",[238,61.338]],[\"comment/340\",[]],[\"name/341\",[239,66.447]],[\"comment/341\",[]],[\"name/342\",[240,61.338]],[\"comment/342\",[]],[\"name/343\",[241,66.447]],[\"comment/343\",[]],[\"name/344\",[242,66.447]],[\"comment/344\",[]],[\"name/345\",[243,66.447]],[\"comment/345\",[]],[\"name/346\",[244,66.447]],[\"comment/346\",[]],[\"name/347\",[245,66.447]],[\"comment/347\",[]],[\"name/348\",[246,66.447]],[\"comment/348\",[]],[\"name/349\",[247,57.974]],[\"comment/349\",[]],[\"name/350\",[248,66.447]],[\"comment/350\",[]],[\"name/351\",[249,66.447]],[\"comment/351\",[]],[\"name/352\",[250,57.974]],[\"comment/352\",[]],[\"name/353\",[251,66.447]],[\"comment/353\",[]],[\"name/354\",[252,66.447]],[\"comment/354\",[]],[\"name/355\",[253,66.447]],[\"comment/355\",[]],[\"name/356\",[254,66.447]],[\"comment/356\",[]],[\"name/357\",[255,66.447]],[\"comment/357\",[]],[\"name/358\",[256,66.447]],[\"comment/358\",[]],[\"name/359\",[257,66.447]],[\"comment/359\",[]],[\"name/360\",[258,66.447]],[\"comment/360\",[]],[\"name/361\",[259,66.447]],[\"comment/361\",[]],[\"name/362\",[260,66.447]],[\"comment/362\",[]],[\"name/363\",[261,66.447]],[\"comment/363\",[]],[\"name/364\",[262,66.447]],[\"comment/364\",[]],[\"name/365\",[263,66.447]],[\"comment/365\",[]],[\"name/366\",[264,53.454]],[\"comment/366\",[]],[\"name/367\",[42,29.475]],[\"comment/367\",[]],[\"name/368\",[265,66.447]],[\"comment/368\",[]],[\"name/369\",[266,57.974]],[\"comment/369\",[]],[\"name/370\",[267,66.447]],[\"comment/370\",[]],[\"name/371\",[268,66.447]],[\"comment/371\",[]],[\"name/372\",[269,66.447]],[\"comment/372\",[]],[\"name/373\",[238,61.338]],[\"comment/373\",[]],[\"name/374\",[240,61.338]],[\"comment/374\",[]],[\"name/375\",[270,66.447]],[\"comment/375\",[]],[\"name/376\",[271,53.454]],[\"comment/376\",[]],[\"name/377\",[272,66.447]],[\"comment/377\",[]],[\"name/378\",[42,29.475]],[\"comment/378\",[]],[\"name/379\",[273,66.447]],[\"comment/379\",[]],[\"name/380\",[274,66.447]],[\"comment/380\",[]],[\"name/381\",[275,66.447]],[\"comment/381\",[]],[\"name/382\",[276,66.447]],[\"comment/382\",[]],[\"name/383\",[277,66.447]],[\"comment/383\",[]],[\"name/384\",[42,29.475]],[\"comment/384\",[]],[\"name/385\",[278,66.447]],[\"comment/385\",[]],[\"name/386\",[279,66.447]],[\"comment/386\",[]],[\"name/387\",[280,66.447]],[\"comment/387\",[]],[\"name/388\",[281,66.447]],[\"comment/388\",[]],[\"name/389\",[282,66.447]],[\"comment/389\",[]],[\"name/390\",[283,66.447]],[\"comment/390\",[]],[\"name/391\",[284,66.447]],[\"comment/391\",[]],[\"name/392\",[285,66.447]],[\"comment/392\",[]],[\"name/393\",[286,66.447]],[\"comment/393\",[]],[\"name/394\",[287,61.338]],[\"comment/394\",[]],[\"name/395\",[288,66.447]],[\"comment/395\",[]],[\"name/396\",[289,66.447]],[\"comment/396\",[]],[\"name/397\",[290,66.447]],[\"comment/397\",[]],[\"name/398\",[291,61.338]],[\"comment/398\",[]],[\"name/399\",[292,66.447]],[\"comment/399\",[]],[\"name/400\",[293,66.447]],[\"comment/400\",[]],[\"name/401\",[11,40.297]],[\"comment/401\",[]],[\"name/402\",[294,61.338]],[\"comment/402\",[]],[\"name/403\",[295,61.338]],[\"comment/403\",[]],[\"name/404\",[296,61.338]],[\"comment/404\",[]],[\"name/405\",[297,53.454]],[\"comment/405\",[]],[\"name/406\",[298,61.338]],[\"comment/406\",[]],[\"name/407\",[299,61.338]],[\"comment/407\",[]],[\"name/408\",[300,61.338]],[\"comment/408\",[]],[\"name/409\",[301,61.338]],[\"comment/409\",[]],[\"name/410\",[302,61.338]],[\"comment/410\",[]],[\"name/411\",[303,61.338]],[\"comment/411\",[]],[\"name/412\",[304,61.338]],[\"comment/412\",[]],[\"name/413\",[305,61.338]],[\"comment/413\",[]],[\"name/414\",[306,61.338]],[\"comment/414\",[]],[\"name/415\",[307,61.338]],[\"comment/415\",[]],[\"name/416\",[308,61.338]],[\"comment/416\",[]],[\"name/417\",[309,61.338]],[\"comment/417\",[]],[\"name/418\",[310,61.338]],[\"comment/418\",[]],[\"name/419\",[311,61.338]],[\"comment/419\",[]],[\"name/420\",[312,61.338]],[\"comment/420\",[]],[\"name/421\",[313,61.338]],[\"comment/421\",[]],[\"name/422\",[314,61.338]],[\"comment/422\",[]],[\"name/423\",[315,61.338]],[\"comment/423\",[]],[\"name/424\",[50,51.783]],[\"comment/424\",[]],[\"name/425\",[316,61.338]],[\"comment/425\",[]],[\"name/426\",[317,61.338]],[\"comment/426\",[]],[\"name/427\",[318,61.338]],[\"comment/427\",[]],[\"name/428\",[319,61.338]],[\"comment/428\",[]],[\"name/429\",[320,61.338]],[\"comment/429\",[]],[\"name/430\",[321,61.338]],[\"comment/430\",[]],[\"name/431\",[322,61.338]],[\"comment/431\",[]],[\"name/432\",[323,61.338]],[\"comment/432\",[]],[\"name/433\",[324,61.338]],[\"comment/433\",[]],[\"name/434\",[325,61.338]],[\"comment/434\",[]],[\"name/435\",[326,61.338]],[\"comment/435\",[]],[\"name/436\",[327,61.338]],[\"comment/436\",[]],[\"name/437\",[328,61.338]],[\"comment/437\",[]],[\"name/438\",[329,61.338]],[\"comment/438\",[]],[\"name/439\",[330,61.338]],[\"comment/439\",[]],[\"name/440\",[331,61.338]],[\"comment/440\",[]],[\"name/441\",[332,61.338]],[\"comment/441\",[]],[\"name/442\",[333,61.338]],[\"comment/442\",[]],[\"name/443\",[334,61.338]],[\"comment/443\",[]],[\"name/444\",[335,61.338]],[\"comment/444\",[]],[\"name/445\",[336,66.447]],[\"comment/445\",[]],[\"name/446\",[337,61.338]],[\"comment/446\",[]],[\"name/447\",[42,29.475]],[\"comment/447\",[]],[\"name/448\",[338,61.338]],[\"comment/448\",[]],[\"name/449\",[42,29.475]],[\"comment/449\",[]],[\"name/450\",[339,61.338]],[\"comment/450\",[]],[\"name/451\",[340,61.338]],[\"comment/451\",[]],[\"name/452\",[42,29.475]],[\"comment/452\",[]],[\"name/453\",[341,61.338]],[\"comment/453\",[]],[\"name/454\",[42,29.475]],[\"comment/454\",[]],[\"name/455\",[339,61.338]],[\"comment/455\",[]],[\"name/456\",[340,61.338]],[\"comment/456\",[]],[\"name/457\",[42,29.475]],[\"comment/457\",[]],[\"name/458\",[342,66.447]],[\"comment/458\",[]],[\"name/459\",[343,66.447]],[\"comment/459\",[]],[\"name/460\",[344,66.447]],[\"comment/460\",[]],[\"name/461\",[345,61.338]],[\"comment/461\",[]],[\"name/462\",[346,66.447]],[\"comment/462\",[]],[\"name/463\",[347,66.447]],[\"comment/463\",[]],[\"name/464\",[348,61.338]],[\"comment/464\",[]],[\"name/465\",[349,66.447]],[\"comment/465\",[]],[\"name/466\",[157,57.974]],[\"comment/466\",[]],[\"name/467\",[227,53.454]],[\"comment/467\",[]],[\"name/468\",[220,53.454]],[\"comment/468\",[]],[\"name/469\",[350,66.447]],[\"comment/469\",[]],[\"name/470\",[221,55.46]],[\"comment/470\",[]],[\"name/471\",[222,57.974]],[\"comment/471\",[]],[\"name/472\",[169,53.454]],[\"comment/472\",[]],[\"name/473\",[43,49.101]],[\"comment/473\",[]],[\"name/474\",[351,66.447]],[\"comment/474\",[]],[\"name/475\",[352,66.447]],[\"comment/475\",[]],[\"name/476\",[353,66.447]],[\"comment/476\",[]],[\"name/477\",[212,53.454]],[\"comment/477\",[]],[\"name/478\",[354,66.447]],[\"comment/478\",[]],[\"name/479\",[355,66.447]],[\"comment/479\",[]],[\"name/480\",[356,57.974]],[\"comment/480\",[]],[\"name/481\",[357,57.974]],[\"comment/481\",[]],[\"name/482\",[9,46.987]],[\"comment/482\",[]],[\"name/483\",[226,57.974]],[\"comment/483\",[]],[\"name/484\",[287,61.338]],[\"comment/484\",[]],[\"name/485\",[87,49.101]],[\"comment/485\",[]],[\"name/486\",[358,61.338]],[\"comment/486\",[]],[\"name/487\",[359,66.447]],[\"comment/487\",[]],[\"name/488\",[360,66.447]],[\"comment/488\",[]],[\"name/489\",[361,66.447]],[\"comment/489\",[]],[\"name/490\",[362,66.447]],[\"comment/490\",[]],[\"name/491\",[363,55.46]],[\"comment/491\",[]],[\"name/492\",[364,55.46]],[\"comment/492\",[]],[\"name/493\",[228,55.46]],[\"comment/493\",[]],[\"name/494\",[365,61.338]],[\"comment/494\",[]],[\"name/495\",[366,61.338]],[\"comment/495\",[]],[\"name/496\",[367,61.338]],[\"comment/496\",[]],[\"name/497\",[42,29.475]],[\"comment/497\",[]],[\"name/498\",[368,66.447]],[\"comment/498\",[]],[\"name/499\",[369,66.447]],[\"comment/499\",[]],[\"name/500\",[370,66.447]],[\"comment/500\",[]],[\"name/501\",[371,66.447]],[\"comment/501\",[]],[\"name/502\",[372,66.447]],[\"comment/502\",[]],[\"name/503\",[373,66.447]],[\"comment/503\",[]],[\"name/504\",[374,66.447]],[\"comment/504\",[]],[\"name/505\",[375,66.447]],[\"comment/505\",[]],[\"name/506\",[376,66.447]],[\"comment/506\",[]],[\"name/507\",[377,66.447]],[\"comment/507\",[]],[\"name/508\",[378,66.447]],[\"comment/508\",[]],[\"name/509\",[379,66.447]],[\"comment/509\",[]],[\"name/510\",[380,66.447]],[\"comment/510\",[]],[\"name/511\",[42,29.475]],[\"comment/511\",[]],[\"name/512\",[381,66.447]],[\"comment/512\",[]],[\"name/513\",[382,66.447]],[\"comment/513\",[]],[\"name/514\",[383,66.447]],[\"comment/514\",[]],[\"name/515\",[384,61.338]],[\"comment/515\",[]],[\"name/516\",[42,29.475]],[\"comment/516\",[]],[\"name/517\",[385,66.447]],[\"comment/517\",[]],[\"name/518\",[42,29.475]],[\"comment/518\",[]],[\"name/519\",[42,29.475]],[\"comment/519\",[]],[\"name/520\",[11,40.297]],[\"comment/520\",[]],[\"name/521\",[33,40.797]],[\"comment/521\",[]],[\"name/522\",[271,53.454]],[\"comment/522\",[]],[\"name/523\",[386,66.447]],[\"comment/523\",[]],[\"name/524\",[387,66.447]],[\"comment/524\",[]],[\"name/525\",[388,66.447]],[\"comment/525\",[]],[\"name/526\",[42,29.475]],[\"comment/526\",[]],[\"name/527\",[389,57.974]],[\"comment/527\",[]],[\"name/528\",[42,29.475]],[\"comment/528\",[]],[\"name/529\",[33,40.797]],[\"comment/529\",[]],[\"name/530\",[227,53.454]],[\"comment/530\",[]],[\"name/531\",[32,44.474]],[\"comment/531\",[]],[\"name/532\",[390,55.46]],[\"comment/532\",[]],[\"name/533\",[42,29.475]],[\"comment/533\",[]],[\"name/534\",[391,66.447]],[\"comment/534\",[]],[\"name/535\",[154,57.974]],[\"comment/535\",[]],[\"name/536\",[218,57.974]],[\"comment/536\",[]],[\"name/537\",[42,29.475]],[\"comment/537\",[]],[\"name/538\",[220,53.454]],[\"comment/538\",[]],[\"name/539\",[221,55.46]],[\"comment/539\",[]],[\"name/540\",[250,57.974]],[\"comment/540\",[]],[\"name/541\",[5,50.352]],[\"comment/541\",[]],[\"name/542\",[392,66.447]],[\"comment/542\",[]],[\"name/543\",[87,49.101]],[\"comment/543\",[]],[\"name/544\",[357,57.974]],[\"comment/544\",[]],[\"name/545\",[363,55.46]],[\"comment/545\",[]],[\"name/546\",[364,55.46]],[\"comment/546\",[]],[\"name/547\",[393,66.447]],[\"comment/547\",[]],[\"name/548\",[394,66.447]],[\"comment/548\",[]],[\"name/549\",[395,61.338]],[\"comment/549\",[]],[\"name/550\",[396,61.338]],[\"comment/550\",[]],[\"name/551\",[42,29.475]],[\"comment/551\",[]],[\"name/552\",[397,61.338]],[\"comment/552\",[]],[\"name/553\",[42,29.475]],[\"comment/553\",[]],[\"name/554\",[398,66.447]],[\"comment/554\",[]],[\"name/555\",[160,57.974]],[\"comment/555\",[]],[\"name/556\",[389,57.974]],[\"comment/556\",[]],[\"name/557\",[220,53.454]],[\"comment/557\",[]],[\"name/558\",[399,66.447]],[\"comment/558\",[]],[\"name/559\",[227,53.454]],[\"comment/559\",[]],[\"name/560\",[356,57.974]],[\"comment/560\",[]],[\"name/561\",[213,61.338]],[\"comment/561\",[]],[\"name/562\",[400,66.447]],[\"comment/562\",[]],[\"name/563\",[33,40.797]],[\"comment/563\",[]],[\"name/564\",[87,49.101]],[\"comment/564\",[]],[\"name/565\",[345,61.338]],[\"comment/565\",[]],[\"name/566\",[212,53.454]],[\"comment/566\",[]],[\"name/567\",[401,66.447]],[\"comment/567\",[]],[\"name/568\",[402,66.447]],[\"comment/568\",[]],[\"name/569\",[403,66.447]],[\"comment/569\",[]],[\"name/570\",[363,55.46]],[\"comment/570\",[]],[\"name/571\",[364,55.46]],[\"comment/571\",[]],[\"name/572\",[228,55.46]],[\"comment/572\",[]],[\"name/573\",[404,61.338]],[\"comment/573\",[]],[\"name/574\",[405,61.338]],[\"comment/574\",[]],[\"name/575\",[42,29.475]],[\"comment/575\",[]],[\"name/576\",[406,66.447]],[\"comment/576\",[]],[\"name/577\",[407,66.447]],[\"comment/577\",[]],[\"name/578\",[408,66.447]],[\"comment/578\",[]],[\"name/579\",[409,66.447]],[\"comment/579\",[]],[\"name/580\",[410,66.447]],[\"comment/580\",[]],[\"name/581\",[411,66.447]],[\"comment/581\",[]],[\"name/582\",[412,66.447]],[\"comment/582\",[]],[\"name/583\",[413,66.447]],[\"comment/583\",[]],[\"name/584\",[414,66.447]],[\"comment/584\",[]],[\"name/585\",[415,66.447]],[\"comment/585\",[]],[\"name/586\",[416,66.447]],[\"comment/586\",[]],[\"name/587\",[103,61.338]],[\"comment/587\",[]],[\"name/588\",[417,66.447]],[\"comment/588\",[]],[\"name/589\",[418,61.338]],[\"comment/589\",[]],[\"name/590\",[42,29.475]],[\"comment/590\",[]],[\"name/591\",[419,55.46]],[\"comment/591\",[]],[\"name/592\",[420,50.352]],[\"comment/592\",[]],[\"name/593\",[113,61.338]],[\"comment/593\",[]],[\"name/594\",[421,66.447]],[\"comment/594\",[]],[\"name/595\",[422,61.338]],[\"comment/595\",[]],[\"name/596\",[42,29.475]],[\"comment/596\",[]],[\"name/597\",[423,61.338]],[\"comment/597\",[]],[\"name/598\",[42,29.475]],[\"comment/598\",[]],[\"name/599\",[424,66.447]],[\"comment/599\",[]],[\"name/600\",[425,66.447]],[\"comment/600\",[]],[\"name/601\",[419,55.46]],[\"comment/601\",[]],[\"name/602\",[17,40.797]],[\"comment/602\",[]],[\"name/603\",[426,66.447]],[\"comment/603\",[]],[\"name/604\",[427,66.447]],[\"comment/604\",[]],[\"name/605\",[428,66.447]],[\"comment/605\",[]],[\"name/606\",[429,57.974]],[\"comment/606\",[]],[\"name/607\",[430,61.338]],[\"comment/607\",[]],[\"name/608\",[420,50.352]],[\"comment/608\",[]],[\"name/609\",[431,61.338]],[\"comment/609\",[]],[\"name/610\",[432,61.338]],[\"comment/610\",[]],[\"name/611\",[433,61.338]],[\"comment/611\",[]],[\"name/612\",[434,61.338]],[\"comment/612\",[]],[\"name/613\",[17,40.797]],[\"comment/613\",[]],[\"name/614\",[420,50.352]],[\"comment/614\",[]],[\"name/615\",[435,66.447]],[\"comment/615\",[]],[\"name/616\",[430,61.338]],[\"comment/616\",[]],[\"name/617\",[420,50.352]],[\"comment/617\",[]],[\"name/618\",[431,61.338]],[\"comment/618\",[]],[\"name/619\",[432,61.338]],[\"comment/619\",[]],[\"name/620\",[433,61.338]],[\"comment/620\",[]],[\"name/621\",[434,61.338]],[\"comment/621\",[]],[\"name/622\",[17,40.797]],[\"comment/622\",[]],[\"name/623\",[436,66.447]],[\"comment/623\",[]],[\"name/624\",[437,57.974]],[\"comment/624\",[]],[\"name/625\",[438,57.974]],[\"comment/625\",[]],[\"name/626\",[439,57.974]],[\"comment/626\",[]],[\"name/627\",[440,57.974]],[\"comment/627\",[]],[\"name/628\",[441,57.974]],[\"comment/628\",[]],[\"name/629\",[442,57.974]],[\"comment/629\",[]],[\"name/630\",[443,57.974]],[\"comment/630\",[]],[\"name/631\",[444,66.447]],[\"comment/631\",[]],[\"name/632\",[445,66.447]],[\"comment/632\",[]],[\"name/633\",[446,66.447]],[\"comment/633\",[]],[\"name/634\",[447,66.447]],[\"comment/634\",[]],[\"name/635\",[448,66.447]],[\"comment/635\",[]],[\"name/636\",[449,66.447]],[\"comment/636\",[]],[\"name/637\",[450,66.447]],[\"comment/637\",[]],[\"name/638\",[451,66.447]],[\"comment/638\",[]],[\"name/639\",[452,66.447]],[\"comment/639\",[]],[\"name/640\",[453,66.447]],[\"comment/640\",[]],[\"name/641\",[454,66.447]],[\"comment/641\",[]],[\"name/642\",[455,66.447]],[\"comment/642\",[]],[\"name/643\",[456,66.447]],[\"comment/643\",[]],[\"name/644\",[457,66.447]],[\"comment/644\",[]],[\"name/645\",[458,66.447]],[\"comment/645\",[]],[\"name/646\",[459,57.974]],[\"comment/646\",[]],[\"name/647\",[460,66.447]],[\"comment/647\",[]],[\"name/648\",[461,66.447]],[\"comment/648\",[]],[\"name/649\",[462,66.447]],[\"comment/649\",[]],[\"name/650\",[463,57.974]],[\"comment/650\",[]],[\"name/651\",[464,57.974]],[\"comment/651\",[]],[\"name/652\",[465,66.447]],[\"comment/652\",[]],[\"name/653\",[466,57.974]],[\"comment/653\",[]],[\"name/654\",[467,66.447]],[\"comment/654\",[]],[\"name/655\",[468,57.974]],[\"comment/655\",[]],[\"name/656\",[469,66.447]],[\"comment/656\",[]],[\"name/657\",[470,66.447]],[\"comment/657\",[]],[\"name/658\",[471,66.447]],[\"comment/658\",[]],[\"name/659\",[472,66.447]],[\"comment/659\",[]],[\"name/660\",[42,29.475]],[\"comment/660\",[]],[\"name/661\",[33,40.797]],[\"comment/661\",[]],[\"name/662\",[42,29.475]],[\"comment/662\",[]],[\"name/663\",[473,57.974]],[\"comment/663\",[]],[\"name/664\",[474,66.447]],[\"comment/664\",[]],[\"name/665\",[475,57.974]],[\"comment/665\",[]],[\"name/666\",[476,57.974]],[\"comment/666\",[]],[\"name/667\",[477,66.447]],[\"comment/667\",[]],[\"name/668\",[478,57.974]],[\"comment/668\",[]],[\"name/669\",[479,66.447]],[\"comment/669\",[]],[\"name/670\",[11,40.297]],[\"comment/670\",[]],[\"name/671\",[480,66.447]],[\"comment/671\",[]],[\"name/672\",[43,49.101]],[\"comment/672\",[]],[\"name/673\",[231,57.974]],[\"comment/673\",[]],[\"name/674\",[247,57.974]],[\"comment/674\",[]],[\"name/675\",[481,66.447]],[\"comment/675\",[]],[\"name/676\",[482,66.447]],[\"comment/676\",[]],[\"name/677\",[483,66.447]],[\"comment/677\",[]],[\"name/678\",[99,61.338]],[\"comment/678\",[]],[\"name/679\",[484,66.447]],[\"comment/679\",[]],[\"name/680\",[19,53.454]],[\"comment/680\",[]],[\"name/681\",[485,66.447]],[\"comment/681\",[]],[\"name/682\",[486,66.447]],[\"comment/682\",[]],[\"name/683\",[17,40.797]],[\"comment/683\",[]],[\"name/684\",[487,66.447]],[\"comment/684\",[]],[\"name/685\",[488,57.974]],[\"comment/685\",[]],[\"name/686\",[489,66.447]],[\"comment/686\",[]],[\"name/687\",[297,53.454]],[\"comment/687\",[]],[\"name/688\",[490,66.447]],[\"comment/688\",[]],[\"name/689\",[9,46.987]],[\"comment/689\",[]],[\"name/690\",[43,49.101]],[\"comment/690\",[]],[\"name/691\",[231,57.974]],[\"comment/691\",[]],[\"name/692\",[247,57.974]],[\"comment/692\",[]],[\"name/693\",[491,66.447]],[\"comment/693\",[]],[\"name/694\",[492,66.447]],[\"comment/694\",[]],[\"name/695\",[493,66.447]],[\"comment/695\",[]],[\"name/696\",[494,66.447]],[\"comment/696\",[]],[\"name/697\",[495,66.447]],[\"comment/697\",[]],[\"name/698\",[55,51.783]],[\"comment/698\",[]],[\"name/699\",[17,40.797]],[\"comment/699\",[]],[\"name/700\",[496,61.338]],[\"comment/700\",[]],[\"name/701\",[39,50.352]],[\"comment/701\",[]],[\"name/702\",[497,61.338]],[\"comment/702\",[]],[\"name/703\",[498,61.338]],[\"comment/703\",[]],[\"name/704\",[499,61.338]],[\"comment/704\",[]],[\"name/705\",[500,61.338]],[\"comment/705\",[]],[\"name/706\",[11,40.297]],[\"comment/706\",[]],[\"name/707\",[32,44.474]],[\"comment/707\",[]],[\"name/708\",[33,40.797]],[\"comment/708\",[]],[\"name/709\",[35,47.988]],[\"comment/709\",[]],[\"name/710\",[501,55.46]],[\"comment/710\",[]],[\"name/711\",[17,40.797]],[\"comment/711\",[]],[\"name/712\",[496,61.338]],[\"comment/712\",[]],[\"name/713\",[39,50.352]],[\"comment/713\",[]],[\"name/714\",[497,61.338]],[\"comment/714\",[]],[\"name/715\",[498,61.338]],[\"comment/715\",[]],[\"name/716\",[499,61.338]],[\"comment/716\",[]],[\"name/717\",[500,61.338]],[\"comment/717\",[]],[\"name/718\",[11,40.297]],[\"comment/718\",[]],[\"name/719\",[32,44.474]],[\"comment/719\",[]],[\"name/720\",[33,40.797]],[\"comment/720\",[]],[\"name/721\",[35,47.988]],[\"comment/721\",[]],[\"name/722\",[502,66.447]],[\"comment/722\",[]],[\"name/723\",[5,50.352]],[\"comment/723\",[]],[\"name/724\",[42,29.475]],[\"comment/724\",[]],[\"name/725\",[56,61.338]],[\"comment/725\",[]],[\"name/726\",[503,66.447]],[\"comment/726\",[]],[\"name/727\",[504,66.447]],[\"comment/727\",[]],[\"name/728\",[5,50.352]],[\"comment/728\",[]],[\"name/729\",[42,29.475]],[\"comment/729\",[]],[\"name/730\",[420,50.352]],[\"comment/730\",[]],[\"name/731\",[505,66.447]],[\"comment/731\",[]],[\"name/732\",[506,66.447]],[\"comment/732\",[]],[\"name/733\",[507,66.447]],[\"comment/733\",[]],[\"name/734\",[508,66.447]],[\"comment/734\",[]],[\"name/735\",[509,66.447]],[\"comment/735\",[]],[\"name/736\",[510,66.447]],[\"comment/736\",[]],[\"name/737\",[511,57.974]],[\"comment/737\",[]],[\"name/738\",[512,57.974]],[\"comment/738\",[]],[\"name/739\",[390,55.46]],[\"comment/739\",[]],[\"name/740\",[513,57.974]],[\"comment/740\",[]],[\"name/741\",[514,57.974]],[\"comment/741\",[]],[\"name/742\",[515,57.974]],[\"comment/742\",[]],[\"name/743\",[516,57.974]],[\"comment/743\",[]],[\"name/744\",[517,57.974]],[\"comment/744\",[]],[\"name/745\",[518,57.974]],[\"comment/745\",[]],[\"name/746\",[519,57.974]],[\"comment/746\",[]],[\"name/747\",[520,66.447]],[\"comment/747\",[]],[\"name/748\",[264,53.454]],[\"comment/748\",[]],[\"name/749\",[521,57.974]],[\"comment/749\",[]],[\"name/750\",[522,66.447]],[\"comment/750\",[]],[\"name/751\",[523,66.447]],[\"comment/751\",[]],[\"name/752\",[524,66.447]],[\"comment/752\",[]],[\"name/753\",[525,57.974]],[\"comment/753\",[]],[\"name/754\",[42,29.475]],[\"comment/754\",[]],[\"name/755\",[9,46.987]],[\"comment/755\",[]],[\"name/756\",[33,40.797]],[\"comment/756\",[]],[\"name/757\",[526,61.338]],[\"comment/757\",[]],[\"name/758\",[42,29.475]],[\"comment/758\",[]],[\"name/759\",[527,55.46]],[\"comment/759\",[]],[\"name/760\",[528,55.46]],[\"comment/760\",[]],[\"name/761\",[79,47.988]],[\"comment/761\",[]],[\"name/762\",[529,57.974]],[\"comment/762\",[]],[\"name/763\",[42,29.475]],[\"comment/763\",[]],[\"name/764\",[9,46.987]],[\"comment/764\",[]],[\"name/765\",[33,40.797]],[\"comment/765\",[]],[\"name/766\",[526,61.338]],[\"comment/766\",[]],[\"name/767\",[42,29.475]],[\"comment/767\",[]],[\"name/768\",[527,55.46]],[\"comment/768\",[]],[\"name/769\",[528,55.46]],[\"comment/769\",[]],[\"name/770\",[79,47.988]],[\"comment/770\",[]],[\"name/771\",[530,66.447]],[\"comment/771\",[]],[\"name/772\",[531,57.974]],[\"comment/772\",[]],[\"name/773\",[42,29.475]],[\"comment/773\",[]],[\"name/774\",[11,40.297]],[\"comment/774\",[]],[\"name/775\",[169,53.454]],[\"comment/775\",[]],[\"name/776\",[33,40.797]],[\"comment/776\",[]],[\"name/777\",[271,53.454]],[\"comment/777\",[]],[\"name/778\",[532,57.974]],[\"comment/778\",[]],[\"name/779\",[527,55.46]],[\"comment/779\",[]],[\"name/780\",[528,55.46]],[\"comment/780\",[]],[\"name/781\",[79,47.988]],[\"comment/781\",[]],[\"name/782\",[533,57.974]],[\"comment/782\",[]],[\"name/783\",[42,29.475]],[\"comment/783\",[]],[\"name/784\",[11,40.297]],[\"comment/784\",[]],[\"name/785\",[169,53.454]],[\"comment/785\",[]],[\"name/786\",[33,40.797]],[\"comment/786\",[]],[\"name/787\",[271,53.454]],[\"comment/787\",[]],[\"name/788\",[532,57.974]],[\"comment/788\",[]],[\"name/789\",[527,55.46]],[\"comment/789\",[]],[\"name/790\",[528,55.46]],[\"comment/790\",[]],[\"name/791\",[79,47.988]],[\"comment/791\",[]],[\"name/792\",[534,66.447]],[\"comment/792\",[]],[\"name/793\",[535,57.974]],[\"comment/793\",[]],[\"name/794\",[536,66.447]],[\"comment/794\",[]],[\"name/795\",[537,66.447]],[\"comment/795\",[]],[\"name/796\",[171,61.338]],[\"comment/796\",[]],[\"name/797\",[538,66.447]],[\"comment/797\",[]],[\"name/798\",[539,57.974]],[\"comment/798\",[]],[\"name/799\",[42,29.475]],[\"comment/799\",[]],[\"name/800\",[11,40.297]],[\"comment/800\",[]],[\"name/801\",[33,40.797]],[\"comment/801\",[]],[\"name/802\",[271,53.454]],[\"comment/802\",[]],[\"name/803\",[169,53.454]],[\"comment/803\",[]],[\"name/804\",[532,57.974]],[\"comment/804\",[]],[\"name/805\",[540,66.447]],[\"comment/805\",[]],[\"name/806\",[291,61.338]],[\"comment/806\",[]],[\"name/807\",[79,47.988]],[\"comment/807\",[]],[\"name/808\",[6,57.974]],[\"comment/808\",[]],[\"name/809\",[541,61.338]],[\"comment/809\",[]],[\"name/810\",[542,66.447]],[\"comment/810\",[]],[\"name/811\",[543,57.974]],[\"comment/811\",[]],[\"name/812\",[42,29.475]],[\"comment/812\",[]],[\"name/813\",[544,57.974]],[\"comment/813\",[]],[\"name/814\",[42,29.475]],[\"comment/814\",[]],[\"name/815\",[545,66.447]],[\"comment/815\",[]],[\"name/816\",[546,57.974]],[\"comment/816\",[]],[\"name/817\",[264,53.454]],[\"comment/817\",[]],[\"name/818\",[266,57.974]],[\"comment/818\",[]],[\"name/819\",[547,66.447]],[\"comment/819\",[]],[\"name/820\",[548,66.447]],[\"comment/820\",[]],[\"name/821\",[151,55.46]],[\"comment/821\",[]],[\"name/822\",[87,49.101]],[\"comment/822\",[]],[\"name/823\",[42,29.475]],[\"comment/823\",[]],[\"name/824\",[220,53.454]],[\"comment/824\",[]],[\"name/825\",[221,55.46]],[\"comment/825\",[]],[\"name/826\",[222,57.974]],[\"comment/826\",[]],[\"name/827\",[43,49.101]],[\"comment/827\",[]],[\"name/828\",[250,57.974]],[\"comment/828\",[]],[\"name/829\",[45,61.338]],[\"comment/829\",[]],[\"name/830\",[356,57.974]],[\"comment/830\",[]],[\"name/831\",[87,49.101]],[\"comment/831\",[]],[\"name/832\",[549,66.447]],[\"comment/832\",[]],[\"name/833\",[550,61.338]],[\"comment/833\",[]],[\"name/834\",[551,66.447]],[\"comment/834\",[]],[\"name/835\",[552,66.447]],[\"comment/835\",[]],[\"name/836\",[553,66.447]],[\"comment/836\",[]],[\"name/837\",[28,61.338]],[\"comment/837\",[]],[\"name/838\",[554,66.447]],[\"comment/838\",[]],[\"name/839\",[212,53.454]],[\"comment/839\",[]],[\"name/840\",[555,66.447]],[\"comment/840\",[]],[\"name/841\",[556,66.447]],[\"comment/841\",[]],[\"name/842\",[557,66.447]],[\"comment/842\",[]],[\"name/843\",[357,57.974]],[\"comment/843\",[]],[\"name/844\",[541,61.338]],[\"comment/844\",[]],[\"name/845\",[558,66.447]],[\"comment/845\",[]],[\"name/846\",[226,57.974]],[\"comment/846\",[]],[\"name/847\",[559,66.447]],[\"comment/847\",[]],[\"name/848\",[560,66.447]],[\"comment/848\",[]],[\"name/849\",[42,29.475]],[\"comment/849\",[]],[\"name/850\",[358,61.338]],[\"comment/850\",[]],[\"name/851\",[561,66.447]],[\"comment/851\",[]],[\"name/852\",[42,29.475]],[\"comment/852\",[]],[\"name/853\",[266,57.974]],[\"comment/853\",[]],[\"name/854\",[42,29.475]],[\"comment/854\",[]],[\"name/855\",[562,66.447]],[\"comment/855\",[]],[\"name/856\",[563,66.447]],[\"comment/856\",[]],[\"name/857\",[564,66.447]],[\"comment/857\",[]],[\"name/858\",[363,55.46]],[\"comment/858\",[]],[\"name/859\",[364,55.46]],[\"comment/859\",[]],[\"name/860\",[228,55.46]],[\"comment/860\",[]],[\"name/861\",[565,57.974]],[\"comment/861\",[]],[\"name/862\",[566,57.974]],[\"comment/862\",[]],[\"name/863\",[567,57.974]],[\"comment/863\",[]],[\"name/864\",[568,57.974]],[\"comment/864\",[]],[\"name/865\",[42,29.475]],[\"comment/865\",[]],[\"name/866\",[569,66.447]],[\"comment/866\",[]],[\"name/867\",[570,66.447]],[\"comment/867\",[]],[\"name/868\",[571,66.447]],[\"comment/868\",[]],[\"name/869\",[572,66.447]],[\"comment/869\",[]],[\"name/870\",[573,66.447]],[\"comment/870\",[]],[\"name/871\",[574,66.447]],[\"comment/871\",[]],[\"name/872\",[575,66.447]],[\"comment/872\",[]],[\"name/873\",[576,66.447]],[\"comment/873\",[]],[\"name/874\",[577,66.447]],[\"comment/874\",[]],[\"name/875\",[578,66.447]],[\"comment/875\",[]],[\"name/876\",[579,66.447]],[\"comment/876\",[]],[\"name/877\",[580,66.447]],[\"comment/877\",[]],[\"name/878\",[581,66.447]],[\"comment/878\",[]],[\"name/879\",[582,66.447]],[\"comment/879\",[]],[\"name/880\",[583,66.447]],[\"comment/880\",[]],[\"name/881\",[584,66.447]],[\"comment/881\",[]],[\"name/882\",[550,61.338]],[\"comment/882\",[]],[\"name/883\",[585,66.447]],[\"comment/883\",[]],[\"name/884\",[32,44.474]],[\"comment/884\",[]],[\"name/885\",[42,29.475]],[\"comment/885\",[]],[\"name/886\",[586,66.447]],[\"comment/886\",[]],[\"name/887\",[587,66.447]],[\"comment/887\",[]],[\"name/888\",[588,66.447]],[\"comment/888\",[]],[\"name/889\",[589,57.974]],[\"comment/889\",[]],[\"name/890\",[42,29.475]],[\"comment/890\",[]],[\"name/891\",[590,66.447]],[\"comment/891\",[]],[\"name/892\",[591,66.447]],[\"comment/892\",[]],[\"name/893\",[592,66.447]],[\"comment/893\",[]],[\"name/894\",[593,66.447]],[\"comment/894\",[]],[\"name/895\",[594,57.974]],[\"comment/895\",[]],[\"name/896\",[42,29.475]],[\"comment/896\",[]],[\"name/897\",[595,66.447]],[\"comment/897\",[]],[\"name/898\",[596,66.447]],[\"comment/898\",[]],[\"name/899\",[597,66.447]],[\"comment/899\",[]],[\"name/900\",[598,66.447]],[\"comment/900\",[]],[\"name/901\",[599,66.447]],[\"comment/901\",[]],[\"name/902\",[600,66.447]],[\"comment/902\",[]],[\"name/903\",[601,66.447]],[\"comment/903\",[]],[\"name/904\",[92,53.454]],[\"comment/904\",[]],[\"name/905\",[1,61.338]],[\"comment/905\",[]],[\"name/906\",[2,61.338]],[\"comment/906\",[]],[\"name/907\",[3,61.338]],[\"comment/907\",[]],[\"name/908\",[92,53.454]],[\"comment/908\",[]],[\"name/909\",[9,46.987]],[\"comment/909\",[]],[\"name/910\",[8,55.46]],[\"comment/910\",[]],[\"name/911\",[11,40.297]],[\"comment/911\",[]],[\"name/912\",[297,53.454]],[\"comment/912\",[]],[\"name/913\",[488,57.974]],[\"comment/913\",[]],[\"name/914\",[478,57.974]],[\"comment/914\",[]],[\"name/915\",[19,53.454]],[\"comment/915\",[]],[\"name/916\",[67,55.46]],[\"comment/916\",[]],[\"name/917\",[70,53.454]],[\"comment/917\",[]],[\"name/918\",[71,55.46]],[\"comment/918\",[]],[\"name/919\",[68,53.454]],[\"comment/919\",[]],[\"name/920\",[77,55.46]],[\"comment/920\",[]],[\"name/921\",[75,55.46]],[\"comment/921\",[]],[\"name/922\",[73,55.46]],[\"comment/922\",[]],[\"name/923\",[420,50.352]],[\"comment/923\",[]],[\"name/924\",[429,57.974]],[\"comment/924\",[]],[\"name/925\",[468,57.974]],[\"comment/925\",[]],[\"name/926\",[466,57.974]],[\"comment/926\",[]],[\"name/927\",[473,57.974]],[\"comment/927\",[]],[\"name/928\",[459,57.974]],[\"comment/928\",[]],[\"name/929\",[602,61.338]],[\"comment/929\",[]],[\"name/930\",[475,57.974]],[\"comment/930\",[]],[\"name/931\",[476,57.974]],[\"comment/931\",[]],[\"name/932\",[437,57.974]],[\"comment/932\",[]],[\"name/933\",[438,57.974]],[\"comment/933\",[]],[\"name/934\",[439,57.974]],[\"comment/934\",[]],[\"name/935\",[440,57.974]],[\"comment/935\",[]],[\"name/936\",[441,57.974]],[\"comment/936\",[]],[\"name/937\",[442,57.974]],[\"comment/937\",[]],[\"name/938\",[443,57.974]],[\"comment/938\",[]],[\"name/939\",[463,57.974]],[\"comment/939\",[]],[\"name/940\",[464,57.974]],[\"comment/940\",[]],[\"name/941\",[419,55.46]],[\"comment/941\",[]],[\"name/942\",[49,53.454]],[\"comment/942\",[]],[\"name/943\",[50,51.783]],[\"comment/943\",[]],[\"name/944\",[52,53.454]],[\"comment/944\",[]],[\"name/945\",[53,55.46]],[\"comment/945\",[]],[\"name/946\",[31,53.454]],[\"comment/946\",[]],[\"name/947\",[36,55.46]],[\"comment/947\",[]],[\"name/948\",[38,55.46]],[\"comment/948\",[]],[\"name/949\",[55,51.783]],[\"comment/949\",[]],[\"name/950\",[501,55.46]],[\"comment/950\",[]],[\"name/951\",[264,53.454]],[\"comment/951\",[]],[\"name/952\",[521,57.974]],[\"comment/952\",[]],[\"name/953\",[511,57.974]],[\"comment/953\",[]],[\"name/954\",[512,57.974]],[\"comment/954\",[]],[\"name/955\",[390,55.46]],[\"comment/955\",[]],[\"name/956\",[513,57.974]],[\"comment/956\",[]],[\"name/957\",[514,57.974]],[\"comment/957\",[]],[\"name/958\",[515,57.974]],[\"comment/958\",[]],[\"name/959\",[516,57.974]],[\"comment/959\",[]],[\"name/960\",[517,57.974]],[\"comment/960\",[]],[\"name/961\",[518,57.974]],[\"comment/961\",[]],[\"name/962\",[519,57.974]],[\"comment/962\",[]],[\"name/963\",[79,47.988]],[\"comment/963\",[]],[\"name/964\",[81,57.974]],[\"comment/964\",[]],[\"name/965\",[83,57.974]],[\"comment/965\",[]],[\"name/966\",[84,57.974]],[\"comment/966\",[]],[\"name/967\",[9,46.987]],[\"comment/967\",[]],[\"name/968\",[8,55.46]],[\"comment/968\",[]],[\"name/969\",[11,40.297]],[\"comment/969\",[]],[\"name/970\",[297,53.454]],[\"comment/970\",[]],[\"name/971\",[488,57.974]],[\"comment/971\",[]],[\"name/972\",[478,57.974]],[\"comment/972\",[]],[\"name/973\",[19,53.454]],[\"comment/973\",[]],[\"name/974\",[67,55.46]],[\"comment/974\",[]],[\"name/975\",[70,53.454]],[\"comment/975\",[]],[\"name/976\",[71,55.46]],[\"comment/976\",[]],[\"name/977\",[68,53.454]],[\"comment/977\",[]],[\"name/978\",[77,55.46]],[\"comment/978\",[]],[\"name/979\",[75,55.46]],[\"comment/979\",[]],[\"name/980\",[73,55.46]],[\"comment/980\",[]],[\"name/981\",[49,53.454]],[\"comment/981\",[]],[\"name/982\",[50,51.783]],[\"comment/982\",[]],[\"name/983\",[52,53.454]],[\"comment/983\",[]],[\"name/984\",[53,55.46]],[\"comment/984\",[]],[\"name/985\",[31,53.454]],[\"comment/985\",[]],[\"name/986\",[36,55.46]],[\"comment/986\",[]],[\"name/987\",[38,55.46]],[\"comment/987\",[]],[\"name/988\",[55,51.783]],[\"comment/988\",[]],[\"name/989\",[501,55.46]],[\"comment/989\",[]],[\"name/990\",[49,53.454]],[\"comment/990\",[]],[\"name/991\",[50,51.783]],[\"comment/991\",[]],[\"name/992\",[52,53.454]],[\"comment/992\",[]],[\"name/993\",[53,55.46]],[\"comment/993\",[]],[\"name/994\",[31,53.454]],[\"comment/994\",[]],[\"name/995\",[36,55.46]],[\"comment/995\",[]],[\"name/996\",[38,55.46]],[\"comment/996\",[]],[\"name/997\",[55,51.783]],[\"comment/997\",[]],[\"name/998\",[501,55.46]],[\"comment/998\",[]],[\"name/999\",[59,61.338]],[\"comment/999\",[]],[\"name/1000\",[64,61.338]],[\"comment/1000\",[]],[\"name/1001\",[68,53.454]],[\"comment/1001\",[]],[\"name/1002\",[67,55.46]],[\"comment/1002\",[]],[\"name/1003\",[70,53.454]],[\"comment/1003\",[]],[\"name/1004\",[71,55.46]],[\"comment/1004\",[]],[\"name/1005\",[68,53.454]],[\"comment/1005\",[]],[\"name/1006\",[77,55.46]],[\"comment/1006\",[]],[\"name/1007\",[75,55.46]],[\"comment/1007\",[]],[\"name/1008\",[73,55.46]],[\"comment/1008\",[]],[\"name/1009\",[79,47.988]],[\"comment/1009\",[]],[\"name/1010\",[81,57.974]],[\"comment/1010\",[]],[\"name/1011\",[83,57.974]],[\"comment/1011\",[]],[\"name/1012\",[84,57.974]],[\"comment/1012\",[]],[\"name/1013\",[92,53.454]],[\"comment/1013\",[]],[\"name/1014\",[151,55.46]],[\"comment/1014\",[]],[\"name/1015\",[87,49.101]],[\"comment/1015\",[]],[\"name/1016\",[565,57.974]],[\"comment/1016\",[]],[\"name/1017\",[566,57.974]],[\"comment/1017\",[]],[\"name/1018\",[567,57.974]],[\"comment/1018\",[]],[\"name/1019\",[568,57.974]],[\"comment/1019\",[]],[\"name/1020\",[589,57.974]],[\"comment/1020\",[]],[\"name/1021\",[594,57.974]],[\"comment/1021\",[]],[\"name/1022\",[157,57.974]],[\"comment/1022\",[]],[\"name/1023\",[227,53.454]],[\"comment/1023\",[]],[\"name/1024\",[365,61.338]],[\"comment/1024\",[]],[\"name/1025\",[366,61.338]],[\"comment/1025\",[]],[\"name/1026\",[367,61.338]],[\"comment/1026\",[]],[\"name/1027\",[160,57.974]],[\"comment/1027\",[]],[\"name/1028\",[389,57.974]],[\"comment/1028\",[]],[\"name/1029\",[404,61.338]],[\"comment/1029\",[]],[\"name/1030\",[405,61.338]],[\"comment/1030\",[]],[\"name/1031\",[154,57.974]],[\"comment/1031\",[]],[\"name/1032\",[218,57.974]],[\"comment/1032\",[]],[\"name/1033\",[162,57.974]],[\"comment/1033\",[]],[\"name/1034\",[216,61.338]],[\"comment/1034\",[]],[\"name/1035\",[219,61.338]],[\"comment/1035\",[]],[\"name/1036\",[212,53.454]],[\"comment/1036\",[]],[\"name/1037\",[214,61.338]],[\"comment/1037\",[]],[\"name/1038\",[395,61.338]],[\"comment/1038\",[]],[\"name/1039\",[396,61.338]],[\"comment/1039\",[]],[\"name/1040\",[397,61.338]],[\"comment/1040\",[]],[\"name/1041\",[11,40.297]],[\"comment/1041\",[]],[\"name/1042\",[294,61.338]],[\"comment/1042\",[]],[\"name/1043\",[295,61.338]],[\"comment/1043\",[]],[\"name/1044\",[296,61.338]],[\"comment/1044\",[]],[\"name/1045\",[297,53.454]],[\"comment/1045\",[]],[\"name/1046\",[298,61.338]],[\"comment/1046\",[]],[\"name/1047\",[299,61.338]],[\"comment/1047\",[]],[\"name/1048\",[300,61.338]],[\"comment/1048\",[]],[\"name/1049\",[301,61.338]],[\"comment/1049\",[]],[\"name/1050\",[302,61.338]],[\"comment/1050\",[]],[\"name/1051\",[303,61.338]],[\"comment/1051\",[]],[\"name/1052\",[304,61.338]],[\"comment/1052\",[]],[\"name/1053\",[305,61.338]],[\"comment/1053\",[]],[\"name/1054\",[306,61.338]],[\"comment/1054\",[]],[\"name/1055\",[307,61.338]],[\"comment/1055\",[]],[\"name/1056\",[308,61.338]],[\"comment/1056\",[]],[\"name/1057\",[309,61.338]],[\"comment/1057\",[]],[\"name/1058\",[310,61.338]],[\"comment/1058\",[]],[\"name/1059\",[311,61.338]],[\"comment/1059\",[]],[\"name/1060\",[312,61.338]],[\"comment/1060\",[]],[\"name/1061\",[313,61.338]],[\"comment/1061\",[]],[\"name/1062\",[314,61.338]],[\"comment/1062\",[]],[\"name/1063\",[315,61.338]],[\"comment/1063\",[]],[\"name/1064\",[50,51.783]],[\"comment/1064\",[]],[\"name/1065\",[316,61.338]],[\"comment/1065\",[]],[\"name/1066\",[317,61.338]],[\"comment/1066\",[]],[\"name/1067\",[318,61.338]],[\"comment/1067\",[]],[\"name/1068\",[319,61.338]],[\"comment/1068\",[]],[\"name/1069\",[320,61.338]],[\"comment/1069\",[]],[\"name/1070\",[321,61.338]],[\"comment/1070\",[]],[\"name/1071\",[322,61.338]],[\"comment/1071\",[]],[\"name/1072\",[323,61.338]],[\"comment/1072\",[]],[\"name/1073\",[324,61.338]],[\"comment/1073\",[]],[\"name/1074\",[325,61.338]],[\"comment/1074\",[]],[\"name/1075\",[326,61.338]],[\"comment/1075\",[]],[\"name/1076\",[327,61.338]],[\"comment/1076\",[]],[\"name/1077\",[328,61.338]],[\"comment/1077\",[]],[\"name/1078\",[329,61.338]],[\"comment/1078\",[]],[\"name/1079\",[330,61.338]],[\"comment/1079\",[]],[\"name/1080\",[331,61.338]],[\"comment/1080\",[]],[\"name/1081\",[332,61.338]],[\"comment/1081\",[]],[\"name/1082\",[333,61.338]],[\"comment/1082\",[]],[\"name/1083\",[334,61.338]],[\"comment/1083\",[]],[\"name/1084\",[335,61.338]],[\"comment/1084\",[]],[\"name/1085\",[418,61.338]],[\"comment/1085\",[]],[\"name/1086\",[535,57.974]],[\"comment/1086\",[]],[\"name/1087\",[546,57.974]],[\"comment/1087\",[]],[\"name/1088\",[539,57.974]],[\"comment/1088\",[]],[\"name/1089\",[543,57.974]],[\"comment/1089\",[]],[\"name/1090\",[544,57.974]],[\"comment/1090\",[]],[\"name/1091\",[525,57.974]],[\"comment/1091\",[]],[\"name/1092\",[529,57.974]],[\"comment/1092\",[]],[\"name/1093\",[531,57.974]],[\"comment/1093\",[]],[\"name/1094\",[533,57.974]],[\"comment/1094\",[]],[\"name/1095\",[337,61.338]],[\"comment/1095\",[]],[\"name/1096\",[338,61.338]],[\"comment/1096\",[]],[\"name/1097\",[341,61.338]],[\"comment/1097\",[]],[\"name/1098\",[348,61.338]],[\"comment/1098\",[]],[\"name/1099\",[422,61.338]],[\"comment/1099\",[]],[\"name/1100\",[423,61.338]],[\"comment/1100\",[]],[\"name/1101\",[384,61.338]],[\"comment/1101\",[]],[\"name/1102\",[603,61.338]],[\"comment/1102\",[]],[\"name/1103\",[420,50.352]],[\"comment/1103\",[]],[\"name/1104\",[429,57.974]],[\"comment/1104\",[]],[\"name/1105\",[468,57.974]],[\"comment/1105\",[]],[\"name/1106\",[466,57.974]],[\"comment/1106\",[]],[\"name/1107\",[473,57.974]],[\"comment/1107\",[]],[\"name/1108\",[459,57.974]],[\"comment/1108\",[]],[\"name/1109\",[602,61.338]],[\"comment/1109\",[]],[\"name/1110\",[475,57.974]],[\"comment/1110\",[]],[\"name/1111\",[476,57.974]],[\"comment/1111\",[]],[\"name/1112\",[437,57.974]],[\"comment/1112\",[]],[\"name/1113\",[438,57.974]],[\"comment/1113\",[]],[\"name/1114\",[439,57.974]],[\"comment/1114\",[]],[\"name/1115\",[440,57.974]],[\"comment/1115\",[]],[\"name/1116\",[441,57.974]],[\"comment/1116\",[]],[\"name/1117\",[442,57.974]],[\"comment/1117\",[]],[\"name/1118\",[443,57.974]],[\"comment/1118\",[]],[\"name/1119\",[603,61.338]],[\"comment/1119\",[]],[\"name/1120\",[463,57.974]],[\"comment/1120\",[]],[\"name/1121\",[464,57.974]],[\"comment/1121\",[]],[\"name/1122\",[419,55.46]],[\"comment/1122\",[]],[\"name/1123\",[264,53.454]],[\"comment/1123\",[]],[\"name/1124\",[521,57.974]],[\"comment/1124\",[]],[\"name/1125\",[511,57.974]],[\"comment/1125\",[]],[\"name/1126\",[512,57.974]],[\"comment/1126\",[]],[\"name/1127\",[390,55.46]],[\"comment/1127\",[]],[\"name/1128\",[513,57.974]],[\"comment/1128\",[]],[\"name/1129\",[514,57.974]],[\"comment/1129\",[]],[\"name/1130\",[515,57.974]],[\"comment/1130\",[]],[\"name/1131\",[516,57.974]],[\"comment/1131\",[]],[\"name/1132\",[517,57.974]],[\"comment/1132\",[]],[\"name/1133\",[518,57.974]],[\"comment/1133\",[]],[\"name/1134\",[519,57.974]],[\"comment/1134\",[]],[\"name/1135\",[535,57.974]],[\"comment/1135\",[]],[\"name/1136\",[546,57.974]],[\"comment/1136\",[]],[\"name/1137\",[539,57.974]],[\"comment/1137\",[]],[\"name/1138\",[543,57.974]],[\"comment/1138\",[]],[\"name/1139\",[544,57.974]],[\"comment/1139\",[]],[\"name/1140\",[525,57.974]],[\"comment/1140\",[]],[\"name/1141\",[529,57.974]],[\"comment/1141\",[]],[\"name/1142\",[531,57.974]],[\"comment/1142\",[]],[\"name/1143\",[533,57.974]],[\"comment/1143\",[]],[\"name/1144\",[151,55.46]],[\"comment/1144\",[]],[\"name/1145\",[87,49.101]],[\"comment/1145\",[]],[\"name/1146\",[565,57.974]],[\"comment/1146\",[]],[\"name/1147\",[566,57.974]],[\"comment/1147\",[]],[\"name/1148\",[567,57.974]],[\"comment/1148\",[]],[\"name/1149\",[568,57.974]],[\"comment/1149\",[]],[\"name/1150\",[589,57.974]],[\"comment/1150\",[]],[\"name/1151\",[594,57.974]],[\"comment/1151\",[]]],\"invertedIndex\":[[\"__name\",{\"_index\":205,\"name\":{\"287\":{}},\"comment\":{}}],[\"__type\",{\"_index\":42,\"name\":{\"58\":{},\"61\":{},\"67\":{},\"99\":{},\"101\":{},\"108\":{},\"208\":{},\"210\":{},\"212\":{},\"214\":{},\"216\":{},\"218\":{},\"305\":{},\"312\":{},\"317\":{},\"330\":{},\"367\":{},\"378\":{},\"384\":{},\"447\":{},\"449\":{},\"452\":{},\"454\":{},\"457\":{},\"497\":{},\"511\":{},\"516\":{},\"518\":{},\"519\":{},\"526\":{},\"528\":{},\"533\":{},\"537\":{},\"551\":{},\"553\":{},\"575\":{},\"590\":{},\"596\":{},\"598\":{},\"660\":{},\"662\":{},\"724\":{},\"729\":{},\"754\":{},\"758\":{},\"763\":{},\"767\":{},\"773\":{},\"783\":{},\"799\":{},\"812\":{},\"814\":{},\"823\":{},\"849\":{},\"852\":{},\"854\":{},\"865\":{},\"885\":{},\"890\":{},\"896\":{}},\"comment\":{}}],[\"_current\",{\"_index\":21,\"name\":{\"22\":{}},\"comment\":{}}],[\"_framework\",{\"_index\":22,\"name\":{\"23\":{}},\"comment\":{}}],[\"_fvid\",{\"_index\":399,\"name\":{\"558\":{}},\"comment\":{}}],[\"_id\",{\"_index\":220,\"name\":{\"318\":{},\"468\":{},\"538\":{},\"557\":{},\"824\":{}},\"comment\":{}}],[\"_vid\",{\"_index\":350,\"name\":{\"469\":{}},\"comment\":{}}],[\"access\",{\"_index\":212,\"name\":{\"304\":{},\"477\":{},\"566\":{},\"839\":{},\"1036\":{}},\"comment\":{}}],[\"accessinfo\",{\"_index\":128,\"name\":{\"191\":{},\"274\":{}},\"comment\":{}}],[\"accesstype\",{\"_index\":214,\"name\":{\"308\":{},\"1037\":{}},\"comment\":{}}],[\"action\",{\"_index\":352,\"name\":{\"475\":{}},\"comment\":{}}],[\"actionid\",{\"_index\":162,\"name\":{\"234\":{},\"310\":{},\"1033\":{}},\"comment\":{}}],[\"actioninfo\",{\"_index\":193,\"name\":{\"269\":{}},\"comment\":{}}],[\"actionsettings\",{\"_index\":216,\"name\":{\"311\":{},\"1034\":{}},\"comment\":{}}],[\"actionsurl\",{\"_index\":161,\"name\":{\"233\":{}},\"comment\":{}}],[\"actionurl\",{\"_index\":163,\"name\":{\"235\":{}},\"comment\":{}}],[\"addcomponent\",{\"_index\":14,\"name\":{\"15\":{}},\"comment\":{}}],[\"adddecorator\",{\"_index\":13,\"name\":{\"14\":{}},\"comment\":{}}],[\"addons\",{\"_index\":289,\"name\":{\"396\":{}},\"comment\":{}}],[\"address\",{\"_index\":340,\"name\":{\"451\":{},\"456\":{}},\"comment\":{}}],[\"address1\",{\"_index\":342,\"name\":{\"458\":{}},\"comment\":{}}],[\"address2\",{\"_index\":343,\"name\":{\"459\":{}},\"comment\":{}}],[\"addresscomponent\",{\"_index\":299,\"name\":{\"407\":{},\"1047\":{}},\"comment\":{}}],[\"addresscomponentdataobject\",{\"_index\":348,\"name\":{\"464\":{},\"1098\":{}},\"comment\":{}}],[\"addtemplate\",{\"_index\":24,\"name\":{\"25\":{}},\"comment\":{}}],[\"addtemplates\",{\"_index\":23,\"name\":{\"24\":{}},\"comment\":{}}],[\"admin\",{\"_index\":392,\"name\":{\"542\":{}},\"comment\":{}}],[\"after\",{\"_index\":528,\"name\":{\"760\":{},\"769\":{},\"780\":{},\"790\":{}},\"comment\":{}}],[\"allowcalculateoverride\",{\"_index\":283,\"name\":{\"390\":{}},\"comment\":{}}],[\"allowmultiplemasks\",{\"_index\":288,\"name\":{\"395\":{}},\"comment\":{}}],[\"apicalls\",{\"_index\":552,\"name\":{\"835\":{}},\"comment\":{}}],[\"apiservers\",{\"_index\":580,\"name\":{\"877\":{}},\"comment\":{}}],[\"appendto\",{\"_index\":445,\"name\":{\"632\":{}},\"comment\":{}}],[\"arraycomponent\",{\"_index\":478,\"name\":{\"668\":{},\"914\":{},\"972\":{}},\"comment\":{}}],[\"association\",{\"_index\":217,\"name\":{\"313\":{}},\"comment\":{}}],[\"asynccomponentdatacallback\",{\"_index\":422,\"name\":{\"595\":{},\"1099\":{}},\"comment\":{}}],[\"attach\",{\"_index\":498,\"name\":{\"703\":{},\"715\":{}},\"comment\":{}}],[\"attributes\",{\"_index\":262,\"name\":{\"364\":{}},\"comment\":{}}],[\"attrs\",{\"_index\":47,\"name\":{\"64\":{}},\"comment\":{}}],[\"authurl\",{\"_index\":95,\"name\":{\"157\":{}},\"comment\":{}}],[\"autocompleteaddresscomponentdataobject\",{\"_index\":338,\"name\":{\"448\":{},\"1096\":{}},\"comment\":{}}],[\"autofocus\",{\"_index\":257,\"name\":{\"359\":{}},\"comment\":{}}],[\"availableactions\",{\"_index\":192,\"name\":{\"268\":{}},\"comment\":{}}],[\"base\",{\"_index\":29,\"name\":{\"32\":{},\"148\":{},\"220\":{}},\"comment\":{}}],[\"base/array/arraycomponent\",{\"_index\":477,\"name\":{\"667\":{}},\"comment\":{}}],[\"base/component/component\",{\"_index\":479,\"name\":{\"669\":{}},\"comment\":{}}],[\"base/components\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"base/data/datacomponent\",{\"_index\":487,\"name\":{\"684\":{}},\"comment\":{}}],[\"base/nested/nestedcomponent\",{\"_index\":489,\"name\":{\"686\":{}},\"comment\":{}}],[\"base/template\",{\"_index\":18,\"name\":{\"19\":{}},\"comment\":{}}],[\"basecomponent\",{\"_index\":230,\"name\":{\"329\":{}},\"comment\":{}}],[\"baseevaluator\",{\"_index\":429,\"name\":{\"606\":{},\"924\":{},\"1104\":{}},\"comment\":{}}],[\"baseurl\",{\"_index\":93,\"name\":{\"155\":{}},\"comment\":{}}],[\"before\",{\"_index\":527,\"name\":{\"759\":{},\"768\":{},\"779\":{},\"789\":{}},\"comment\":{}}],[\"billing\",{\"_index\":551,\"name\":{\"834\":{}},\"comment\":{}}],[\"boolvalue\",{\"_index\":476,\"name\":{\"666\":{},\"931\":{},\"1111\":{}},\"comment\":{}}],[\"bootstrap\",{\"_index\":56,\"name\":{\"109\":{},\"725\":{}},\"comment\":{}}],[\"bootstrapsizing\",{\"_index\":295,\"name\":{\"403\":{},\"1043\":{}},\"comment\":{}}],[\"browsername\",{\"_index\":413,\"name\":{\"583\":{}},\"comment\":{}}],[\"builder\",{\"_index\":361,\"name\":{\"489\":{}},\"comment\":{}}],[\"buttoncomponent\",{\"_index\":300,\"name\":{\"408\":{},\"1048\":{}},\"comment\":{}}],[\"cache\",{\"_index\":98,\"name\":{\"160\":{}},\"comment\":{}}],[\"calculateserver\",{\"_index\":261,\"name\":{\"363\":{}},\"comment\":{}}],[\"calculatevalue\",{\"_index\":260,\"name\":{\"362\":{}},\"comment\":{}}],[\"calendarpickeroptions\",{\"_index\":294,\"name\":{\"402\":{},\"1042\":{}},\"comment\":{}}],[\"calls\",{\"_index\":590,\"name\":{\"891\":{}},\"comment\":{}}],[\"cansubmit\",{\"_index\":200,\"name\":{\"281\":{}},\"comment\":{}}],[\"change\",{\"_index\":536,\"name\":{\"794\":{}},\"comment\":{}}],[\"checkboxcomponent\",{\"_index\":301,\"name\":{\"409\":{},\"1049\":{}},\"comment\":{}}],[\"checked\",{\"_index\":591,\"name\":{\"892\":{}},\"comment\":{}}],[\"city\",{\"_index\":344,\"name\":{\"460\":{}},\"comment\":{}}],[\"classname\",{\"_index\":48,\"name\":{\"65\":{}},\"comment\":{}}],[\"clearcache\",{\"_index\":127,\"name\":{\"190\":{}},\"comment\":{}}],[\"clearonhide\",{\"_index\":243,\"name\":{\"345\":{}},\"comment\":{}}],[\"cloneresponse\",{\"_index\":140,\"name\":{\"203\":{}},\"comment\":{}}],[\"collection\",{\"_index\":368,\"name\":{\"498\":{}},\"comment\":{}}],[\"columnscomponent\",{\"_index\":302,\"name\":{\"410\":{},\"1050\":{}},\"comment\":{}}],[\"component\",{\"_index\":11,\"name\":{\"12\":{},\"36\":{},\"43\":{},\"51\":{},\"70\":{},\"77\":{},\"86\":{},\"93\":{},\"123\":{},\"401\":{},\"520\":{},\"670\":{},\"706\":{},\"718\":{},\"774\":{},\"784\":{},\"800\":{},\"911\":{},\"969\":{},\"1041\":{}},\"comment\":{}}],[\"componentdatacallback\",{\"_index\":423,\"name\":{\"597\":{},\"1100\":{}},\"comment\":{}}],[\"componentinterface\",{\"_index\":486,\"name\":{\"682\":{}},\"comment\":{}}],[\"componentoptions\",{\"_index\":481,\"name\":{\"675\":{}},\"comment\":{}}],[\"components\",{\"_index\":9,\"name\":{\"9\":{},\"10\":{},\"97\":{},\"100\":{},\"482\":{},\"689\":{},\"755\":{},\"764\":{},\"909\":{},\"967\":{}},\"comment\":{}}],[\"components/__tests__/datatable.test\",{\"_index\":491,\"name\":{\"693\":{}},\"comment\":{}}],[\"components/__tests__/datavalue.test\",{\"_index\":492,\"name\":{\"694\":{}},\"comment\":{}}],[\"components/__tests__/html.test\",{\"_index\":493,\"name\":{\"695\":{}},\"comment\":{}}],[\"components/__tests__/htmlcontainer.test\",{\"_index\":494,\"name\":{\"696\":{}},\"comment\":{}}],[\"components/datatable\",{\"_index\":30,\"name\":{\"33\":{}},\"comment\":{}}],[\"components/datavalue\",{\"_index\":37,\"name\":{\"48\":{}},\"comment\":{}}],[\"components/html\",{\"_index\":40,\"name\":{\"56\":{}},\"comment\":{}}],[\"components/htmlcontainer\",{\"_index\":51,\"name\":{\"82\":{}},\"comment\":{}}],[\"components/input/input\",{\"_index\":495,\"name\":{\"697\":{}},\"comment\":{}}],[\"components/templates\",{\"_index\":502,\"name\":{\"722\":{}},\"comment\":{}}],[\"components/test\",{\"_index\":57,\"name\":{\"110\":{}},\"comment\":{}}],[\"componentschema\",{\"_index\":480,\"name\":{\"671\":{}},\"comment\":{}}],[\"condensedmode\",{\"_index\":369,\"name\":{\"499\":{}},\"comment\":{}}],[\"condition\",{\"_index\":225,\"name\":{\"323\":{}},\"comment\":{}}],[\"conditional\",{\"_index\":272,\"name\":{\"377\":{}},\"comment\":{}}],[\"config\",{\"_index\":541,\"name\":{\"809\":{},\"844\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":17,\"name\":{\"18\":{},\"31\":{},\"35\":{},\"42\":{},\"50\":{},\"69\":{},\"76\":{},\"84\":{},\"91\":{},\"113\":{},\"126\":{},\"219\":{},\"301\":{},\"602\":{},\"613\":{},\"622\":{},\"683\":{},\"699\":{},\"711\":{}},\"comment\":{}}],[\"containercomponent\",{\"_index\":298,\"name\":{\"406\":{},\"1046\":{}},\"comment\":{}}],[\"content\",{\"_index\":46,\"name\":{\"63\":{}},\"comment\":{}}],[\"contentcomponent\",{\"_index\":303,\"name\":{\"411\":{},\"1051\":{}},\"comment\":{}}],[\"context\",{\"_index\":60,\"name\":{\"114\":{}},\"comment\":{}}],[\"controller\",{\"_index\":360,\"name\":{\"488\":{}},\"comment\":{}}],[\"convertformattomoment\",{\"_index\":438,\"name\":{\"625\":{},\"933\":{},\"1113\":{}},\"comment\":{}}],[\"core\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"country\",{\"_index\":346,\"name\":{\"462\":{}},\"comment\":{}}],[\"create\",{\"_index\":12,\"name\":{\"13\":{}},\"comment\":{}}],[\"created\",{\"_index\":363,\"name\":{\"491\":{},\"545\":{},\"570\":{},\"858\":{}},\"comment\":{}}],[\"css\",{\"_index\":562,\"name\":{\"855\":{}},\"comment\":{}}],[\"current\",{\"_index\":27,\"name\":{\"28\":{}},\"comment\":{}}],[\"currenttimezone\",{\"_index\":437,\"name\":{\"624\":{},\"932\":{},\"1112\":{}},\"comment\":{}}],[\"currentuser\",{\"_index\":130,\"name\":{\"193\":{},\"273\":{}},\"comment\":{}}],[\"custom\",{\"_index\":266,\"name\":{\"369\":{},\"818\":{},\"853\":{}},\"comment\":{}}],[\"customclass\",{\"_index\":235,\"name\":{\"337\":{}},\"comment\":{}}],[\"customconditional\",{\"_index\":276,\"name\":{\"382\":{}},\"comment\":{}}],[\"customdefaultvalue\",{\"_index\":259,\"name\":{\"361\":{}},\"comment\":{}}],[\"custommessage\",{\"_index\":268,\"name\":{\"371\":{}},\"comment\":{}}],[\"customprivate\",{\"_index\":267,\"name\":{\"370\":{}},\"comment\":{}}],[\"data\",{\"_index\":33,\"name\":{\"38\":{},\"45\":{},\"53\":{},\"72\":{},\"79\":{},\"88\":{},\"95\":{},\"125\":{},\"521\":{},\"529\":{},\"563\":{},\"661\":{},\"708\":{},\"720\":{},\"756\":{},\"765\":{},\"776\":{},\"786\":{},\"801\":{}},\"comment\":{}}],[\"database\",{\"_index\":419,\"name\":{\"591\":{},\"601\":{},\"941\":{},\"1122\":{}},\"comment\":{}}],[\"datacomponent\",{\"_index\":488,\"name\":{\"685\":{},\"913\":{},\"971\":{}},\"comment\":{}}],[\"datagridcomponent\",{\"_index\":306,\"name\":{\"414\":{},\"1054\":{}},\"comment\":{}}],[\"datagridlabel\",{\"_index\":248,\"name\":{\"350\":{}},\"comment\":{}}],[\"datamapcomponent\",{\"_index\":307,\"name\":{\"415\":{},\"1055\":{}},\"comment\":{}}],[\"dataobject\",{\"_index\":337,\"name\":{\"446\":{},\"1095\":{}},\"comment\":{}}],[\"datatable\",{\"_index\":31,\"name\":{\"34\":{},\"104\":{},\"946\":{},\"985\":{},\"994\":{}},\"comment\":{}}],[\"datatablecomponent\",{\"_index\":36,\"name\":{\"41\":{},\"947\":{},\"986\":{},\"995\":{}},\"comment\":{}}],[\"datavalue\",{\"_index\":54,\"name\":{\"105\":{}},\"comment\":{}}],[\"datavaluecomponent\",{\"_index\":38,\"name\":{\"49\":{},\"948\":{},\"987\":{},\"996\":{}},\"comment\":{}}],[\"datetimecomponent\",{\"_index\":308,\"name\":{\"416\":{},\"1056\":{}},\"comment\":{}}],[\"daycomponent\",{\"_index\":309,\"name\":{\"417\":{},\"1057\":{}},\"comment\":{}}],[\"dayjs\",{\"_index\":603,\"name\":{\"1102\":{},\"1119\":{}},\"comment\":{}}],[\"dbindex\",{\"_index\":258,\"name\":{\"360\":{}},\"comment\":{}}],[\"decorators\",{\"_index\":10,\"name\":{\"11\":{}},\"comment\":{}}],[\"default\",{\"_index\":5,\"name\":{\"5\":{},\"98\":{},\"138\":{},\"291\":{},\"541\":{},\"723\":{},\"728\":{}},\"comment\":{}}],[\"delete\",{\"_index\":170,\"name\":{\"244\":{}},\"comment\":{}}],[\"deleteaction\",{\"_index\":190,\"name\":{\"266\":{}},\"comment\":{}}],[\"deleted\",{\"_index\":228,\"name\":{\"327\":{},\"493\":{},\"572\":{},\"860\":{}},\"comment\":{}}],[\"deleteform\",{\"_index\":182,\"name\":{\"258\":{}},\"comment\":{}}],[\"deleteproject\",{\"_index\":175,\"name\":{\"251\":{}},\"comment\":{}}],[\"deleterole\",{\"_index\":178,\"name\":{\"254\":{}},\"comment\":{}}],[\"deletesubmission\",{\"_index\":186,\"name\":{\"262\":{}},\"comment\":{}}],[\"delted\",{\"_index\":393,\"name\":{\"547\":{}},\"comment\":{}}],[\"deregister\",{\"_index\":208,\"name\":{\"290\":{}},\"comment\":{}}],[\"deregisterplugin\",{\"_index\":144,\"name\":{\"207\":{},\"295\":{}},\"comment\":{}}],[\"description\",{\"_index\":250,\"name\":{\"352\":{},\"540\":{},\"828\":{}},\"comment\":{}}],[\"detach\",{\"_index\":499,\"name\":{\"704\":{},\"716\":{}},\"comment\":{}}],[\"disableautocomplete\",{\"_index\":370,\"name\":{\"500\":{}},\"comment\":{}}],[\"disabled\",{\"_index\":256,\"name\":{\"358\":{}},\"comment\":{}}],[\"display\",{\"_index\":351,\"name\":{\"474\":{}},\"comment\":{}}],[\"dom\",{\"_index\":602,\"name\":{\"929\":{},\"1109\":{}},\"comment\":{}}],[\"eachcomponent\",{\"_index\":455,\"name\":{\"642\":{}},\"comment\":{}}],[\"eachcomponentasync\",{\"_index\":456,\"name\":{\"643\":{}},\"comment\":{}}],[\"eachcomponentdata\",{\"_index\":458,\"name\":{\"645\":{}},\"comment\":{}}],[\"eachcomponentdataasync\",{\"_index\":457,\"name\":{\"644\":{}},\"comment\":{}}],[\"editgridcomponent\",{\"_index\":310,\"name\":{\"418\":{},\"1058\":{}},\"comment\":{}}],[\"ejs\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"element\",{\"_index\":496,\"name\":{\"700\":{},\"712\":{}},\"comment\":{}}],[\"emailcomponent\",{\"_index\":311,\"name\":{\"419\":{},\"1059\":{}},\"comment\":{}}],[\"emails\",{\"_index\":574,\"name\":{\"871\":{}},\"comment\":{}}],[\"empty\",{\"_index\":448,\"name\":{\"635\":{}},\"comment\":{}}],[\"encrypted\",{\"_index\":284,\"name\":{\"391\":{}},\"comment\":{}}],[\"eq\",{\"_index\":275,\"name\":{\"381\":{}},\"comment\":{}}],[\"error\",{\"_index\":65,\"name\":{\"119\":{}},\"comment\":{}}],[\"error/fielderror\",{\"_index\":58,\"name\":{\"111\":{}},\"comment\":{}}],[\"error/validatorerror\",{\"_index\":63,\"name\":{\"117\":{}},\"comment\":{}}],[\"errorkeyormessage\",{\"_index\":61,\"name\":{\"115\":{}},\"comment\":{}}],[\"errorlabel\",{\"_index\":251,\"name\":{\"353\":{}},\"comment\":{}}],[\"errors\",{\"_index\":291,\"name\":{\"398\":{},\"806\":{}},\"comment\":{}}],[\"escaperegexcharacters\",{\"_index\":475,\"name\":{\"665\":{},\"930\":{},\"1110\":{}},\"comment\":{}}],[\"evalcontext\",{\"_index\":385,\"name\":{\"517\":{}},\"comment\":{}}],[\"evaluate\",{\"_index\":433,\"name\":{\"611\":{},\"620\":{}},\"comment\":{}}],[\"evaluator\",{\"_index\":420,\"name\":{\"592\":{},\"608\":{},\"614\":{},\"617\":{},\"730\":{},\"923\":{},\"1103\":{}},\"comment\":{}}],[\"eventemitter\",{\"_index\":67,\"name\":{\"121\":{},\"916\":{},\"974\":{},\"1002\":{}},\"comment\":{}}],[\"events\",{\"_index\":100,\"name\":{\"162\":{}},\"comment\":{}}],[\"exceeds\",{\"_index\":592,\"name\":{\"893\":{}},\"comment\":{}}],[\"execute\",{\"_index\":434,\"name\":{\"612\":{},\"621\":{}},\"comment\":{}}],[\"extendtemplate\",{\"_index\":25,\"name\":{\"26\":{}},\"comment\":{}}],[\"externalids\",{\"_index\":401,\"name\":{\"567\":{}},\"comment\":{}}],[\"externaltokens\",{\"_index\":402,\"name\":{\"568\":{}},\"comment\":{}}],[\"fetch\",{\"_index\":102,\"name\":{\"164\":{}},\"comment\":{}}],[\"fielderror\",{\"_index\":59,\"name\":{\"112\":{},\"999\":{}},\"comment\":{}}],[\"fieldmatchaccess\",{\"_index\":355,\"name\":{\"479\":{}},\"comment\":{}}],[\"fieldsetcomponent\",{\"_index\":312,\"name\":{\"420\":{},\"1060\":{}},\"comment\":{}}],[\"filecomponent\",{\"_index\":313,\"name\":{\"421\":{},\"1061\":{}},\"comment\":{}}],[\"findone\",{\"_index\":426,\"name\":{\"603\":{}},\"comment\":{}}],[\"flattencomponents\",{\"_index\":452,\"name\":{\"639\":{}},\"comment\":{}}],[\"fontsize\",{\"_index\":371,\"name\":{\"501\":{}},\"comment\":{}}],[\"form\",{\"_index\":227,\"name\":{\"326\":{},\"467\":{},\"530\":{},\"559\":{},\"1023\":{}},\"comment\":{}}],[\"formaction\",{\"_index\":219,\"name\":{\"316\":{},\"1035\":{}},\"comment\":{}}],[\"formatdate\",{\"_index\":440,\"name\":{\"627\":{},\"935\":{},\"1115\":{}},\"comment\":{}}],[\"formcomponent\",{\"_index\":314,\"name\":{\"422\":{},\"1062\":{}},\"comment\":{}}],[\"formdefaults\",{\"_index\":560,\"name\":{\"848\":{}},\"comment\":{}}],[\"formdisplay\",{\"_index\":366,\"name\":{\"495\":{},\"1025\":{}},\"comment\":{}}],[\"formid\",{\"_index\":157,\"name\":{\"229\":{},\"466\":{},\"1022\":{}},\"comment\":{}}],[\"formio\",{\"_index\":92,\"name\":{\"154\":{},\"293\":{},\"904\":{},\"908\":{},\"1013\":{}},\"comment\":{}}],[\"formiooptions\",{\"_index\":86,\"name\":{\"147\":{}},\"comment\":{}}],[\"formiopathtype\",{\"_index\":89,\"name\":{\"151\":{}},\"comment\":{}}],[\"formmanagers\",{\"_index\":582,\"name\":{\"879\":{}},\"comment\":{}}],[\"formmodule\",{\"_index\":564,\"name\":{\"857\":{}},\"comment\":{}}],[\"formrequests\",{\"_index\":576,\"name\":{\"873\":{}},\"comment\":{}}],[\"forms\",{\"_index\":573,\"name\":{\"870\":{}},\"comment\":{}}],[\"formsettings\",{\"_index\":367,\"name\":{\"496\":{},\"1026\":{}},\"comment\":{}}],[\"formsurl\",{\"_index\":156,\"name\":{\"228\":{}},\"comment\":{}}],[\"formtype\",{\"_index\":365,\"name\":{\"494\":{},\"1024\":{}},\"comment\":{}}],[\"formurl\",{\"_index\":155,\"name\":{\"227\":{}},\"comment\":{}}],[\"framework\",{\"_index\":28,\"name\":{\"29\":{},\"837\":{}},\"comment\":{}}],[\"getapiurl\",{\"_index\":121,\"name\":{\"184\":{}},\"comment\":{}}],[\"getappurl\",{\"_index\":125,\"name\":{\"188\":{}},\"comment\":{}}],[\"getattributes\",{\"_index\":39,\"name\":{\"54\":{},\"73\":{},\"80\":{},\"89\":{},\"96\":{},\"701\":{},\"713\":{}},\"comment\":{}}],[\"getbaseurl\",{\"_index\":119,\"name\":{\"182\":{}},\"comment\":{}}],[\"getcomponenterrorfield\",{\"_index\":514,\"name\":{\"741\":{},\"957\":{},\"1129\":{}},\"comment\":{}}],[\"getdatesetting\",{\"_index\":441,\"name\":{\"628\":{},\"936\":{},\"1116\":{}},\"comment\":{}}],[\"getdatevalidationformat\",{\"_index\":442,\"name\":{\"629\":{},\"937\":{},\"1117\":{}},\"comment\":{}}],[\"getdownloadurl\",{\"_index\":198,\"name\":{\"279\":{}},\"comment\":{}}],[\"getemptyvalue\",{\"_index\":518,\"name\":{\"745\":{},\"961\":{},\"1133\":{}},\"comment\":{}}],[\"geterrormessage\",{\"_index\":450,\"name\":{\"637\":{}},\"comment\":{}}],[\"getformid\",{\"_index\":196,\"name\":{\"272\":{}},\"comment\":{}}],[\"getinputmask\",{\"_index\":463,\"name\":{\"650\":{},\"939\":{},\"1120\":{}},\"comment\":{}}],[\"getpathtype\",{\"_index\":142,\"name\":{\"205\":{}},\"comment\":{}}],[\"getplugin\",{\"_index\":146,\"name\":{\"211\":{},\"297\":{}},\"comment\":{}}],[\"getprojectid\",{\"_index\":195,\"name\":{\"271\":{}},\"comment\":{}}],[\"getprojecturl\",{\"_index\":126,\"name\":{\"189\":{}},\"comment\":{}}],[\"getrequestargs\",{\"_index\":109,\"name\":{\"171\":{}},\"comment\":{}}],[\"gettemptoken\",{\"_index\":197,\"name\":{\"278\":{}},\"comment\":{}}],[\"gettoken\",{\"_index\":115,\"name\":{\"178\":{},\"276\":{}},\"comment\":{}}],[\"geturlparts\",{\"_index\":107,\"name\":{\"169\":{},\"282\":{}},\"comment\":{}}],[\"getuser\",{\"_index\":117,\"name\":{\"180\":{}},\"comment\":{}}],[\"guid\",{\"_index\":453,\"name\":{\"640\":{}},\"comment\":{}}],[\"handler\",{\"_index\":223,\"name\":{\"321\":{}},\"comment\":{}}],[\"headers\",{\"_index\":103,\"name\":{\"165\":{},\"587\":{}},\"comment\":{}}],[\"height\",{\"_index\":282,\"name\":{\"389\":{}},\"comment\":{}}],[\"hidden\",{\"_index\":242,\"name\":{\"344\":{}},\"comment\":{}}],[\"hiddencomponent\",{\"_index\":315,\"name\":{\"423\":{},\"1063\":{}},\"comment\":{}}],[\"hidelabel\",{\"_index\":253,\"name\":{\"355\":{}},\"comment\":{}}],[\"hidetitle\",{\"_index\":372,\"name\":{\"502\":{}},\"comment\":{}}],[\"hooks\",{\"_index\":484,\"name\":{\"679\":{}},\"comment\":{}}],[\"html\",{\"_index\":49,\"name\":{\"68\":{},\"102\":{},\"942\":{},\"981\":{},\"990\":{}},\"comment\":{}}],[\"htmlcomponent\",{\"_index\":50,\"name\":{\"75\":{},\"424\":{},\"943\":{},\"982\":{},\"991\":{},\"1064\":{}},\"comment\":{}}],[\"htmlcontainer\",{\"_index\":52,\"name\":{\"83\":{},\"103\":{},\"944\":{},\"983\":{},\"992\":{}},\"comment\":{}}],[\"htmlcontainercomponent\",{\"_index\":53,\"name\":{\"90\":{},\"945\":{},\"984\":{},\"993\":{}},\"comment\":{}}],[\"htmlproperties\",{\"_index\":41,\"name\":{\"57\":{}},\"comment\":{}}],[\"i18n\",{\"_index\":483,\"name\":{\"677\":{}},\"comment\":{}}],[\"iconclass\",{\"_index\":387,\"name\":{\"524\":{}},\"comment\":{}}],[\"id\",{\"_index\":382,\"name\":{\"513\":{}},\"comment\":{}}],[\"identity\",{\"_index\":209,\"name\":{\"294\":{}},\"comment\":{}}],[\"importcomponent\",{\"_index\":15,\"name\":{\"16\":{}},\"comment\":{}}],[\"index\",{\"_index\":6,\"name\":{\"6\":{},\"245\":{},\"808\":{}},\"comment\":{}}],[\"init\",{\"_index\":207,\"name\":{\"289\":{}},\"comment\":{}}],[\"input\",{\"_index\":55,\"name\":{\"106\":{},\"331\":{},\"698\":{},\"949\":{},\"988\":{},\"997\":{}},\"comment\":{}}],[\"inputcomponent\",{\"_index\":501,\"name\":{\"710\":{},\"950\":{},\"989\":{},\"998\":{}},\"comment\":{}}],[\"inputtype\",{\"_index\":290,\"name\":{\"397\":{}},\"comment\":{}}],[\"instance\",{\"_index\":532,\"name\":{\"778\":{},\"788\":{},\"804\":{}},\"comment\":{}}],[\"instances\",{\"_index\":526,\"name\":{\"757\":{},\"766\":{}},\"comment\":{}}],[\"interpolate\",{\"_index\":432,\"name\":{\"610\":{},\"619\":{}},\"comment\":{}}],[\"interpolatestring\",{\"_index\":431,\"name\":{\"609\":{},\"618\":{}},\"comment\":{}}],[\"iscomponentpersistent\",{\"_index\":511,\"name\":{\"737\":{},\"953\":{},\"1125\":{}},\"comment\":{}}],[\"iscomponentprotected\",{\"_index\":512,\"name\":{\"738\":{},\"954\":{},\"1126\":{}},\"comment\":{}}],[\"isempty\",{\"_index\":519,\"name\":{\"746\":{},\"962\":{},\"1134\":{}},\"comment\":{}}],[\"isemptyobject\",{\"_index\":513,\"name\":{\"740\":{},\"956\":{},\"1128\":{}},\"comment\":{}}],[\"isobject\",{\"_index\":517,\"name\":{\"744\":{},\"960\":{},\"1132\":{}},\"comment\":{}}],[\"isobjectid\",{\"_index\":194,\"name\":{\"270\":{}},\"comment\":{}}],[\"ispartialday\",{\"_index\":443,\"name\":{\"630\":{},\"938\":{},\"1118\":{}},\"comment\":{}}],[\"ispromise\",{\"_index\":516,\"name\":{\"743\":{},\"959\":{},\"1131\":{}},\"comment\":{}}],[\"isunique\",{\"_index\":427,\"name\":{\"604\":{}},\"comment\":{}}],[\"js\",{\"_index\":563,\"name\":{\"856\":{}},\"comment\":{}}],[\"json\",{\"_index\":270,\"name\":{\"375\":{}},\"comment\":{}}],[\"jsonlogic\",{\"_index\":505,\"name\":{\"731\":{}},\"comment\":{}}],[\"jwtdecode\",{\"_index\":461,\"name\":{\"648\":{}},\"comment\":{}}],[\"key\",{\"_index\":231,\"name\":{\"333\":{},\"673\":{},\"691\":{}},\"comment\":{}}],[\"label\",{\"_index\":247,\"name\":{\"349\":{},\"674\":{},\"692\":{}},\"comment\":{}}],[\"labelposition\",{\"_index\":249,\"name\":{\"351\":{}},\"comment\":{}}],[\"language\",{\"_index\":482,\"name\":{\"676\":{}},\"comment\":{}}],[\"lastdeploy\",{\"_index\":556,\"name\":{\"841\":{}},\"comment\":{}}],[\"layout\",{\"_index\":373,\"name\":{\"503\":{}},\"comment\":{}}],[\"left\",{\"_index\":279,\"name\":{\"386\":{}},\"comment\":{}}],[\"level\",{\"_index\":62,\"name\":{\"116\":{}},\"comment\":{}}],[\"libraries\",{\"_index\":101,\"name\":{\"163\":{}},\"comment\":{}}],[\"libraryready\",{\"_index\":139,\"name\":{\"202\":{}},\"comment\":{}}],[\"limit\",{\"_index\":595,\"name\":{\"897\":{}},\"comment\":{}}],[\"listcomponent\",{\"_index\":319,\"name\":{\"428\":{},\"1068\":{}},\"comment\":{}}],[\"livestages\",{\"_index\":572,\"name\":{\"869\":{}},\"comment\":{}}],[\"load\",{\"_index\":172,\"name\":{\"247\":{}},\"comment\":{}}],[\"loadaction\",{\"_index\":188,\"name\":{\"264\":{}},\"comment\":{}}],[\"loadactions\",{\"_index\":191,\"name\":{\"267\":{}},\"comment\":{}}],[\"loadform\",{\"_index\":180,\"name\":{\"256\":{}},\"comment\":{}}],[\"loadforms\",{\"_index\":183,\"name\":{\"259\":{}},\"comment\":{}}],[\"loadproject\",{\"_index\":173,\"name\":{\"249\":{}},\"comment\":{}}],[\"loadprojects\",{\"_index\":106,\"name\":{\"168\":{}},\"comment\":{}}],[\"loadrole\",{\"_index\":176,\"name\":{\"252\":{}},\"comment\":{}}],[\"loadroles\",{\"_index\":179,\"name\":{\"255\":{}},\"comment\":{}}],[\"loadsubmission\",{\"_index\":184,\"name\":{\"260\":{}},\"comment\":{}}],[\"loadsubmissions\",{\"_index\":187,\"name\":{\"263\":{}},\"comment\":{}}],[\"lodashoperators\",{\"_index\":508,\"name\":{\"734\":{}},\"comment\":{}}],[\"logout\",{\"_index\":131,\"name\":{\"194\":{}},\"comment\":{}}],[\"machinename\",{\"_index\":357,\"name\":{\"481\":{},\"544\":{},\"843\":{}},\"comment\":{}}],[\"makerequest\",{\"_index\":111,\"name\":{\"173\":{},\"248\":{}},\"comment\":{}}],[\"makestaticrequest\",{\"_index\":110,\"name\":{\"172\":{}},\"comment\":{}}],[\"manualaddresscomponentdataobject\",{\"_index\":341,\"name\":{\"453\":{},\"1097\":{}},\"comment\":{}}],[\"margins\",{\"_index\":374,\"name\":{\"504\":{}},\"comment\":{}}],[\"mask\",{\"_index\":236,\"name\":{\"338\":{}},\"comment\":{}}],[\"matchinputmask\",{\"_index\":464,\"name\":{\"651\":{},\"940\":{},\"1121\":{}},\"comment\":{}}],[\"membercount\",{\"_index\":407,\"name\":{\"577\":{}},\"comment\":{}}],[\"mergearray\",{\"_index\":471,\"name\":{\"658\":{}},\"comment\":{}}],[\"mergeobject\",{\"_index\":470,\"name\":{\"657\":{}},\"comment\":{}}],[\"metadata\",{\"_index\":400,\"name\":{\"562\":{}},\"comment\":{}}],[\"method\",{\"_index\":224,\"name\":{\"322\":{}},\"comment\":{}}],[\"modaledit\",{\"_index\":246,\"name\":{\"348\":{}},\"comment\":{}}],[\"mode\",{\"_index\":339,\"name\":{\"450\":{},\"455\":{}},\"comment\":{}}],[\"model\",{\"_index\":70,\"name\":{\"128\":{},\"136\":{},\"917\":{},\"975\":{},\"1003\":{}},\"comment\":{}}],[\"model/__tests__/model.test\",{\"_index\":503,\"name\":{\"726\":{}},\"comment\":{}}],[\"model/eventemitter\",{\"_index\":66,\"name\":{\"120\":{}},\"comment\":{}}],[\"model/model\",{\"_index\":69,\"name\":{\"127\":{}},\"comment\":{}}],[\"model/nestedarraymodel\",{\"_index\":72,\"name\":{\"130\":{}},\"comment\":{}}],[\"model/nesteddatamodel\",{\"_index\":74,\"name\":{\"132\":{}},\"comment\":{}}],[\"model/nestedmodel\",{\"_index\":76,\"name\":{\"134\":{}},\"comment\":{}}],[\"modeldecoratorinterface\",{\"_index\":71,\"name\":{\"129\":{},\"918\":{},\"976\":{},\"1004\":{}},\"comment\":{}}],[\"modelinterface\",{\"_index\":68,\"name\":{\"122\":{},\"919\":{},\"977\":{},\"1001\":{},\"1005\":{}},\"comment\":{}}],[\"modified\",{\"_index\":364,\"name\":{\"492\":{},\"546\":{},\"571\":{},\"859\":{}},\"comment\":{}}],[\"modules\",{\"_index\":78,\"name\":{\"137\":{}},\"comment\":{}}],[\"modules/jsonlogic\",{\"_index\":504,\"name\":{\"727\":{}},\"comment\":{}}],[\"modules/jsonlogic/jsonlogic\",{\"_index\":506,\"name\":{\"732\":{}},\"comment\":{}}],[\"modules/jsonlogic/operators\",{\"_index\":507,\"name\":{\"733\":{}},\"comment\":{}}],[\"momentdate\",{\"_index\":439,\"name\":{\"626\":{},\"934\":{},\"1114\":{}},\"comment\":{}}],[\"multiple\",{\"_index\":238,\"name\":{\"340\":{},\"373\":{}},\"comment\":{}}],[\"name\",{\"_index\":222,\"name\":{\"320\":{},\"471\":{},\"826\":{}},\"comment\":{}}],[\"namespace\",{\"_index\":99,\"name\":{\"161\":{},\"678\":{}},\"comment\":{}}],[\"nestedarraycomponent\",{\"_index\":305,\"name\":{\"413\":{},\"1053\":{}},\"comment\":{}}],[\"nestedarraymodel\",{\"_index\":73,\"name\":{\"131\":{},\"922\":{},\"980\":{},\"1008\":{}},\"comment\":{}}],[\"nestedcomponent\",{\"_index\":297,\"name\":{\"405\":{},\"687\":{},\"912\":{},\"970\":{},\"1045\":{}},\"comment\":{}}],[\"nestedcomponentschema\",{\"_index\":490,\"name\":{\"688\":{}},\"comment\":{}}],[\"nesteddatamodel\",{\"_index\":75,\"name\":{\"133\":{},\"921\":{},\"979\":{},\"1007\":{}},\"comment\":{}}],[\"nestedmodel\",{\"_index\":77,\"name\":{\"135\":{},\"920\":{},\"978\":{},\"1006\":{}},\"comment\":{}}],[\"noeval\",{\"_index\":430,\"name\":{\"607\":{},\"616\":{}},\"comment\":{}}],[\"noinit\",{\"_index\":485,\"name\":{\"681\":{}},\"comment\":{}}],[\"noproject\",{\"_index\":168,\"name\":{\"241\":{}},\"comment\":{}}],[\"numbercomponent\",{\"_index\":304,\"name\":{\"412\":{},\"1052\":{}},\"comment\":{}}],[\"oauthcurrentuser\",{\"_index\":133,\"name\":{\"196\":{}},\"comment\":{}}],[\"oauthlogouturi\",{\"_index\":134,\"name\":{\"197\":{},\"275\":{}},\"comment\":{}}],[\"offset\",{\"_index\":410,\"name\":{\"580\":{}},\"comment\":{}}],[\"oktainit\",{\"_index\":136,\"name\":{\"199\":{}},\"comment\":{}}],[\"oninput\",{\"_index\":497,\"name\":{\"702\":{},\"714\":{}},\"comment\":{}}],[\"online\",{\"_index\":416,\"name\":{\"586\":{}},\"comment\":{}}],[\"options\",{\"_index\":32,\"name\":{\"37\":{},\"44\":{},\"52\":{},\"71\":{},\"78\":{},\"87\":{},\"94\":{},\"124\":{},\"243\":{},\"531\":{},\"707\":{},\"719\":{},\"884\":{}},\"comment\":{}}],[\"origin\",{\"_index\":411,\"name\":{\"581\":{}},\"comment\":{}}],[\"overlay\",{\"_index\":277,\"name\":{\"383\":{}},\"comment\":{}}],[\"override\",{\"_index\":466,\"name\":{\"653\":{},\"926\":{},\"1106\":{}},\"comment\":{}}],[\"owner\",{\"_index\":356,\"name\":{\"480\":{},\"560\":{},\"830\":{}},\"comment\":{}}],[\"page\",{\"_index\":362,\"name\":{\"490\":{}},\"comment\":{}}],[\"pagequery\",{\"_index\":132,\"name\":{\"195\":{}},\"comment\":{}}],[\"panelcomponent\",{\"_index\":316,\"name\":{\"425\":{},\"1065\":{}},\"comment\":{}}],[\"passedcomponentinstance\",{\"_index\":384,\"name\":{\"515\":{},\"1101\":{}},\"comment\":{}}],[\"passwordcomponent\",{\"_index\":317,\"name\":{\"426\":{},\"1066\":{}},\"comment\":{}}],[\"path\",{\"_index\":169,\"name\":{\"242\":{},\"472\":{},\"775\":{},\"785\":{},\"803\":{}},\"comment\":{}}],[\"pathname\",{\"_index\":415,\"name\":{\"585\":{}},\"comment\":{}}],[\"pathtype\",{\"_index\":96,\"name\":{\"158\":{},\"240\":{}},\"comment\":{}}],[\"pdf\",{\"_index\":380,\"name\":{\"510\":{}},\"comment\":{}}],[\"pdfbasic\",{\"_index\":588,\"name\":{\"888\":{}},\"comment\":{}}],[\"pdfdownloads\",{\"_index\":578,\"name\":{\"875\":{}},\"comment\":{}}],[\"pdfs\",{\"_index\":577,\"name\":{\"874\":{}},\"comment\":{}}],[\"pdfservers\",{\"_index\":581,\"name\":{\"878\":{}},\"comment\":{}}],[\"permission\",{\"_index\":403,\"name\":{\"569\":{}},\"comment\":{}}],[\"persistent\",{\"_index\":241,\"name\":{\"343\":{}},\"comment\":{}}],[\"phonenumbercomponent\",{\"_index\":318,\"name\":{\"427\":{},\"1067\":{}},\"comment\":{}}],[\"placeholder\",{\"_index\":233,\"name\":{\"335\":{}},\"comment\":{}}],[\"plan\",{\"_index\":550,\"name\":{\"833\":{},\"882\":{}},\"comment\":{}}],[\"plugin\",{\"_index\":204,\"name\":{\"286\":{}},\"comment\":{}}],[\"pluginalter\",{\"_index\":149,\"name\":{\"217\":{},\"300\":{}},\"comment\":{}}],[\"pluginderegisterfunction\",{\"_index\":203,\"name\":{\"285\":{}},\"comment\":{}}],[\"pluginget\",{\"_index\":148,\"name\":{\"215\":{},\"299\":{}},\"comment\":{}}],[\"plugininitfunction\",{\"_index\":202,\"name\":{\"284\":{}},\"comment\":{}}],[\"plugins\",{\"_index\":143,\"name\":{\"206\":{},\"292\":{}},\"comment\":{}}],[\"pluginwait\",{\"_index\":147,\"name\":{\"213\":{},\"298\":{}},\"comment\":{}}],[\"prefix\",{\"_index\":234,\"name\":{\"336\":{}},\"comment\":{}}],[\"prependto\",{\"_index\":446,\"name\":{\"633\":{}},\"comment\":{}}],[\"primary\",{\"_index\":554,\"name\":{\"838\":{}},\"comment\":{}}],[\"priority\",{\"_index\":206,\"name\":{\"288\":{},\"324\":{}},\"comment\":{}}],[\"process\",{\"_index\":79,\"name\":{\"139\":{},\"141\":{},\"761\":{},\"770\":{},\"781\":{},\"791\":{},\"807\":{},\"963\":{},\"1009\":{}},\"comment\":{}}],[\"process/process\",{\"_index\":80,\"name\":{\"140\":{}},\"comment\":{}}],[\"process/processone\",{\"_index\":82,\"name\":{\"143\":{}},\"comment\":{}}],[\"process/validation\",{\"_index\":509,\"name\":{\"735\":{}},\"comment\":{}}],[\"process/validation/util\",{\"_index\":510,\"name\":{\"736\":{}},\"comment\":{}}],[\"process/validation/validate\",{\"_index\":520,\"name\":{\"747\":{}},\"comment\":{}}],[\"processconfig\",{\"_index\":418,\"name\":{\"589\":{},\"1085\":{}},\"comment\":{}}],[\"processcontext\",{\"_index\":525,\"name\":{\"753\":{},\"1091\":{},\"1140\":{}},\"comment\":{}}],[\"processcontextsync\",{\"_index\":529,\"name\":{\"762\":{},\"1092\":{},\"1141\":{}},\"comment\":{}}],[\"processone\",{\"_index\":83,\"name\":{\"144\":{},\"965\":{},\"1011\":{}},\"comment\":{}}],[\"processonecontext\",{\"_index\":531,\"name\":{\"772\":{},\"1093\":{},\"1142\":{}},\"comment\":{}}],[\"processonecontextsync\",{\"_index\":533,\"name\":{\"782\":{},\"1094\":{},\"1143\":{}},\"comment\":{}}],[\"processonesync\",{\"_index\":84,\"name\":{\"145\":{},\"966\":{},\"1012\":{}},\"comment\":{}}],[\"processor\",{\"_index\":540,\"name\":{\"805\":{}},\"comment\":{}}],[\"processorcontext\",{\"_index\":539,\"name\":{\"798\":{},\"1088\":{},\"1137\":{}},\"comment\":{}}],[\"processorfn\",{\"_index\":543,\"name\":{\"811\":{},\"1089\":{},\"1138\":{}},\"comment\":{}}],[\"processorfnsync\",{\"_index\":544,\"name\":{\"813\":{},\"1090\":{},\"1139\":{}},\"comment\":{}}],[\"processortype\",{\"_index\":546,\"name\":{\"816\":{},\"1087\":{},\"1136\":{}},\"comment\":{}}],[\"processsync\",{\"_index\":81,\"name\":{\"142\":{},\"964\":{},\"1010\":{}},\"comment\":{}}],[\"processtype\",{\"_index\":535,\"name\":{\"793\":{},\"1086\":{},\"1135\":{}},\"comment\":{}}],[\"project\",{\"_index\":87,\"name\":{\"149\":{},\"485\":{},\"543\":{},\"564\":{},\"822\":{},\"831\":{},\"1015\":{},\"1145\":{}},\"comment\":{}}],[\"projectapicalls\",{\"_index\":594,\"name\":{\"895\":{},\"1021\":{},\"1151\":{}},\"comment\":{}}],[\"projectbilling\",{\"_index\":589,\"name\":{\"889\":{},\"1020\":{},\"1150\":{}},\"comment\":{}}],[\"projectframework\",{\"_index\":567,\"name\":{\"863\":{},\"1018\":{},\"1148\":{}},\"comment\":{}}],[\"projectid\",{\"_index\":151,\"name\":{\"223\":{},\"821\":{},\"1014\":{},\"1144\":{}},\"comment\":{}}],[\"projectplan\",{\"_index\":566,\"name\":{\"862\":{},\"1017\":{},\"1147\":{}},\"comment\":{}}],[\"projectroles\",{\"_index\":129,\"name\":{\"192\":{}},\"comment\":{}}],[\"projects\",{\"_index\":569,\"name\":{\"866\":{}},\"comment\":{}}],[\"projectsurl\",{\"_index\":150,\"name\":{\"221\":{}},\"comment\":{}}],[\"projecttype\",{\"_index\":565,\"name\":{\"861\":{},\"1016\":{},\"1146\":{}},\"comment\":{}}],[\"projecturl\",{\"_index\":94,\"name\":{\"156\":{},\"222\":{}},\"comment\":{}}],[\"projecturlset\",{\"_index\":97,\"name\":{\"159\":{}},\"comment\":{}}],[\"projectusage\",{\"_index\":568,\"name\":{\"864\":{},\"1019\":{},\"1149\":{}},\"comment\":{}}],[\"properties\",{\"_index\":287,\"name\":{\"394\":{},\"484\":{}},\"comment\":{}}],[\"protect\",{\"_index\":558,\"name\":{\"845\":{}},\"comment\":{}}],[\"protected\",{\"_index\":239,\"name\":{\"341\":{}},\"comment\":{}}],[\"public\",{\"_index\":561,\"name\":{\"851\":{}},\"comment\":{}}],[\"query\",{\"_index\":167,\"name\":{\"239\":{}},\"comment\":{}}],[\"radiocomponent\",{\"_index\":320,\"name\":{\"429\":{},\"1069\":{}},\"comment\":{}}],[\"recaptchacomponent\",{\"_index\":321,\"name\":{\"430\":{},\"1070\":{}},\"comment\":{}}],[\"redrawon\",{\"_index\":245,\"name\":{\"347\":{}},\"comment\":{}}],[\"referrer\",{\"_index\":412,\"name\":{\"582\":{}},\"comment\":{}}],[\"refreshon\",{\"_index\":244,\"name\":{\"346\":{}},\"comment\":{}}],[\"registerevaluator\",{\"_index\":435,\"name\":{\"615\":{}},\"comment\":{}}],[\"registerplugin\",{\"_index\":145,\"name\":{\"209\":{},\"296\":{}},\"comment\":{}}],[\"remote\",{\"_index\":549,\"name\":{\"832\":{}},\"comment\":{}}],[\"remotesecret\",{\"_index\":559,\"name\":{\"847\":{}},\"comment\":{}}],[\"remotestages\",{\"_index\":579,\"name\":{\"876\":{}},\"comment\":{}}],[\"removechildfrom\",{\"_index\":447,\"name\":{\"634\":{}},\"comment\":{}}],[\"render\",{\"_index\":8,\"name\":{\"8\":{},\"30\":{},\"910\":{},\"968\":{}},\"comment\":{}}],[\"renderclasses\",{\"_index\":34,\"name\":{\"39\":{},\"46\":{}},\"comment\":{}}],[\"rendercontext\",{\"_index\":35,\"name\":{\"40\":{},\"47\":{},\"55\":{},\"74\":{},\"81\":{},\"85\":{},\"92\":{},\"709\":{},\"721\":{}},\"comment\":{}}],[\"request\",{\"_index\":112,\"name\":{\"174\":{}},\"comment\":{}}],[\"required\",{\"_index\":265,\"name\":{\"368\":{}},\"comment\":{}}],[\"requirelibrary\",{\"_index\":138,\"name\":{\"201\":{}},\"comment\":{}}],[\"reset\",{\"_index\":597,\"name\":{\"899\":{}},\"comment\":{}}],[\"resourcecomponent\",{\"_index\":324,\"name\":{\"433\":{},\"1073\":{}},\"comment\":{}}],[\"revisions\",{\"_index\":358,\"name\":{\"486\":{},\"850\":{}},\"comment\":{}}],[\"rewind\",{\"_index\":472,\"name\":{\"659\":{}},\"comment\":{}}],[\"role\",{\"_index\":218,\"name\":{\"315\":{},\"536\":{},\"1032\":{}},\"comment\":{}}],[\"roleid\",{\"_index\":154,\"name\":{\"226\":{},\"535\":{},\"1031\":{}},\"comment\":{}}],[\"roles\",{\"_index\":213,\"name\":{\"307\":{},\"561\":{}},\"comment\":{}}],[\"rolesurl\",{\"_index\":153,\"name\":{\"225\":{}},\"comment\":{}}],[\"roleurl\",{\"_index\":152,\"name\":{\"224\":{}},\"comment\":{}}],[\"row\",{\"_index\":271,\"name\":{\"376\":{},\"522\":{},\"777\":{},\"787\":{},\"802\":{}},\"comment\":{}}],[\"rowcomponent\",{\"_index\":328,\"name\":{\"437\":{},\"1077\":{}},\"comment\":{}}],[\"rowindex\",{\"_index\":386,\"name\":{\"523\":{}},\"comment\":{}}],[\"rulecontext\",{\"_index\":395,\"name\":{\"549\":{},\"1038\":{}},\"comment\":{}}],[\"rulefn\",{\"_index\":396,\"name\":{\"550\":{},\"1039\":{}},\"comment\":{}}],[\"rulefnsync\",{\"_index\":397,\"name\":{\"552\":{},\"1040\":{}},\"comment\":{}}],[\"sac\",{\"_index\":586,\"name\":{\"886\":{}},\"comment\":{}}],[\"samlinit\",{\"_index\":135,\"name\":{\"198\":{}},\"comment\":{}}],[\"sanitize\",{\"_index\":468,\"name\":{\"655\":{},\"925\":{},\"1105\":{}},\"comment\":{}}],[\"save\",{\"_index\":171,\"name\":{\"246\":{},\"796\":{}},\"comment\":{}}],[\"saveaction\",{\"_index\":189,\"name\":{\"265\":{}},\"comment\":{}}],[\"saveform\",{\"_index\":181,\"name\":{\"257\":{}},\"comment\":{}}],[\"saveproject\",{\"_index\":174,\"name\":{\"250\":{}},\"comment\":{}}],[\"saverole\",{\"_index\":177,\"name\":{\"253\":{}},\"comment\":{}}],[\"savesubmission\",{\"_index\":185,\"name\":{\"261\":{}},\"comment\":{}}],[\"schema\",{\"_index\":44,\"name\":{\"60\":{}},\"comment\":{}}],[\"sdk\",{\"_index\":210,\"name\":{\"302\":{}},\"comment\":{}}],[\"sdk/__tests__/formio.test\",{\"_index\":522,\"name\":{\"750\":{}},\"comment\":{}}],[\"sdk/formio\",{\"_index\":85,\"name\":{\"146\":{}},\"comment\":{}}],[\"sdk/plugins\",{\"_index\":201,\"name\":{\"283\":{}},\"comment\":{}}],[\"selectboxescomponent\",{\"_index\":325,\"name\":{\"434\":{},\"1074\":{}},\"comment\":{}}],[\"selectcomponent\",{\"_index\":323,\"name\":{\"432\":{},\"1072\":{}},\"comment\":{}}],[\"selectcomponentoptions\",{\"_index\":322,\"name\":{\"431\":{},\"1071\":{}},\"comment\":{}}],[\"selectdata\",{\"_index\":408,\"name\":{\"578\":{}},\"comment\":{}}],[\"serialize\",{\"_index\":108,\"name\":{\"170\":{}},\"comment\":{}}],[\"server/actions\",{\"_index\":523,\"name\":{\"751\":{}},\"comment\":{}}],[\"setapiurl\",{\"_index\":120,\"name\":{\"183\":{}},\"comment\":{}}],[\"setappurl\",{\"_index\":122,\"name\":{\"185\":{}},\"comment\":{}}],[\"setauthurl\",{\"_index\":124,\"name\":{\"187\":{}},\"comment\":{}}],[\"setbaseurl\",{\"_index\":118,\"name\":{\"181\":{}},\"comment\":{}}],[\"setcomponents\",{\"_index\":16,\"name\":{\"17\":{}},\"comment\":{}}],[\"setpathtype\",{\"_index\":141,\"name\":{\"204\":{}},\"comment\":{}}],[\"setprojecturl\",{\"_index\":123,\"name\":{\"186\":{}},\"comment\":{}}],[\"settemplate\",{\"_index\":26,\"name\":{\"27\":{}},\"comment\":{}}],[\"settings\",{\"_index\":226,\"name\":{\"325\":{},\"483\":{},\"846\":{}},\"comment\":{}}],[\"settoken\",{\"_index\":114,\"name\":{\"177\":{},\"277\":{}},\"comment\":{}}],[\"setuser\",{\"_index\":116,\"name\":{\"179\":{}},\"comment\":{}}],[\"setvalue\",{\"_index\":500,\"name\":{\"705\":{},\"717\":{}},\"comment\":{}}],[\"shouldskipvalidation\",{\"_index\":390,\"name\":{\"532\":{},\"739\":{},\"955\":{},\"1127\":{}},\"comment\":{}}],[\"show\",{\"_index\":273,\"name\":{\"379\":{}},\"comment\":{}}],[\"showcharcount\",{\"_index\":285,\"name\":{\"392\":{}},\"comment\":{}}],[\"showcheckboxbacground\",{\"_index\":375,\"name\":{\"505\":{}},\"comment\":{}}],[\"showwordcount\",{\"_index\":286,\"name\":{\"393\":{}},\"comment\":{}}],[\"signaturecomponent\",{\"_index\":326,\"name\":{\"435\":{},\"1075\":{}},\"comment\":{}}],[\"src\",{\"_index\":381,\"name\":{\"512\":{}},\"comment\":{}}],[\"ssoinit\",{\"_index\":137,\"name\":{\"200\":{}},\"comment\":{}}],[\"ssoteam\",{\"_index\":406,\"name\":{\"576\":{}},\"comment\":{}}],[\"stages\",{\"_index\":571,\"name\":{\"868\":{}},\"comment\":{}}],[\"stagetitle\",{\"_index\":557,\"name\":{\"842\":{}},\"comment\":{}}],[\"startdate\",{\"_index\":585,\"name\":{\"883\":{}},\"comment\":{}}],[\"state\",{\"_index\":345,\"name\":{\"461\":{},\"565\":{}},\"comment\":{}}],[\"steps\",{\"_index\":553,\"name\":{\"836\":{}},\"comment\":{}}],[\"strictdatevalidation\",{\"_index\":269,\"name\":{\"372\":{}},\"comment\":{}}],[\"style\",{\"_index\":278,\"name\":{\"385\":{}},\"comment\":{}}],[\"subdirectories\",{\"_index\":90,\"name\":{\"152\":{}},\"comment\":{}}],[\"subdomains\",{\"_index\":91,\"name\":{\"153\":{}},\"comment\":{}}],[\"submission\",{\"_index\":389,\"name\":{\"527\":{},\"556\":{},\"1028\":{}},\"comment\":{}}],[\"submissionaccess\",{\"_index\":354,\"name\":{\"478\":{}},\"comment\":{}}],[\"submissionid\",{\"_index\":160,\"name\":{\"232\":{},\"555\":{},\"1027\":{}},\"comment\":{}}],[\"submissionmetadata\",{\"_index\":405,\"name\":{\"574\":{},\"1030\":{}},\"comment\":{}}],[\"submissionrequests\",{\"_index\":575,\"name\":{\"872\":{}},\"comment\":{}}],[\"submissionrevisions\",{\"_index\":359,\"name\":{\"487\":{}},\"comment\":{}}],[\"submissionservers\",{\"_index\":584,\"name\":{\"881\":{}},\"comment\":{}}],[\"submissionstate\",{\"_index\":404,\"name\":{\"573\":{},\"1029\":{}},\"comment\":{}}],[\"submissionsurl\",{\"_index\":158,\"name\":{\"230\":{}},\"comment\":{}}],[\"submissionurl\",{\"_index\":159,\"name\":{\"231\":{}},\"comment\":{}}],[\"submit\",{\"_index\":537,\"name\":{\"795\":{}},\"comment\":{}}],[\"suffix\",{\"_index\":237,\"name\":{\"339\":{}},\"comment\":{}}],[\"surveycomponent\",{\"_index\":327,\"name\":{\"436\":{},\"1076\":{}},\"comment\":{}}],[\"t\",{\"_index\":388,\"name\":{\"525\":{}},\"comment\":{}}],[\"tabindex\",{\"_index\":255,\"name\":{\"357\":{}},\"comment\":{}}],[\"tableview\",{\"_index\":232,\"name\":{\"334\":{}},\"comment\":{}}],[\"tabscomponent\",{\"_index\":329,\"name\":{\"438\":{},\"1078\":{}},\"comment\":{}}],[\"tag\",{\"_index\":45,\"name\":{\"62\":{},\"829\":{}},\"comment\":{}}],[\"tags\",{\"_index\":353,\"name\":{\"476\":{}},\"comment\":{}}],[\"tagscomponent\",{\"_index\":330,\"name\":{\"439\":{},\"1079\":{}},\"comment\":{}}],[\"template\",{\"_index\":19,\"name\":{\"20\":{},\"66\":{},\"680\":{},\"915\":{},\"973\":{}},\"comment\":{}}],[\"templates\",{\"_index\":20,\"name\":{\"21\":{},\"107\":{}},\"comment\":{}}],[\"tenants\",{\"_index\":570,\"name\":{\"867\":{}},\"comment\":{}}],[\"textareacomponent\",{\"_index\":331,\"name\":{\"440\":{},\"1080\":{}},\"comment\":{}}],[\"textfieldcomponent\",{\"_index\":296,\"name\":{\"404\":{},\"1044\":{}},\"comment\":{}}],[\"theme\",{\"_index\":376,\"name\":{\"506\":{}},\"comment\":{}}],[\"timecomponent\",{\"_index\":332,\"name\":{\"441\":{},\"1081\":{}},\"comment\":{}}],[\"timezone\",{\"_index\":409,\"name\":{\"579\":{}},\"comment\":{}}],[\"title\",{\"_index\":221,\"name\":{\"319\":{},\"470\":{},\"539\":{},\"825\":{}},\"comment\":{}}],[\"toboolean\",{\"_index\":515,\"name\":{\"742\":{},\"958\":{},\"1130\":{}},\"comment\":{}}],[\"token\",{\"_index\":113,\"name\":{\"175\":{},\"593\":{}},\"comment\":{}}],[\"tokens\",{\"_index\":104,\"name\":{\"166\":{}},\"comment\":{}}],[\"tooltip\",{\"_index\":252,\"name\":{\"354\":{}},\"comment\":{}}],[\"top\",{\"_index\":280,\"name\":{\"387\":{}},\"comment\":{}}],[\"treecomponent\",{\"_index\":333,\"name\":{\"442\":{},\"1082\":{}},\"comment\":{}}],[\"trial\",{\"_index\":555,\"name\":{\"840\":{}},\"comment\":{}}],[\"truncatemultiplespaces\",{\"_index\":292,\"name\":{\"399\":{}},\"comment\":{}}],[\"type\",{\"_index\":43,\"name\":{\"59\":{},\"306\":{},\"314\":{},\"332\":{},\"473\":{},\"672\":{},\"690\":{},\"827\":{}},\"comment\":{}}],[\"types\",{\"_index\":424,\"name\":{\"599\":{}},\"comment\":{}}],[\"types/access\",{\"_index\":211,\"name\":{\"303\":{}},\"comment\":{}}],[\"types/action\",{\"_index\":215,\"name\":{\"309\":{}},\"comment\":{}}],[\"types/basecomponent\",{\"_index\":229,\"name\":{\"328\":{}},\"comment\":{}}],[\"types/component\",{\"_index\":293,\"name\":{\"400\":{}},\"comment\":{}}],[\"types/dataobject\",{\"_index\":336,\"name\":{\"445\":{}},\"comment\":{}}],[\"types/form\",{\"_index\":349,\"name\":{\"465\":{}},\"comment\":{}}],[\"types/formutil\",{\"_index\":421,\"name\":{\"594\":{}},\"comment\":{}}],[\"types/passedcomponentinstance\",{\"_index\":383,\"name\":{\"514\":{}},\"comment\":{}}],[\"types/process\",{\"_index\":547,\"name\":{\"819\":{}},\"comment\":{}}],[\"types/process/processcontext\",{\"_index\":524,\"name\":{\"752\":{}},\"comment\":{}}],[\"types/process/processonecontext\",{\"_index\":530,\"name\":{\"771\":{}},\"comment\":{}}],[\"types/process/processorcontext\",{\"_index\":538,\"name\":{\"797\":{}},\"comment\":{}}],[\"types/process/processorfn\",{\"_index\":542,\"name\":{\"810\":{}},\"comment\":{}}],[\"types/process/processortype\",{\"_index\":545,\"name\":{\"815\":{}},\"comment\":{}}],[\"types/process/processtype\",{\"_index\":534,\"name\":{\"792\":{}},\"comment\":{}}],[\"types/project\",{\"_index\":598,\"name\":{\"900\":{}},\"comment\":{}}],[\"types/project/project\",{\"_index\":548,\"name\":{\"820\":{}},\"comment\":{}}],[\"types/role\",{\"_index\":391,\"name\":{\"534\":{}},\"comment\":{}}],[\"types/rulefn\",{\"_index\":394,\"name\":{\"548\":{}},\"comment\":{}}],[\"types/submission\",{\"_index\":398,\"name\":{\"554\":{}},\"comment\":{}}],[\"types/validatorconfig\",{\"_index\":417,\"name\":{\"588\":{}},\"comment\":{}}],[\"unique\",{\"_index\":240,\"name\":{\"342\":{},\"374\":{}},\"comment\":{}}],[\"uniquename\",{\"_index\":454,\"name\":{\"641\":{}},\"comment\":{}}],[\"unwind\",{\"_index\":473,\"name\":{\"663\":{},\"927\":{},\"1107\":{}},\"comment\":{}}],[\"urlcomponent\",{\"_index\":334,\"name\":{\"443\":{},\"1083\":{}},\"comment\":{}}],[\"usage\",{\"_index\":593,\"name\":{\"894\":{}},\"comment\":{}}],[\"use\",{\"_index\":3,\"name\":{\"3\":{},\"907\":{}},\"comment\":{}}],[\"used\",{\"_index\":596,\"name\":{\"898\":{}},\"comment\":{}}],[\"usemodule\",{\"_index\":2,\"name\":{\"2\":{},\"906\":{}},\"comment\":{}}],[\"useplugin\",{\"_index\":1,\"name\":{\"1\":{},\"905\":{}},\"comment\":{}}],[\"useragent\",{\"_index\":414,\"name\":{\"584\":{}},\"comment\":{}}],[\"userpermissions\",{\"_index\":199,\"name\":{\"280\":{}},\"comment\":{}}],[\"usesessiontoken\",{\"_index\":88,\"name\":{\"150\":{},\"176\":{}},\"comment\":{}}],[\"utils\",{\"_index\":459,\"name\":{\"646\":{},\"928\":{},\"1108\":{}},\"comment\":{}}],[\"utils/__tests__/evaluator.test\",{\"_index\":599,\"name\":{\"901\":{}},\"comment\":{}}],[\"utils/__tests__/jwtdecode.test\",{\"_index\":600,\"name\":{\"902\":{}},\"comment\":{}}],[\"utils/__tests__/unwind.test\",{\"_index\":601,\"name\":{\"903\":{}},\"comment\":{}}],[\"utils/database\",{\"_index\":425,\"name\":{\"600\":{}},\"comment\":{}}],[\"utils/date\",{\"_index\":436,\"name\":{\"623\":{}},\"comment\":{}}],[\"utils/dom\",{\"_index\":444,\"name\":{\"631\":{}},\"comment\":{}}],[\"utils/error\",{\"_index\":449,\"name\":{\"636\":{}},\"comment\":{}}],[\"utils/evaluator\",{\"_index\":428,\"name\":{\"605\":{}},\"comment\":{}}],[\"utils/formutil\",{\"_index\":451,\"name\":{\"638\":{}},\"comment\":{}}],[\"utils/jwtdecode\",{\"_index\":460,\"name\":{\"647\":{}},\"comment\":{}}],[\"utils/mask\",{\"_index\":462,\"name\":{\"649\":{}},\"comment\":{}}],[\"utils/override\",{\"_index\":465,\"name\":{\"652\":{}},\"comment\":{}}],[\"utils/sanitize\",{\"_index\":467,\"name\":{\"654\":{}},\"comment\":{}}],[\"utils/unwind\",{\"_index\":469,\"name\":{\"656\":{}},\"comment\":{}}],[\"utils/utils\",{\"_index\":474,\"name\":{\"664\":{}},\"comment\":{}}],[\"validate\",{\"_index\":264,\"name\":{\"366\":{},\"748\":{},\"817\":{},\"951\":{},\"1123\":{}},\"comment\":{}}],[\"validateon\",{\"_index\":263,\"name\":{\"365\":{}},\"comment\":{}}],[\"validatesync\",{\"_index\":521,\"name\":{\"749\":{},\"952\":{},\"1124\":{}},\"comment\":{}}],[\"validatorerror\",{\"_index\":64,\"name\":{\"118\":{},\"1000\":{}},\"comment\":{}}],[\"version\",{\"_index\":105,\"name\":{\"167\":{}},\"comment\":{}}],[\"vid\",{\"_index\":165,\"name\":{\"237\":{}},\"comment\":{}}],[\"viewashtml\",{\"_index\":377,\"name\":{\"507\":{}},\"comment\":{}}],[\"viewer\",{\"_index\":378,\"name\":{\"508\":{}},\"comment\":{}}],[\"vpat\",{\"_index\":587,\"name\":{\"887\":{}},\"comment\":{}}],[\"vpats\",{\"_index\":583,\"name\":{\"880\":{}},\"comment\":{}}],[\"vsurl\",{\"_index\":164,\"name\":{\"236\":{}},\"comment\":{}}],[\"vurl\",{\"_index\":166,\"name\":{\"238\":{}},\"comment\":{}}],[\"wellcomponent\",{\"_index\":335,\"name\":{\"444\":{},\"1084\":{}},\"comment\":{}}],[\"when\",{\"_index\":274,\"name\":{\"380\":{}},\"comment\":{}}],[\"widget\",{\"_index\":254,\"name\":{\"356\":{}},\"comment\":{}}],[\"width\",{\"_index\":281,\"name\":{\"388\":{}},\"comment\":{}}],[\"wizardheadertype\",{\"_index\":379,\"name\":{\"509\":{}},\"comment\":{}}],[\"zip\",{\"_index\":347,\"name\":{\"463\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/docs/assets/style.css b/docs/assets/style.css deleted file mode 100644 index 18b4f8fe..00000000 --- a/docs/assets/style.css +++ /dev/null @@ -1,1367 +0,0 @@ -:root { - /* Light */ - --light-color-background: #f2f4f8; - --light-color-background-secondary: #eff0f1; - --light-color-warning-text: #222; - --light-color-background-warning: #e6e600; - --light-color-icon-background: var(--light-color-background); - --light-color-accent: #c5c7c9; - --light-color-active-menu-item: var(--light-color-accent); - --light-color-text: #222; - --light-color-text-aside: #6e6e6e; - --light-color-link: #1f70c2; - - --light-color-ts-project: #b111c9; - --light-color-ts-module: var(--light-color-ts-project); - --light-color-ts-namespace: var(--light-color-ts-project); - --light-color-ts-enum: #7e6f15; - --light-color-ts-enum-member: var(--light-color-ts-enum); - --light-color-ts-variable: #4760ec; - --light-color-ts-function: #572be7; - --light-color-ts-class: #1f70c2; - --light-color-ts-interface: #108024; - --light-color-ts-constructor: var(--light-color-ts-class); - --light-color-ts-property: var(--light-color-ts-variable); - --light-color-ts-method: var(--light-color-ts-function); - --light-color-ts-call-signature: var(--light-color-ts-method); - --light-color-ts-index-signature: var(--light-color-ts-property); - --light-color-ts-constructor-signature: var(--light-color-ts-constructor); - --light-color-ts-parameter: var(--light-color-ts-variable); - /* type literal not included as links will never be generated to it */ - --light-color-ts-type-parameter: var(--light-color-ts-type-alias); - --light-color-ts-accessor: var(--light-color-ts-property); - --light-color-ts-get-signature: var(--light-color-ts-accessor); - --light-color-ts-set-signature: var(--light-color-ts-accessor); - /* object literal not included as it is not used and will be removed in 0.25 */ - --light-color-ts-type-alias: #d51270; - /* reference not included as links will be colored with the kind that it points to */ - - --light-external-icon: url("data:image/svg+xml;utf8,"); - --light-color-scheme: light; - - /* Dark */ - --dark-color-background: #2b2e33; - --dark-color-background-secondary: #1e2024; - --dark-color-background-warning: #bebe00; - --dark-color-warning-text: #222; - --dark-color-icon-background: var(--dark-color-background-secondary); - --dark-color-accent: #9096a2; - --dark-color-active-menu-item: #5d5d6a; - --dark-color-text: #f5f5f5; - --dark-color-text-aside: #dddddd; - --dark-color-link: #00aff4; - - --dark-color-ts-project: #e358ff; - --dark-color-ts-module: var(--dark-color-ts-project); - --dark-color-ts-namespace: var(--dark-color-ts-project); - --dark-color-ts-enum: #f4d93e; - --dark-color-ts-enum-member: var(--dark-color-ts-enum); - --dark-color-ts-variable: #798dff; - --dark-color-ts-function: #a280ff; - --dark-color-ts-class: #8ac4ff; - --dark-color-ts-interface: #6cff87; - --dark-color-ts-constructor: var(--dark-color-ts-class); - --dark-color-ts-property: var(--dark-color-ts-variable); - --dark-color-ts-method: var(--dark-color-ts-function); - --dark-color-ts-call-signature: var(--dark-color-ts-method); - --dark-color-ts-index-signature: var(--dark-color-ts-property); - --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor); - --dark-color-ts-parameter: var(--dark-color-ts-variable); - /* type literal not included as links will never be generated to it */ - --dark-color-ts-type-parameter: var(--dark-color-ts-type-alias); - --dark-color-ts-accessor: var(--dark-color-ts-property); - --dark-color-ts-get-signature: var(--dark-color-ts-accessor); - --dark-color-ts-set-signature: var(--dark-color-ts-accessor); - /* object literal not included as it is not used and will be removed in 0.25 */ - --dark-color-ts-type-alias: #ff6492; - /* reference not included as links will be colored with the kind that it points to */ - - --dark-external-icon: url("data:image/svg+xml;utf8,"); - --dark-color-scheme: dark; -} - -@media (prefers-color-scheme: light) { - :root { - --color-background: var(--light-color-background); - --color-background-secondary: var(--light-color-background-secondary); - --color-background-warning: var(--light-color-background-warning); - --color-warning-text: var(--light-color-warning-text); - --color-icon-background: var(--light-color-icon-background); - --color-accent: var(--light-color-accent); - --color-active-menu-item: var(--light-color-active-menu-item); - --color-text: var(--light-color-text); - --color-text-aside: var(--light-color-text-aside); - --color-link: var(--light-color-link); - - --color-ts-module: var(--light-color-ts-module); - --color-ts-namespace: var(--light-color-ts-namespace); - --color-ts-enum: var(--light-color-ts-enum); - --color-ts-enum-member: var(--light-color-ts-enum-member); - --color-ts-variable: var(--light-color-ts-variable); - --color-ts-function: var(--light-color-ts-function); - --color-ts-class: var(--light-color-ts-class); - --color-ts-interface: var(--light-color-ts-interface); - --color-ts-constructor: var(--light-color-ts-constructor); - --color-ts-property: var(--light-color-ts-property); - --color-ts-method: var(--light-color-ts-method); - --color-ts-call-signature: var(--light-color-ts-call-signature); - --color-ts-index-signature: var(--light-color-ts-index-signature); - --color-ts-constructor-signature: var( - --light-color-ts-constructor-signature - ); - --color-ts-parameter: var(--light-color-ts-parameter); - --color-ts-type-parameter: var(--light-color-ts-type-parameter); - --color-ts-accessor: var(--light-color-ts-accessor); - --color-ts-get-signature: var(--light-color-ts-get-signature); - --color-ts-set-signature: var(--light-color-ts-set-signature); - --color-ts-type-alias: var(--light-color-ts-type-alias); - - --external-icon: var(--light-external-icon); - --color-scheme: var(--light-color-scheme); - } -} - -@media (prefers-color-scheme: dark) { - :root { - --color-background: var(--dark-color-background); - --color-background-secondary: var(--dark-color-background-secondary); - --color-background-warning: var(--dark-color-background-warning); - --color-warning-text: var(--dark-color-warning-text); - --color-icon-background: var(--dark-color-icon-background); - --color-accent: var(--dark-color-accent); - --color-active-menu-item: var(--dark-color-active-menu-item); - --color-text: var(--dark-color-text); - --color-text-aside: var(--dark-color-text-aside); - --color-link: var(--dark-color-link); - - --color-ts-module: var(--dark-color-ts-module); - --color-ts-namespace: var(--dark-color-ts-namespace); - --color-ts-enum: var(--dark-color-ts-enum); - --color-ts-enum-member: var(--dark-color-ts-enum-member); - --color-ts-variable: var(--dark-color-ts-variable); - --color-ts-function: var(--dark-color-ts-function); - --color-ts-class: var(--dark-color-ts-class); - --color-ts-interface: var(--dark-color-ts-interface); - --color-ts-constructor: var(--dark-color-ts-constructor); - --color-ts-property: var(--dark-color-ts-property); - --color-ts-method: var(--dark-color-ts-method); - --color-ts-call-signature: var(--dark-color-ts-call-signature); - --color-ts-index-signature: var(--dark-color-ts-index-signature); - --color-ts-constructor-signature: var( - --dark-color-ts-constructor-signature - ); - --color-ts-parameter: var(--dark-color-ts-parameter); - --color-ts-type-parameter: var(--dark-color-ts-type-parameter); - --color-ts-accessor: var(--dark-color-ts-accessor); - --color-ts-get-signature: var(--dark-color-ts-get-signature); - --color-ts-set-signature: var(--dark-color-ts-set-signature); - --color-ts-type-alias: var(--dark-color-ts-type-alias); - - --external-icon: var(--dark-external-icon); - --color-scheme: var(--dark-color-scheme); - } -} - -html { - color-scheme: var(--color-scheme); -} - -body { - margin: 0; -} - -:root[data-theme="light"] { - --color-background: var(--light-color-background); - --color-background-secondary: var(--light-color-background-secondary); - --color-background-warning: var(--light-color-background-warning); - --color-warning-text: var(--light-color-warning-text); - --color-icon-background: var(--light-color-icon-background); - --color-accent: var(--light-color-accent); - --color-active-menu-item: var(--light-color-active-menu-item); - --color-text: var(--light-color-text); - --color-text-aside: var(--light-color-text-aside); - --color-link: var(--light-color-link); - - --color-ts-module: var(--light-color-ts-module); - --color-ts-namespace: var(--light-color-ts-namespace); - --color-ts-enum: var(--light-color-ts-enum); - --color-ts-enum-member: var(--light-color-ts-enum-member); - --color-ts-variable: var(--light-color-ts-variable); - --color-ts-function: var(--light-color-ts-function); - --color-ts-class: var(--light-color-ts-class); - --color-ts-interface: var(--light-color-ts-interface); - --color-ts-constructor: var(--light-color-ts-constructor); - --color-ts-property: var(--light-color-ts-property); - --color-ts-method: var(--light-color-ts-method); - --color-ts-call-signature: var(--light-color-ts-call-signature); - --color-ts-index-signature: var(--light-color-ts-index-signature); - --color-ts-constructor-signature: var( - --light-color-ts-constructor-signature - ); - --color-ts-parameter: var(--light-color-ts-parameter); - --color-ts-type-parameter: var(--light-color-ts-type-parameter); - --color-ts-accessor: var(--light-color-ts-accessor); - --color-ts-get-signature: var(--light-color-ts-get-signature); - --color-ts-set-signature: var(--light-color-ts-set-signature); - --color-ts-type-alias: var(--light-color-ts-type-alias); - - --external-icon: var(--light-external-icon); - --color-scheme: var(--light-color-scheme); -} - -:root[data-theme="dark"] { - --color-background: var(--dark-color-background); - --color-background-secondary: var(--dark-color-background-secondary); - --color-background-warning: var(--dark-color-background-warning); - --color-warning-text: var(--dark-color-warning-text); - --color-icon-background: var(--dark-color-icon-background); - --color-accent: var(--dark-color-accent); - --color-active-menu-item: var(--dark-color-active-menu-item); - --color-text: var(--dark-color-text); - --color-text-aside: var(--dark-color-text-aside); - --color-link: var(--dark-color-link); - - --color-ts-module: var(--dark-color-ts-module); - --color-ts-namespace: var(--dark-color-ts-namespace); - --color-ts-enum: var(--dark-color-ts-enum); - --color-ts-enum-member: var(--dark-color-ts-enum-member); - --color-ts-variable: var(--dark-color-ts-variable); - --color-ts-function: var(--dark-color-ts-function); - --color-ts-class: var(--dark-color-ts-class); - --color-ts-interface: var(--dark-color-ts-interface); - --color-ts-constructor: var(--dark-color-ts-constructor); - --color-ts-property: var(--dark-color-ts-property); - --color-ts-method: var(--dark-color-ts-method); - --color-ts-call-signature: var(--dark-color-ts-call-signature); - --color-ts-index-signature: var(--dark-color-ts-index-signature); - --color-ts-constructor-signature: var( - --dark-color-ts-constructor-signature - ); - --color-ts-parameter: var(--dark-color-ts-parameter); - --color-ts-type-parameter: var(--dark-color-ts-type-parameter); - --color-ts-accessor: var(--dark-color-ts-accessor); - --color-ts-get-signature: var(--dark-color-ts-get-signature); - --color-ts-set-signature: var(--dark-color-ts-set-signature); - --color-ts-type-alias: var(--dark-color-ts-type-alias); - - --external-icon: var(--dark-external-icon); - --color-scheme: var(--dark-color-scheme); -} - -.always-visible, -.always-visible .tsd-signatures { - display: inherit !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - line-height: 1.2; -} - -h1 > a, -h2 > a, -h3 > a, -h4 > a, -h5 > a, -h6 > a { - text-decoration: none; - color: var(--color-text); -} - -h1 { - font-size: 1.875rem; - margin: 0.67rem 0; -} - -h2 { - font-size: 1.5rem; - margin: 0.83rem 0; -} - -h3 { - font-size: 1.25rem; - margin: 1rem 0; -} - -h4 { - font-size: 1.05rem; - margin: 1.33rem 0; -} - -h5 { - font-size: 1rem; - margin: 1.5rem 0; -} - -h6 { - font-size: 0.875rem; - margin: 2.33rem 0; -} - -.uppercase { - text-transform: uppercase; -} - -dl, -menu, -ol, -ul { - margin: 1em 0; -} - -dd { - margin: 0 0 0 40px; -} - -.container { - max-width: 1700px; - padding: 0 2rem; -} - -/* Footer */ -.tsd-generator { - border-top: 1px solid var(--color-accent); - padding-top: 1rem; - padding-bottom: 1rem; - max-height: 3.5rem; -} - -.tsd-generator > p { - margin-top: 0; - margin-bottom: 0; - padding: 0 1rem; -} - -.container-main { - margin: 0 auto; - /* toolbar, footer, margin */ - min-height: calc(100vh - 41px - 56px - 4rem); -} - -@keyframes fade-in { - from { - opacity: 0; - } - to { - opacity: 1; - } -} -@keyframes fade-out { - from { - opacity: 1; - visibility: visible; - } - to { - opacity: 0; - } -} -@keyframes fade-in-delayed { - 0% { - opacity: 0; - } - 33% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@keyframes fade-out-delayed { - 0% { - opacity: 1; - visibility: visible; - } - 66% { - opacity: 0; - } - 100% { - opacity: 0; - } -} -@keyframes pop-in-from-right { - from { - transform: translate(100%, 0); - } - to { - transform: translate(0, 0); - } -} -@keyframes pop-out-to-right { - from { - transform: translate(0, 0); - visibility: visible; - } - to { - transform: translate(100%, 0); - } -} -body { - background: var(--color-background); - font-family: "Segoe UI", sans-serif; - font-size: 16px; - color: var(--color-text); -} - -a { - color: var(--color-link); - text-decoration: none; -} -a:hover { - text-decoration: underline; -} -a.external[target="_blank"] { - background-image: var(--external-icon); - background-position: top 3px right; - background-repeat: no-repeat; - padding-right: 13px; -} - -code, -pre { - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; - padding: 0.2em; - margin: 0; - font-size: 0.875rem; - border-radius: 0.8em; -} - -pre { - position: relative; - white-space: pre; - white-space: pre-wrap; - word-wrap: break-word; - padding: 10px; - border: 1px solid var(--color-accent); -} -pre code { - padding: 0; - font-size: 100%; -} -pre > button { - position: absolute; - top: 10px; - right: 10px; - opacity: 0; - transition: opacity 0.1s; - box-sizing: border-box; -} -pre:hover > button, -pre > button.visible { - opacity: 1; -} - -blockquote { - margin: 1em 0; - padding-left: 1em; - border-left: 4px solid gray; -} - -.tsd-typography { - line-height: 1.333em; -} -.tsd-typography ul { - list-style: square; - padding: 0 0 0 20px; - margin: 0; -} -.tsd-typography h4, -.tsd-typography .tsd-index-panel h3, -.tsd-index-panel .tsd-typography h3, -.tsd-typography h5, -.tsd-typography h6 { - font-size: 1em; - margin: 0; -} -.tsd-typography h5, -.tsd-typography h6 { - font-weight: normal; -} -.tsd-typography p, -.tsd-typography ul, -.tsd-typography ol { - margin: 1em 0; -} - -.tsd-breadcrumb { - margin: 0; - padding: 0; - color: var(--color-text-aside); -} -.tsd-breadcrumb a { - color: var(--color-text-aside); - text-decoration: none; -} -.tsd-breadcrumb a:hover { - text-decoration: underline; -} -.tsd-breadcrumb li { - display: inline; -} -.tsd-breadcrumb li:after { - content: " / "; -} - -.tsd-comment-tags { - display: flex; - flex-direction: column; -} -dl.tsd-comment-tag-group { - display: flex; - align-items: center; - overflow: hidden; - margin: 0.5em 0; -} -dl.tsd-comment-tag-group dt { - display: flex; - margin-right: 0.5em; - font-size: 0.875em; - font-weight: normal; -} -dl.tsd-comment-tag-group dd { - margin: 0; -} -code.tsd-tag { - padding: 0.25em 0.4em; - border: 0.1em solid var(--color-accent); - margin-right: 0.25em; - font-size: 70%; -} -h1 code.tsd-tag:first-of-type { - margin-left: 0.25em; -} - -dl.tsd-comment-tag-group dd:before, -dl.tsd-comment-tag-group dd:after { - content: " "; -} -dl.tsd-comment-tag-group dd pre, -dl.tsd-comment-tag-group dd:after { - clear: both; -} -dl.tsd-comment-tag-group p { - margin: 0; -} - -.tsd-panel.tsd-comment .lead { - font-size: 1.1em; - line-height: 1.333em; - margin-bottom: 2em; -} -.tsd-panel.tsd-comment .lead:last-child { - margin-bottom: 0; -} - -.tsd-filter-visibility h4 { - font-size: 1rem; - padding-top: 0.75rem; - padding-bottom: 0.5rem; - margin: 0; -} -.tsd-filter-item:not(:last-child) { - margin-bottom: 0.5rem; -} -.tsd-filter-input { - display: flex; - width: fit-content; - width: -moz-fit-content; - align-items: center; - user-select: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - cursor: pointer; -} -.tsd-filter-input input[type="checkbox"] { - cursor: pointer; - position: absolute; - width: 1.5em; - height: 1.5em; - opacity: 0; -} -.tsd-filter-input input[type="checkbox"]:disabled { - pointer-events: none; -} -.tsd-filter-input svg { - cursor: pointer; - width: 1.5em; - height: 1.5em; - margin-right: 0.5em; - border-radius: 0.33em; - /* Leaving this at full opacity breaks event listeners on Firefox. - Don't remove unless you know what you're doing. */ - opacity: 0.99; -} -.tsd-filter-input input[type="checkbox"]:focus + svg { - transform: scale(0.95); -} -.tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg { - transform: scale(1); -} -.tsd-checkbox-background { - fill: var(--color-accent); -} -input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark { - stroke: var(--color-text); -} -.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background { - fill: var(--color-background); - stroke: var(--color-accent); - stroke-width: 0.25rem; -} -.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark { - stroke: var(--color-accent); -} - -.tsd-theme-toggle { - padding-top: 0.75rem; -} -.tsd-theme-toggle > h4 { - display: inline; - vertical-align: middle; - margin-right: 0.75rem; -} - -.tsd-hierarchy { - list-style: square; - margin: 0; -} -.tsd-hierarchy .target { - font-weight: bold; -} - -.tsd-panel-group.tsd-index-group { - margin-bottom: 0; -} -.tsd-index-panel .tsd-index-list { - list-style: none; - line-height: 1.333em; - margin: 0; - padding: 0.25rem 0 0 0; - overflow: hidden; - display: grid; - grid-template-columns: repeat(3, 1fr); - column-gap: 1rem; - grid-template-rows: auto; -} -@media (max-width: 1024px) { - .tsd-index-panel .tsd-index-list { - grid-template-columns: repeat(2, 1fr); - } -} -@media (max-width: 768px) { - .tsd-index-panel .tsd-index-list { - grid-template-columns: repeat(1, 1fr); - } -} -.tsd-index-panel .tsd-index-list li { - -webkit-page-break-inside: avoid; - -moz-page-break-inside: avoid; - -ms-page-break-inside: avoid; - -o-page-break-inside: avoid; - page-break-inside: avoid; -} - -.tsd-flag { - display: inline-block; - padding: 0.25em 0.4em; - border-radius: 4px; - color: var(--color-comment-tag-text); - background-color: var(--color-comment-tag); - text-indent: 0; - font-size: 75%; - line-height: 1; - font-weight: normal; -} - -.tsd-anchor { - position: relative; - top: -100px; -} - -.tsd-member { - position: relative; -} -.tsd-member .tsd-anchor + h3 { - display: flex; - align-items: center; - margin-top: 0; - margin-bottom: 0; - border-bottom: none; -} - -.tsd-navigation.settings { - margin: 1rem 0; -} -.tsd-navigation > a, -.tsd-navigation .tsd-accordion-summary { - width: calc(100% - 0.5rem); -} -.tsd-navigation a, -.tsd-navigation summary > span, -.tsd-page-navigation a { - display: inline-flex; - align-items: center; - padding: 0.25rem; - color: var(--color-text); - text-decoration: none; - box-sizing: border-box; -} -.tsd-navigation a.current, -.tsd-page-navigation a.current { - background: var(--color-active-menu-item); -} -.tsd-navigation a:hover, -.tsd-page-navigation a:hover { - text-decoration: underline; -} -.tsd-navigation ul, -.tsd-page-navigation ul { - margin-top: 0; - margin-bottom: 0; - padding: 0; - list-style: none; -} -.tsd-navigation li, -.tsd-page-navigation li { - padding: 0; - max-width: 100%; -} -.tsd-nested-navigation { - margin-left: 3rem; -} -.tsd-nested-navigation > li > details { - margin-left: -1.5rem; -} -.tsd-small-nested-navigation { - margin-left: 1.5rem; -} -.tsd-small-nested-navigation > li > details { - margin-left: -1.5rem; -} - -.tsd-nested-navigation > li > a, -.tsd-nested-navigation > li > span { - width: calc(100% - 1.75rem - 0.5rem); -} - -.tsd-page-navigation ul { - padding-left: 1.75rem; -} - -#tsd-sidebar-links a { - margin-top: 0; - margin-bottom: 0.5rem; - line-height: 1.25rem; -} -#tsd-sidebar-links a:last-of-type { - margin-bottom: 0; -} - -a.tsd-index-link { - padding: 0.25rem 0 !important; - font-size: 1rem; - line-height: 1.25rem; - display: inline-flex; - align-items: center; - color: var(--color-text); -} -.tsd-accordion-summary { - list-style-type: none; /* hide marker on non-safari */ - outline: none; /* broken on safari, so just hide it */ -} -.tsd-accordion-summary::-webkit-details-marker { - display: none; /* hide marker on safari */ -} -.tsd-accordion-summary, -.tsd-accordion-summary a { - user-select: none; - -moz-user-select: none; - -webkit-user-select: none; - -ms-user-select: none; - - cursor: pointer; -} -.tsd-accordion-summary a { - width: calc(100% - 1.5rem); -} -.tsd-accordion-summary > * { - margin-top: 0; - margin-bottom: 0; - padding-top: 0; - padding-bottom: 0; -} -.tsd-index-accordion .tsd-accordion-summary > svg { - margin-left: 0.25rem; -} -.tsd-index-content > :not(:first-child) { - margin-top: 0.75rem; -} -.tsd-index-heading { - margin-top: 1.5rem; - margin-bottom: 0.75rem; -} - -.tsd-kind-icon { - margin-right: 0.5rem; - width: 1.25rem; - height: 1.25rem; - min-width: 1.25rem; - min-height: 1.25rem; -} -.tsd-kind-icon path { - transform-origin: center; - transform: scale(1.1); -} -.tsd-signature > .tsd-kind-icon { - margin-right: 0.8rem; -} - -.tsd-panel { - margin-bottom: 2.5rem; -} -.tsd-panel.tsd-member { - margin-bottom: 4rem; -} -.tsd-panel:empty { - display: none; -} -.tsd-panel > h1, -.tsd-panel > h2, -.tsd-panel > h3 { - margin: 1.5rem -1.5rem 0.75rem -1.5rem; - padding: 0 1.5rem 0.75rem 1.5rem; -} -.tsd-panel > h1.tsd-before-signature, -.tsd-panel > h2.tsd-before-signature, -.tsd-panel > h3.tsd-before-signature { - margin-bottom: 0; - border-bottom: none; -} - -.tsd-panel-group { - margin: 4rem 0; -} -.tsd-panel-group.tsd-index-group { - margin: 2rem 0; -} -.tsd-panel-group.tsd-index-group details { - margin: 2rem 0; -} - -#tsd-search { - transition: background-color 0.2s; -} -#tsd-search .title { - position: relative; - z-index: 2; -} -#tsd-search .field { - position: absolute; - left: 0; - top: 0; - right: 2.5rem; - height: 100%; -} -#tsd-search .field input { - box-sizing: border-box; - position: relative; - top: -50px; - z-index: 1; - width: 100%; - padding: 0 10px; - opacity: 0; - outline: 0; - border: 0; - background: transparent; - color: var(--color-text); -} -#tsd-search .field label { - position: absolute; - overflow: hidden; - right: -40px; -} -#tsd-search .field input, -#tsd-search .title, -#tsd-toolbar-links a { - transition: opacity 0.2s; -} -#tsd-search .results { - position: absolute; - visibility: hidden; - top: 40px; - width: 100%; - margin: 0; - padding: 0; - list-style: none; - box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); -} -#tsd-search .results li { - padding: 0 10px; - background-color: var(--color-background); -} -#tsd-search .results li:nth-child(even) { - background-color: var(--color-background-secondary); -} -#tsd-search .results li.state { - display: none; -} -#tsd-search .results li.current, -#tsd-search .results li:hover { - background-color: var(--color-accent); -} -#tsd-search .results a { - display: block; -} -#tsd-search .results a:before { - top: 10px; -} -#tsd-search .results span.parent { - color: var(--color-text-aside); - font-weight: normal; -} -#tsd-search.has-focus { - background-color: var(--color-accent); -} -#tsd-search.has-focus .field input { - top: 0; - opacity: 1; -} -#tsd-search.has-focus .title, -#tsd-search.has-focus #tsd-toolbar-links a { - z-index: 0; - opacity: 0; -} -#tsd-search.has-focus .results { - visibility: visible; -} -#tsd-search.loading .results li.state.loading { - display: block; -} -#tsd-search.failure .results li.state.failure { - display: block; -} - -#tsd-toolbar-links { - position: absolute; - top: 0; - right: 2rem; - height: 100%; - display: flex; - align-items: center; - justify-content: flex-end; -} -#tsd-toolbar-links a { - margin-left: 1.5rem; -} -#tsd-toolbar-links a:hover { - text-decoration: underline; -} - -.tsd-signature { - margin: 0 0 1rem 0; - padding: 1rem 0.5rem; - border: 1px solid var(--color-accent); - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; - font-size: 14px; - overflow-x: auto; -} - -.tsd-signature-symbol { - color: var(--color-text-aside); - font-weight: normal; -} - -.tsd-signature-type { - font-style: italic; - font-weight: normal; -} - -.tsd-signatures { - padding: 0; - margin: 0 0 1em 0; - list-style-type: none; -} -.tsd-signatures .tsd-signature { - margin: 0; - border-color: var(--color-accent); - border-width: 1px 0; - transition: background-color 0.1s; -} -.tsd-description .tsd-signatures .tsd-signature { - border-width: 1px; -} - -ul.tsd-parameter-list, -ul.tsd-type-parameter-list { - list-style: square; - margin: 0; - padding-left: 20px; -} -ul.tsd-parameter-list > li.tsd-parameter-signature, -ul.tsd-type-parameter-list > li.tsd-parameter-signature { - list-style: none; - margin-left: -20px; -} -ul.tsd-parameter-list h5, -ul.tsd-type-parameter-list h5 { - font-size: 16px; - margin: 1em 0 0.5em 0; -} -.tsd-sources { - margin-top: 1rem; - font-size: 0.875em; -} -.tsd-sources a { - color: var(--color-text-aside); - text-decoration: underline; -} -.tsd-sources ul { - list-style: none; - padding: 0; -} - -.tsd-page-toolbar { - position: sticky; - z-index: 1; - top: 0; - left: 0; - width: 100%; - color: var(--color-text); - background: var(--color-background-secondary); - border-bottom: 1px var(--color-accent) solid; - transition: transform 0.3s ease-in-out; -} -.tsd-page-toolbar a { - color: var(--color-text); - text-decoration: none; -} -.tsd-page-toolbar a.title { - font-weight: bold; -} -.tsd-page-toolbar a.title:hover { - text-decoration: underline; -} -.tsd-page-toolbar .tsd-toolbar-contents { - display: flex; - justify-content: space-between; - height: 2.5rem; - margin: 0 auto; -} -.tsd-page-toolbar .table-cell { - position: relative; - white-space: nowrap; - line-height: 40px; -} -.tsd-page-toolbar .table-cell:first-child { - width: 100%; -} -.tsd-page-toolbar .tsd-toolbar-icon { - box-sizing: border-box; - line-height: 0; - padding: 12px 0; -} - -.tsd-widget { - display: inline-block; - overflow: hidden; - opacity: 0.8; - height: 40px; - transition: opacity 0.1s, background-color 0.2s; - vertical-align: bottom; - cursor: pointer; -} -.tsd-widget:hover { - opacity: 0.9; -} -.tsd-widget.active { - opacity: 1; - background-color: var(--color-accent); -} -.tsd-widget.no-caption { - width: 40px; -} -.tsd-widget.no-caption:before { - margin: 0; -} - -.tsd-widget.options, -.tsd-widget.menu { - display: none; -} -input[type="checkbox"] + .tsd-widget:before { - background-position: -120px 0; -} -input[type="checkbox"]:checked + .tsd-widget:before { - background-position: -160px 0; -} - -img { - max-width: 100%; -} - -.tsd-anchor-icon { - display: inline-flex; - align-items: center; - margin-left: 0.5rem; - vertical-align: middle; - color: var(--color-text); -} - -.tsd-anchor-icon svg { - width: 1em; - height: 1em; - visibility: hidden; -} - -.tsd-anchor-link:hover > .tsd-anchor-icon svg { - visibility: visible; -} - -.deprecated { - text-decoration: line-through; -} - -.warning { - padding: 1rem; - color: var(--color-warning-text); - background: var(--color-background-warning); -} - -.tsd-kind-project { - color: var(--color-ts-project); -} -.tsd-kind-module { - color: var(--color-ts-module); -} -.tsd-kind-namespace { - color: var(--color-ts-namespace); -} -.tsd-kind-enum { - color: var(--color-ts-enum); -} -.tsd-kind-enum-member { - color: var(--color-ts-enum-member); -} -.tsd-kind-variable { - color: var(--color-ts-variable); -} -.tsd-kind-function { - color: var(--color-ts-function); -} -.tsd-kind-class { - color: var(--color-ts-class); -} -.tsd-kind-interface { - color: var(--color-ts-interface); -} -.tsd-kind-constructor { - color: var(--color-ts-constructor); -} -.tsd-kind-property { - color: var(--color-ts-property); -} -.tsd-kind-method { - color: var(--color-ts-method); -} -.tsd-kind-call-signature { - color: var(--color-ts-call-signature); -} -.tsd-kind-index-signature { - color: var(--color-ts-index-signature); -} -.tsd-kind-constructor-signature { - color: var(--color-ts-constructor-signature); -} -.tsd-kind-parameter { - color: var(--color-ts-parameter); -} -.tsd-kind-type-literal { - color: var(--color-ts-type-literal); -} -.tsd-kind-type-parameter { - color: var(--color-ts-type-parameter); -} -.tsd-kind-accessor { - color: var(--color-ts-accessor); -} -.tsd-kind-get-signature { - color: var(--color-ts-get-signature); -} -.tsd-kind-set-signature { - color: var(--color-ts-set-signature); -} -.tsd-kind-type-alias { - color: var(--color-ts-type-alias); -} - -/* if we have a kind icon, don't color the text by kind */ -.tsd-kind-icon ~ span { - color: var(--color-text); -} - -* { - scrollbar-width: thin; - scrollbar-color: var(--color-accent) var(--color-icon-background); -} - -*::-webkit-scrollbar { - width: 0.75rem; -} - -*::-webkit-scrollbar-track { - background: var(--color-icon-background); -} - -*::-webkit-scrollbar-thumb { - background-color: var(--color-accent); - border-radius: 999rem; - border: 0.25rem solid var(--color-icon-background); -} - -/* mobile */ -@media (max-width: 769px) { - .tsd-widget.options, - .tsd-widget.menu { - display: inline-block; - } - - .container-main { - display: flex; - } - html .col-content { - float: none; - max-width: 100%; - width: 100%; - } - html .col-sidebar { - position: fixed !important; - overflow-y: auto; - -webkit-overflow-scrolling: touch; - z-index: 1024; - top: 0 !important; - bottom: 0 !important; - left: auto !important; - right: 0 !important; - padding: 1.5rem 1.5rem 0 0; - width: 75vw; - visibility: hidden; - background-color: var(--color-background); - transform: translate(100%, 0); - } - html .col-sidebar > *:last-child { - padding-bottom: 20px; - } - html .overlay { - content: ""; - display: block; - position: fixed; - z-index: 1023; - top: 0; - left: 0; - right: 0; - bottom: 0; - background-color: rgba(0, 0, 0, 0.75); - visibility: hidden; - } - - .to-has-menu .overlay { - animation: fade-in 0.4s; - } - - .to-has-menu .col-sidebar { - animation: pop-in-from-right 0.4s; - } - - .from-has-menu .overlay { - animation: fade-out 0.4s; - } - - .from-has-menu .col-sidebar { - animation: pop-out-to-right 0.4s; - } - - .has-menu body { - overflow: hidden; - } - .has-menu .overlay { - visibility: visible; - } - .has-menu .col-sidebar { - visibility: visible; - transform: translate(0, 0); - display: flex; - flex-direction: column; - gap: 1.5rem; - max-height: 100vh; - padding: 1rem 2rem; - } - .has-menu .tsd-navigation { - max-height: 100%; - } -} - -/* one sidebar */ -@media (min-width: 770px) { - .container-main { - display: grid; - grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); - grid-template-areas: "sidebar content"; - margin: 2rem auto; - } - - .col-sidebar { - grid-area: sidebar; - } - .col-content { - grid-area: content; - padding: 0 1rem; - } -} -@media (min-width: 770px) and (max-width: 1399px) { - .col-sidebar { - max-height: calc(100vh - 2rem - 42px); - overflow: auto; - position: sticky; - top: 42px; - padding-top: 1rem; - } - .site-menu { - margin-top: 1rem; - } -} - -/* two sidebars */ -@media (min-width: 1200px) { - .container-main { - grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) minmax(0, 20rem); - grid-template-areas: "sidebar content toc"; - } - - .col-sidebar { - display: contents; - } - - .page-menu { - grid-area: toc; - padding-left: 1rem; - } - .site-menu { - grid-area: sidebar; - } - - .site-menu { - margin-top: 1rem 0; - } - - .page-menu, - .site-menu { - max-height: calc(100vh - 2rem - 42px); - overflow: auto; - position: sticky; - top: 42px; - } -} diff --git a/docs/classes/base_Components.Components.html b/docs/classes/base_Components.Components.html deleted file mode 100644 index 1a1a0f7a..00000000 --- a/docs/classes/base_Components.Components.html +++ /dev/null @@ -1,323 +0,0 @@ -Components | @formio/core
-
- -
-
-
-
- -

Class Components

-
-

Manages all of the components within the Form.io renderer.

-
-
-
-

Hierarchy

-
    -
  • Components
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
components: any = {}
-

An array of Components available to be rendered.

-
-
-
- -
decorators: any = {}
-
-

Methods

-
- -
    - -
  • -

    Adds a new component to the renderer. Can either be a component class or a component JSON -to be imported.

    -
    -
    -

    Parameters

    -
      -
    • -
      component: any
      -
    • -
    • -
      type: string
    -

    Returns any

    -
-
- -
    - -
  • -

    Adds a base decorator type component.

    -
    -
    -

    Parameters

    -
      -
    • -
      decorator: any
    • -
    • -
      type: string
      -
    -

    Returns void

    -
-
- -
    - -
  • -

    Gets a specific component type.

    -
    -
    -

    Parameters

    -
      -
    • -
      type: string
      -
    • -
    • -
      from: any = 'components'
      -
    -

    Returns any

    -
-
- -
    - -
  • -

    Create a new component.

    -
    const htmlComp = Components.createComponent({
    type: 'html',
    tag: 'p',
    content: 'This is a test.'
    }) -
    -
    -
    -

    Parameters

    -
      -
    • -
      comp: any
      -

      The component JSON you wish to create.

      -
      -
    • -
    • -
      Optional options: any
      -

      The options to pass to this component.

      -
      -
    • -
    • -
      Optional data: any
      -

      The data you wish to provide to this component.

      -
      -
    -

    Returns any

    -
-
- -
    - -
  • -

    Imports a new component based on the JSON decorator of that component.

    -
    -
    -

    Parameters

    -
      -
    • -
      props: any = {}
    -

    Returns void

    -
-
- -
    - -
  • -

    Sets the components used within this renderer.

    -
    -
    -

    Parameters

    -
      -
    • -
      components: any
      -
    -

    Returns void

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/base_Template.Template.html b/docs/classes/base_Template.Template.html deleted file mode 100644 index fde60186..00000000 --- a/docs/classes/base_Template.Template.html +++ /dev/null @@ -1,360 +0,0 @@ -Template | @formio/core
-
- -
-
-
-
- -

Class Template

-
-

Manages all the available templates which can be rendered.

-
-
-
-

Hierarchy

-
    -
  • Template
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Accessors

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Properties

-
- -
_current: any = {}
-
- -
_framework: string = 'bootstrap'
-
- -
templates: any = []
-
-

Accessors

-
- -
    -
  • get current(): any
  • -
  • -

    Get the current template.

    -
    -

    Returns any

    -
  • -
  • set current(templates): void
  • -
  • -

    Set the current template.

    -
    -
    -

    Parameters

    -
      -
    • -
      templates: any
    -

    Returns void

    -
-
- -
    -
  • get framework(): string
  • -
  • -

    Gets the current framework.

    -
    -

    Returns string

    -
  • -
  • set framework(framework): void
  • -
  • -

    Sets the current framework.

    -
    -
    -

    Parameters

    -
      -
    • -
      framework: string
    -

    Returns void

    -
-
-

Methods

-
- -
    - -
  • -

    Adds some templates to the existing template.

    -
    -
    -

    Parameters

    -
      -
    • -
      name: string
      -
    • -
    • -
      template: any
      -
    -

    Returns void

    -
-
- -
    - -
  • -

    Adds a collection of template frameworks to the renderer.

    -
    -
    -

    Parameters

    -
      -
    • -
      templates: any
      -
    -

    Returns void

    -
-
- -
    - -
  • -

    Extend an existing template.

    -
    -
    -

    Parameters

    -
      -
    • -
      name: string
      -
    • -
    • -
      template: any
      -
    -

    Returns void

    -
-
- -
    - -
  • -

    Render a partial within the current template.

    -
    -
    -

    Parameters

    -
      -
    • -
      name: any
      -
    • -
    • -
      ctx: any
      -
    • -
    • -
      mode: string = 'html'
      -
    • -
    • -
      defaultTemplate: any = null
    -

    Returns any

    -
-
- -
    - -
  • -

    Sets a template.

    -
    -
    -

    Parameters

    -
      -
    • -
      name: string
      -
    • -
    • -
      template: any
      -
    -

    Returns void

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/components_datatable.DataTable.html b/docs/classes/components_datatable.DataTable.html deleted file mode 100644 index dd40baef..00000000 --- a/docs/classes/components_datatable.DataTable.html +++ /dev/null @@ -1,233 +0,0 @@ -DataTable | @formio/core
-
- -
-
-
- -
-

A base class for a data table.

-
-
-
-

Hierarchy

-
-
-

Indexable

-
[x: string]: any
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Properties

-
- -
component?: any
-
- -
data?: any
-
- -
options?: any
-
-

Methods

-
- -
-
- -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/components_datatable.DataTableComponent.html b/docs/classes/components_datatable.DataTableComponent.html deleted file mode 100644 index 029dcf71..00000000 --- a/docs/classes/components_datatable.DataTableComponent.html +++ /dev/null @@ -1,236 +0,0 @@ -DataTableComponent | @formio/core
-
- -
-
-
-
- -

Class DataTableComponent

-
-

A base class for a data table.

-
-
-
-

Hierarchy

-
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Properties

-
- -
component?: any
-
- -
data?: any
-
- -
options?: any
-
-

Methods

-
- -
-
- -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/components_datavalue.DataValueComponent.html b/docs/classes/components_datavalue.DataValueComponent.html deleted file mode 100644 index 1639b3d4..00000000 --- a/docs/classes/components_datavalue.DataValueComponent.html +++ /dev/null @@ -1,235 +0,0 @@ -DataValueComponent | @formio/core
-
- -
-
-
-
- -

Class DataValueComponent

-
-

Base class for HTML based components.

-
-
-
-

Hierarchy

-
    -
  • HTML -
      -
    • DataValueComponent
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Properties

-
- -
component?: any
-
- -
data?: any
-
- -
options?: any
-
-

Methods

-
- -
-
- -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/components_html.HTML.html b/docs/classes/components_html.HTML.html deleted file mode 100644 index a3f02185..00000000 --- a/docs/classes/components_html.HTML.html +++ /dev/null @@ -1,237 +0,0 @@ -HTML | @formio/core
-
- -
-
-
- -
-

Base class for HTML based components.

-
-
-
-

Hierarchy

-
-
-

Indexable

-
[x: string]: any
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      Optional component: any
    • -
    • -
      Optional options: any
    • -
    • -
      Optional data: any
    -

    Returns HTML

-
-

Properties

-
- -
component?: any
-
- -
data?: any
-
- -
options?: any
-
-

Methods

-
- -
-
- -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/components_html.HTMLComponent.html b/docs/classes/components_html.HTMLComponent.html deleted file mode 100644 index ff333d32..00000000 --- a/docs/classes/components_html.HTMLComponent.html +++ /dev/null @@ -1,237 +0,0 @@ -HTMLComponent | @formio/core
-
- -
-
-
-
- -

Class HTMLComponent

-
-

Base class for HTML based components.

-
-
-
-

Hierarchy

-
    -
  • HTML -
      -
    • HTMLComponent
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Properties

-
- -
component?: any
-
- -
data?: any
-
- -
options?: any
-
-

Methods

-
- -
-
- -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/components_htmlcontainer.HTMLContainer.html b/docs/classes/components_htmlcontainer.HTMLContainer.html deleted file mode 100644 index 16c481d6..00000000 --- a/docs/classes/components_htmlcontainer.HTMLContainer.html +++ /dev/null @@ -1,238 +0,0 @@ -HTMLContainer | @formio/core
-
- -
-
-
- -
-

Base HTMLContainer component.

-
-
-
-

Hierarchy

-
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Properties

-
- -
component?: any
-
- -
data?: any
-
- -
options?: any
-
-

Methods

-
- -
-
- -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/components_htmlcontainer.HTMLContainerComponent.html b/docs/classes/components_htmlcontainer.HTMLContainerComponent.html deleted file mode 100644 index 083f2bc7..00000000 --- a/docs/classes/components_htmlcontainer.HTMLContainerComponent.html +++ /dev/null @@ -1,236 +0,0 @@ -HTMLContainerComponent | @formio/core
-
- -
-
-
- -
-

Base HTMLContainer component.

-
-
-
-

Hierarchy

-
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Properties

-
- -
component?: any
-
- -
data?: any
-
- -
options?: any
-
-

Methods

-
- -
-
- -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/components_input_input.Input.html b/docs/classes/components_input_input.Input.html deleted file mode 100644 index dee87c84..00000000 --- a/docs/classes/components_input_input.Input.html +++ /dev/null @@ -1,295 +0,0 @@ -Input | @formio/core
-
- -
-
-
- -
-

Base Input component for extending purposes.

-
-
-
-

Hierarchy

-
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Properties

-
- -
component?: any
-
- -
data?: any
-
- -
element: any
-
- -
options?: any
-
-

Methods

-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/components_input_input.InputComponent.html b/docs/classes/components_input_input.InputComponent.html deleted file mode 100644 index 0c0c8b5f..00000000 --- a/docs/classes/components_input_input.InputComponent.html +++ /dev/null @@ -1,298 +0,0 @@ -InputComponent | @formio/core
-
- -
-
-
- -
-

Base Input component for extending purposes.

-
-
-
-

Hierarchy

-
    -
  • Input -
      -
    • InputComponent
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Properties

-
- -
component?: any
-
- -
data?: any
-
- -
element: any
-
- -
options?: any
-
-

Methods

-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/error_FieldError.FieldError.html b/docs/classes/error_FieldError.FieldError.html deleted file mode 100644 index 44f670da..00000000 --- a/docs/classes/error_FieldError.FieldError.html +++ /dev/null @@ -1,191 +0,0 @@ -FieldError | @formio/core
-
- -
-
-
-
- -

Class FieldError

-
-

Hierarchy

-
    -
  • FieldError
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Constructors

-
- -
-
-

Properties

-
- -
context: FieldErrorContext
-
- -
errorKeyOrMessage: string
-
- -
level?: string
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/error_ValidatorError.ValidatorError.html b/docs/classes/error_ValidatorError.ValidatorError.html deleted file mode 100644 index 3409d28e..00000000 --- a/docs/classes/error_ValidatorError.ValidatorError.html +++ /dev/null @@ -1,257 +0,0 @@ -ValidatorError | @formio/core
-
- -
-
-
- -
-

Hierarchy

-
    -
  • Error -
      -
    • ValidatorError
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      Optional message: string
    -

    Returns ValidatorError

-
-

Properties

-
- -
message: string
-
- -
name: string
-
- -
stack?: string
-
- -
prepareStackTrace?: ((err, stackTraces) => any)
-
-

Type declaration

-
-
- -
stackTraceLimit: number
-
-

Methods

-
- -
    - -
  • -

    Create .stack property on a target object

    -
    -
    -

    Parameters

    -
      -
    • -
      targetObject: object
    • -
    • -
      Optional constructorOpt: Function
    -

    Returns void

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/index.dayjs.Dayjs.html b/docs/classes/index.dayjs.Dayjs.html deleted file mode 100644 index bebe3ba0..00000000 --- a/docs/classes/index.dayjs.Dayjs.html +++ /dev/null @@ -1,1061 +0,0 @@ -Dayjs | @formio/core
-
- -
-
-
-
- -

Class Dayjs

-
-

Hierarchy

-
    -
  • Dayjs
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      Optional config: null | string | number | Date | Dayjs
    -

    Returns Dayjs

-
-

Methods

-
- -
    - -
  • -

    Returns a cloned Day.js object with a specified amount of time added.

    -
    dayjs().add(7, 'day')// => Dayjs
    -
    -

    Units are case insensitive, and support plural and short forms.

    -

    Docs: https://day.js.org/docs/en/manipulate/add

    -
    -
    -

    Parameters

    -
    -

    Returns Dayjs

    -
-
- -
    - -
  • -

    All Day.js objects are immutable. Still, dayjs#clone can create a clone of the current object if you need one.

    -
    dayjs().clone()// => Dayjs
    dayjs(dayjs('2019-01-25')) // passing a Dayjs object to a constructor will also clone it -
    -

    Docs: https://day.js.org/docs/en/parse/dayjs-clone

    -
    -

    Returns Dayjs

    -
-
- -
    - -
  • -

    Get the date of the month.

    -
    dayjs().date()// => 1-31
    -
    -

    Docs: https://day.js.org/docs/en/get-set/date

    -
    -

    Returns number

    -
  • - -
  • -

    Set the date of the month.

    -

    Accepts numbers from 1 to 31. If the range is exceeded, it will bubble up to the next months.

    -
    dayjs().date(1)// => Dayjs
    -
    -

    Docs: https://day.js.org/docs/en/get-set/date

    -
    -
    -

    Parameters

    -
      -
    • -
      value: number
    -

    Returns Dayjs

    -
-
- -
    - -
  • -

    Get the day of the week.

    -

    Returns numbers from 0 (Sunday) to 6 (Saturday).

    -
    dayjs().day()// 0-6
    -
    -

    Docs: https://day.js.org/docs/en/get-set/day

    -
    -

    Returns number

    -
  • - -
  • -

    Set the day of the week.

    -

    Accepts numbers from 0 (Sunday) to 6 (Saturday). If the range is exceeded, it will bubble up to next weeks.

    -
    dayjs().day(0)// => Dayjs
    -
    -

    Docs: https://day.js.org/docs/en/get-set/day

    -
    -
    -

    Parameters

    -
      -
    • -
      value: number
    -

    Returns Dayjs

    -
-
- -
    - -
  • -

    Get the number of days in the current month.

    -
    dayjs('2019-01-25').daysInMonth() // 31
    -
    -

    Docs: https://day.js.org/docs/en/display/days-in-month

    -
    -

    Returns number

    -
-
- -
    - -
  • -

    This indicates the difference between two date-time in the specified unit.

    -

    To get the difference in milliseconds, use dayjs#diff

    -
    const date1 = dayjs('2019-01-25')
    const date2 = dayjs('2018-06-05')
    date1.diff(date2) // 20214000000 default milliseconds
    date1.diff() // milliseconds to current time -
    -

    To get the difference in another unit of measurement, pass that measurement as the second argument.

    -
    const date1 = dayjs('2019-01-25')
    date1.diff('2018-06-05', 'month') // 7 -
    -

    Units are case insensitive, and support plural and short forms.

    -

    Docs: https://day.js.org/docs/en/display/difference

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional date: null | string | number | Date | Dayjs
    • -
    • -
      Optional unit: "D" | "d" | "day" | "s" | "ms" | "millisecond" | "second" | "minute" | "hour" | "month" | "year" | "date" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "M" | "y" | "h" | "m" | "week" | "weeks" | "w" | "quarter" | "quarters" | "Q"
    • -
    • -
      Optional float: boolean
    -

    Returns number

    -
-
- -
    - -
  • -

    Returns a cloned Day.js object and set it to the end of a unit of time.

    -
    dayjs().endOf('month')// => Dayjs
    -
    -

    Units are case insensitive, and support plural and short forms.

    -

    Docs: https://day.js.org/docs/en/manipulate/end-of

    -
    -
    -

    Parameters

    -
    -

    Returns Dayjs

    -
-
- -
    - -
  • -

    Get the formatted date according to the string of tokens passed in.

    -

    To escape characters, wrap them in square brackets (e.g. [MM]).

    -
    dayjs().format()// => current date in ISO8601, without fraction seconds e.g. '2020-04-02T08:02:17-05:00'
    dayjs('2019-01-25').format('[YYYYescape] YYYY-MM-DDTHH:mm:ssZ[Z]')// 'YYYYescape 2019-01-25T00:00:00-02:00Z'
    dayjs('2019-01-25').format('DD/MM/YYYY') // '25/01/2019' -
    -

    Docs: https://day.js.org/docs/en/display/format

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional template: string
    -

    Returns string

    -
-
- -
    - -
  • -

    String getter, returns the corresponding information getting from Day.js object.

    -

    In general:

    -
    dayjs().get(unit) === dayjs()[unit]()
    -
    -

    Units are case insensitive, and support plural and short forms.

    -
    dayjs().get('year')
    dayjs().get('month') // start 0
    dayjs().get('date') -
    -

    Docs: https://day.js.org/docs/en/get-set/get

    -
    -
    -

    Parameters

    -
    -

    Returns number

    -
-
- -
    - -
  • -

    Get the hour.

    -
    dayjs().hour()// => 0-23
    -
    -

    Docs: https://day.js.org/docs/en/get-set/hour

    -
    -

    Returns number

    -
  • - -
  • -

    Set the hour.

    -

    Accepts numbers from 0 to 23. If the range is exceeded, it will bubble up to the next day.

    -
    dayjs().hour(12)// => Dayjs
    -
    -

    Docs: https://day.js.org/docs/en/get-set/hour

    -
    -
    -

    Parameters

    -
      -
    • -
      value: number
    -

    Returns Dayjs

    -
-
- -
    - -
  • -

    This indicates whether the Day.js object is after the other supplied date-time.

    -
    dayjs().isAfter(dayjs('2011-01-01')) // default milliseconds
    -
    -

    If you want to limit the granularity to a unit other than milliseconds, pass it as the second parameter.

    -
    dayjs().isAfter('2011-01-01', 'year')// => boolean
    -
    -

    Units are case insensitive, and support plural and short forms.

    -

    Docs: https://day.js.org/docs/en/query/is-after

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional date: null | string | number | Date | Dayjs
    • -
    • -
      Optional unit: OpUnitType
    -

    Returns boolean

    -
-
- -
    - -
  • -

    This indicates whether the Day.js object is before the other supplied date-time.

    -
    dayjs().isBefore(dayjs('2011-01-01')) // default milliseconds
    -
    -

    If you want to limit the granularity to a unit other than milliseconds, pass it as the second parameter.

    -
    dayjs().isBefore('2011-01-01', 'year')// => boolean
    -
    -

    Units are case insensitive, and support plural and short forms.

    -

    Docs: https://day.js.org/docs/en/query/is-before

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional date: null | string | number | Date | Dayjs
    • -
    • -
      Optional unit: OpUnitType
    -

    Returns boolean

    -
-
- -
    - -
  • -

    This indicates whether the Day.js object is the same as the other supplied date-time.

    -
    dayjs().isSame(dayjs('2011-01-01')) // default milliseconds
    -
    -

    If you want to limit the granularity to a unit other than milliseconds, pass it as the second parameter.

    -
    dayjs().isSame('2011-01-01', 'year')// => boolean
    -
    -

    Docs: https://day.js.org/docs/en/query/is-same

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional date: null | string | number | Date | Dayjs
    • -
    • -
      Optional unit: OpUnitType
    -

    Returns boolean

    -
-
- -
    - -
  • -

    Returns boolean

-
- -
    - -
  • -

    This returns a boolean indicating whether the Day.js object contains a valid date or not.

    -
    dayjs().isValid()// => boolean
    -
    -

    Docs: https://day.js.org/docs/en/parse/is-valid

    -
    -

    Returns boolean

    -
-
- -
    - -
  • -

    Returns Dayjs

-
- -
    - -
  • -

    Returns string

  • - -
  • -
    -

    Parameters

    -
      -
    • -
      preset: string | ILocale
    • -
    • -
      Optional object: Partial<ILocale>
    -

    Returns Dayjs

-
- -
    - -
  • -

    Get the milliseconds.

    -
    dayjs().millisecond()// => 0-999
    -
    -

    Docs: https://day.js.org/docs/en/get-set/millisecond

    -
    -

    Returns number

    -
  • - -
  • -

    Set the milliseconds.

    -

    Accepts numbers from 0 to 999. If the range is exceeded, it will bubble up to the next seconds.

    -
    dayjs().millisecond(1)// => Dayjs
    -
    -

    Docs: https://day.js.org/docs/en/get-set/millisecond

    -
    -
    -

    Parameters

    -
      -
    • -
      value: number
    -

    Returns Dayjs

    -
-
- -
    - -
  • -

    Get the minutes.

    -
    dayjs().minute()// => 0-59
    -
    -

    Docs: https://day.js.org/docs/en/get-set/minute

    -
    -

    Returns number

    -
  • - -
  • -

    Set the minutes.

    -

    Accepts numbers from 0 to 59. If the range is exceeded, it will bubble up to the next hour.

    -
    dayjs().minute(59)// => Dayjs
    -
    -

    Docs: https://day.js.org/docs/en/get-set/minute

    -
    -
    -

    Parameters

    -
      -
    • -
      value: number
    -

    Returns Dayjs

    -
-
- -
    - -
  • -

    Get the month.

    -

    Months are zero indexed, so January is month 0.

    -
    dayjs().month()// => 0-11
    -
    -

    Docs: https://day.js.org/docs/en/get-set/month

    -
    -

    Returns number

    -
  • - -
  • -

    Set the month.

    -

    Months are zero indexed, so January is month 0.

    -

    Accepts numbers from 0 to 11. If the range is exceeded, it will bubble up to the next year.

    -
    dayjs().month(0)// => Dayjs
    -
    -

    Docs: https://day.js.org/docs/en/get-set/month

    -
    -
    -

    Parameters

    -
      -
    • -
      value: number
    -

    Returns Dayjs

    -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      Optional type: "short" | "long"
    -

    Returns undefined | string

-
- -
    - -
  • -

    Get the seconds.

    -
    dayjs().second()// => 0-59
    -
    -

    Docs: https://day.js.org/docs/en/get-set/second

    -
    -

    Returns number

    -
  • - -
  • -

    Set the seconds.

    -

    Accepts numbers from 0 to 59. If the range is exceeded, it will bubble up to the next minutes.

    -
    dayjs().second(1)// Dayjs
    -
    -
    -
    -

    Parameters

    -
      -
    • -
      value: number
    -

    Returns Dayjs

    -
-
- -
    - -
  • -

    Generic setter, accepting unit as first argument, and value as second, returns a new instance with the applied changes.

    -

    In general:

    -
    dayjs().set(unit, value) === dayjs()[unit](value)
    -
    -

    Units are case insensitive, and support plural and short forms.

    -
    dayjs().set('date', 1)
    dayjs().set('month', 3) // April
    dayjs().set('second', 30) -
    -

    Docs: https://day.js.org/docs/en/get-set/set

    -
    -
    -

    Parameters

    -
    -

    Returns Dayjs

    -
-
- -
    - -
  • -

    Returns a cloned Day.js object and set it to the start of a unit of time.

    -
    dayjs().startOf('year')// => Dayjs
    -
    -

    Units are case insensitive, and support plural and short forms.

    -

    Docs: https://day.js.org/docs/en/manipulate/start-of

    -
    -
    -

    Parameters

    -
    -

    Returns Dayjs

    -
-
- -
    - -
  • -

    Returns a cloned Day.js object with a specified amount of time subtracted.

    -
    dayjs().subtract(7, 'year')// => Dayjs
    -
    -

    Units are case insensitive, and support plural and short forms.

    -

    Docs: https://day.js.org/docs/en/manipulate/subtract

    -
    -
    -

    Parameters

    -
    -

    Returns Dayjs

    -
-
- -
    - -
  • -

    To get a copy of the native Date object parsed from the Day.js object use dayjs#toDate.

    -
    dayjs('2019-01-25').toDate()// => Date
    -
    -
    -

    Returns Date

    -
-
- -
    - -
  • -

    To format as an ISO 8601 string.

    -
    dayjs('2019-01-25').toISOString() // '2019-01-25T02:00:00.000Z'
    -
    -

    Docs: https://day.js.org/docs/en/display/as-iso-string

    -
    -

    Returns string

    -
-
- -
    - -
  • -

    To serialize as an ISO 8601 string.

    -
    dayjs('2019-01-25').toJSON() // '2019-01-25T02:00:00.000Z'
    -
    -

    Docs: https://day.js.org/docs/en/display/as-json

    -
    -

    Returns string

    -
-
- -
    - -
  • -

    Returns a string representation of the date.

    -
    dayjs('2019-01-25').toString() // 'Fri, 25 Jan 2019 02:00:00 GMT'
    -
    -

    Docs: https://day.js.org/docs/en/display/as-string

    -
    -

    Returns string

    -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      Optional timezone: string
    • -
    • -
      Optional keepLocalTime: boolean
    -

    Returns Dayjs

-
- -
    - -
  • -

    This returns the Unix timestamp (the number of seconds since the Unix Epoch) of the Day.js object.

    -
    dayjs('2019-01-25').unix() // 1548381600
    -
    -

    This value is floored to the nearest second, and does not include a milliseconds component.

    -

    Docs: https://day.js.org/docs/en/display/unix-timestamp

    -
    -

    Returns number

    -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      Optional keepLocalTime: boolean
    -

    Returns Dayjs

-
- -
    - -
  • -

    Get the UTC offset in minutes.

    -
    dayjs().utcOffset()
    -
    -

    Docs: https://day.js.org/docs/en/manipulate/utc-offset

    -
    -

    Returns number

    -
  • - -
  • -
    -

    Parameters

    -
      -
    • -
      offset: string | number
    • -
    • -
      Optional keepLocalTime: boolean
    -

    Returns Dayjs

-
- -
    - -
  • -

    This returns the number of milliseconds since the Unix Epoch of the Day.js object.

    -
    dayjs('2019-01-25').valueOf() // 1548381600000
    +dayjs(1548381600000) // 1548381600000 -
    -

    To get a Unix timestamp (the number of seconds since the epoch) from a Day.js object, you should use Unix Timestamp dayjs#unix().

    -

    Docs: https://day.js.org/docs/en/display/unix-timestamp-milliseconds

    -
    -

    Returns number

    -
-
- -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/model_EventEmitter.EventEmitterBase-1.html b/docs/classes/model_EventEmitter.EventEmitterBase-1.html deleted file mode 100644 index 20ba52f3..00000000 --- a/docs/classes/model_EventEmitter.EventEmitterBase-1.html +++ /dev/null @@ -1,427 +0,0 @@ -EventEmitterBase | @formio/core
-
- -
-
-
-
- -

Class EventEmitterBase<EventTypes, Context>

-
-

Minimal EventEmitter interface that is molded against the Node.js -EventEmitter interface.

-
-
-
-

Type Parameters

-
    -
  • -

    EventTypes extends ValidEventTypes = string | symbol

  • -
  • -

    Context extends any = any

-
-

Hierarchy

-
    -
  • EventEmitterBase
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -
    -

    Type Parameters

    -
      -
    • -

      EventTypes extends ValidEventTypes = string | symbol

    • -
    • -

      Context extends unknown = any

    -

    Returns EventEmitterBase<EventTypes, Context>

-
-

Properties

-
- -
prefixed: string | boolean
-
-

Methods

-
- -
    - -
  • -
    -

    Type Parameters

    -
      -
    • -

      T extends string | symbol

    -
    -

    Parameters

    -
      -
    • -
      event: T
    • -
    • -
      fn: EventListener<EventTypes, T>
    • -
    • -
      Optional context: Context
    -

    Returns EventEmitterBase<EventTypes, Context>

-
- -
    - -
  • -

    Calls each of the listeners registered for a given event.

    -
    -
    -

    Type Parameters

    -
      -
    • -

      T extends string | symbol

    -
    -

    Parameters

    -
      -
    • -
      event: T
    • -
    • -
      Rest ...args: Parameters<EventListener<EventTypes, T>>
    -

    Returns boolean

    -
-
- -
    - -
  • -

    Return an array listing the events for which the emitter has registered -listeners.

    -
    -

    Returns EventNames<EventTypes>[]

    -
-
- -
    - -
  • -

    Return the number of listeners listening to a given event.

    -
    -
    -

    Parameters

    -
    -

    Returns number

    -
-
- -
    - -
  • -

    Return the listeners registered for a given event.

    -
    -
    -

    Type Parameters

    -
      -
    • -

      T extends string | symbol

    -
    -

    Parameters

    -
      -
    • -
      event: T
    -

    Returns EventListener<EventTypes, T>[]

    -
-
- -
    - -
  • -
    -

    Type Parameters

    -
      -
    • -

      T extends string | symbol

    -
    -

    Parameters

    -
      -
    • -
      event: T
    • -
    • -
      Optional fn: EventListener<EventTypes, T>
    • -
    • -
      Optional context: Context
    • -
    • -
      Optional once: boolean
    -

    Returns EventEmitterBase<EventTypes, Context>

-
- -
    - -
  • -

    Add a listener for a given event.

    -
    -
    -

    Type Parameters

    -
      -
    • -

      T extends string | symbol

    -
    -

    Parameters

    -
      -
    • -
      event: T
    • -
    • -
      fn: EventListener<EventTypes, T>
    • -
    • -
      Optional context: Context
    -

    Returns EventEmitterBase<EventTypes, Context>

    -
-
- -
    - -
  • -

    Add a one-time listener for a given event.

    -
    -
    -

    Type Parameters

    -
      -
    • -

      T extends string | symbol

    -
    -

    Parameters

    -
      -
    • -
      event: T
    • -
    • -
      fn: EventListener<EventTypes, T>
    • -
    • -
      Optional context: Context
    -

    Returns EventEmitterBase<EventTypes, Context>

    -
-
- -
    - -
  • -

    Remove all listeners, or those of the specified event.

    -
    -
    -

    Parameters

    -
    -

    Returns EventEmitterBase<EventTypes, Context>

    -
-
- -
    - -
  • -

    Remove the listeners of a given event.

    -
    -
    -

    Type Parameters

    -
      -
    • -

      T extends string | symbol

    -
    -

    Parameters

    -
      -
    • -
      event: T
    • -
    • -
      Optional fn: EventListener<EventTypes, T>
    • -
    • -
      Optional context: Context
    • -
    • -
      Optional once: boolean
    -

    Returns EventEmitterBase<EventTypes, Context>

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/sdk_Formio.Formio.html b/docs/classes/sdk_Formio.Formio.html deleted file mode 100644 index 68621fc3..00000000 --- a/docs/classes/sdk_Formio.Formio.html +++ /dev/null @@ -1,2598 +0,0 @@ -Formio | @formio/core
-
- -
-
-
-
- -

Class Formio

-
-

The Formio interface class. This is a minimalistic API library that allows you to work with the Form.io API's within JavaScript.

-

Usage

Creating an instance of Formio is simple, and takes only a path (URL String). The path can be different, depending on the desired output. -The Formio instance can also access higher level operations, depending on how granular of a path you start with.

-
var formio = new Formio(<endpoint>, [options]);
-
-

Where endpoint is any valid API endpoint within Form.io. These URL's can provide a number of different methods depending on the granularity of the endpoint. This allows you to use the same interface but have access to different methods depending on how granular the endpoint url is. -options is defined within the {link Formio.constructor} documentation.

-

Here is an example of how this library can be used to load a form JSON from the Form.io API's

-
const formio = new Formio('https://examples.form.io/example');
formio.loadForm().then((form) => {
console.log(form);
}); -
-
-
-
-

Hierarchy

-
    -
  • Formio
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      Optional path: string
      -

      A project, form, and submission API Url.

      -
      -
    • -
    • -
      options: FormioOptions = {}
      -

      Available options to configure the Javascript API.

      -
      -
    -

    Returns Formio

    -
-
-

Properties

-
- -
actionId: string = ''
-

The Action ID derived from a provided Action url.

-
-
-
- -
actionUrl: string = ''
-

A specific action api endoint.

-
-
-
- -
actionsUrl: string = ''
-

The actions url provided a form url as the source.

-
-
-

Example

https://examples.form.io/example/action
-
-
-
- -
base: string = ''
-

The base API url of the Form.io Platform. Example: https://api.form.io

-
-
-
- -
formId: string = ''
-

The Form ID derived from the provided source.

-
-
-
- -
formUrl: string = ''
-

A specific form url derived from the provided source.

-
-
-

Example

https://examples.form.io/example
-
-
-
- -
formsUrl: string = ''
-

The forms url derived from the provided source.

-
-
-

Example

https://example.form.io/form
-
-
-
- -
noProject: boolean = false
-

If this is a non-project url, such is the case for Open Source API.

-
-
-
- -
options: FormioOptions = {}
-

Available options to configure the Javascript API.

-
-
-
- -
path?: string
-

A project, form, and submission API Url.

-
-
-
- -
pathType?: FormioPathType
-

The project type.

-
-
-
- -
projectId: string = ''
-

The Project ID found within the provided source.

-
-
-
- -
projectUrl: string = ''
-

A specific project endpoint derived from the provided source.

-
-
-

Example

https://examples.form.io
-
-
-
- -
projectsUrl: string = ''
-

The Projects Endpoint derived from the provided source.

-
-
-

Example

https://api.form.io/project
-
-
-
- -
query: string = ''
-

The query string derived from the provided src url.

-
-
-
- -
roleId: string = ''
-

The roleID derieved from the provided source.

-
-
-
- -
roleUrl: string = ''
-

A specific Role URL provided the source.

-
-
-

Example

https://examples.form.io/role/2342343234234234
-
-
-
- -
rolesUrl: string = ''
-

The roles endpoint derived from the provided source.

-
-
-

Example

https://examples.form.io/role
-
-
-
- -
submissionId: string = ''
-

The submission ID provided a submission url.

-
-
-
- -
submissionUrl: string = ''
-

A specific submissions URL derived from a provided source.

-
-
-

Example

https://examples.form.io/example/submission/223423423423
-
-
-
- -
submissionsUrl: string = ''
-

The submissions URL derived from the provided source.

-
-
-

Example

https://examples.form.io/example/submission
-
-
-
- -
vId: string = ''
-
- -
vUrl: string = ''
-
- -
vsUrl: string = ''
-
- -
Headers: any = Headers
-

A direct interface to the Form.io fetch Headers polyfill.

-
-
-
- -
authUrl: string = ''
-

The project url to use for Authentication.

-
-
-
- -
baseUrl: string = 'https://api.form.io'
-

The base API url of the Form.io Platform. Example: https://api.form.io

-
-
-
- -
cache: any = {}
-

The Form.io API Cache. This ensures that requests to the same API endpoint are cached.

-
-
-
- -
deregisterPlugin: ((plugin) => boolean) = Plugins.deregisterPlugin
-
-

Type declaration

-
    -
  • -
      -
    • (plugin): boolean
    • -
    • -

      De-registers a plugin.

      -
      -
      -

      Parameters

      -
        -
      • -
        plugin: string | Plugin
        -

        The plugin you wish to deregister.

        -
        -
      -

      Returns boolean

      -
-
- -
events: EventEmitterBase<string | symbol, any> = ...
-

Handles events fired within this SDK library.

-
-
-
- -
fetch: any = fetch
-

A direct interface to the Form.io fetch polyfill.

-
-
-
- -
getPlugin: ((name) => null | Plugin) = Plugins.getPlugin
-
-

Type declaration

-
    -
  • -
      -
    • (name): null | Plugin
    • -
    • -

      Returns a plugin provided the name of the plugin.

      -
      -
      -

      Parameters

      -
        -
      • -
        name: string
        -

        The name of the plugin you would like to get.

        -
        -
      -

      Returns null | Plugin

      -
-
- -
libraries: any = {}
-

Stores all of the libraries lazy loaded with Formio.requireLibrary method.

-
-
-
- -
namespace: string = ''
-

The namespace used to save the Form.io Token's and variables within an application.

-
-
-
- -
pathType?: FormioPathType
-

The path type for the project.

-
-
-
- -
pluginAlter: ((pluginFn, value, ...args) => any) = Plugins.pluginAlter
-
-

Type declaration

-
    -
  • -
      -
    • (pluginFn, value, ...args): any
    • -
    • -

      Allows a Plugin to alter the behavior of the JavaScript library.

      -
      -
      -

      Parameters

      -
        -
      • -
        pluginFn: any
        -
      • -
      • -
        value: any
        -
      • -
      • -
        Rest ...args: any[]
        -
      -

      Returns any

      -
-
- -
pluginGet: ((pluginFn, ...args) => any) = Plugins.pluginGet
-
-

Type declaration

-
    -
  • -
      -
    • (pluginFn, ...args): any
    • -
    • -

      Gets a value from a Plugin

      -
      -
      -

      Parameters

      -
        -
      • -
        pluginFn: any
        -
      • -
      • -
        Rest ...args: any[]
        -
      -

      Returns any

      -
-
- -
pluginWait: ((pluginFn, ...args) => Promise<any[]>) = Plugins.pluginWait
-
-

Type declaration

-
    -
  • -
      -
    • (pluginFn, ...args): Promise<any[]>
    • -
    • -

      Wait for a plugin function to complete.

      -
      -
      -

      Parameters

      -
        -
      • -
        pluginFn: any
        -

        A function within the plugin.

        -
        -
      • -
      • -
        Rest ...args: any[]
        -
      -

      Returns Promise<any[]>

      -
-
- -
plugins: Plugin[] = Plugins.plugins
-
- -
projectUrl: string = ''
-

The project API url of the Form.io Project. Example: https://examples.form.io

-
-
-
- -
projectUrlSet: boolean = false
-

Set to true if the project url has been established with Formio.setProjectUrl()

-
-
-
- -
registerPlugin: ((plugin, name) => void) = Plugins.registerPlugin
-
-

Type declaration

-
    -
  • -
      -
    • (plugin, name): void
    • -
    • -

      Registers a new plugin.

      -
      -
      -

      Parameters

      -
        -
      • -
        plugin: Plugin
        -

        The Plugin object.

        -
        -
      • -
      • -
        name: string
        -

        The name of the plugin you wish to register.

        -
        -
      -

      Returns void

      -
-
- -
tokens: any = {}
-

All of the auth tokens for this session.

-
-
-
- -
version: string = '---VERSION---'
-

The version of this library.

-
-
-
-

Accessors

-
- -
-
-

Methods

-
- -
-
- -
    - -
  • -

    Returns the action information for a specific action, such as "save".

    -
    const formio = new Formio('https://examples.form.io/example/actions/save');
    formio.actionInfo().then((info) => {
    console.log(info);
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      name: string
      -

      The name of the action you would like to get information for. i.e. "save", "webhook", etc.

      -
      -
    -

    Returns any

    -
-
- -
    - -
  • -

    Returns a list of available actions

    -
    -

    Returns any

    -
-
- -
    - -
  • -

    `Determine if the current user can submit a form.

    -
    -

    Returns Promise<any>

    -
-
- -
-
- -
    - -
  • -

    Deletes a remote resource of any provided type.

    -
    -
    -

    Parameters

    -
      -
    • -
      type: string
      -

      The type of resource to delete. "submission", "form", etc.

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Delete an action

    -
    const formio = new Formio('https://examples.form.io/example/action/234234234234');
    formio.deleteAction().then(() => {
    console.log('Action was deleted.');
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Deletes a form.

    -
    const formio = new Formio('https://examples.form.io/example');
    formio.deleteForm().then(() => {
    console.log('Deleted!');
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Deletes a project

    -
    const formio = new Formio('https://examples.form.io');
    formio.deleteProject(); -
    -
    -
    -

    Parameters

    -
      -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Deletes a role within a project.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Deletes a submission.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Get a PDF download url for a submission, which will generate a new PDF of the submission. This method will first -fetch a temporary download token, and then append this to the download url for this form.

    -
    const formio = new Formio('https://examples.form.io/example/submission/324234234234234');
    formio.getDownloadUrl().then((url) => {
    console.log(url);
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      Optional form: any
      -

      The form JSON to fetch a download url for.

      -
      -
    -

    Returns any

      -
    • The download url.
    • -
    - -
-
- -
    - -
  • -

    Get the ID of a form.

    -
    const formio = new Formio('https://examples.form.io/example');
    formio.getFormId().then((formId) => {
    console.log(formId);
    }); -
    -
    -

    Returns any

    -
-
- -
    - -
  • -

    Get the project ID of project.

    -
    const formio = new Formio('https://examples.form.io');
    formio.getProjectId().then((projectId) => {
    console.log(projectId);
    }; -
    -
    -

    Returns any

    -
-
- -
    - -
  • -

    Returns a temporary authentication token for single purpose token generation.

    -
    -
    -

    Parameters

    -
      -
    • -
      expire: any
      -

      The amount of seconds to wait before this temp token expires.

      -
      -
    • -
    • -
      allowed: string
      -

      The allowed path string inn the format GET:/path

      -
      -
    • -
    • -
      Optional options: any
      -

      The options passed to getToken

      -
      -
    -

    Returns any

    -
-
- -
    - -
  • -

    Returns the JWT token for this instance.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional options: any
      -

      The following options are provided.

      -
      -
    -

    Returns any

      -
    • The JWT token for this user.
    • -
    - -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      url: string
    -

    Returns null | RegExpMatchArray

-
- -
    - -
  • -

    Returns the index (array of records) for any provided type.

    -
    -
    -

    Parameters

    -
      -
    • -
      type: string
      -

      The type of resource to fetch the index of. "submission", "form", etc.

      -
      -
    • -
    • -
      Optional query: any
      -

      A query object to pass to the request.

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Determine if a string ID is a valid MongoID.

    -
    -
    -

    Parameters

    -
      -
    • -
      id: string
      -

      The id that should be tested if it is avalid id.

      -
      -
    -

    Returns boolean

      -
    • true if it is a valid MongoId, false otherwise.
    • -
    - -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      type: string
      -

      The type of resource to fetch the index of. "submission", "form", etc.

      -
      -
    • -
    • -
      Optional query: any
      -

      A query object to pass to the request.

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
    -

    Summary

    Load (GET) a document record.

    -
-
- -
    - -
  • -

    Loads a form action.

    -
    const formio = new Formio('https://examples.form.io/example/action/234234234234');
    formio.loadAction().then((action) => {
    console.log(action);
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      Optional query: any
      -

      Query parameters similar to load.

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Loads all actions within a form.

    -
    const formio = new Formio('https://examples.form.io/example');
    formio.loadActions().then((actions) => {
    console.log(actions);
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      Optional query: any
      -

      Query parameters similar to load.

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Loads a form.

    -
    const formio = new Formio('https://examples.form.io/example');
    formio.loadForm().then((form) => {
    console.log(form);
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      Optional query: any
      -

      Query parameters similar to load.

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Loads all forms within a project.

    -
    const formio = new Formio('https://examples.form.io');
    formio.loadForms().then((forms) => {
    console.log(forms);
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      Optional query: any
      -

      Query parameters similar to load.

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      Optional query: any
      -

      Query parameters to pass to load.

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
    -

    Summary

    Loads a project.

    -
    const formio = new Formio('https://examples.form.io');
    formio.loadProject().then((project) => {
    console.log(project);
    }); -
    -
-
- -
    - -
  • -

    Loads a role within a project.

    -
    const formio = new Formio('https://examples.form.io/role/234234234234');
    formio.loadRole().then((role) => {
    console.log(role);
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Load all roles within a project.

    -
    const formio = new Formio('https://examples.form.io');
    formio.loadRoles().then((roles) => {
    console.log(roles);
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Loads a specific submissionn.

    -
    const formio = new Formio('https://examples.form.io/example/submission/23423423423423423');
    formio.loadSubmission().then((submission) => {
    console.log(submission);
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      Optional query: any
      -

      Query parameters similar to load.

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Loads all submissions within a form.

    -
    const formio = new Formio('https://examples.form.io/example');
    formio.loadSubmissions({
    params: {
    limit: 25,
    'data.lastName__regex': 'smith'
    }
    }).then((submissions) => {
    // Should print out 25 submissions where the last name contains "smith".
    console.log(submissions);
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      Optional query: any
      -

      Query parameters similar to load.

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      type: string
      -

      The request resource type. "submission", "form", etc.

      -
      -
    • -
    • -
      url: string
      -

      The URL to request.

      -
      -
    • -
    • -
      Optional method: string
      -

      The request method. GET, PUT, POST, DELETE, or PATCH

      -
      -
    • -
    • -
      Optional data: any
      -

      The data to pass to the request (for PUT, POST, and PATCH methods)

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
    -

    Summary

    Call makeRequest for this Formio instance.

    -
-
- -
    - -
  • -

    Sets OAuth Logout URL.

    -
    -
    -

    Parameters

    -
      -
    • -
      uri: string
      -

      Logout URL.

      -
      -
    • -
    • -
      options: string | {
          namespace: string;
      }
    -

    Returns string

    -
-
- -
    - -
  • -

    Save a document record using "upsert". If the document does not exist, it will be created, if the _id is provided, -it will be updated.

    -
    -
    -

    Parameters

    -
      -
    • -
      type: string
      -

      The type of resource to fetch the index of. "submission", "form", etc.

      -
      -
    • -
    • -
      Optional data: any
      -

      The resource data object.

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Create a new or update an existing action.

    -

    Create a new action for a form.

    const formio = new Formio('https://examples.form.io/example');
    formio.saveAction({
    data: {
    name: 'webhook',
    title: 'Webhook Action',
    method: ['create', 'update', 'delete'],
    handler: ['after'],
    condition: {},
    settings: {
    url: 'https://example.com',
    headers: [{}],
    block: false,
    forwardHeaders: false
    }
    }
    }).then((action) => {
    console.log(action);
    }); -
    -

    Update an action

    const formio = new Formio('https://examples.form.io/example/action/234234234234');
    formio.loadAction().then((action) => {
    action.title = 'Updated title';
    formio.saveAction(action).then(() => {
    console.log('Done!');
    });
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      Optional data: any
      -

      The action JSON

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Create or Update a specific form.

    -

    Create form example

    const formio = new Formio('https://examples.form.io');
    formio.saveForm({
    title: 'Employee',
    type: 'resource',
    path: 'employee',
    name: 'employee',
    components: [
    {
    type: 'textfield',
    key: 'firstName',
    label: 'First Name'
    },
    {
    type: 'textfield',
    key: 'lastName',
    label: 'Last Name'
    }
    ]
    }); -
    -

    Update a form example

    const formio = new Formio('https://examples.form.io/example');
    formio.loadForm().then((form) => {
    form.title = 'Changed Title';
    formio.saveForm(form).then(() => {
    console.log('DONE!!!');
    });
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      Optional data: any
      -

      The Form JSON to create or update.

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Saves or Updates a project.

    -

    Create a new project

    const formio = new Formio();
    formio.saveProject({
    title: 'My Project',
    path: 'myproject',
    name: 'myproject'
    }); -
    -

    Update an existing project

    const formio = new Formio('https://examples.form.io');
    formio.loadProject().then((project) => {
    project.title = 'Title changed';
    formio.saveProject(project).then(() => {
    console.log('Done saving project!');
    });
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      Optional data: any
      -

      The project JSON to create or update.

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Create a new or Update an existing role within a project.

    -

    Create new Role example

    const formio = new Formio('https://examples.form.io');
    formio.saveRole({
    title: 'Employee',
    description: 'A person who belongs to a company.'
    }).then((role) => {
    console.log(role);
    }); -
    -

    Update existing role example

    const formio = new Formio('https://examples.form.io/role/234234234234234');
    formio.loadRole().then((role) => {
    role.title = 'Manager';
    formio.saveRole(role).then(() => {
    console.log('DONE');
    });
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      Optional data: any
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Creates a new or Updates an existing submission.

    -

    Create a new submission

    const formio = new Formio('https://examples.form.io/example');
    formio.saveSubmission({
    data: {
    firstName: 'Joe',
    lastName: 'Smith'
    }
    }).then((submission) => {
    // This will now be the complete submission object saved on the server.
    console.log(submission);
    }); -
    -

    Update an existing submission

    const formio = new Formio('https://examples.form.io/example/submission/23423423423423423');
    formio.loadSubmission().then((submission) => {
    submission.data.lastName = 'Thompson';
    formio.saveSubmission(submission).then(() => {
    console.log('DONE');
    });
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      Optional data: any
      -

      The submission JSON object.

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Sets the JWT token for this instance.

    -
    -
    -

    Parameters

    -
      -
    • -
      token: any
      -

      The JWT token to set.

      -
      -
    • -
    • -
      Optional options: any
      -

      The following options are provided.

      -
      -
    -

    Returns any

      -
    • The JWT token that was set.
    • -
    - -
-
- -
    - -
  • -

    Returns the user permissions to a form and submission.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional user: any
      -

      The user or current user if undefined. For anonymous, use "null"

      -
      -
    • -
    • -
      Optional form: any
      -

      The form or current form if undefined. For no form check, use "null"

      -
      -
    • -
    • -
      Optional submission: any
      -

      The submisison or "index" if undefined.

      -
      -
    -

    Returns Promise<any>

    -
-
- -
    - -
  • -

    Return the access information about a Project, such as the Role ID's for that project, and if the server is -configured to do so, the Form and Resource access configurations that the authenticated user has access to.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional formio: any
      -

      The Formio instance.

      -
      -
    -

    Returns any

    -
    -

    Description

    This is useful for an application to determine the UI for a specific user to identify which forms they have -access to submit or read.

    -
-
- -
    - -
  • -

    Clears the runtime internal API cache.

    -
    -

    Returns void

    -
    -

    Description

    By default, the Formio class will cache all API requests in memory so that any subsequent requests -using GET method will return the cached results as long as the API URl is the same as what was cached previously. -This cache can be cleared using this method as follows.

    -
    Formio.clearCache();
    -
    -

    Or, if you just wish to clear a single request, then the Formio.request#options.ignoreCache option can be -provided when making an API request as follows.

    -
    Formio.loadForm({}, {
    ignoreCache: true
    }).then((form) => {
    console.log(form);
    }); -
    -

    Both of the following will ensure that a new request is made to the API server and that the results will not be -from the cached result.

    -
-
- -
    - -
  • -

    Clones the response from the API so that it cannot be mutated.

    -
    -
    -

    Parameters

    -
      -
    • -
      response: any
      -
    -

    Returns any

    -
-
- -
    - -
  • -

    Return the currentUser object. This will fetch the user from the server and respond with the Submission JSON -of that user object.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional formio: any
      -

      The Formio instance

      -
      -
    • -
    • -
      options: any = {}
      -

      The options passed to getUser

      -
      -
    -

    Returns any

    -
-
- -
-
- -
-
- -
    - -
  • -

    Returns the current base url described at setBaseUrl

    -
    -

    Returns string

      -
    • The base url of the application.
    • -
    - -
-
- -
-
- -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      formio: any
    • -
    • -
      type: string
    • -
    • -
      url: string
    • -
    • -
      Optional method: any
    • -
    • -
      Optional data: any
    • -
    • -
      Optional opts: any
    -

    Returns any

-
- -
    - -
  • -

    Returns the token set within the application for the user.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional options: any
      -

      The options as follows.

      -
      -
    -

    Returns any

    -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      url: string
    • -
    • -
      formio: any
    -

    Returns null | RegExpMatchArray

-
- -
    - -
  • -

    Returns the user JSON.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional options: any
      -

      Options as follows

      -
      -
    -

    Returns any

      -
    • The user object.
    • -
    - -
-
- -
    - -
  • -

    Determines if a lazy loaded library is ready to be used.

    -
    -
    -

    Parameters

    -
      -
    • -
      name: string
      -

      The name of the library to check.

      -
      -
    -

    Returns any

      -
    • A promise that will resolve when the library is ready to be used.
    • -
    - -
    -

    Description

    Example: Let's assume that the example provided at requireLibrary was used elsewhere in your application. -You could now use the following within a separate place that will also resolve once the library is ready to be used.

    -
    Formio.libraryReady('googleMaps').then(() => {
    // Once the promise resolves, the following can now be used within your application.
    const map = new google.maps.Map(document.getElementById("map"), {...});
    }); -
    -
-
- -
    - -
  • -

    Loads a list of all projects.

    -
    Formio.loadProjects().then((projects) => {
    console.log(projects);
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      Optional query: any
      -

      Query parameters similar to load.

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Performs a logout of the Form.io application. This will reset all cache, as well as make a request to the logout -endpoint of the Form.io api platform.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional formio: any
      -

      A Formio instance.

      -
      -
    • -
    • -
      options: any = {}
      -

      Options passed to both setToken as well as setUser

      -
      -
    -

    Returns any

    -
-
- -
    - -
  • -

    Make an API request and wrap that request with the Form.io Request plugin system. This is very similar to the -{Formio.request} method with a difference being that it will pass the request through the Form.io request plugin.

    -
    -
    -

    Parameters

    -
      -
    • -
      formio: any
      -

      An instance of the Formio class.

      -
      -
    • -
    • -
      type: string
      -

      The request resource type. "submission", "form", etc.

      -
      -
    • -
    • -
      url: string
      -

      The URL to request.

      -
      -
    • -
    • -
      Optional method: string
      -

      The request method. GET, PUT, POST, DELETE, or PATCH

      -
      -
    • -
    • -
      Optional data: any
      -

      The data to pass to the request (for PUT, POST, and PATCH methods)

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      url: string
    • -
    • -
      Optional method: any
    • -
    • -
      Optional data: any
    • -
    • -
      Optional opts: any
    -

    Returns any

-
- -
    - -
  • -

    Much like currentUser, but instead automatically injects the Bearer tokens into the headers to -perform a Token swap of the OAuth token which will then return the JWT token for that user.

    -
    -
    -

    Parameters

    -
      -
    • -
      formio: any
      -

      The Formio instance

      -
      -
    • -
    • -
      token: string
      -

      An OAuth Bearer token to use for a token swap between the OAuth provider and Form.io

      -
      -
    -

    Returns any

    -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      uri: string
    • -
    • -
      options: string | {
          namespace: string;
      }
    -

    Returns string

-
- -
    - -
  • -

    Perform an Okta Authentication process using the SDK.

    -
    -
    -

    Parameters

    -
      -
    • -
      options: any = {}
      -

      Options that are passed directly to the SDK constructor

      -
      -
    -

    Returns Promise<unknown>

    -
    -

    Description

    This method does require that you first include the Okta JavaScript SDK within your application as follows.

    -

    First you need to include the Okta Authentication script.

    -
    <script src="https://ok1static.oktacdn.com/assets/js/sdk/okta-auth-js/2.0.1/okta-auth-js.min.js" type="text/javascript"></script>
    -
    -

    Then you can call this method as follows.

    -
    Formio.oktaInit();
    -
    -
-
- -
    - -
  • -

    Returns the query passed to a page in JSON object format.

    -
    -

    Returns any

      -
    • A JSON object representation of the query that was passed to the URL of an application.
    • -
    - -
    -

    Description

    For example, lets say you visit your application using -the url as follows.

    -
      https://yourapplication.com/?token=23423423423&username=Joe
    -
    -

    The following code will provide your application with the following.

    -
    const query Formio.pageQuery();
    console.log(query.token); // Will print 23423423423
    console.log(query.username); // Will print Joe -
    -
-
- -
    - -
  • -

    Returns an array of roles for the project, which includes the ID's and names of those roles.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional formio: any
      -

      The Formio instance.

      -
      -
    -

    Returns any

    -
-
- -
    - -
  • -

    Execute an API request to any external system. This is a wrapper around the Web fetch method.

    -
    Formio.request('https://examples.form.io').then((form) => {
    console.log(form);
    }); -
    -
    -
    -

    Parameters

    -
      -
    • -
      url: string
      -

      The URL to request.

      -
      -
    • -
    • -
      Optional method: any
      -

      The request method. GET, PUT, POST, DELETE, or PATCH

      -
      -
    • -
    • -
      Optional data: any
      -

      The data to pass to the request (for PUT, POST, and PATCH methods)

      -
      -
    • -
    • -
      Optional header: any
      -

      An object of headers to pass to the request.

      -
      -
    • -
    • -
      Optional opts: any
    -

    Returns any

    -
-
- -
    - -
  • -

    Lazy load a remote library dependency.

    -
    -
    -

    Parameters

    -
      -
    • -
      name: string
      -

      The internal name to give to the library you are loading. This is useful for caching the library for later use.

      -
      -
    • -
    • -
      property: string
      -

      The name of the global property that will be added to the global namespace once the library has been loaded. This is used to check to see if the property exists before resolving the promise that the library is ready for use.

      -
      -
    • -
    • -
      src: string | string[]
      -

      The URL of the library to lazy load.

      -
      -
    • -
    • -
      polling: boolean = false
      -

      Determines if polling should be used to determine if they library is ready to use. If set to false, then it will rely on a global callback called ${name}Callback where "name" is the first property passed to this method. When this is called, that will indicate when the library is ready. In most cases, you will want to pass true to this parameter to initiate a polling method to check for the library availability in the global context.

      -
      -
    • -
    • -
      Optional onload: ((ready) => void)
      -
        -
      • -
          -
        • (ready): void
        • -
        • -
          -

          Parameters

          -
            -
          • -
            ready: Promise<any>
          -

          Returns void

    -

    Returns any

      -
    • A promise that will resolve when the plugin is ready to be used.
    • -
    - -
    -

    Description

    This is useful for components that wish to lazy load a required library -by adding that library to the section of the HTML webpage, and then provide a promise that will resolve -when the library becomes available for use.

    - -

    Example

    Load Google Maps API.

    -
    Formio.requireLibrary('googleMaps', 'google.maps.Map', 'https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap', true).then(() => {
    // Once the promise resolves, the following can now be used within your application.
    const map = new google.maps.Map(document.getElementById("map"), {...});
    }); -
    -
-
- -
    - -
  • -

    Perform a SAML initialization.

    -
    -
    -

    Parameters

    -
      -
    • -
      options: any = {}
      -

      Options to pass to the SAML initialization process.

      -
      -
    -

    Returns any

    -
    -

    Description

    Typically, you would use the ssoInit method to perform this function -since this method is an alias for the following.

    -
    Formio.samlInit();
    Formio.ssoInit('saml'); // This is the exact same thing as calling Formio.samlInit -
    -

    This method will return false if the process is just starting. The code below is a typical block of code that is -used to automatically trigger the SAML authentication process within your application using a Button component.

    -
    if (Formio.pageQuery().saml) {
    const sso = Formio.samlInit();
    if (sso) {
    sso.then((user) => {
    // The SSO user is now loaded!
    console.log(user);
    });
    }
    } -
    -

    You can then place the following code withiin the "Custom" action of a Button component on your form.

    -
    Formio.samlInit();
    -
    -

    Now when you click on this button, it will start the handshake process with SAML, and once it returns, will pass -a "saml" query parameter back to your application which will execute the code to load the current user from SAML.

    -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      obj: any
    • -
    • -
      Optional _interpolate: any
    -

    Returns string

-
- -
-
- -
-
- -
    - -
  • -

    The Auth URL can be set to customize the authentication requests made from an application. By default, this is -just the same value as projectUrl

    -
    -
    -

    Parameters

    -
      -
    • -
      url: string
      -

      The authentication url

      -
      -
    -

    Returns void

    -
-
- -
    - -
  • -

    Sets the BaseURL for the application.

    -
    -
    -

    Parameters

    -
      -
    • -
      url: string
      -

      The URL of the Base API url.

      -
      -
    -

    Returns void

    -
    -

    Description

    Every application developed using the JavaScript SDK must set both the setBaseUrl and -setProjectUrl methods. These two functions ensure that every URL passed into the constructor of this -class can determine the "project" context for which the application is running.

    -

    Any Open Source server applications will set both the setBaseUrl and setProjectUrl -values will be the same value.

    -
    Formio.setBaseUrl('https://yourwebsite.com/forms');
    Formio.setProjectUrl('https://yourwebsite.com/forms/project');

    // Now the Formio constructor will know what is the "project" and what is the form alias name. Without setBaseUrl
    // and setProjectUrl, this would throw an error.

    const formio = new Formio('https://yourwebsite.com/forms/project/user');
    formio.loadForm().then((form) => {
    console.log(form);
    }); -
    -
-
- -
-
- -
    - -
  • -

    Sets the Project Url for the application. This is an important method that needs to be set for all applications. It -is documented @ setBaseUrl.

    -
    -
    -

    Parameters

    -
      -
    • -
      url: string
      -

      The project api url.

      -
      -
    -

    Returns void

    -
-
- -
    - -
  • -

    Sets the JWT in storage to be used within an application.

    -
    -
    -

    Parameters

    -
      -
    • -
      token: any = ''
      -

      The JWT token to set.

      -
      -
    • -
    • -
      opts: any = {}
    -

    Returns any

    -
-
- -
    - -
  • -

    Sets the current user within the application cache.

    -
    -
    -

    Parameters

    -
      -
    • -
      user: any
      -

      JSON object of the user you wish to set.

      -
      -
    • -
    • -
      opts: any = {}
    -

    Returns void

    -
-
- -
    - -
  • -

    A common static method to trigger any SSO processes. This method is really just an alias for other static methods.

    -
    -
    -

    Parameters

    -
      -
    • -
      type: string
      -

      The type of SSO to trigger. 'saml' is an alias for samlInit, and 'okta' is an alias for oktaInit.

      -
      -
    • -
    • -
      options: any = {}
      -

      Options to pass to the specific sso methods

      -
      -
    -

    Returns any

    -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      options: string | {
          namespace: string;
      }
    -

    Returns void

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/sdk_Plugins.default.html b/docs/classes/sdk_Plugins.default.html deleted file mode 100644 index 870c0e5e..00000000 --- a/docs/classes/sdk_Plugins.default.html +++ /dev/null @@ -1,351 +0,0 @@ -default | @formio/core
-
- -
-
-
-
- -

Class default

-
-

The Form.io Plugins allow external systems to "hook" into the default behaviors of the JavaScript SDK.

-
-
-
-

Hierarchy

-
    -
  • default
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
Formio: any
-

The Formio class.

-
-
-
- -
plugins: Plugin[] = []
-

An array of Form.io Plugins.

-
-
-
-

Methods

-
- -
    - -
  • -

    De-registers a plugin.

    -
    -
    -

    Parameters

    -
      -
    • -
      plugin: string | Plugin
      -

      The plugin you wish to deregister.

      -
      -
    -

    Returns boolean

    -
-
- -
    - -
  • -

    Returns a plugin provided the name of the plugin.

    -
    -
    -

    Parameters

    -
      -
    • -
      name: string
      -

      The name of the plugin you would like to get.

      -
      -
    -

    Returns null | Plugin

    -
-
- -
    - -
  • -

    Returns the plugin identity.

    -
    -
    -

    Parameters

    -
      -
    • -
      value: string
      -
    -

    Returns string

    -
-
- -
    - -
  • -

    Allows a Plugin to alter the behavior of the JavaScript library.

    -
    -
    -

    Parameters

    -
      -
    • -
      pluginFn: any
      -
    • -
    • -
      value: any
      -
    • -
    • -
      Rest ...args: any[]
      -
    -

    Returns any

    -
-
- -
    - -
  • -

    Gets a value from a Plugin

    -
    -
    -

    Parameters

    -
      -
    • -
      pluginFn: any
      -
    • -
    • -
      Rest ...args: any[]
      -
    -

    Returns any

    -
-
- -
    - -
  • -

    Wait for a plugin function to complete.

    -
    -
    -

    Parameters

    -
      -
    • -
      pluginFn: any
      -

      A function within the plugin.

      -
      -
    • -
    • -
      Rest ...args: any[]
      -
    -

    Returns Promise<any[]>

    -
-
- -
    - -
  • -

    Registers a new plugin.

    -
    -
    -

    Parameters

    -
      -
    • -
      plugin: Plugin
      -

      The Plugin object.

      -
      -
    • -
    • -
      name: string
      -

      The name of the plugin you wish to register.

      -
      -
    -

    Returns void

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/utils_Database.Database.html b/docs/classes/utils_Database.Database.html deleted file mode 100644 index a90dad3d..00000000 --- a/docs/classes/utils_Database.Database.html +++ /dev/null @@ -1,193 +0,0 @@ -Database | @formio/core
-
- -
-
-
-
- -

Class DatabaseAbstract

-
-

Hierarchy

-
    -
  • Database
-
-
-
- -
-
-

Constructors

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Methods

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      scope: any
    • -
    • -
      query: string
    -

    Returns Promise<any>

-
- -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/utils_Evaluator.BaseEvaluator.html b/docs/classes/utils_Evaluator.BaseEvaluator.html deleted file mode 100644 index 2628da06..00000000 --- a/docs/classes/utils_Evaluator.BaseEvaluator.html +++ /dev/null @@ -1,287 +0,0 @@ -BaseEvaluator | @formio/core
-
- -
-
-
-
- -

Class BaseEvaluator

-
-

Hierarchy

-
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Properties

-
- -
noeval: boolean = false
-
-

Methods

-
- -
    - -
  • -

    Evaluate a method.

    -
    -
    -

    Parameters

    -
      -
    • -
      func: any
      -
    • -
    • -
      args: any = {}
      -
    • -
    • -
      ret: any = ''
    • -
    • -
      interpolate: boolean = false
    • -
    • -
      context: any = {}
    • -
    • -
      options: any = {}
    -

    Returns any

    -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      func: any
    • -
    • -
      Rest ...params: any
    -

    Returns any

-
- -
    - -
  • -

    Execute a function.

    -
    -
    -

    Parameters

    -
      -
    • -
      func: any
      -
    • -
    • -
      args: any
      -
    • -
    • -
      context: any = {}
    • -
    • -
      options: any = {}
    -

    Returns any

    -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      rawTemplate: any
    • -
    • -
      data: any
    • -
    • -
      options: any = {}
    -

    Returns any

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      rawTemplate: string
    • -
    • -
      data: any
    • -
    • -
      options: any = {}
    -

    Returns string

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/utils_Evaluator.Evaluator.html b/docs/classes/utils_Evaluator.Evaluator.html deleted file mode 100644 index 83319ce0..00000000 --- a/docs/classes/utils_Evaluator.Evaluator.html +++ /dev/null @@ -1,313 +0,0 @@ -Evaluator | @formio/core
-
- -
-
-
-
- -

Class Evaluator

-
-

Hierarchy

-
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Properties

-
- -
noeval: boolean = false
-
-

Methods

-
- -
    - -
  • -

    Evaluate a method.

    -
    -
    -

    Parameters

    -
      -
    • -
      func: any
      -
    • -
    • -
      args: any = {}
      -
    • -
    • -
      ret: any = ''
    • -
    • -
      interpolate: boolean = false
    • -
    • -
      context: any = {}
    • -
    • -
      options: any = {}
    -

    Returns any

    -
-
- -
-
- -
    - -
  • -

    Execute a function.

    -
    -
    -

    Parameters

    -
      -
    • -
      func: any
      -
    • -
    • -
      args: any
      -
    • -
    • -
      context: any = {}
    • -
    • -
      options: any = {}
    -

    Returns any

    -
-
- -
-
- -
-
- -
    - -
  • -

    Allow external modules the ability to extend the Evaluator.

    -
    -
    -

    Parameters

    -
      -
    • -
      evaluator: any
      -
    -

    Returns void

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/enums/sdk_Formio.FormioPathType.html b/docs/enums/sdk_Formio.FormioPathType.html deleted file mode 100644 index 7ac124e8..00000000 --- a/docs/enums/sdk_Formio.FormioPathType.html +++ /dev/null @@ -1,164 +0,0 @@ -FormioPathType | @formio/core
-
- -
-
-
-
- -

Enumeration FormioPathType

-
-

The different path types for a project.

-
-
-
-
-
- -
-
-

Enumeration Members

-
-
-

Enumeration Members

-
- -
Subdirectories: "Subdirectories"
-
- -
Subdomains: "Subdomains"
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/enums/types_process_ProcessType.ProcessType.html b/docs/enums/types_process_ProcessType.ProcessType.html deleted file mode 100644 index 4b2e46fd..00000000 --- a/docs/enums/types_process_ProcessType.ProcessType.html +++ /dev/null @@ -1,165 +0,0 @@ -ProcessType | @formio/core
-
- -
-
-
-
- -

Enumeration ProcessType

-
-
-
- -
-
-

Enumeration Members

-
-
-

Enumeration Members

-
- -
Change: "change"
-
- -
Save: "save"
-
- -
Submit: "submit"
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/enums/types_process_ProcessorType.ProcessorType.html b/docs/enums/types_process_ProcessorType.ProcessorType.html deleted file mode 100644 index 5836ca1a..00000000 --- a/docs/enums/types_process_ProcessorType.ProcessorType.html +++ /dev/null @@ -1,158 +0,0 @@ -ProcessorType | @formio/core
-
- -
-
-
-
- -

Enumeration ProcessorType

-
-
-
- -
-
-

Enumeration Members

-
-
-

Enumeration Members

-
- -
Custom: "custom"
-
- -
Validate: "validate"
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/base_Components.render.html b/docs/functions/base_Components.render.html deleted file mode 100644 index dfb88a14..00000000 --- a/docs/functions/base_Components.render.html +++ /dev/null @@ -1,154 +0,0 @@ -render | @formio/core
-
- -
-
-
-
- -

Function render

-
-
    - -
  • -

    Render a component attached to an html component.

    -
    -
    -

    Parameters

    -
      -
    • -
      element: HTMLElement
      -
    • -
    • -
      component: any
      -
    • -
    • -
      options: any = {}
      -
    • -
    • -
      data: any = {}
      -
    -

    Returns any

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/base_array_ArrayComponent.ArrayComponent.html b/docs/functions/base_array_ArrayComponent.ArrayComponent.html deleted file mode 100644 index 6f4c1381..00000000 --- a/docs/functions/base_array_ArrayComponent.ArrayComponent.html +++ /dev/null @@ -1,151 +0,0 @@ -ArrayComponent | @formio/core
-
- -
-
-
- -
-
    - -
  • -

    An array data type component. This provides a nested component that creates "rows" of data -where each row creates new instances of the JSON components and sets the data context for -each row according to the row it is within.

    -

    For example, if you have the following JSON schema.

    -
    {
    type: 'array',
    key: 'customers',
    components: [
    {
    type: 'datavalue',
    key: 'firstName'
    },
    {
    type: 'datavalue',
    key: 'lastName'
    }
    ]
    } -
    -

    You can now create multiple rows using the following data.

    -
    {
    customers: [
    {firstName: 'Joe', lastName: 'Smith'},
    {firstName: 'Sally', lastName: 'Thompson'},
    {firstName: 'Sue', lastName: 'Warner'}
    ]
    } -
    -
    -
    -

    Parameters

    -
      -
    • -
      props: any = {}
    -

    Returns ModelDecoratorInterface

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/base_component_Component.Component.html b/docs/functions/base_component_Component.Component.html deleted file mode 100644 index c8b594ad..00000000 --- a/docs/functions/base_component_Component.Component.html +++ /dev/null @@ -1,143 +0,0 @@ -Component | @formio/core
-
- -
-
-
- -
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/base_data_DataComponent.DataComponent.html b/docs/functions/base_data_DataComponent.DataComponent.html deleted file mode 100644 index 3a9c4866..00000000 --- a/docs/functions/base_data_DataComponent.DataComponent.html +++ /dev/null @@ -1,153 +0,0 @@ -DataComponent | @formio/core
-
- -
-
-
-
- -

Function DataComponent

-
-
    - -
  • -

    A DataComponent is one that establishes a new data context for all of its -children at the specified "key" of this comopnent. For example, if this data -component has a key of "employee", and then some components within the data -component of "firstName" and "lastName", the data structure provided by this -component would resemble the following.

    -

    { - "employee": { - "firstName": "Bob", - "lastName": "Smith" - } -}

    -
    -
    -

    Parameters

    -
      -
    • -
      props: any = {}
    -

    Returns ModelDecoratorInterface

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/base_nested_NestedComponent.NestedComponent.html b/docs/functions/base_nested_NestedComponent.NestedComponent.html deleted file mode 100644 index c8c44cd2..00000000 --- a/docs/functions/base_nested_NestedComponent.NestedComponent.html +++ /dev/null @@ -1,141 +0,0 @@ -NestedComponent | @formio/core
-
- -
-
-
- -
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/core.use.html b/docs/functions/core.use.html deleted file mode 100644 index 738b9fdb..00000000 --- a/docs/functions/core.use.html +++ /dev/null @@ -1,148 +0,0 @@ -use | @formio/core
-
- -
-
-
-
- -

Function use

-
-
    - -
  • -

    Allows passing in plugins as multiple arguments or an array of plugins.

    -

    Formio.plugins(plugin1, plugin2, etc); -Formio.plugins([plugin1, plugin2, etc]);

    -
    -
    -

    Parameters

    -
      -
    • -
      Rest ...mods: any
    -

    Returns void

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/core.useModule.html b/docs/functions/core.useModule.html deleted file mode 100644 index 9af36810..00000000 --- a/docs/functions/core.useModule.html +++ /dev/null @@ -1,147 +0,0 @@ -useModule | @formio/core
-
- -
-
-
-
- -

Function useModule

-
-
    - -
  • -

    Register a new module.

    -
    -
    -

    Parameters

    -
      -
    • -
      module: any
      -
    -

    Returns void

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/core.usePlugin.html b/docs/functions/core.usePlugin.html deleted file mode 100644 index 4790d570..00000000 --- a/docs/functions/core.usePlugin.html +++ /dev/null @@ -1,150 +0,0 @@ -usePlugin | @formio/core
-
- -
-
-
-
- -

Function usePlugin

-
-
    - -
  • -

    Register a specific plugin.

    -
    -
    -

    Parameters

    -
      -
    • -
      key: string
      -
    • -
    • -
      plugin: any
      -
    -

    Returns void

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/index.dayjs-1.html b/docs/functions/index.dayjs-1.html deleted file mode 100644 index 51469a06..00000000 --- a/docs/functions/index.dayjs-1.html +++ /dev/null @@ -1,233 +0,0 @@ -dayjs | @formio/core
-
- -
-
-
-
- -

Function dayjs

-
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      Optional date: null | string | number | Date | Dayjs
    -

    Returns Dayjs

  • - -
  • -
    -

    Parameters

    -
      -
    • -
      Optional date: null | string | number | Date | Dayjs
    • -
    • -
      Optional format: OptionType
    • -
    • -
      Optional strict: boolean
    -

    Returns Dayjs

  • - -
  • -
    -

    Parameters

    -
      -
    • -
      Optional date: null | string | number | Date | Dayjs
    • -
    • -
      Optional format: OptionType
    • -
    • -
      Optional locale: string
    • -
    • -
      Optional strict: boolean
    -

    Returns Dayjs

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/index.dayjs.extend.html b/docs/functions/index.dayjs.extend.html deleted file mode 100644 index 27427738..00000000 --- a/docs/functions/index.dayjs.extend.html +++ /dev/null @@ -1,235 +0,0 @@ -extend | @formio/core
-
- -
-
-
-
- -

Function extend

-
-
    - -
  • -
    -

    Type Parameters

    -
      -
    • -

      T = unknown

    -
    -

    Parameters

    -
    -

    Returns Dayjs

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/index.dayjs.isDayjs.html b/docs/functions/index.dayjs.isDayjs.html deleted file mode 100644 index 3596f6d8..00000000 --- a/docs/functions/index.dayjs.isDayjs.html +++ /dev/null @@ -1,228 +0,0 @@ -isDayjs | @formio/core
-
- -
-
-
-
- -

Function isDayjs

-
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      d: any
    -

    Returns d is Dayjs

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/index.dayjs.locale.html b/docs/functions/index.dayjs.locale.html deleted file mode 100644 index c8de4eb2..00000000 --- a/docs/functions/index.dayjs.locale.html +++ /dev/null @@ -1,232 +0,0 @@ -locale | @formio/core
-
- -
-
-
-
- -

Function locale

-
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      Optional preset: string | ILocale
    • -
    • -
      Optional object: Partial<ILocale>
    • -
    • -
      Optional isLocal: boolean
    -

    Returns string

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/index.dayjs.tz.html b/docs/functions/index.dayjs.tz.html deleted file mode 100644 index 27b9bb04..00000000 --- a/docs/functions/index.dayjs.tz.html +++ /dev/null @@ -1,244 +0,0 @@ -tz | @formio/core
-
- -
-
-
-
- -

Function tz

-
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      Optional date: null | string | number | Date | Dayjs
    • -
    • -
      Optional timezone: string
    -

    Returns Dayjs

  • - -
  • -
    -

    Parameters

    -
      -
    • -
      date: undefined | null | string | number | Date | Dayjs
    • -
    • -
      format: string
    • -
    • -
      Optional timezone: string
    -

    Returns Dayjs

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/index.dayjs.unix.html b/docs/functions/index.dayjs.unix.html deleted file mode 100644 index d4ea8bb0..00000000 --- a/docs/functions/index.dayjs.unix.html +++ /dev/null @@ -1,228 +0,0 @@ -unix | @formio/core
-
- -
-
-
-
- -

Function unix

-
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      t: number
    -

    Returns Dayjs

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/index.dayjs.utc.html b/docs/functions/index.dayjs.utc.html deleted file mode 100644 index d44cfb5b..00000000 --- a/docs/functions/index.dayjs.utc.html +++ /dev/null @@ -1,232 +0,0 @@ -utc | @formio/core
-
- -
-
-
-
- -

Function utc

-
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      Optional config: null | string | number | Date | Dayjs
    • -
    • -
      Optional format: string
    • -
    • -
      Optional strict: boolean
    -

    Returns Dayjs

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/model_EventEmitter.EventEmitter.html b/docs/functions/model_EventEmitter.EventEmitter.html deleted file mode 100644 index 00877e6f..00000000 --- a/docs/functions/model_EventEmitter.EventEmitter.html +++ /dev/null @@ -1,143 +0,0 @@ -EventEmitter | @formio/core
-
- -
-
-
-
- -

Function EventEmitter

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/model_Model.Model.html b/docs/functions/model_Model.Model.html deleted file mode 100644 index 13c2d86c..00000000 --- a/docs/functions/model_Model.Model.html +++ /dev/null @@ -1,142 +0,0 @@ -Model | @formio/core
-
- -
-
-
-
- -

Function Model

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/model_NestedArrayModel.NestedArrayModel.html b/docs/functions/model_NestedArrayModel.NestedArrayModel.html deleted file mode 100644 index a81a4be6..00000000 --- a/docs/functions/model_NestedArrayModel.NestedArrayModel.html +++ /dev/null @@ -1,140 +0,0 @@ -NestedArrayModel | @formio/core
-
- -
-
-
-
- -

Function NestedArrayModel

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/model_NestedDataModel.NestedDataModel.html b/docs/functions/model_NestedDataModel.NestedDataModel.html deleted file mode 100644 index 1fb4e6bb..00000000 --- a/docs/functions/model_NestedDataModel.NestedDataModel.html +++ /dev/null @@ -1,140 +0,0 @@ -NestedDataModel | @formio/core
-
- -
-
-
-
- -

Function NestedDataModel

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/model_NestedModel.NestedModel.html b/docs/functions/model_NestedModel.NestedModel.html deleted file mode 100644 index abcb3655..00000000 --- a/docs/functions/model_NestedModel.NestedModel.html +++ /dev/null @@ -1,140 +0,0 @@ -NestedModel | @formio/core
-
- -
-
-
-
- -

Function NestedModel

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.add_operation.html b/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.add_operation.html deleted file mode 100644 index 843a3b6e..00000000 --- a/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.add_operation.html +++ /dev/null @@ -1,204 +0,0 @@ -add_operation | @formio/core
-
- -
-
-
- -
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      name: string
    • -
    • -
      code: ((...args) => any)
      -
        -
      • -
          -
        • (...args): any
        • -
        • -
          -

          Parameters

          -
            -
          • -
            Rest ...args: any[]
          -

          Returns any

    -

    Returns void

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.apply.html b/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.apply.html deleted file mode 100644 index affe0ed6..00000000 --- a/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.apply.html +++ /dev/null @@ -1,193 +0,0 @@ -apply | @formio/core
-
- -
-
-
- -
-
    - -
  • -
    -

    Parameters

    -
    -

    Returns any

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.get_operator.html b/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.get_operator.html deleted file mode 100644 index e8e9c83f..00000000 --- a/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.get_operator.html +++ /dev/null @@ -1,191 +0,0 @@ -get_operator | @formio/core
-
- -
-
-
- -
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      logic: Record<string, any>
    -

    Returns string

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.get_values.html b/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.get_values.html deleted file mode 100644 index 66785346..00000000 --- a/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.get_values.html +++ /dev/null @@ -1,191 +0,0 @@ -get_values | @formio/core
-
- -
-
-
- -
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      logic: Record<string, any>
    -

    Returns any

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.is_logic.html b/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.is_logic.html deleted file mode 100644 index 77fdf373..00000000 --- a/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.is_logic.html +++ /dev/null @@ -1,191 +0,0 @@ -is_logic | @formio/core
-
- -
-
-
- -
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      logic: any
    -

    Returns logic is RulesLogic<never>

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.rm_operation.html b/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.rm_operation.html deleted file mode 100644 index db924596..00000000 --- a/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.rm_operation.html +++ /dev/null @@ -1,191 +0,0 @@ -rm_operation | @formio/core
-
- -
-
-
- -
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      name: string
    -

    Returns void

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.rule_like.html b/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.rule_like.html deleted file mode 100644 index 9676e92b..00000000 --- a/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.rule_like.html +++ /dev/null @@ -1,193 +0,0 @@ -rule_like | @formio/core
-
- -
-
-
- -
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      rule: any
    • -
    • -
      pattern: any
    -

    Returns boolean

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.truthy.html b/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.truthy.html deleted file mode 100644 index a7edc6b3..00000000 --- a/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.truthy.html +++ /dev/null @@ -1,191 +0,0 @@ -truthy | @formio/core
-
- -
-
-
- -
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      value: any
    -

    Returns boolean

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.uses_data.html b/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.uses_data.html deleted file mode 100644 index 1746d3a6..00000000 --- a/docs/functions/modules_jsonlogic_jsonLogic.jsonLogic.uses_data.html +++ /dev/null @@ -1,191 +0,0 @@ -uses_data | @formio/core
-
- -
-
-
- -
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      logic: Record<string, any>
    -

    Returns any[]

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/process_process.process.html b/docs/functions/process_process.process.html deleted file mode 100644 index b4aeac8b..00000000 --- a/docs/functions/process_process.process.html +++ /dev/null @@ -1,141 +0,0 @@ -process | @formio/core
-
- -
-
-
-
- -

Function process

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/process_process.processSync.html b/docs/functions/process_process.processSync.html deleted file mode 100644 index 8d6c4d61..00000000 --- a/docs/functions/process_process.processSync.html +++ /dev/null @@ -1,141 +0,0 @@ -processSync | @formio/core
-
- -
-
-
-
- -

Function processSync

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/process_processOne.processOne.html b/docs/functions/process_processOne.processOne.html deleted file mode 100644 index 2880ba9f..00000000 --- a/docs/functions/process_processOne.processOne.html +++ /dev/null @@ -1,141 +0,0 @@ -processOne | @formio/core
-
- -
-
-
-
- -

Function processOne

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/process_processOne.processOneSync.html b/docs/functions/process_processOne.processOneSync.html deleted file mode 100644 index f6b21a7f..00000000 --- a/docs/functions/process_processOne.processOneSync.html +++ /dev/null @@ -1,141 +0,0 @@ -processOneSync | @formio/core
-
- -
-
-
-
- -

Function processOneSync

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/process_validation_util.getComponentErrorField.html b/docs/functions/process_validation_util.getComponentErrorField.html deleted file mode 100644 index 41b00ece..00000000 --- a/docs/functions/process_validation_util.getComponentErrorField.html +++ /dev/null @@ -1,151 +0,0 @@ -getComponentErrorField | @formio/core
-
- -
-
-
-
- -

Function getComponentErrorField

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/process_validation_util.getEmptyValue.html b/docs/functions/process_validation_util.getEmptyValue.html deleted file mode 100644 index baeeabca..00000000 --- a/docs/functions/process_validation_util.getEmptyValue.html +++ /dev/null @@ -1,149 +0,0 @@ -getEmptyValue | @formio/core
-
- -
-
-
-
- -

Function getEmptyValue

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/process_validation_util.isComponentPersistent.html b/docs/functions/process_validation_util.isComponentPersistent.html deleted file mode 100644 index 1ce79a34..00000000 --- a/docs/functions/process_validation_util.isComponentPersistent.html +++ /dev/null @@ -1,149 +0,0 @@ -isComponentPersistent | @formio/core
-
- -
-
-
-
- -

Function isComponentPersistent

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/process_validation_util.isComponentProtected.html b/docs/functions/process_validation_util.isComponentProtected.html deleted file mode 100644 index 28ca324a..00000000 --- a/docs/functions/process_validation_util.isComponentProtected.html +++ /dev/null @@ -1,149 +0,0 @@ -isComponentProtected | @formio/core
-
- -
-
-
-
- -

Function isComponentProtected

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/process_validation_util.isEmpty.html b/docs/functions/process_validation_util.isEmpty.html deleted file mode 100644 index efb5600e..00000000 --- a/docs/functions/process_validation_util.isEmpty.html +++ /dev/null @@ -1,151 +0,0 @@ -isEmpty | @formio/core
-
- -
-
-
- -
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/process_validation_util.isEmptyObject.html b/docs/functions/process_validation_util.isEmptyObject.html deleted file mode 100644 index c58e7ba0..00000000 --- a/docs/functions/process_validation_util.isEmptyObject.html +++ /dev/null @@ -1,149 +0,0 @@ -isEmptyObject | @formio/core
-
- -
-
-
-
- -

Function isEmptyObject

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/process_validation_util.isObject.html b/docs/functions/process_validation_util.isObject.html deleted file mode 100644 index 75783f2c..00000000 --- a/docs/functions/process_validation_util.isObject.html +++ /dev/null @@ -1,149 +0,0 @@ -isObject | @formio/core
-
- -
-
-
- -
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/process_validation_util.isPromise.html b/docs/functions/process_validation_util.isPromise.html deleted file mode 100644 index e8464f3b..00000000 --- a/docs/functions/process_validation_util.isPromise.html +++ /dev/null @@ -1,149 +0,0 @@ -isPromise | @formio/core
-
- -
-
-
- -
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/process_validation_util.shouldSkipValidation.html b/docs/functions/process_validation_util.shouldSkipValidation.html deleted file mode 100644 index d4463101..00000000 --- a/docs/functions/process_validation_util.shouldSkipValidation.html +++ /dev/null @@ -1,151 +0,0 @@ -shouldSkipValidation | @formio/core
-
- -
-
-
-
- -

Function shouldSkipValidation

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/process_validation_util.toBoolean.html b/docs/functions/process_validation_util.toBoolean.html deleted file mode 100644 index 516b9fa9..00000000 --- a/docs/functions/process_validation_util.toBoolean.html +++ /dev/null @@ -1,149 +0,0 @@ -toBoolean | @formio/core
-
- -
-
-
- -
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/process_validation_validate.validate.html b/docs/functions/process_validation_validate.validate.html deleted file mode 100644 index 3166e833..00000000 --- a/docs/functions/process_validation_validate.validate.html +++ /dev/null @@ -1,143 +0,0 @@ -validate | @formio/core
-
- -
-
-
- -
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/process_validation_validate.validateSync.html b/docs/functions/process_validation_validate.validateSync.html deleted file mode 100644 index 73553bc7..00000000 --- a/docs/functions/process_validation_validate.validateSync.html +++ /dev/null @@ -1,143 +0,0 @@ -validateSync | @formio/core
-
- -
-
-
- -
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_date.convertFormatToMoment.html b/docs/functions/utils_date.convertFormatToMoment.html deleted file mode 100644 index c2cae3ee..00000000 --- a/docs/functions/utils_date.convertFormatToMoment.html +++ /dev/null @@ -1,151 +0,0 @@ -convertFormatToMoment | @formio/core
-
- -
-
-
-
- -

Function convertFormatToMoment

-
-
    - -
  • -

    Convert the format from the angular-datepicker module to moment format.

    -
    -
    -

    Parameters

    -
      -
    • -
      format: string
      -
    -

    Returns string

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_date.currentTimezone.html b/docs/functions/utils_date.currentTimezone.html deleted file mode 100644 index 4ab7de62..00000000 --- a/docs/functions/utils_date.currentTimezone.html +++ /dev/null @@ -1,145 +0,0 @@ -currentTimezone | @formio/core
-
- -
-
-
-
- -

Function currentTimezone

-
-
    - -
  • -

    Get the current timezone string.

    -
    -

    Returns string

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_date.formatDate.html b/docs/functions/utils_date.formatDate.html deleted file mode 100644 index 0fb64b19..00000000 --- a/docs/functions/utils_date.formatDate.html +++ /dev/null @@ -1,157 +0,0 @@ -formatDate | @formio/core
-
- -
-
-
-
- -

Function formatDate

-
-
    - -
  • -

    Format a date provided a value, format, and timezone object.

    -
    -
    -

    Parameters

    -
      -
    • -
      value: any
      -
    • -
    • -
      format: any
      -
    • -
    • -
      timezone: any
      -
    -

    Returns string

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_date.getDateSetting.html b/docs/functions/utils_date.getDateSetting.html deleted file mode 100644 index 97a2e2da..00000000 --- a/docs/functions/utils_date.getDateSetting.html +++ /dev/null @@ -1,151 +0,0 @@ -getDateSetting | @formio/core
-
- -
-
-
-
- -

Function getDateSetting

-
-
    - -
  • -

    Return a translated date setting.

    -
    -
    -

    Parameters

    -
      -
    • -
      date: any
      -
    -

    Returns any

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_date.getDateValidationFormat.html b/docs/functions/utils_date.getDateValidationFormat.html deleted file mode 100644 index 05b7d105..00000000 --- a/docs/functions/utils_date.getDateValidationFormat.html +++ /dev/null @@ -1,147 +0,0 @@ -getDateValidationFormat | @formio/core
-
- -
-
-
-
- -

Function getDateValidationFormat

-
-
    - -
  • -
    -

    Parameters

    -
    -

    Returns "DD-MM-YYYY" | "MM-DD-YYYY"

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_date.isPartialDay.html b/docs/functions/utils_date.isPartialDay.html deleted file mode 100644 index b95456b6..00000000 --- a/docs/functions/utils_date.isPartialDay.html +++ /dev/null @@ -1,149 +0,0 @@ -isPartialDay | @formio/core
-
- -
-
-
-
- -

Function isPartialDay

-
-
    - -
  • -
    -

    Parameters

    -
    -

    Returns boolean

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_date.momentDate.html b/docs/functions/utils_date.momentDate.html deleted file mode 100644 index 7fffb281..00000000 --- a/docs/functions/utils_date.momentDate.html +++ /dev/null @@ -1,157 +0,0 @@ -momentDate | @formio/core
-
- -
-
-
-
- -

Function momentDate

-
-
    - -
  • -

    Get the moment date object for translating dates with timezones.

    -
    -
    -

    Parameters

    -
      -
    • -
      value: any
      -
    • -
    • -
      format: any
      -
    • -
    • -
      timezone: any
      -
    -

    Returns any

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_dom.appendTo.html b/docs/functions/utils_dom.appendTo.html deleted file mode 100644 index f1f1388a..00000000 --- a/docs/functions/utils_dom.appendTo.html +++ /dev/null @@ -1,150 +0,0 @@ -appendTo | @formio/core
-
- -
-
-
-
- -

Function appendTo

-
-
    - -
  • -

    Append an HTML DOM element to a container.

    -
    -
    -

    Parameters

    -
      -
    • -
      element: undefined | HTMLElement
      -
    • -
    • -
      container: undefined | HTMLElement
      -
    -

    Returns void

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_dom.empty.html b/docs/functions/utils_dom.empty.html deleted file mode 100644 index 1b7c94b5..00000000 --- a/docs/functions/utils_dom.empty.html +++ /dev/null @@ -1,149 +0,0 @@ -empty | @formio/core
-
- -
-
-
-
- -

Function empty

-
-
    - -
  • -

    Empty's an HTML DOM element.

    -
    -
    -

    Parameters

    -
      -
    • -
      element: undefined | HTMLElement
      -

      The element you wish to empty.

      -
      -
    -

    Returns void

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_dom.prependTo.html b/docs/functions/utils_dom.prependTo.html deleted file mode 100644 index 1f364a2c..00000000 --- a/docs/functions/utils_dom.prependTo.html +++ /dev/null @@ -1,154 +0,0 @@ -prependTo | @formio/core
-
- -
-
-
-
- -

Function prependTo

-
-
    - -
  • -

    Prepend an HTML DOM element to a container.

    -
    -
    -

    Parameters

    -
      -
    • -
      element: undefined | HTMLElement
      -

      The DOM element to prepend.

      -
      -
    • -
    • -
      container: undefined | HTMLElement
      -

      The DOM element that is the container of the element getting prepended.

      -
      -
    -

    Returns void

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_dom.removeChildFrom.html b/docs/functions/utils_dom.removeChildFrom.html deleted file mode 100644 index 2d17f6f3..00000000 --- a/docs/functions/utils_dom.removeChildFrom.html +++ /dev/null @@ -1,154 +0,0 @@ -removeChildFrom | @formio/core
-
- -
-
-
-
- -

Function removeChildFrom

-
-
    - -
  • -

    Removes an HTML DOM element from its bounding container.

    -
    -
    -

    Parameters

    -
      -
    • -
      element: undefined | HTMLElement
      -

      The element to remove.

      -
      -
    • -
    • -
      container: undefined | HTMLElement
      -

      The DOM element that is the container of the element to remove.

      -
      -
    -

    Returns void

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_error.getErrorMessage.html b/docs/functions/utils_error.getErrorMessage.html deleted file mode 100644 index e159b058..00000000 --- a/docs/functions/utils_error.getErrorMessage.html +++ /dev/null @@ -1,140 +0,0 @@ -getErrorMessage | @formio/core
-
- -
-
-
-
- -

Function getErrorMessage

-
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      error: unknown
    -

    Returns string

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_formUtil.eachComponent.html b/docs/functions/utils_formUtil.eachComponent.html deleted file mode 100644 index 12e9ee89..00000000 --- a/docs/functions/utils_formUtil.eachComponent.html +++ /dev/null @@ -1,172 +0,0 @@ -eachComponent | @formio/core
-
- -
-
-
-
- -

Function eachComponent

-
-
    - -
  • -

    Iterate through each component within a form.

    -
    -
    -

    Parameters

    -
      -
    • -
      components: any
      -

      The components to iterate.

      -
      -
    • -
    • -
      fn: any
      -

      The iteration function to invoke for each component.

      -
      -
    • -
    • -
      Optional includeAll: boolean
      -

      Whether or not to include layout components.

      -
      -
    • -
    • -
      Optional path: string
      -

      The current data path of the element. Example: data.user.firstName

      -
      -
    • -
    • -
      Optional parent: any
      -

      The parent object.

      -
      -
    -

    Returns void

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_formUtil.eachComponentAsync.html b/docs/functions/utils_formUtil.eachComponentAsync.html deleted file mode 100644 index 27b9e478..00000000 --- a/docs/functions/utils_formUtil.eachComponentAsync.html +++ /dev/null @@ -1,152 +0,0 @@ -eachComponentAsync | @formio/core
-
- -
-
-
-
- -

Function eachComponentAsync

-
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      components: any[]
    • -
    • -
      fn: any
    • -
    • -
      includeAll: boolean = false
    • -
    • -
      path: string = ""
    -

    Returns Promise<void>

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_formUtil.eachComponentData.html b/docs/functions/utils_formUtil.eachComponentData.html deleted file mode 100644 index fe33176e..00000000 --- a/docs/functions/utils_formUtil.eachComponentData.html +++ /dev/null @@ -1,156 +0,0 @@ -eachComponentData | @formio/core
-
- -
-
-
-
- -

Function eachComponentData

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_formUtil.eachComponentDataAsync.html b/docs/functions/utils_formUtil.eachComponentDataAsync.html deleted file mode 100644 index 602ce2c6..00000000 --- a/docs/functions/utils_formUtil.eachComponentDataAsync.html +++ /dev/null @@ -1,156 +0,0 @@ -eachComponentDataAsync | @formio/core
-
- -
-
-
-
- -

Function eachComponentDataAsync

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_formUtil.flattenComponents.html b/docs/functions/utils_formUtil.flattenComponents.html deleted file mode 100644 index 18985901..00000000 --- a/docs/functions/utils_formUtil.flattenComponents.html +++ /dev/null @@ -1,158 +0,0 @@ -flattenComponents | @formio/core
-
- -
-
-
-
- -

Function flattenComponents

-
-
    - -
  • -

    Flatten the form components for data manipulation.

    -
    -
    -

    Parameters

    -
      -
    • -
      components: any
      -

      The components to iterate.

      -
      -
    • -
    • -
      includeAll: boolean
      -

      Whether or not to include layout components.

      -
      -
    -

    Returns any

    The flattened components map.

    - -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_formUtil.guid.html b/docs/functions/utils_formUtil.guid.html deleted file mode 100644 index e5a35867..00000000 --- a/docs/functions/utils_formUtil.guid.html +++ /dev/null @@ -1,141 +0,0 @@ -guid | @formio/core
-
- -
-
-
-
- -

Function guid

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_formUtil.uniqueName.html b/docs/functions/utils_formUtil.uniqueName.html deleted file mode 100644 index 93f3f7f3..00000000 --- a/docs/functions/utils_formUtil.uniqueName.html +++ /dev/null @@ -1,156 +0,0 @@ -uniqueName | @formio/core
-
- -
-
-
-
- -

Function uniqueName

-
-
    - -
  • -

    Make a filename guaranteed to be unique.

    -
    -
    -

    Parameters

    -
      -
    • -
      name: string
      -
    • -
    • -
      Optional template: string
      -
    • -
    • -
      Optional evalContext: any
      -
    -

    Returns string

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_jwtDecode.jwtDecode.html b/docs/functions/utils_jwtDecode.jwtDecode.html deleted file mode 100644 index 5b50dd13..00000000 --- a/docs/functions/utils_jwtDecode.jwtDecode.html +++ /dev/null @@ -1,145 +0,0 @@ -jwtDecode | @formio/core
-
- -
-
-
-
- -

Function jwtDecode

-
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      token: string
    • -
    • -
      options: {
          header?: boolean;
      } = {}
      -
        -
      • -
        Optional header?: boolean
    -

    Returns any

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_mask.getInputMask.html b/docs/functions/utils_mask.getInputMask.html deleted file mode 100644 index 0da11a40..00000000 --- a/docs/functions/utils_mask.getInputMask.html +++ /dev/null @@ -1,155 +0,0 @@ -getInputMask | @formio/core
-
- -
-
-
-
- -

Function getInputMask

-
-
    - -
  • -

    Returns an input mask that is compatible with the input mask library.

    -
    -
    -

    Parameters

    -
      -
    • -
      mask: any
      -

      The Form.io input mask.

      -
      -
    • -
    • -
      Optional placeholderChar: any
      -

      Char which is used as a placeholder.

      -
      -
    -

    Returns any

      -
    • The input mask for the mask library.
    • -
    - -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_mask.matchInputMask.html b/docs/functions/utils_mask.matchInputMask.html deleted file mode 100644 index 57e3263a..00000000 --- a/docs/functions/utils_mask.matchInputMask.html +++ /dev/null @@ -1,143 +0,0 @@ -matchInputMask | @formio/core
-
- -
-
-
-
- -

Function matchInputMask

-
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      value: any
    • -
    • -
      inputMask: any
    -

    Returns boolean

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_override.override.html b/docs/functions/utils_override.override.html deleted file mode 100644 index 73976fb1..00000000 --- a/docs/functions/utils_override.override.html +++ /dev/null @@ -1,147 +0,0 @@ -override | @formio/core
-
- -
-
-
-
- -

Function override

-
-
    - -
  • -

    Simple class to allow for overriding base classes.

    -
    -
    -

    Parameters

    -
      -
    • -
      classObj: any
      -
    • -
    • -
      extenders: any
      -
    -

    Returns void

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_sanitize.sanitize.html b/docs/functions/utils_sanitize.sanitize.html deleted file mode 100644 index 806aab76..00000000 --- a/docs/functions/utils_sanitize.sanitize.html +++ /dev/null @@ -1,146 +0,0 @@ -sanitize | @formio/core
-
- -
-
-
-
- -

Function sanitize

-
-
    - -
  • -

    Sanitize an html string.

    -
    -
    -

    Parameters

    -
      -
    • -
      string: string
      -
    • -
    • -
      options: any
    -

    Returns TrustedHTML | string

    -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_unwind.mergeArray.html b/docs/functions/utils_unwind.mergeArray.html deleted file mode 100644 index 90718525..00000000 --- a/docs/functions/utils_unwind.mergeArray.html +++ /dev/null @@ -1,145 +0,0 @@ -mergeArray | @formio/core
-
- -
-
-
-
- -

Function mergeArray

-
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      src: any
    • -
    • -
      dst: any
    -

    Returns void

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_unwind.mergeObject.html b/docs/functions/utils_unwind.mergeObject.html deleted file mode 100644 index da2af939..00000000 --- a/docs/functions/utils_unwind.mergeObject.html +++ /dev/null @@ -1,145 +0,0 @@ -mergeObject | @formio/core
-
- -
-
-
-
- -

Function mergeObject

-
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      src: any
    • -
    • -
      dst: any
    -

    Returns void

-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_unwind.rewind.html b/docs/functions/utils_unwind.rewind.html deleted file mode 100644 index 31f084fe..00000000 --- a/docs/functions/utils_unwind.rewind.html +++ /dev/null @@ -1,147 +0,0 @@ -rewind | @formio/core
-
- -
-
-
-
- -

Function rewind

-
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      submissions: any
    -

    Returns {
        data: {};
    }

    -
      -
    • -
      data: {}
      -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/functions/utils_unwind.unwind.html b/docs/functions/utils_unwind.unwind.html deleted file mode 100644 index 38fb69fd..00000000 --- a/docs/functions/utils_unwind.unwind.html +++ /dev/null @@ -1,145 +0,0 @@ -unwind | @formio/core
    -
    - -
    -
    -
    -
    - -

    Function unwind

    -
    -
      - -
    • -
      -

      Parameters

      -
        -
      • -
        form: any
      • -
      • -
        submission: any
      -

      Returns any[]

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/functions/utils_utils.boolValue.html b/docs/functions/utils_utils.boolValue.html deleted file mode 100644 index a3b1a667..00000000 --- a/docs/functions/utils_utils.boolValue.html +++ /dev/null @@ -1,145 +0,0 @@ -boolValue | @formio/core
    -
    - -
    -
    -
    -
    - -

    Function boolValue

    -
    -
      - -
    • -

      Determines the boolean value of a setting.

      -
      -
      -

      Parameters

      -
        -
      • -
        value: any
        -
      -

      Returns boolean

      -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/functions/utils_utils.escapeRegExCharacters.html b/docs/functions/utils_utils.escapeRegExCharacters.html deleted file mode 100644 index f89c48bb..00000000 --- a/docs/functions/utils_utils.escapeRegExCharacters.html +++ /dev/null @@ -1,148 +0,0 @@ -escapeRegExCharacters | @formio/core
    -
    - -
    -
    -
    -
    - -

    Function escapeRegExCharacters

    -
    -
      - -
    • -

      Escapes RegEx characters in provided String value.

      -
      -
      -

      Parameters

      -
        -
      • -
        value: string
        -

        String for escaping RegEx characters.

        -
        -
      -

      Returns string

      String with escaped RegEx characters.

      - -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index 3d224450..00000000 --- a/docs/index.html +++ /dev/null @@ -1,148 +0,0 @@ -@formio/core
    -
    - -
    -
    -
    -
    -

    @formio/core

    -

    Form.io Core JavaScript Rendering Engine

    This library is the core rendering engine behind the Form.io platform. It is a tiny (12k gzipped) rendering frameworks that allows for the rendering of complex components as well as managing the data models controlled by each component.

    -

    Usage

    To use this library, you will first need to install it into your own application.

    -
    npm install --save @formio/core
    -
    -

    Next, you can create a new component as follows.

    -
    import { Components } from '@formio/core';
    Components.addComponent({
    type: 'h3',
    template: (ctx) => `<h3>${ctx.component.header}</h3>`
    }); -
    -

    And now this component will render using the following.

    -
    const header = Components.createComponent({
    type: 'h3',
    header: 'This is a test',
    });
    console.log(header.render()); // Outputs <h3>This is a test</h3> -
    -

    You can also use this library by including it in your webpage scripts by including the following.

    -
    <script src="https://cdn.jsdelivr.net/npm/@formio/base@latest/dist/formio.core.min.js"></script>
    -
    -

    After you do this, you can then do the following to create a Data Table in your website.

    -
    FormioCore.render(document.getElementById('data-table'), {
    type: 'datatable',
    key: 'customers',
    components: [
    {
    type: 'datavalue',
    key: 'firstName',
    label: 'First Name'
    },
    {
    type: 'datavalue',
    key: 'lastName',
    label: 'First Name'
    }
    ]
    }, {}, {
    customers: [
    {firstName: 'Joe', lastName: 'Smith'},
    {firstName: 'Sally', lastName: 'Thompson'},
    {firstName: 'Mary', lastName: 'Bono'}
    ]
    }); -
    -

    See https://formio.github.io/core for more examples of how to use this library.

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/interfaces/base_component_Component.ComponentInterface.html b/docs/interfaces/base_component_Component.ComponentInterface.html deleted file mode 100644 index 385e6003..00000000 --- a/docs/interfaces/base_component_Component.ComponentInterface.html +++ /dev/null @@ -1,170 +0,0 @@ -ComponentInterface | @formio/core
    -
    - -
    -
    -
    -
    - -

    Interface ComponentInterface

    -
    -

    Hierarchy

    -
      -
    • ComponentInterface
    -
    -
    -
    - -
    -
    -

    Constructors

    -
    -
    -

    Constructors

    -
    - -
      - -
    • -
      -

      Parameters

      -
        -
      • -
        Optional component: any
      • -
      • -
        Optional options: any
      • -
      • -
        Optional data: any
      -

      Returns any

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/interfaces/base_component_Component.ComponentOptions.html b/docs/interfaces/base_component_Component.ComponentOptions.html deleted file mode 100644 index 7b3de380..00000000 --- a/docs/interfaces/base_component_Component.ComponentOptions.html +++ /dev/null @@ -1,197 +0,0 @@ -ComponentOptions | @formio/core
    -
    - -
    -
    -
    -
    - -

    Interface ComponentOptions

    -
    -

    Component options.

    -
    -
    -
    -

    Hierarchy

    -
      -
    • ComponentOptions
    -
    -
    -
    - -
    -
    -

    Properties

    -
    - -
    hooks?: any
    -
    - -
    i18n?: any
    -
    - -
    language?: string
    -
    - -
    namespace?: string
    -
    - -
    noInit?: boolean
    -
    - -
    template?: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/interfaces/base_component_Component.ComponentSchema.html b/docs/interfaces/base_component_Component.ComponentSchema.html deleted file mode 100644 index 1f3836c6..00000000 --- a/docs/interfaces/base_component_Component.ComponentSchema.html +++ /dev/null @@ -1,178 +0,0 @@ -ComponentSchema | @formio/core
    -
    - -
    -
    -
    -
    - -

    Interface ComponentSchema

    -
    -

    The component JSON schema.

    -
    -
    -
    -

    Hierarchy

    -
    -
    -
    -
    - -
    -
    -

    Properties

    -
    -
    -

    Properties

    -
    - -
    key: string
    -
    - -
    label?: string
    -
    - -
    type: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/interfaces/base_nested_NestedComponent.NestedComponentSchema.html b/docs/interfaces/base_nested_NestedComponent.NestedComponentSchema.html deleted file mode 100644 index b6c8de5d..00000000 --- a/docs/interfaces/base_nested_NestedComponent.NestedComponentSchema.html +++ /dev/null @@ -1,186 +0,0 @@ -NestedComponentSchema | @formio/core
    -
    - -
    -
    -
    -
    - -

    Interface NestedComponentSchema

    -
    -

    The component JSON schema.

    -
    -
    -
    -

    Hierarchy

    -
    -
    -
    -
    - -
    -
    -

    Properties

    -
    -
    -

    Properties

    -
    - -
    components: any[]
    -
    - -
    key: string
    -
    - -
    label?: string
    -
    - -
    type: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/interfaces/index.dayjs.ConfigTypeMap.html b/docs/interfaces/index.dayjs.ConfigTypeMap.html deleted file mode 100644 index f70cd931..00000000 --- a/docs/interfaces/index.dayjs.ConfigTypeMap.html +++ /dev/null @@ -1,243 +0,0 @@ -ConfigTypeMap | @formio/core
    -
    - -
    -
    -
    -
    - -

    Interface ConfigTypeMap

    -
    -

    Hierarchy

    -
      -
    • ConfigTypeMap
    -
    -
    -
    - -
    -
    -

    Properties

    -
    -
    -

    Properties

    -
    - -
    default: undefined | null | string | number | Date | Dayjs
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/interfaces/index.dayjs.DayjsTimezone.html b/docs/interfaces/index.dayjs.DayjsTimezone.html deleted file mode 100644 index 98f9bcf6..00000000 --- a/docs/interfaces/index.dayjs.DayjsTimezone.html +++ /dev/null @@ -1,287 +0,0 @@ -DayjsTimezone | @formio/core
    -
    - -
    -
    -
    -
    - -

    Interface DayjsTimezone

    -
    -

    Hierarchy

    -
      -
    • DayjsTimezone
    -
    -
      - -
    • -
      -

      Parameters

      -
        -
      • -
        Optional date: null | string | number | Date | Dayjs
      • -
      • -
        Optional timezone: string
      -

      Returns Dayjs

    • - -
    • -
      -

      Parameters

      -
        -
      • -
        date: undefined | null | string | number | Date | Dayjs
      • -
      • -
        format: string
      • -
      • -
        Optional timezone: string
      -

      Returns Dayjs

    -
    -
    -
    - -
    -
    -

    Methods

    -
    -
    -

    Methods

    -
    - -
      - -
    • -

      Returns string

    -
    - -
      - -
    • -
      -

      Parameters

      -
        -
      • -
        Optional timezone: string
      -

      Returns void

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/interfaces/index.dayjs.FormatObject.html b/docs/interfaces/index.dayjs.FormatObject.html deleted file mode 100644 index d5292846..00000000 --- a/docs/interfaces/index.dayjs.FormatObject.html +++ /dev/null @@ -1,257 +0,0 @@ -FormatObject | @formio/core
    -
    - -
    -
    -
    -
    - -

    Interface FormatObject

    -
    -

    Hierarchy

    -
      -
    • FormatObject
    -
    -
    -
    - -
    -
    -

    Properties

    -
    -
    -

    Properties

    -
    - -
    format?: string
    -
    - -
    locale?: string
    -
    - -
    utc?: boolean
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/interfaces/model_EventEmitter.EventEmitterBase.EventEmitterStatic.html b/docs/interfaces/model_EventEmitter.EventEmitterBase.EventEmitterStatic.html deleted file mode 100644 index 826d1322..00000000 --- a/docs/interfaces/model_EventEmitter.EventEmitterBase.EventEmitterStatic.html +++ /dev/null @@ -1,180 +0,0 @@ -EventEmitterStatic | @formio/core
    -
    - -
    -
    -
    - -
    -

    Hierarchy

    -
      -
    • EventEmitterStatic
    -
    -
    -
    - -
    -
    -

    Constructors

    -
    -
    -

    Constructors

    -
    - -
      - -
    • -
      -

      Type Parameters

      -
      -

      Returns EventEmitterBase<EventTypes, Context>

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/interfaces/model_EventEmitter.EventEmitterBase.ListenerFn.html b/docs/interfaces/model_EventEmitter.EventEmitterBase.ListenerFn.html deleted file mode 100644 index 5f3776f8..00000000 --- a/docs/interfaces/model_EventEmitter.EventEmitterBase.ListenerFn.html +++ /dev/null @@ -1,164 +0,0 @@ -ListenerFn | @formio/core
    -
    - -
    -
    -
    -
    - -

    Interface ListenerFn<Args>

    -
    -

    Type Parameters

    -
      -
    • -

      Args extends any[] = any[]

    -
    -

    Hierarchy

    -
      -
    • ListenerFn
    -
    -
      - -
    • -
      -

      Parameters

      -
        -
      • -
        Rest ...args: Args
      -

      Returns void

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/interfaces/model_EventEmitter.ModelInterface.html b/docs/interfaces/model_EventEmitter.ModelInterface.html deleted file mode 100644 index ca48da5a..00000000 --- a/docs/interfaces/model_EventEmitter.ModelInterface.html +++ /dev/null @@ -1,196 +0,0 @@ -ModelInterface | @formio/core
    -
    - -
    -
    -
    -
    - -

    Interface ModelInterface

    -
    -

    Hierarchy

    -
      -
    • ModelInterface
    -
    -
    -
    - -
    -
    -

    Constructors

    -
    -
    -

    Properties

    -
    -
    -

    Constructors

    -
    - -
      - -
    • -
      -

      Parameters

      -
        -
      • -
        Optional component: any
      • -
      • -
        Optional options: any
      • -
      • -
        Optional data: any
      -

      Returns any

    -
    -

    Properties

    -
    - -
    component?: any
    -
    - -
    data?: any
    -
    - -
    options?: any
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/interfaces/model_Model.ModelDecoratorInterface.html b/docs/interfaces/model_Model.ModelDecoratorInterface.html deleted file mode 100644 index dfcd36e2..00000000 --- a/docs/interfaces/model_Model.ModelDecoratorInterface.html +++ /dev/null @@ -1,146 +0,0 @@ -ModelDecoratorInterface | @formio/core
    -
    - -
    -
    -
    -
    - -

    Interface ModelDecoratorInterface

    -
    -

    Hierarchy

    -
      -
    • ModelDecoratorInterface
    -
    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/interfaces/sdk_Formio.FormioOptions.html b/docs/interfaces/sdk_Formio.FormioOptions.html deleted file mode 100644 index f7e6da97..00000000 --- a/docs/interfaces/sdk_Formio.FormioOptions.html +++ /dev/null @@ -1,181 +0,0 @@ -FormioOptions | @formio/core
    -
    - -
    -
    -
    -
    - -

    Interface FormioOptions

    -
    -

    The Formio class options interface.

    -
    -
    -
    -

    Hierarchy

    -
      -
    • FormioOptions
    -
    -
    -
    - -
    -
    -

    Properties

    -
    -
    -

    Properties

    -
    - -
    base?: string
    -

    The base API url of the Form.io Platform. Example: https://api.form.io

    -
    -
    -
    - -
    project?: string
    -

    The project API url of the Form.io Project. Example: https://examples.form.io

    -
    -
    -
    - -
    useSessionToken?: boolean
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/interfaces/sdk_Plugins.Plugin.html b/docs/interfaces/sdk_Plugins.Plugin.html deleted file mode 100644 index 498b9b83..00000000 --- a/docs/interfaces/sdk_Plugins.Plugin.html +++ /dev/null @@ -1,195 +0,0 @@ -Plugin | @formio/core
    -
    - -
    -
    -
    -
    - -

    Interface Plugin

    -
    -

    A Formio Plugin interface.

    -
    -
    -
    -

    Hierarchy

    -
      -
    • Plugin
    -
    -
    -
    - -
    -
    -

    Properties

    -
    -
    -

    Properties

    -
    - -
    __name: string
    -

    The name of the plugin.

    -
    -
    -
    - - -

    Called when the plugin is deregistered.

    -
    -
    -
    - - -

    An initialization function called when registered with Formio.

    -
    -
    -
    - -
    priority: number
    -

    The priority of this plugin.

    -
    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/interfaces/sdk_Plugins.PluginDeregisterFunction.html b/docs/interfaces/sdk_Plugins.PluginDeregisterFunction.html deleted file mode 100644 index 969647fb..00000000 --- a/docs/interfaces/sdk_Plugins.PluginDeregisterFunction.html +++ /dev/null @@ -1,155 +0,0 @@ -PluginDeregisterFunction | @formio/core
    -
    - -
    -
    -
    -
    - -

    Interface PluginDeregisterFunction

    -
    -

    Function that is called when the plugin is deregistered.

    -
    -
    -
    -

    Hierarchy

    -
      -
    • PluginDeregisterFunction
    -
    -
      - -
    • -
      -

      Parameters

      -
        -
      • -
        Formio: any
        -

        The Formio interface class.

        -
        -
      -

      Returns void

      -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/interfaces/sdk_Plugins.PluginInitFunction.html b/docs/interfaces/sdk_Plugins.PluginInitFunction.html deleted file mode 100644 index 0467a675..00000000 --- a/docs/interfaces/sdk_Plugins.PluginInitFunction.html +++ /dev/null @@ -1,155 +0,0 @@ -PluginInitFunction | @formio/core
    -
    - -
    -
    -
    -
    - -

    Interface PluginInitFunction

    -
    -

    The plugin initialization function, which will receive the Formio interface as its first argument.

    -
    -
    -
    -

    Hierarchy

    -
      -
    • PluginInitFunction
    -
    -
      - -
    • -
      -

      Parameters

      -
        -
      • -
        Formio: any
        -

        The Formio interface class.

        -
        -
      -

      Returns void

      -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/interfaces/types_Form.Form.html b/docs/interfaces/types_Form.Form.html deleted file mode 100644 index f7845d21..00000000 --- a/docs/interfaces/types_Form.Form.html +++ /dev/null @@ -1,334 +0,0 @@ -Form | @formio/core
    -
    - -
    -
    -
    -
    - -

    Interface Form

    -
    -

    Hierarchy

    -
      -
    • Form
    -
    -
    -
    - -
    -
    -

    Properties

    -
    - -
    _id: string
    -
    - -
    _vid: number
    -
    - -
    access: Access[]
    -
    - -
    action?: string
    -
    - -
    builder?: boolean
    -
    - -
    components: any[]
    -
    - -
    controller?: string
    -
    - -
    created: string | Date
    -
    - -
    deleted: string | Date
    -
    - -
    display?: FormDisplay
    -
    - -
    fieldMatchAccess: any
    -
    - -
    machineName: string
    -
    - -
    modified: string | Date
    -
    - -
    name: string
    -
    - -
    owner: string
    -
    - -
    page?: number
    -
    - -
    path: string
    -
    - -
    project: string
    -
    - -
    properties: Record<string, string>
    -
    - -
    revisions: "" | "current" | "original"
    -
    - -
    settings?: FormSettings
    -
    - -
    submissionAccess: Access[]
    -
    - -
    submissionRevisions: "" | "true"
    -
    - -
    tags?: string[]
    -
    - -
    title: string
    -
    - -
    type: FormType
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/interfaces/types_Submission.Submission.html b/docs/interfaces/types_Submission.Submission.html deleted file mode 100644 index 8d8626f0..00000000 --- a/docs/interfaces/types_Submission.Submission.html +++ /dev/null @@ -1,263 +0,0 @@ -Submission | @formio/core
    -
    - -
    -
    -
    -
    - -

    Interface Submission

    -
    -

    Hierarchy

    -
      -
    • Submission
    -
    -
    -
    - -
    -
    -

    Properties

    -
    - -
    _fvid: number
    -
    - -
    _id: string
    -
    - -
    access: Access[]
    -
    - -
    created: string | Date
    -
    - -
    data: any
    -
    - -
    deleted?: string | Date
    -
    - -
    externalIds: any[]
    -
    - -
    externalTokens?: any[]
    -
    - -
    form: string
    -
    - -
    -
    - -
    modified: string | Date
    -
    - -
    owner: string
    -
    - -
    permission?: string
    -
    - -
    project: string
    -
    - -
    roles: string[]
    -
    - -
    state: "submitted"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/base.html b/docs/modules/base.html deleted file mode 100644 index 09790857..00000000 --- a/docs/modules/base.html +++ /dev/null @@ -1,212 +0,0 @@ -base | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module base

    -
    -
    -
    - -
    -
    -

    References

    -
    -Re-exports ArrayComponent
    -
    -Re-exports Component
    -
    -Re-exports Components
    -
    -Re-exports DataComponent
    -
    -Re-exports EventEmitter
    -
    -Re-exports Model
    -
    -Re-exports ModelDecoratorInterface
    -
    -Re-exports ModelInterface
    -
    -Re-exports NestedArrayModel
    -
    -Re-exports NestedComponent
    -
    -Re-exports NestedDataModel
    -
    -Re-exports NestedModel
    -
    -Re-exports Template
    -
    -Re-exports render
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/base_Components.html b/docs/modules/base_Components.html deleted file mode 100644 index 8455907e..00000000 --- a/docs/modules/base_Components.html +++ /dev/null @@ -1,141 +0,0 @@ -base/Components | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module base/Components

    -
    -
    -

    Index

    -
    -

    Classes

    -
    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/base_Template.html b/docs/modules/base_Template.html deleted file mode 100644 index 2058b679..00000000 --- a/docs/modules/base_Template.html +++ /dev/null @@ -1,136 +0,0 @@ -base/Template | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module base/Template

    -
    -
    -

    Index

    -
    -

    Classes

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/base_array_ArrayComponent.html b/docs/modules/base_array_ArrayComponent.html deleted file mode 100644 index 2218f21b..00000000 --- a/docs/modules/base_array_ArrayComponent.html +++ /dev/null @@ -1,136 +0,0 @@ -base/array/ArrayComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module base/array/ArrayComponent

    -
    -
    -

    Index

    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/base_component_Component.html b/docs/modules/base_component_Component.html deleted file mode 100644 index 43b85ac7..00000000 --- a/docs/modules/base_component_Component.html +++ /dev/null @@ -1,145 +0,0 @@ -base/component/Component | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module base/component/Component

    -
    -
    -

    Index

    -
    -

    Interfaces

    -
    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/base_data_DataComponent.html b/docs/modules/base_data_DataComponent.html deleted file mode 100644 index 39c6a2e9..00000000 --- a/docs/modules/base_data_DataComponent.html +++ /dev/null @@ -1,136 +0,0 @@ -base/data/DataComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module base/data/DataComponent

    -
    -
    -

    Index

    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/base_nested_NestedComponent.html b/docs/modules/base_nested_NestedComponent.html deleted file mode 100644 index f4d8b7d6..00000000 --- a/docs/modules/base_nested_NestedComponent.html +++ /dev/null @@ -1,141 +0,0 @@ -base/nested/NestedComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module base/nested/NestedComponent

    -
    -
    -

    Index

    -
    -

    Interfaces

    -
    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/components.html b/docs/modules/components.html deleted file mode 100644 index 4d0c0da2..00000000 --- a/docs/modules/components.html +++ /dev/null @@ -1,192 +0,0 @@ -components | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module components

    -
    -
    -
    - -
    -
    -

    References

    -
    -Re-exports DataTable
    -
    -Re-exports DataTableComponent
    -
    -Re-exports DataValueComponent
    -
    -Re-exports HTML
    -
    -Re-exports HTMLComponent
    -
    -Re-exports HTMLContainer
    -
    -Re-exports HTMLContainerComponent
    -
    -Re-exports Input
    -
    -Re-exports InputComponent
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/components___tests___datatable_test.html b/docs/modules/components___tests___datatable_test.html deleted file mode 100644 index 182849e3..00000000 --- a/docs/modules/components___tests___datatable_test.html +++ /dev/null @@ -1,125 +0,0 @@ -components/__tests__/datatable.test | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module components/__tests__/datatable.test

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/components___tests___datavalue_test.html b/docs/modules/components___tests___datavalue_test.html deleted file mode 100644 index 9aba3d2b..00000000 --- a/docs/modules/components___tests___datavalue_test.html +++ /dev/null @@ -1,125 +0,0 @@ -components/__tests__/datavalue.test | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module components/__tests__/datavalue.test

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/components___tests___html_test.html b/docs/modules/components___tests___html_test.html deleted file mode 100644 index a3a5334d..00000000 --- a/docs/modules/components___tests___html_test.html +++ /dev/null @@ -1,125 +0,0 @@ -components/__tests__/html.test | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module components/__tests__/html.test

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/components___tests___htmlcontainer_test.html b/docs/modules/components___tests___htmlcontainer_test.html deleted file mode 100644 index 995ef2a8..00000000 --- a/docs/modules/components___tests___htmlcontainer_test.html +++ /dev/null @@ -1,125 +0,0 @@ -components/__tests__/htmlcontainer.test | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module components/__tests__/htmlcontainer.test

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/components_datatable.html b/docs/modules/components_datatable.html deleted file mode 100644 index bd0a0b42..00000000 --- a/docs/modules/components_datatable.html +++ /dev/null @@ -1,138 +0,0 @@ -components/datatable | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module components/datatable

    -
    -
    -

    Index

    -
    -

    Classes

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/components_datavalue.html b/docs/modules/components_datavalue.html deleted file mode 100644 index 00e4dffb..00000000 --- a/docs/modules/components_datavalue.html +++ /dev/null @@ -1,136 +0,0 @@ -components/datavalue | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module components/datavalue

    -
    -
    -

    Index

    -
    -

    Classes

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/components_html.html b/docs/modules/components_html.html deleted file mode 100644 index 5a1d5364..00000000 --- a/docs/modules/components_html.html +++ /dev/null @@ -1,143 +0,0 @@ -components/html | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module components/html

    -
    -
    -

    Index

    -
    -

    Classes

    -
    -
    -

    Variables

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/components_htmlcontainer.html b/docs/modules/components_htmlcontainer.html deleted file mode 100644 index bafa7ca1..00000000 --- a/docs/modules/components_htmlcontainer.html +++ /dev/null @@ -1,138 +0,0 @@ -components/htmlcontainer | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module components/htmlcontainer

    -
    -
    -

    Index

    -
    -

    Classes

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/components_input_input.html b/docs/modules/components_input_input.html deleted file mode 100644 index e528ed35..00000000 --- a/docs/modules/components_input_input.html +++ /dev/null @@ -1,138 +0,0 @@ -components/input/input | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module components/input/input

    -
    -
    -

    Index

    -
    -

    Classes

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/components_templates.html b/docs/modules/components_templates.html deleted file mode 100644 index 3a9fdacc..00000000 --- a/docs/modules/components_templates.html +++ /dev/null @@ -1,136 +0,0 @@ -components/templates | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module components/templates

    -
    -
    -

    Index

    -
    -

    Variables

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/components_test.html b/docs/modules/components_test.html deleted file mode 100644 index ee2019c1..00000000 --- a/docs/modules/components_test.html +++ /dev/null @@ -1,187 +0,0 @@ -components/test | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module components/test

    -
    -
    -
    - -
    -
    -

    References

    -
    -Re-exports DataTable
    -
    -Re-exports DataTableComponent
    -
    -Re-exports DataValueComponent
    -
    -Re-exports HTML
    -
    -Re-exports HTMLComponent
    -
    -Re-exports HTMLContainer
    -
    -Re-exports HTMLContainerComponent
    -
    -Re-exports Input
    -
    -Re-exports InputComponent
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/core.html b/docs/modules/core.html deleted file mode 100644 index 708f5ac9..00000000 --- a/docs/modules/core.html +++ /dev/null @@ -1,156 +0,0 @@ -core | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module core

    -
    -
    -
    - -
    -
    -

    References

    -
    -
    -

    Functions

    -
    -
    -

    References

    -
    -Re-exports Formio
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/ejs.html b/docs/modules/ejs.html deleted file mode 100644 index 3f74f544..00000000 --- a/docs/modules/ejs.html +++ /dev/null @@ -1,136 +0,0 @@ -ejs | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module ejs

    -
    -
    -

    Index

    -
    -

    Variables

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/error.html b/docs/modules/error.html deleted file mode 100644 index 70b9b0db..00000000 --- a/docs/modules/error.html +++ /dev/null @@ -1,152 +0,0 @@ -error | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module error

    -
    -
    -
    - -
    -
    -

    References

    -
    -
    -

    References

    -
    -Re-exports FieldError
    -
    -Re-exports ValidatorError
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/error_FieldError.html b/docs/modules/error_FieldError.html deleted file mode 100644 index 58d0c777..00000000 --- a/docs/modules/error_FieldError.html +++ /dev/null @@ -1,136 +0,0 @@ -error/FieldError | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module error/FieldError

    -
    -
    -

    Index

    -
    -

    Classes

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/error_ValidatorError.html b/docs/modules/error_ValidatorError.html deleted file mode 100644 index c74a3d35..00000000 --- a/docs/modules/error_ValidatorError.html +++ /dev/null @@ -1,136 +0,0 @@ -error/ValidatorError | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module error/ValidatorError

    -
    -
    -

    Index

    -
    -

    Classes

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/index.dayjs.html b/docs/modules/index.dayjs.html deleted file mode 100644 index 5ed14930..00000000 --- a/docs/modules/index.dayjs.html +++ /dev/null @@ -1,261 +0,0 @@ -dayjs | @formio/core
    -
    - -
    -
    -
    -
    - -

    Namespace dayjs

    -
    -
    -

    Index

    -
    -

    Classes

    -
    -
    -

    Interfaces

    -
    -
    -

    Type Aliases

    -
    -
    -

    Variables

    -
    Ls -
    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/index.html b/docs/modules/index.html deleted file mode 100644 index f4ca5cd1..00000000 --- a/docs/modules/index.html +++ /dev/null @@ -1,462 +0,0 @@ -index | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module index

    -
    -
    -
    - -
    -
    -

    References

    -
    -Re-exports ArrayComponent
    -
    -Re-exports BaseEvaluator
    -
    -Re-exports Component
    -
    -Re-exports Components
    -
    -Re-exports DataComponent
    -
    -Re-exports DataTable
    -
    -Re-exports DataTableComponent
    -
    -Re-exports DataValueComponent
    -
    -Re-exports Database
    -
    -Re-exports Evaluator
    -
    -Re-exports EventEmitter
    -
    -Re-exports Formio
    -
    -Re-exports HTML
    -
    -Re-exports HTMLComponent
    -
    -Re-exports HTMLContainer
    -
    -Re-exports HTMLContainerComponent
    -
    -Re-exports Input
    -
    -Re-exports InputComponent
    -
    -Re-exports Model
    -
    -Re-exports ModelDecoratorInterface
    -
    -Re-exports ModelInterface
    -
    -Re-exports NestedArrayModel
    -
    -Re-exports NestedComponent
    -
    -Re-exports NestedDataModel
    -
    -Re-exports NestedModel
    -
    -Re-exports Template
    -
    -Renames and re-exports utils/formUtil
    -
    -Re-exports boolValue
    -
    -Re-exports convertFormatToMoment
    -
    -Re-exports currentTimezone
    -
    -Renames and re-exports utils/dom
    -
    -Re-exports escapeRegExCharacters
    -
    -Re-exports formatDate
    -
    -Re-exports getComponentErrorField
    -
    -Re-exports getDateSetting
    -
    -Re-exports getDateValidationFormat
    -
    -Re-exports getEmptyValue
    -
    -Re-exports getInputMask
    -
    -Re-exports isComponentPersistent
    -
    -Re-exports isComponentProtected
    -
    -Re-exports isEmpty
    -
    -Re-exports isEmptyObject
    -
    -Re-exports isObject
    -
    -Re-exports isPartialDay
    -
    -Re-exports isPromise
    -
    -Re-exports matchInputMask
    -
    -Re-exports momentDate
    -
    -Re-exports override
    -
    -Re-exports process
    -
    -Re-exports processOne
    -
    -Re-exports processOneSync
    -
    -Re-exports processSync
    -
    -Re-exports render
    -
    -Re-exports sanitize
    -
    -Re-exports shouldSkipValidation
    -
    -Re-exports toBoolean
    -
    -Re-exports unwind
    -
    -Re-exports use
    -
    -Re-exports useModule
    -
    -Re-exports usePlugin
    -
    -Re-exports validate
    -
    -Re-exports validateSync
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/model.html b/docs/modules/model.html deleted file mode 100644 index ea37e1f4..00000000 --- a/docs/modules/model.html +++ /dev/null @@ -1,177 +0,0 @@ -model | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module model

    -
    -
    -
    - -
    -
    -

    References

    -
    -Re-exports EventEmitter
    -
    -Re-exports Model
    -
    -Re-exports ModelDecoratorInterface
    -
    -Re-exports ModelInterface
    -
    -Re-exports NestedArrayModel
    -
    -Re-exports NestedDataModel
    -
    -Re-exports NestedModel
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/model_EventEmitter.EventEmitterBase.html b/docs/modules/model_EventEmitter.EventEmitterBase.html deleted file mode 100644 index d2d4016c..00000000 --- a/docs/modules/model_EventEmitter.EventEmitterBase.html +++ /dev/null @@ -1,165 +0,0 @@ -EventEmitterBase | @formio/core
    -
    - -
    -
    -
    -
    - -

    Namespace EventEmitterBase

    -
    -
    -

    Index

    -
    -

    Interfaces

    -
    -
    -

    Type Aliases

    -
    -
    -

    Variables

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/model_EventEmitter.html b/docs/modules/model_EventEmitter.html deleted file mode 100644 index 188760ab..00000000 --- a/docs/modules/model_EventEmitter.html +++ /dev/null @@ -1,151 +0,0 @@ -model/EventEmitter | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module model/EventEmitter

    -
    -
    -

    Index

    -
    -

    Namespaces

    -
    -
    -

    Classes

    -
    -
    -

    Interfaces

    -
    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/model_Model.html b/docs/modules/model_Model.html deleted file mode 100644 index 742cb8c2..00000000 --- a/docs/modules/model_Model.html +++ /dev/null @@ -1,157 +0,0 @@ -model/Model | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module model/Model

    -
    -
    -
    - -
    -
    -

    References

    -
    -
    -

    Interfaces

    -
    -
    -

    Functions

    -
    -
    -

    References

    -
    -Re-exports ModelInterface
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/model_NestedArrayModel.html b/docs/modules/model_NestedArrayModel.html deleted file mode 100644 index 0839afe7..00000000 --- a/docs/modules/model_NestedArrayModel.html +++ /dev/null @@ -1,136 +0,0 @@ -model/NestedArrayModel | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module model/NestedArrayModel

    -
    -
    -

    Index

    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/model_NestedDataModel.html b/docs/modules/model_NestedDataModel.html deleted file mode 100644 index 90cee9c8..00000000 --- a/docs/modules/model_NestedDataModel.html +++ /dev/null @@ -1,136 +0,0 @@ -model/NestedDataModel | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module model/NestedDataModel

    -
    -
    -

    Index

    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/model_NestedModel.html b/docs/modules/model_NestedModel.html deleted file mode 100644 index 5f1c04a8..00000000 --- a/docs/modules/model_NestedModel.html +++ /dev/null @@ -1,136 +0,0 @@ -model/NestedModel | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module model/NestedModel

    -
    -
    -

    Index

    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/model___tests___Model_test.html b/docs/modules/model___tests___Model_test.html deleted file mode 100644 index c2e16cbd..00000000 --- a/docs/modules/model___tests___Model_test.html +++ /dev/null @@ -1,125 +0,0 @@ -model/__tests__/Model.test | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module model/__tests__/Model.test

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/modules.html b/docs/modules/modules.html deleted file mode 100644 index d755b149..00000000 --- a/docs/modules/modules.html +++ /dev/null @@ -1,136 +0,0 @@ -modules | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module modules

    -
    -
    -

    Index

    -
    -

    Variables

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/modules_jsonlogic.html b/docs/modules/modules_jsonlogic.html deleted file mode 100644 index a6ddee65..00000000 --- a/docs/modules/modules_jsonlogic.html +++ /dev/null @@ -1,136 +0,0 @@ -modules/jsonlogic | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module modules/jsonlogic

    -
    -
    -

    Index

    -
    -

    Variables

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/modules_jsonlogic_jsonLogic.html b/docs/modules/modules_jsonlogic_jsonLogic.html deleted file mode 100644 index 57c2289d..00000000 --- a/docs/modules/modules_jsonlogic_jsonLogic.html +++ /dev/null @@ -1,136 +0,0 @@ -modules/jsonlogic/jsonLogic | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module modules/jsonlogic/jsonLogic

    -
    -
    -

    Index

    -
    -

    Namespaces

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/modules_jsonlogic_jsonLogic.jsonLogic.html b/docs/modules/modules_jsonlogic_jsonLogic.jsonLogic.html deleted file mode 100644 index a1efaefb..00000000 --- a/docs/modules/modules_jsonlogic_jsonLogic.jsonLogic.html +++ /dev/null @@ -1,236 +0,0 @@ -jsonLogic | @formio/core
    -
    - -
    -
    - -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/modules_jsonlogic_operators.html b/docs/modules/modules_jsonlogic_operators.html deleted file mode 100644 index 1853ab43..00000000 --- a/docs/modules/modules_jsonlogic_operators.html +++ /dev/null @@ -1,136 +0,0 @@ -modules/jsonlogic/operators | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module modules/jsonlogic/operators

    -
    -
    -

    Index

    -
    -

    Variables

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/process.html b/docs/modules/process.html deleted file mode 100644 index 0b6907ae..00000000 --- a/docs/modules/process.html +++ /dev/null @@ -1,162 +0,0 @@ -process | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module process

    -
    -
    -
    - -
    -
    -

    References

    -
    -Re-exports process
    -
    -Re-exports processOne
    -
    -Re-exports processOneSync
    -
    -Re-exports processSync
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/process_process.html b/docs/modules/process_process.html deleted file mode 100644 index 95fa69ce..00000000 --- a/docs/modules/process_process.html +++ /dev/null @@ -1,138 +0,0 @@ -process/process | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module process/process

    -
    -
    -

    Index

    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/process_processOne.html b/docs/modules/process_processOne.html deleted file mode 100644 index 7839b34d..00000000 --- a/docs/modules/process_processOne.html +++ /dev/null @@ -1,138 +0,0 @@ -process/processOne | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module process/processOne

    -
    -
    -

    Index

    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/process_validation.html b/docs/modules/process_validation.html deleted file mode 100644 index 9b4b07de..00000000 --- a/docs/modules/process_validation.html +++ /dev/null @@ -1,202 +0,0 @@ -process/validation | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module process/validation

    -
    -
    -
    - -
    -
    -

    References

    -
    -Re-exports getComponentErrorField
    -
    -Re-exports getEmptyValue
    -
    -Re-exports isComponentPersistent
    -
    -Re-exports isComponentProtected
    -
    -Re-exports isEmpty
    -
    -Re-exports isEmptyObject
    -
    -Re-exports isObject
    -
    -Re-exports isPromise
    -
    -Re-exports shouldSkipValidation
    -
    -Re-exports toBoolean
    -
    -Re-exports validate
    -
    -Re-exports validateSync
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/process_validation_util.html b/docs/modules/process_validation_util.html deleted file mode 100644 index d64bad2d..00000000 --- a/docs/modules/process_validation_util.html +++ /dev/null @@ -1,154 +0,0 @@ -process/validation/util | @formio/core
    -
    - -
    -
    - -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/process_validation_validate.html b/docs/modules/process_validation_validate.html deleted file mode 100644 index 454da2da..00000000 --- a/docs/modules/process_validation_validate.html +++ /dev/null @@ -1,138 +0,0 @@ -process/validation/validate | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module process/validation/validate

    -
    -
    -

    Index

    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/sdk.html b/docs/modules/sdk.html deleted file mode 100644 index 7bfb59e0..00000000 --- a/docs/modules/sdk.html +++ /dev/null @@ -1,147 +0,0 @@ -sdk | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module sdk

    -
    -
    -
    - -
    -
    -

    References

    -
    -
    -

    References

    -
    -Re-exports Formio
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/sdk_Formio.html b/docs/modules/sdk_Formio.html deleted file mode 100644 index 814bef3c..00000000 --- a/docs/modules/sdk_Formio.html +++ /dev/null @@ -1,146 +0,0 @@ -sdk/Formio | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module sdk/Formio

    -
    -
    -

    Index

    -
    -

    Enumerations

    -
    -
    -

    Classes

    -
    -
    -

    Interfaces

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/sdk_Plugins.html b/docs/modules/sdk_Plugins.html deleted file mode 100644 index b26a3e21..00000000 --- a/docs/modules/sdk_Plugins.html +++ /dev/null @@ -1,145 +0,0 @@ -sdk/Plugins | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module sdk/Plugins

    -
    -
    -

    Index

    -
    -

    Classes

    -
    -
    -

    Interfaces

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/sdk___tests___Formio_test.html b/docs/modules/sdk___tests___Formio_test.html deleted file mode 100644 index e071d68b..00000000 --- a/docs/modules/sdk___tests___Formio_test.html +++ /dev/null @@ -1,125 +0,0 @@ -sdk/__tests__/Formio.test | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module sdk/__tests__/Formio.test

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/server_actions.html b/docs/modules/server_actions.html deleted file mode 100644 index 1ae66a40..00000000 --- a/docs/modules/server_actions.html +++ /dev/null @@ -1,123 +0,0 @@ -server/actions | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module server/actions

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types.html b/docs/modules/types.html deleted file mode 100644 index 7ab12d1c..00000000 --- a/docs/modules/types.html +++ /dev/null @@ -1,582 +0,0 @@ -types | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types

    -
    -
    -
    - -
    -
    -

    References

    -
    -Re-exports Access
    -
    -Re-exports AccessType
    -
    -Re-exports ActionId
    -
    -Re-exports ActionSettings
    -
    -Re-exports AddressComponent
    -
    -Re-exports AddressComponentDataObject
    -
    -Re-exports AsyncComponentDataCallback
    -
    -Re-exports AutocompleteAddressComponentDataObject
    -
    -Re-exports BootstrapSizing
    -
    -Re-exports ButtonComponent
    -
    -Re-exports CalendarPickerOptions
    -
    -Re-exports CheckboxComponent
    -
    -Re-exports ColumnsComponent
    -
    -Re-exports Component
    -
    -Re-exports ComponentDataCallback
    -
    -Re-exports ContainerComponent
    -
    -Re-exports ContentComponent
    -
    -Re-exports DataGridComponent
    -
    -Re-exports DataMapComponent
    -
    -Re-exports DataObject
    -
    -Re-exports DateTimeComponent
    -
    -Re-exports DayComponent
    -
    -Re-exports EditGridComponent
    -
    -Re-exports EmailComponent
    -
    -Re-exports FieldSetComponent
    -
    -Re-exports FileComponent
    -
    -Re-exports Form
    -
    -Re-exports FormAction
    -
    -Re-exports FormComponent
    -
    -Re-exports FormDisplay
    -
    -Re-exports FormId
    -
    -Re-exports FormSettings
    -
    -Re-exports FormType
    -
    -Re-exports HiddenComponent
    -
    -Re-exports HtmlComponent
    -
    -Re-exports ListComponent
    -
    -Re-exports ManualAddressComponentDataObject
    -
    -Re-exports NestedArrayComponent
    -
    -Re-exports NestedComponent
    -
    -Re-exports NumberComponent
    -
    -Re-exports PanelComponent
    -
    -Re-exports PassedComponentInstance
    -
    -Re-exports PasswordComponent
    -
    -Re-exports PhoneNumberComponent
    -
    -Re-exports ProcessConfig
    -
    -Re-exports ProcessContext
    -
    -Re-exports ProcessContextSync
    -
    -Re-exports ProcessOneContext
    -
    -Re-exports ProcessOneContextSync
    -
    -Re-exports ProcessType
    -
    -Re-exports ProcessorContext
    -
    -Re-exports ProcessorFn
    -
    -Re-exports ProcessorFnSync
    -
    -Re-exports ProcessorType
    -
    -Re-exports Project
    -
    -Re-exports ProjectApiCalls
    -
    -Re-exports ProjectBilling
    -
    -Re-exports ProjectFramework
    -
    -Re-exports ProjectId
    -
    -Re-exports ProjectPlan
    -
    -Re-exports ProjectType
    -
    -Re-exports ProjectUsage
    -
    -Re-exports RadioComponent
    -
    -Re-exports RecaptchaComponent
    -
    -Re-exports ResourceComponent
    -
    -Re-exports Role
    -
    -Re-exports RoleId
    -
    -Re-exports RowComponent
    -
    -Re-exports RuleContext
    -
    -Re-exports RuleFn
    -
    -Re-exports RuleFnSync
    -
    -Re-exports SelectBoxesComponent
    -
    -Re-exports SelectComponent
    -
    -Re-exports SelectComponentOptions
    -
    -Re-exports SignatureComponent
    -
    -Re-exports Submission
    -
    -Re-exports SubmissionId
    -
    -Re-exports SubmissionMetadata
    -
    -Re-exports SubmissionState
    -
    -Re-exports SurveyComponent
    -
    -Re-exports TabsComponent
    -
    -Re-exports TagsComponent
    -
    -Re-exports TextAreaComponent
    -
    -Re-exports TextFieldComponent
    -
    -Re-exports TimeComponent
    -
    -Re-exports TreeComponent
    -
    -Re-exports UrlComponent
    -
    -Re-exports WellComponent
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_Access.html b/docs/modules/types_Access.html deleted file mode 100644 index 861f4689..00000000 --- a/docs/modules/types_Access.html +++ /dev/null @@ -1,138 +0,0 @@ -types/Access | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types/Access

    -
    -
    -

    Index

    -
    -

    Type Aliases

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_Action.html b/docs/modules/types_Action.html deleted file mode 100644 index bd07531b..00000000 --- a/docs/modules/types_Action.html +++ /dev/null @@ -1,140 +0,0 @@ -types/Action | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types/Action

    -
    -
    -

    Index

    -
    -

    Type Aliases

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_BaseComponent.html b/docs/modules/types_BaseComponent.html deleted file mode 100644 index 550c22ff..00000000 --- a/docs/modules/types_BaseComponent.html +++ /dev/null @@ -1,136 +0,0 @@ -types/BaseComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types/BaseComponent

    -
    -
    -

    Index

    -
    -

    Type Aliases

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_Component.html b/docs/modules/types_Component.html deleted file mode 100644 index cf635ebf..00000000 --- a/docs/modules/types_Component.html +++ /dev/null @@ -1,222 +0,0 @@ -types/Component | @formio/core
    -
    - -
    -
    - -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_DataObject.html b/docs/modules/types_DataObject.html deleted file mode 100644 index 08542110..00000000 --- a/docs/modules/types_DataObject.html +++ /dev/null @@ -1,142 +0,0 @@ -types/DataObject | @formio/core
    -
    - -
    -
    - -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_Form.html b/docs/modules/types_Form.html deleted file mode 100644 index 0dc8978b..00000000 --- a/docs/modules/types_Form.html +++ /dev/null @@ -1,147 +0,0 @@ -types/Form | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types/Form

    -
    -
    -

    Index

    -
    -

    Interfaces

    -
    -
    -

    Type Aliases

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_PassedComponentInstance.html b/docs/modules/types_PassedComponentInstance.html deleted file mode 100644 index 7bba5cb5..00000000 --- a/docs/modules/types_PassedComponentInstance.html +++ /dev/null @@ -1,136 +0,0 @@ -types/PassedComponentInstance | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types/PassedComponentInstance

    -
    -
    -

    Index

    -
    -

    Type Aliases

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_Role.html b/docs/modules/types_Role.html deleted file mode 100644 index 5e82bac1..00000000 --- a/docs/modules/types_Role.html +++ /dev/null @@ -1,138 +0,0 @@ -types/Role | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types/Role

    -
    -
    -

    Index

    -
    -

    Type Aliases

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_RuleFn.html b/docs/modules/types_RuleFn.html deleted file mode 100644 index 429b59e3..00000000 --- a/docs/modules/types_RuleFn.html +++ /dev/null @@ -1,140 +0,0 @@ -types/RuleFn | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types/RuleFn

    -
    -
    -

    Index

    -
    -

    Type Aliases

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_Submission.html b/docs/modules/types_Submission.html deleted file mode 100644 index a8d59296..00000000 --- a/docs/modules/types_Submission.html +++ /dev/null @@ -1,145 +0,0 @@ -types/Submission | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types/Submission

    -
    -
    -

    Index

    -
    -

    Interfaces

    -
    -
    -

    Type Aliases

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_ValidatorConfig.html b/docs/modules/types_ValidatorConfig.html deleted file mode 100644 index 191268ac..00000000 --- a/docs/modules/types_ValidatorConfig.html +++ /dev/null @@ -1,136 +0,0 @@ -types/ValidatorConfig | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types/ValidatorConfig

    -
    -
    -

    Index

    -
    -

    Type Aliases

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_formUtil.html b/docs/modules/types_formUtil.html deleted file mode 100644 index 1f897209..00000000 --- a/docs/modules/types_formUtil.html +++ /dev/null @@ -1,138 +0,0 @@ -types/formUtil | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types/formUtil

    -
    -
    -

    Index

    -
    -

    Type Aliases

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_process.html b/docs/modules/types_process.html deleted file mode 100644 index b784c04d..00000000 --- a/docs/modules/types_process.html +++ /dev/null @@ -1,187 +0,0 @@ -types/process | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types/process

    -
    -
    -
    - -
    -
    -

    References

    -
    -Re-exports ProcessContext
    -
    -Re-exports ProcessContextSync
    -
    -Re-exports ProcessOneContext
    -
    -Re-exports ProcessOneContextSync
    -
    -Re-exports ProcessType
    -
    -Re-exports ProcessorContext
    -
    -Re-exports ProcessorFn
    -
    -Re-exports ProcessorFnSync
    -
    -Re-exports ProcessorType
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_process_ProcessContext.html b/docs/modules/types_process_ProcessContext.html deleted file mode 100644 index 9980f3a1..00000000 --- a/docs/modules/types_process_ProcessContext.html +++ /dev/null @@ -1,138 +0,0 @@ -types/process/ProcessContext | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types/process/ProcessContext

    -
    -
    -

    Index

    -
    -

    Type Aliases

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_process_ProcessOneContext.html b/docs/modules/types_process_ProcessOneContext.html deleted file mode 100644 index 12806fea..00000000 --- a/docs/modules/types_process_ProcessOneContext.html +++ /dev/null @@ -1,138 +0,0 @@ -types/process/ProcessOneContext | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types/process/ProcessOneContext

    -
    -
    -

    Index

    -
    -

    Type Aliases

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_process_ProcessType.html b/docs/modules/types_process_ProcessType.html deleted file mode 100644 index fbf53244..00000000 --- a/docs/modules/types_process_ProcessType.html +++ /dev/null @@ -1,136 +0,0 @@ -types/process/ProcessType | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types/process/ProcessType

    -
    -
    -

    Index

    -
    -

    Enumerations

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_process_ProcessorContext.html b/docs/modules/types_process_ProcessorContext.html deleted file mode 100644 index 158e8205..00000000 --- a/docs/modules/types_process_ProcessorContext.html +++ /dev/null @@ -1,136 +0,0 @@ -types/process/ProcessorContext | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types/process/ProcessorContext

    -
    -
    -

    Index

    -
    -

    Type Aliases

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_process_ProcessorFn.html b/docs/modules/types_process_ProcessorFn.html deleted file mode 100644 index d1bd19ca..00000000 --- a/docs/modules/types_process_ProcessorFn.html +++ /dev/null @@ -1,138 +0,0 @@ -types/process/ProcessorFn | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types/process/ProcessorFn

    -
    -
    -

    Index

    -
    -

    Type Aliases

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_process_ProcessorType.html b/docs/modules/types_process_ProcessorType.html deleted file mode 100644 index 825fbf12..00000000 --- a/docs/modules/types_process_ProcessorType.html +++ /dev/null @@ -1,136 +0,0 @@ -types/process/ProcessorType | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types/process/ProcessorType

    -
    -
    -

    Index

    -
    -

    Enumerations

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_project.html b/docs/modules/types_project.html deleted file mode 100644 index eaa4d0e3..00000000 --- a/docs/modules/types_project.html +++ /dev/null @@ -1,182 +0,0 @@ -types/project | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module types/project

    -
    -
    -
    - -
    -
    -

    References

    -
    -Re-exports Project
    -
    -Re-exports ProjectApiCalls
    -
    -Re-exports ProjectBilling
    -
    -Re-exports ProjectFramework
    -
    -Re-exports ProjectId
    -
    -Re-exports ProjectPlan
    -
    -Re-exports ProjectType
    -
    -Re-exports ProjectUsage
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/types_project_Project.html b/docs/modules/types_project_Project.html deleted file mode 100644 index f06cf58a..00000000 --- a/docs/modules/types_project_Project.html +++ /dev/null @@ -1,150 +0,0 @@ -types/project/Project | @formio/core
    -
    - -
    -
    - -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/utils.html b/docs/modules/utils.html deleted file mode 100644 index 60ff033e..00000000 --- a/docs/modules/utils.html +++ /dev/null @@ -1,242 +0,0 @@ -utils | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module utils

    -
    -
    -
    - -
    -
    -

    References

    -
    -Re-exports BaseEvaluator
    -
    -Re-exports Database
    -
    -Re-exports Evaluator
    -
    -Renames and re-exports utils/formUtil
    -
    -Re-exports boolValue
    -
    -Re-exports convertFormatToMoment
    -
    -Re-exports currentTimezone
    -
    -Re-exports dayjs
    -
    -Renames and re-exports utils/dom
    -
    -Re-exports escapeRegExCharacters
    -
    -Re-exports formatDate
    -
    -Re-exports getDateSetting
    -
    -Re-exports getDateValidationFormat
    -
    -Re-exports getInputMask
    -
    -Re-exports isPartialDay
    -
    -Re-exports matchInputMask
    -
    -Re-exports momentDate
    -
    -Re-exports override
    -
    -Re-exports sanitize
    -
    -Re-exports unwind
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/utils_Database.html b/docs/modules/utils_Database.html deleted file mode 100644 index fdf884f6..00000000 --- a/docs/modules/utils_Database.html +++ /dev/null @@ -1,136 +0,0 @@ -utils/Database | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module utils/Database

    -
    -
    -

    Index

    -
    -

    Classes

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/utils_Evaluator.html b/docs/modules/utils_Evaluator.html deleted file mode 100644 index 1150d7fe..00000000 --- a/docs/modules/utils_Evaluator.html +++ /dev/null @@ -1,138 +0,0 @@ -utils/Evaluator | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module utils/Evaluator

    -
    -
    -

    Index

    -
    -

    Classes

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/utils___tests___Evaluator_test.html b/docs/modules/utils___tests___Evaluator_test.html deleted file mode 100644 index 5f0ad291..00000000 --- a/docs/modules/utils___tests___Evaluator_test.html +++ /dev/null @@ -1,125 +0,0 @@ -utils/__tests__/Evaluator.test | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module utils/__tests__/Evaluator.test

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/utils___tests___jwtDecode_test.html b/docs/modules/utils___tests___jwtDecode_test.html deleted file mode 100644 index a2d8a84f..00000000 --- a/docs/modules/utils___tests___jwtDecode_test.html +++ /dev/null @@ -1,125 +0,0 @@ -utils/__tests__/jwtDecode.test | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module utils/__tests__/jwtDecode.test

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/utils___tests___unwind_test.html b/docs/modules/utils___tests___unwind_test.html deleted file mode 100644 index ca868ec3..00000000 --- a/docs/modules/utils___tests___unwind_test.html +++ /dev/null @@ -1,125 +0,0 @@ -utils/__tests__/unwind.test | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module utils/__tests__/unwind.test

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/utils_date.html b/docs/modules/utils_date.html deleted file mode 100644 index a46f10cc..00000000 --- a/docs/modules/utils_date.html +++ /dev/null @@ -1,164 +0,0 @@ -utils/date | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module utils/date

    -
    -
    -
    - -
    -
    -

    References

    -
    -Re-exports dayjs
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/utils_dom.html b/docs/modules/utils_dom.html deleted file mode 100644 index 9996bb94..00000000 --- a/docs/modules/utils_dom.html +++ /dev/null @@ -1,142 +0,0 @@ -utils/dom | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module utils/dom

    -
    -
    -

    Index

    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/utils_error.html b/docs/modules/utils_error.html deleted file mode 100644 index 77b2346d..00000000 --- a/docs/modules/utils_error.html +++ /dev/null @@ -1,136 +0,0 @@ -utils/error | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module utils/error

    -
    -
    -

    Index

    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/utils_formUtil.html b/docs/modules/utils_formUtil.html deleted file mode 100644 index 5520ff28..00000000 --- a/docs/modules/utils_formUtil.html +++ /dev/null @@ -1,148 +0,0 @@ -utils/formUtil | @formio/core
    -
    - -
    -
    - -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/utils_jwtDecode.html b/docs/modules/utils_jwtDecode.html deleted file mode 100644 index 216dd9c2..00000000 --- a/docs/modules/utils_jwtDecode.html +++ /dev/null @@ -1,136 +0,0 @@ -utils/jwtDecode | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module utils/jwtDecode

    -
    -
    -

    Index

    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/utils_mask.html b/docs/modules/utils_mask.html deleted file mode 100644 index 3f8a7872..00000000 --- a/docs/modules/utils_mask.html +++ /dev/null @@ -1,138 +0,0 @@ -utils/mask | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module utils/mask

    -
    -
    -

    Index

    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/utils_override.html b/docs/modules/utils_override.html deleted file mode 100644 index af3e3855..00000000 --- a/docs/modules/utils_override.html +++ /dev/null @@ -1,136 +0,0 @@ -utils/override | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module utils/override

    -
    -
    -

    Index

    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/utils_sanitize.html b/docs/modules/utils_sanitize.html deleted file mode 100644 index b64f0de5..00000000 --- a/docs/modules/utils_sanitize.html +++ /dev/null @@ -1,136 +0,0 @@ -utils/sanitize | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module utils/sanitize

    -
    -
    -

    Index

    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/utils_unwind.html b/docs/modules/utils_unwind.html deleted file mode 100644 index 9ca34073..00000000 --- a/docs/modules/utils_unwind.html +++ /dev/null @@ -1,142 +0,0 @@ -utils/unwind | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module utils/unwind

    -
    -
    -

    Index

    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/modules/utils_utils.html b/docs/modules/utils_utils.html deleted file mode 100644 index f7409387..00000000 --- a/docs/modules/utils_utils.html +++ /dev/null @@ -1,138 +0,0 @@ -utils/utils | @formio/core
    -
    - -
    -
    -
    -
    - -

    Module utils/utils

    -
    -
    -

    Index

    -
    -

    Functions

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/index.dayjs.ConfigType.html b/docs/types/index.dayjs.ConfigType.html deleted file mode 100644 index ee59b77b..00000000 --- a/docs/types/index.dayjs.ConfigType.html +++ /dev/null @@ -1,219 +0,0 @@ -ConfigType | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ConfigType

    -
    ConfigType: ConfigTypeMap[keyof ConfigTypeMap]
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/index.dayjs.ManipulateType.html b/docs/types/index.dayjs.ManipulateType.html deleted file mode 100644 index 9f8d0a57..00000000 --- a/docs/types/index.dayjs.ManipulateType.html +++ /dev/null @@ -1,219 +0,0 @@ -ManipulateType | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ManipulateType

    -
    ManipulateType: Exclude<OpUnitType, "date" | "dates">
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/index.dayjs.OpUnitType.html b/docs/types/index.dayjs.OpUnitType.html deleted file mode 100644 index 0cd99570..00000000 --- a/docs/types/index.dayjs.OpUnitType.html +++ /dev/null @@ -1,219 +0,0 @@ -OpUnitType | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias OpUnitType

    -
    OpUnitType: UnitType | "week" | "weeks" | "w"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/index.dayjs.OptionType.html b/docs/types/index.dayjs.OptionType.html deleted file mode 100644 index cb682020..00000000 --- a/docs/types/index.dayjs.OptionType.html +++ /dev/null @@ -1,219 +0,0 @@ -OptionType | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias OptionType

    -
    OptionType: FormatObject | string | string[]
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/index.dayjs.PluginFunc.html b/docs/types/index.dayjs.PluginFunc.html deleted file mode 100644 index 4d0071c4..00000000 --- a/docs/types/index.dayjs.PluginFunc.html +++ /dev/null @@ -1,241 +0,0 @@ -PluginFunc | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias PluginFunc<T>

    -
    PluginFunc<T>: ((option, c, d) => void)
    -
    -

    Type Parameters

    -
      -
    • -

      T = unknown

    -
    -

    Type declaration

    -
      -
    • -
        -
      • (option, c, d): void
      • -
      • -
        -

        Parameters

        -
          -
        • -
          option: T
        • -
        • -
          c: typeof Dayjs
        • -
        • -
          d: typeof dayjs
        -

        Returns void

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/index.dayjs.QUnitType.html b/docs/types/index.dayjs.QUnitType.html deleted file mode 100644 index 46babeaa..00000000 --- a/docs/types/index.dayjs.QUnitType.html +++ /dev/null @@ -1,219 +0,0 @@ -QUnitType | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias QUnitType

    -
    QUnitType: UnitType | "quarter" | "quarters" | "Q"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/index.dayjs.UnitType.html b/docs/types/index.dayjs.UnitType.html deleted file mode 100644 index 22ef6398..00000000 --- a/docs/types/index.dayjs.UnitType.html +++ /dev/null @@ -1,219 +0,0 @@ -UnitType | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias UnitType

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/index.dayjs.UnitTypeLong.html b/docs/types/index.dayjs.UnitTypeLong.html deleted file mode 100644 index 4b3a7bcd..00000000 --- a/docs/types/index.dayjs.UnitTypeLong.html +++ /dev/null @@ -1,219 +0,0 @@ -UnitTypeLong | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias UnitTypeLong

    -
    UnitTypeLong: "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "date"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/index.dayjs.UnitTypeLongPlural.html b/docs/types/index.dayjs.UnitTypeLongPlural.html deleted file mode 100644 index 2516caf6..00000000 --- a/docs/types/index.dayjs.UnitTypeLongPlural.html +++ /dev/null @@ -1,219 +0,0 @@ -UnitTypeLongPlural | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias UnitTypeLongPlural

    -
    UnitTypeLongPlural: "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/index.dayjs.UnitTypeShort.html b/docs/types/index.dayjs.UnitTypeShort.html deleted file mode 100644 index 986b7326..00000000 --- a/docs/types/index.dayjs.UnitTypeShort.html +++ /dev/null @@ -1,219 +0,0 @@ -UnitTypeShort | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias UnitTypeShort

    -
    UnitTypeShort: "d" | "D" | "M" | "y" | "h" | "m" | "s" | "ms"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/model_EventEmitter.EventEmitterBase.ArgumentMap.html b/docs/types/model_EventEmitter.EventEmitterBase.ArgumentMap.html deleted file mode 100644 index 9ff2241e..00000000 --- a/docs/types/model_EventEmitter.EventEmitterBase.ArgumentMap.html +++ /dev/null @@ -1,151 +0,0 @@ -ArgumentMap | @formio/core
    -
    - -
    -
    -
    - -
    ArgumentMap<T>: {
        [K in keyof T]: T[K] extends ((...args) => void)
            ? Parameters<T[K]>
            : T[K] extends any[]
                ? T[K]
                : any[]
    }
    -
    -

    Type Parameters

    -
      -
    • -

      T extends object

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/model_EventEmitter.EventEmitterBase.EventArgs.html b/docs/types/model_EventEmitter.EventEmitterBase.EventArgs.html deleted file mode 100644 index 4e843c24..00000000 --- a/docs/types/model_EventEmitter.EventEmitterBase.EventArgs.html +++ /dev/null @@ -1,153 +0,0 @@ -EventArgs | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias EventArgs<T, K>

    -
    EventArgs<T, K>: Parameters<EventListener<T, K>>
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/model_EventEmitter.EventEmitterBase.EventListener.html b/docs/types/model_EventEmitter.EventEmitterBase.EventListener.html deleted file mode 100644 index 6a60c6e1..00000000 --- a/docs/types/model_EventEmitter.EventEmitterBase.EventListener.html +++ /dev/null @@ -1,153 +0,0 @@ -EventListener | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias EventListener<T, K>

    -
    EventListener<T, K>: T extends string | symbol
        ? ((...args) => void)
        : ((...args) => void)
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/model_EventEmitter.EventEmitterBase.EventNames.html b/docs/types/model_EventEmitter.EventEmitterBase.EventNames.html deleted file mode 100644 index 838b4e41..00000000 --- a/docs/types/model_EventEmitter.EventEmitterBase.EventNames.html +++ /dev/null @@ -1,151 +0,0 @@ -EventNames | @formio/core
    -
    - -
    -
    -
    - -
    EventNames<T>: T extends string | symbol
        ? T
        : keyof T
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/model_EventEmitter.EventEmitterBase.ValidEventTypes.html b/docs/types/model_EventEmitter.EventEmitterBase.ValidEventTypes.html deleted file mode 100644 index cf01484d..00000000 --- a/docs/types/model_EventEmitter.EventEmitterBase.ValidEventTypes.html +++ /dev/null @@ -1,151 +0,0 @@ -ValidEventTypes | @formio/core
    -
    - -
    -
    -
    - -
    ValidEventTypes: string | symbol | object
    -

    object should be in either of the following forms:

    -
    interface EventTypes {
    'event-with-parameters': any[]
    'event-with-example-handler': (...args: any[]) => void
    } -
    -
    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.AdditionalOperation.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.AdditionalOperation.html deleted file mode 100644 index 31b4d6d5..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.AdditionalOperation.html +++ /dev/null @@ -1,193 +0,0 @@ -AdditionalOperation | @formio/core
    -
    - -
    -
    -
    - -
    AdditionalOperation: Partial<Record<ReservedOperations, never>> & {
        [k: string]: any;
    }
    -

    This can be an object with any key except the reserved keys. -TODO: Find a way to limit this type to exactly one (1) key, since -json-logic-js enforces it. See: -https://github.com/jwadhams/json-logic-js/blob/2.0.2/logic.js#L180

    -
    -
    -

    Type declaration

    -
      -
    • -
      [k: string]: any
    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicAll.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicAll.html deleted file mode 100644 index 2ebec421..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicAll.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicAll | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicAll<AddOps>

    -
    JsonLogicAll<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "all">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicAnd.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicAnd.html deleted file mode 100644 index d5f89df5..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicAnd.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicAnd | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicAnd<AddOps>

    -
    JsonLogicAnd<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "and">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicCat.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicCat.html deleted file mode 100644 index 1947a3f7..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicCat.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicCat | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicCat<AddOps>

    -
    JsonLogicCat<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "cat">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicDifference.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicDifference.html deleted file mode 100644 index f12a3985..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicDifference.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicDifference | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicDifference<AddOps>

    -
    JsonLogicDifference<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "-">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicDoubleNegation.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicDoubleNegation.html deleted file mode 100644 index 9b348dd3..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicDoubleNegation.html +++ /dev/null @@ -1,182 +0,0 @@ -JsonLogicDoubleNegation | @formio/core
    -
    - -
    -
    -
    - -
    JsonLogicDoubleNegation: Pick<AllReservedOperationsInterface, "!!">
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicEqual.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicEqual.html deleted file mode 100644 index 6d894fa4..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicEqual.html +++ /dev/null @@ -1,182 +0,0 @@ -JsonLogicEqual | @formio/core
    -
    - -
    -
    -
    - -
    JsonLogicEqual: Pick<AllReservedOperationsInterface, "==">
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicFilter.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicFilter.html deleted file mode 100644 index 4608298d..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicFilter.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicFilter | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicFilter<AddOps>

    -
    JsonLogicFilter<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "filter">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicGreaterThan.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicGreaterThan.html deleted file mode 100644 index ebf76483..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicGreaterThan.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicGreaterThan | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicGreaterThan<AddOps>

    -
    JsonLogicGreaterThan<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, ">">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicGreaterThanOrEqual.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicGreaterThanOrEqual.html deleted file mode 100644 index ee8f8e0c..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicGreaterThanOrEqual.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicGreaterThanOrEqual | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicGreaterThanOrEqual<AddOps>

    -
    JsonLogicGreaterThanOrEqual<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, ">=">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicIf.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicIf.html deleted file mode 100644 index 64eeaeaa..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicIf.html +++ /dev/null @@ -1,182 +0,0 @@ -JsonLogicIf | @formio/core
    -
    - -
    -
    -
    - -
    JsonLogicIf: Pick<AllReservedOperationsInterface, "if">
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicInArray.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicInArray.html deleted file mode 100644 index c4c61a4d..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicInArray.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicInArray | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicInArray<AddOps>

    -
    JsonLogicInArray<AddOps>: RenameToIn<Pick<AllReservedOperationsInterface<AddOps>, "inArray">>
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicInString.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicInString.html deleted file mode 100644 index 87c75188..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicInString.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicInString | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicInString<AddOps>

    -
    JsonLogicInString<AddOps>: RenameToIn<Pick<AllReservedOperationsInterface<AddOps>, "inString">>
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicLessThan.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicLessThan.html deleted file mode 100644 index 5fcc10e8..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicLessThan.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicLessThan | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicLessThan<AddOps>

    -
    JsonLogicLessThan<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "<">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicLessThanOrEqual.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicLessThanOrEqual.html deleted file mode 100644 index 7258d589..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicLessThanOrEqual.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicLessThanOrEqual | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicLessThanOrEqual<AddOps>

    -
    JsonLogicLessThanOrEqual<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "<=">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicLog.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicLog.html deleted file mode 100644 index 26370e50..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicLog.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicLog | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicLog<AddOps>

    -
    JsonLogicLog<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "log">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicMap.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicMap.html deleted file mode 100644 index 78e0795c..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicMap.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicMap | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicMap<AddOps>

    -
    JsonLogicMap<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "map">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicMax.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicMax.html deleted file mode 100644 index bb514400..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicMax.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicMax | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicMax<AddOps>

    -
    JsonLogicMax<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "max">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicMerge.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicMerge.html deleted file mode 100644 index e82414f1..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicMerge.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicMerge | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicMerge<AddOps>

    -
    JsonLogicMerge<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "merge">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicMin.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicMin.html deleted file mode 100644 index 16d48d51..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicMin.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicMin | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicMin<AddOps>

    -
    JsonLogicMin<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "min">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicMissing.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicMissing.html deleted file mode 100644 index bafe6cbc..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicMissing.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicMissing | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicMissing<AddOps>

    -
    JsonLogicMissing<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "missing">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicMissingSome.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicMissingSome.html deleted file mode 100644 index b22ff9b3..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicMissingSome.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicMissingSome | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicMissingSome<AddOps>

    -
    JsonLogicMissingSome<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "missing_some">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicNegation.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicNegation.html deleted file mode 100644 index 57c92bba..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicNegation.html +++ /dev/null @@ -1,182 +0,0 @@ -JsonLogicNegation | @formio/core
    -
    - -
    -
    -
    - -
    JsonLogicNegation: Pick<AllReservedOperationsInterface, "!">
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicNone.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicNone.html deleted file mode 100644 index 9b42b3ae..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicNone.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicNone | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicNone<AddOps>

    -
    JsonLogicNone<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "none">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicNotEqual.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicNotEqual.html deleted file mode 100644 index aabc528d..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicNotEqual.html +++ /dev/null @@ -1,182 +0,0 @@ -JsonLogicNotEqual | @formio/core
    -
    - -
    -
    -
    - -
    JsonLogicNotEqual: Pick<AllReservedOperationsInterface, "!=">
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicOr.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicOr.html deleted file mode 100644 index b25bf25e..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicOr.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicOr | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicOr<AddOps>

    -
    JsonLogicOr<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "or">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicProduct.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicProduct.html deleted file mode 100644 index 063e3091..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicProduct.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicProduct | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicProduct<AddOps>

    -
    JsonLogicProduct<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "*">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicQuotient.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicQuotient.html deleted file mode 100644 index 7a73f69c..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicQuotient.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicQuotient | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicQuotient<AddOps>

    -
    JsonLogicQuotient<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "/">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicReduce.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicReduce.html deleted file mode 100644 index e6708892..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicReduce.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicReduce | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicReduce<AddOps>

    -
    JsonLogicReduce<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "reduce">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicRemainder.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicRemainder.html deleted file mode 100644 index 534e08aa..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicRemainder.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicRemainder | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicRemainder<AddOps>

    -
    JsonLogicRemainder<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "%">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicSome.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicSome.html deleted file mode 100644 index cbc274ac..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicSome.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicSome | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicSome<AddOps>

    -
    JsonLogicSome<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "some">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicStrictEqual.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicStrictEqual.html deleted file mode 100644 index 0465110c..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicStrictEqual.html +++ /dev/null @@ -1,182 +0,0 @@ -JsonLogicStrictEqual | @formio/core
    -
    - -
    -
    -
    - -
    JsonLogicStrictEqual: Pick<AllReservedOperationsInterface, "===">
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicStrictNotEqual.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicStrictNotEqual.html deleted file mode 100644 index b2306be1..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicStrictNotEqual.html +++ /dev/null @@ -1,182 +0,0 @@ -JsonLogicStrictNotEqual | @formio/core
    -
    - -
    -
    -
    - -
    JsonLogicStrictNotEqual: Pick<AllReservedOperationsInterface, "!==">
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicSubstr.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicSubstr.html deleted file mode 100644 index a2794adb..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicSubstr.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicSubstr | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicSubstr<AddOps>

    -
    JsonLogicSubstr<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "substr">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicSum.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicSum.html deleted file mode 100644 index f17027aa..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicSum.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicSum | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicSum<AddOps>

    -
    JsonLogicSum<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "+">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicVar.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicVar.html deleted file mode 100644 index 51be15c4..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.JsonLogicVar.html +++ /dev/null @@ -1,187 +0,0 @@ -JsonLogicVar | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias JsonLogicVar<AddOps>

    -
    JsonLogicVar<AddOps>: Pick<AllReservedOperationsInterface<AddOps>, "var">
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.ReservedOperations.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.ReservedOperations.html deleted file mode 100644 index 3beb5b30..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.ReservedOperations.html +++ /dev/null @@ -1,182 +0,0 @@ -ReservedOperations | @formio/core
    -
    - -
    -
    -
    - -
    ReservedOperations: "var" | "missing" | "missing_some" | "if" | "==" | "===" | "!=" | "!==" | "!" | "!!" | "or" | "and" | ">" | ">=" | "<" | "<=" | "max" | "min" | "+" | "-" | "*" | "/" | "%" | "map" | "filter" | "reduce" | "all" | "none" | "some" | "merge" | "in" | "cat" | "substr" | "log"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.RulesLogic.html b/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.RulesLogic.html deleted file mode 100644 index 769fc370..00000000 --- a/docs/types/modules_jsonlogic_jsonLogic.jsonLogic.RulesLogic.html +++ /dev/null @@ -1,187 +0,0 @@ -RulesLogic | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias RulesLogic<AddOps>

    -
    RulesLogic<AddOps>: boolean | string | number | JsonLogicVar<AddOps> | JsonLogicMissing<AddOps> | JsonLogicMissingSome<AddOps> | JsonLogicIf | JsonLogicEqual | JsonLogicStrictEqual | JsonLogicNotEqual | JsonLogicStrictNotEqual | JsonLogicNegation | JsonLogicDoubleNegation | JsonLogicOr<AddOps> | JsonLogicAnd<AddOps> | JsonLogicGreaterThan<AddOps> | JsonLogicGreaterThanOrEqual<AddOps> | JsonLogicLessThan<AddOps> | JsonLogicLessThanOrEqual<AddOps> | JsonLogicMax<AddOps> | JsonLogicMin<AddOps> | JsonLogicSum<AddOps> | JsonLogicDifference<AddOps> | JsonLogicProduct<AddOps> | JsonLogicQuotient<AddOps> | JsonLogicRemainder<AddOps> | JsonLogicMap<AddOps> | JsonLogicFilter<AddOps> | JsonLogicReduce<AddOps> | JsonLogicAll<AddOps> | JsonLogicNone<AddOps> | JsonLogicSome<AddOps> | JsonLogicMerge<AddOps> | JsonLogicInArray<AddOps> | JsonLogicInString<AddOps> | JsonLogicCat<AddOps> | JsonLogicSubstr<AddOps> | JsonLogicLog<AddOps> | AddOps
    -
    -

    Type Parameters

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Access.Access.html b/docs/types/types_Access.Access.html deleted file mode 100644 index 2eba7990..00000000 --- a/docs/types/types_Access.Access.html +++ /dev/null @@ -1,139 +0,0 @@ -Access | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias Access

    -
    Access: {
        roles: RoleId[];
        type: AccessType;
    }
    -
    -

    Type declaration

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Access.AccessType.html b/docs/types/types_Access.AccessType.html deleted file mode 100644 index 12d3ba56..00000000 --- a/docs/types/types_Access.AccessType.html +++ /dev/null @@ -1,132 +0,0 @@ -AccessType | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias AccessType

    -
    AccessType: "create_own" | "create_all" | "read_own" | "read_all" | "update_own" | "update_all" | "delete_own" | "delete_all" | "team_read" | "team_write" | "team_admin" | "team_access"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Action.ActionId.html b/docs/types/types_Action.ActionId.html deleted file mode 100644 index c6581e7b..00000000 --- a/docs/types/types_Action.ActionId.html +++ /dev/null @@ -1,133 +0,0 @@ -ActionId | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ActionId

    -
    ActionId: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Action.ActionSettings.html b/docs/types/types_Action.ActionSettings.html deleted file mode 100644 index 137be17f..00000000 --- a/docs/types/types_Action.ActionSettings.html +++ /dev/null @@ -1,142 +0,0 @@ -ActionSettings | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ActionSettings

    -
    ActionSettings: {
        association: string;
        role: RoleId;
        type: string;
    }
    -
    -

    Type declaration

    -
      -
    • -
      association: string
    • -
    • -
      role: RoleId
    • -
    • -
      type: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Action.FormAction.html b/docs/types/types_Action.FormAction.html deleted file mode 100644 index 7325a4f4..00000000 --- a/docs/types/types_Action.FormAction.html +++ /dev/null @@ -1,156 +0,0 @@ -FormAction | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias FormAction

    -
    FormAction: {
        _id: ActionId;
        condition?: any;
        deleted: Date | string;
        form: FormId;
        handler: string[];
        method: string[];
        name: string;
        priority: number;
        settings: ActionSettings;
        title: string;
    }
    -
    -

    Type declaration

    -
      -
    • -
      _id: ActionId
    • -
    • -
      Optional condition?: any
    • -
    • -
      deleted: Date | string
    • -
    • -
      form: FormId
    • -
    • -
      handler: string[]
    • -
    • -
      method: string[]
    • -
    • -
      name: string
    • -
    • -
      priority: number
    • -
    • -
      settings: ActionSettings
    • -
    • -
      title: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_BaseComponent.BaseComponent.html b/docs/types/types_BaseComponent.BaseComponent.html deleted file mode 100644 index 7d394e0a..00000000 --- a/docs/types/types_BaseComponent.BaseComponent.html +++ /dev/null @@ -1,269 +0,0 @@ -BaseComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias BaseComponent

    -
    BaseComponent: {
        addons?: any[];
        allowCalculateOverride?: boolean;
        allowMultipleMasks?: boolean;
        attributes?: Record<string, string>;
        autofocus?: boolean;
        calculateServer?: boolean;
        calculateValue?: string;
        clearOnHide?: boolean;
        conditional?: {
            eq: string;
            show: boolean | null;
            when: string | null;
        };
        customClass?: string;
        customConditional?: string;
        customDefaultValue?: string;
        dataGridLabel?: boolean;
        dbIndex?: boolean;
        description?: string;
        disabled?: boolean;
        encrypted?: boolean;
        errorLabel?: string;
        errors?: Record<string, string>;
        hidden?: boolean;
        hideLabel?: boolean;
        input: boolean;
        inputType?: string;
        key: string;
        label?: string;
        labelPosition?: string;
        mask?: boolean;
        modalEdit?: boolean;
        multiple?: boolean;
        overlay?: {
            height: string;
            left: string;
            style: string;
            top: string;
            width: string;
        };
        persistent?: boolean | "client-only";
        placeholder?: string;
        prefix?: string;
        properties?: Record<string, string>;
        protected?: boolean;
        redrawOn?: string;
        refreshOn?: string;
        showCharCount?: boolean;
        showWordCount?: boolean;
        suffix?: string;
        tabindex?: string;
        tableView: boolean;
        tooltip?: string;
        truncateMultipleSpaces?: boolean;
        type: string;
        unique?: boolean;
        validate?: {
            custom?: string;
            customMessage?: string;
            customPrivate?: boolean;
            json?: any;
            multiple?: boolean;
            required?: boolean;
            row?: string;
            strictDateValidation?: boolean;
            unique?: boolean;
        };
        validateOn?: string;
        widget?: {
            type: string;
        } | string | null;
    }
    -
    -

    Type declaration

    -
      -
    • -
      Optional addons?: any[]
    • -
    • -
      Optional allowCalculateOverride?: boolean
    • -
    • -
      Optional allowMultipleMasks?: boolean
    • -
    • -
      Optional attributes?: Record<string, string>
    • -
    • -
      Optional autofocus?: boolean
    • -
    • -
      Optional calculateServer?: boolean
    • -
    • -
      Optional calculateValue?: string
    • -
    • -
      Optional clearOnHide?: boolean
    • -
    • -
      Optional conditional?: {
          eq: string;
          show: boolean | null;
          when: string | null;
      }
      -
        -
      • -
        eq: string
      • -
      • -
        show: boolean | null
      • -
      • -
        when: string | null
    • -
    • -
      Optional customClass?: string
    • -
    • -
      Optional customConditional?: string
    • -
    • -
      Optional customDefaultValue?: string
    • -
    • -
      Optional dataGridLabel?: boolean
    • -
    • -
      Optional dbIndex?: boolean
    • -
    • -
      Optional description?: string
    • -
    • -
      Optional disabled?: boolean
    • -
    • -
      Optional encrypted?: boolean
    • -
    • -
      Optional errorLabel?: string
    • -
    • -
      Optional errors?: Record<string, string>
    • -
    • -
      Optional hidden?: boolean
    • -
    • -
      Optional hideLabel?: boolean
    • -
    • -
      input: boolean
    • -
    • -
      Optional inputType?: string
    • -
    • -
      key: string
    • -
    • -
      Optional label?: string
    • -
    • -
      Optional labelPosition?: string
    • -
    • -
      Optional mask?: boolean
    • -
    • -
      Optional modalEdit?: boolean
    • -
    • -
      Optional multiple?: boolean
    • -
    • -
      Optional overlay?: {
          height: string;
          left: string;
          style: string;
          top: string;
          width: string;
      }
      -
        -
      • -
        height: string
      • -
      • -
        left: string
      • -
      • -
        style: string
      • -
      • -
        top: string
      • -
      • -
        width: string
    • -
    • -
      Optional persistent?: boolean | "client-only"
    • -
    • -
      Optional placeholder?: string
    • -
    • -
      Optional prefix?: string
    • -
    • -
      Optional properties?: Record<string, string>
    • -
    • -
      Optional protected?: boolean
    • -
    • -
      Optional redrawOn?: string
    • -
    • -
      Optional refreshOn?: string
    • -
    • -
      Optional showCharCount?: boolean
    • -
    • -
      Optional showWordCount?: boolean
    • -
    • -
      Optional suffix?: string
    • -
    • -
      Optional tabindex?: string
    • -
    • -
      tableView: boolean
    • -
    • -
      Optional tooltip?: string
    • -
    • -
      Optional truncateMultipleSpaces?: boolean
    • -
    • -
      type: string
    • -
    • -
      Optional unique?: boolean
    • -
    • -
      Optional validate?: {
          custom?: string;
          customMessage?: string;
          customPrivate?: boolean;
          json?: any;
          multiple?: boolean;
          required?: boolean;
          row?: string;
          strictDateValidation?: boolean;
          unique?: boolean;
      }
      -
        -
      • -
        Optional custom?: string
      • -
      • -
        Optional customMessage?: string
      • -
      • -
        Optional customPrivate?: boolean
      • -
      • -
        Optional json?: any
      • -
      • -
        Optional multiple?: boolean
      • -
      • -
        Optional required?: boolean
      • -
      • -
        Optional row?: string
      • -
      • -
        Optional strictDateValidation?: boolean
      • -
      • -
        Optional unique?: boolean
    • -
    • -
      Optional validateOn?: string
    • -
    • -
      Optional widget?: {
          type: string;
      } | string | null
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.AddressComponent.html b/docs/types/types_Component.AddressComponent.html deleted file mode 100644 index 982c481c..00000000 --- a/docs/types/types_Component.AddressComponent.html +++ /dev/null @@ -1,189 +0,0 @@ -AddressComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias AddressComponent

    -
    AddressComponent: ContainerComponent & {
        disableClearIcon: boolean;
        enableManualMode: boolean;
        manualModeViewString: string;
        provider: string;
        providerOptions: Record<string, string>;
        switchToManualModeLabel: string;
    }
    -
    -

    Type declaration

    -
      -
    • -
      disableClearIcon: boolean
    • -
    • -
      enableManualMode: boolean
    • -
    • -
      manualModeViewString: string
    • -
    • -
      provider: string
    • -
    • -
      providerOptions: Record<string, string>
    • -
    • -
      switchToManualModeLabel: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.BootstrapSizing.html b/docs/types/types_Component.BootstrapSizing.html deleted file mode 100644 index 260b6525..00000000 --- a/docs/types/types_Component.BootstrapSizing.html +++ /dev/null @@ -1,174 +0,0 @@ -BootstrapSizing | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias BootstrapSizing

    -
    BootstrapSizing: "sm" | "md" | "lg" | "xl" | "xxl"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.ButtonComponent.html b/docs/types/types_Component.ButtonComponent.html deleted file mode 100644 index 2266dc14..00000000 --- a/docs/types/types_Component.ButtonComponent.html +++ /dev/null @@ -1,191 +0,0 @@ -ButtonComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ButtonComponent

    -
    ButtonComponent: BaseComponent & {
        action: string;
        block: boolean;
        disableOnInvalid: boolean;
        leftIcon: string;
        rightIcon: string;
        size: BootstrapSizing;
        theme: string;
    }
    -
    -

    Type declaration

    -
      -
    • -
      action: string
    • -
    • -
      block: boolean
    • -
    • -
      disableOnInvalid: boolean
    • -
    • -
      leftIcon: string
    • -
    • -
      rightIcon: string
    • -
    • -
      size: BootstrapSizing
    • -
    • -
      theme: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.CalendarPickerOptions.html b/docs/types/types_Component.CalendarPickerOptions.html deleted file mode 100644 index 5f74a55f..00000000 --- a/docs/types/types_Component.CalendarPickerOptions.html +++ /dev/null @@ -1,174 +0,0 @@ -CalendarPickerOptions | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias CalendarPickerOptions

    -
    CalendarPickerOptions: flatpickrTypes.default.Options.Options
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.CheckboxComponent.html b/docs/types/types_Component.CheckboxComponent.html deleted file mode 100644 index 973ff393..00000000 --- a/docs/types/types_Component.CheckboxComponent.html +++ /dev/null @@ -1,181 +0,0 @@ -CheckboxComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias CheckboxComponent

    -
    CheckboxComponent: BaseComponent & {
        name: string;
        value: string;
    }
    -
    -

    Type declaration

    -
      -
    • -
      name: string
    • -
    • -
      value: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.ColumnsComponent.html b/docs/types/types_Component.ColumnsComponent.html deleted file mode 100644 index d9b0ab70..00000000 --- a/docs/types/types_Component.ColumnsComponent.html +++ /dev/null @@ -1,181 +0,0 @@ -ColumnsComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ColumnsComponent

    -
    ColumnsComponent: NestedComponent & {
        autoAdjust: boolean;
        columns: {
            components: Component[];
            offset: number;
            pull: number;
            push: number;
            size: BootstrapSizing;
            width: number;
        }[];
    }
    -
    -

    Type declaration

    -
      -
    • -
      autoAdjust: boolean
    • -
    • -
      columns: {
          components: Component[];
          offset: number;
          pull: number;
          push: number;
          size: BootstrapSizing;
          width: number;
      }[]
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.Component.html b/docs/types/types_Component.Component.html deleted file mode 100644 index 6d129e53..00000000 --- a/docs/types/types_Component.Component.html +++ /dev/null @@ -1,174 +0,0 @@ -Component | @formio/core
    -
    - -
    -
    - -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.ContainerComponent.html b/docs/types/types_Component.ContainerComponent.html deleted file mode 100644 index 7e98f1cd..00000000 --- a/docs/types/types_Component.ContainerComponent.html +++ /dev/null @@ -1,185 +0,0 @@ -ContainerComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ContainerComponent

    -
    ContainerComponent: NestedComponent & {
        clearOnHide: boolean;
        components: Component[];
        hideLabel: boolean;
        tree: boolean;
    }
    -
    -

    Type declaration

    -
      -
    • -
      clearOnHide: boolean
    • -
    • -
      components: Component[]
    • -
    • -
      hideLabel: boolean
    • -
    • -
      tree: boolean
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.ContentComponent.html b/docs/types/types_Component.ContentComponent.html deleted file mode 100644 index 83b0f8ae..00000000 --- a/docs/types/types_Component.ContentComponent.html +++ /dev/null @@ -1,179 +0,0 @@ -ContentComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ContentComponent

    -
    ContentComponent: BaseComponent & {
        html: string;
    }
    -
    -

    Type declaration

    -
      -
    • -
      html: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.DataGridComponent.html b/docs/types/types_Component.DataGridComponent.html deleted file mode 100644 index fa6b0da9..00000000 --- a/docs/types/types_Component.DataGridComponent.html +++ /dev/null @@ -1,174 +0,0 @@ -DataGridComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias DataGridComponent

    -
    DataGridComponent: NestedArrayComponent
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.DataMapComponent.html b/docs/types/types_Component.DataMapComponent.html deleted file mode 100644 index 8ef61a84..00000000 --- a/docs/types/types_Component.DataMapComponent.html +++ /dev/null @@ -1,185 +0,0 @@ -DataMapComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias DataMapComponent

    -
    DataMapComponent: DataGridComponent & {
        addAnother: string;
        disableAddingRemovingRows: boolean;
        keyBeforeValue: boolean;
        valueComponent: BaseComponent;
    }
    -
    -

    Type declaration

    -
      -
    • -
      addAnother: string
    • -
    • -
      disableAddingRemovingRows: boolean
    • -
    • -
      keyBeforeValue: boolean
    • -
    • -
      valueComponent: BaseComponent
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.DateTimeComponent.html b/docs/types/types_Component.DateTimeComponent.html deleted file mode 100644 index dea0d1c5..00000000 --- a/docs/types/types_Component.DateTimeComponent.html +++ /dev/null @@ -1,243 +0,0 @@ -DateTimeComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias DateTimeComponent

    -
    DateTimeComponent: BaseComponent & {
        allowInput?: boolean;
        customOptions?: CalendarPickerOptions;
        datePicker: {
            disableWeekdays?: boolean;
            disableWeekends?: boolean;
            initDate?: string;
            maxDate?: string | null;
            maxMode?: string;
            minDate?: string | null;
            minMode?: string;
            showWeeks?: boolean;
            startingDay?: number;
            yearColumns?: number;
            yearRows?: number;
        };
        datepickerMode?: string;
        defaultDate?: string;
        displayInTimezone?: string;
        enableDate?: boolean;
        enableMaxDateInput?: boolean;
        enableMinDateInput?: boolean;
        enableTime?: boolean;
        format?: string;
        timePicker?: {
            arrowkeys?: boolean;
            hourStep?: number;
            minuteStep?: number;
            mousewheel?: boolean;
            readonlyInput?: boolean;
            showMeridian?: boolean;
        };
        timezone?: string;
        useLocaleSettings?: boolean;
        widget: CalendarPickerOptions & {
            disableWeekdays?: boolean;
            disableWeekends?: boolean;
            displayInTimezone?: string;
            format?: string;
            useLocaleSettings?: boolean;
        };
    }
    -
    -

    Type declaration

    -
      -
    • -
      Optional allowInput?: boolean
    • -
    • -
      Optional customOptions?: CalendarPickerOptions
    • -
    • -
      datePicker: {
          disableWeekdays?: boolean;
          disableWeekends?: boolean;
          initDate?: string;
          maxDate?: string | null;
          maxMode?: string;
          minDate?: string | null;
          minMode?: string;
          showWeeks?: boolean;
          startingDay?: number;
          yearColumns?: number;
          yearRows?: number;
      }
      -
        -
      • -
        Optional disableWeekdays?: boolean
      • -
      • -
        Optional disableWeekends?: boolean
      • -
      • -
        Optional initDate?: string
      • -
      • -
        Optional maxDate?: string | null
      • -
      • -
        Optional maxMode?: string
      • -
      • -
        Optional minDate?: string | null
      • -
      • -
        Optional minMode?: string
      • -
      • -
        Optional showWeeks?: boolean
      • -
      • -
        Optional startingDay?: number
      • -
      • -
        Optional yearColumns?: number
      • -
      • -
        Optional yearRows?: number
    • -
    • -
      Optional datepickerMode?: string
    • -
    • -
      Optional defaultDate?: string
    • -
    • -
      Optional displayInTimezone?: string
    • -
    • -
      Optional enableDate?: boolean
    • -
    • -
      Optional enableMaxDateInput?: boolean
    • -
    • -
      Optional enableMinDateInput?: boolean
    • -
    • -
      Optional enableTime?: boolean
    • -
    • -
      Optional format?: string
    • -
    • -
      Optional timePicker?: {
          arrowkeys?: boolean;
          hourStep?: number;
          minuteStep?: number;
          mousewheel?: boolean;
          readonlyInput?: boolean;
          showMeridian?: boolean;
      }
      -
        -
      • -
        Optional arrowkeys?: boolean
      • -
      • -
        Optional hourStep?: number
      • -
      • -
        Optional minuteStep?: number
      • -
      • -
        Optional mousewheel?: boolean
      • -
      • -
        Optional readonlyInput?: boolean
      • -
      • -
        Optional showMeridian?: boolean
    • -
    • -
      Optional timezone?: string
    • -
    • -
      Optional useLocaleSettings?: boolean
    • -
    • -
      widget: CalendarPickerOptions & {
          disableWeekdays?: boolean;
          disableWeekends?: boolean;
          displayInTimezone?: string;
          format?: string;
          useLocaleSettings?: boolean;
      }
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.DayComponent.html b/docs/types/types_Component.DayComponent.html deleted file mode 100644 index af35b488..00000000 --- a/docs/types/types_Component.DayComponent.html +++ /dev/null @@ -1,235 +0,0 @@ -DayComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias DayComponent

    -
    DayComponent: BaseComponent & {
        dayFirst?: boolean;
        defaultValue?: string;
        fields: {
            day: {
                hide?: boolean;
                placeholder?: string;
                required?: boolean;
                type?: string;
            };
            month: {
                hide: boolean;
                placeholder?: string;
                required?: boolean;
                type?: string;
            };
            year: {
                hide?: boolean;
                maxYear?: string | number;
                minYear?: string | number;
                placeholder?: string;
                required?: boolean;
                type?: string;
            };
        };
        hideInputLabels?: boolean;
        inputsLabelPosition?: string;
        maxDate?: string;
        maxYear?: string | number;
        minDate?: string;
        minYear?: string | number;
        useLocaleSettings?: boolean;
    }
    -
    -

    Type declaration

    -
      -
    • -
      Optional dayFirst?: boolean
    • -
    • -
      Optional defaultValue?: string
    • -
    • -
      fields: {
          day: {
              hide?: boolean;
              placeholder?: string;
              required?: boolean;
              type?: string;
          };
          month: {
              hide: boolean;
              placeholder?: string;
              required?: boolean;
              type?: string;
          };
          year: {
              hide?: boolean;
              maxYear?: string | number;
              minYear?: string | number;
              placeholder?: string;
              required?: boolean;
              type?: string;
          };
      }
      -
        -
      • -
        day: {
            hide?: boolean;
            placeholder?: string;
            required?: boolean;
            type?: string;
        }
        -
          -
        • -
          Optional hide?: boolean
        • -
        • -
          Optional placeholder?: string
        • -
        • -
          Optional required?: boolean
        • -
        • -
          Optional type?: string
      • -
      • -
        month: {
            hide: boolean;
            placeholder?: string;
            required?: boolean;
            type?: string;
        }
        -
          -
        • -
          hide: boolean
        • -
        • -
          Optional placeholder?: string
        • -
        • -
          Optional required?: boolean
        • -
        • -
          Optional type?: string
      • -
      • -
        year: {
            hide?: boolean;
            maxYear?: string | number;
            minYear?: string | number;
            placeholder?: string;
            required?: boolean;
            type?: string;
        }
        -
          -
        • -
          Optional hide?: boolean
        • -
        • -
          Optional maxYear?: string | number
        • -
        • -
          Optional minYear?: string | number
        • -
        • -
          Optional placeholder?: string
        • -
        • -
          Optional required?: boolean
        • -
        • -
          Optional type?: string
    • -
    • -
      Optional hideInputLabels?: boolean
    • -
    • -
      Optional inputsLabelPosition?: string
    • -
    • -
      Optional maxDate?: string
    • -
    • -
      Optional maxYear?: string | number
    • -
    • -
      Optional minDate?: string
    • -
    • -
      Optional minYear?: string | number
    • -
    • -
      Optional useLocaleSettings?: boolean
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.EditGridComponent.html b/docs/types/types_Component.EditGridComponent.html deleted file mode 100644 index 4a12d593..00000000 --- a/docs/types/types_Component.EditGridComponent.html +++ /dev/null @@ -1,202 +0,0 @@ -EditGridComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias EditGridComponent

    -
    EditGridComponent: NestedArrayComponent & {
        components: Component[];
        defaultOpen: boolean;
        inlineEdit: boolean;
        modal: boolean;
        openWhenEmpty: boolean;
        removeRow: string;
        templates: {
            footer: string;
            header: string;
            row: string;
            tableHeader: string;
            tableRow: string;
        };
    }
    -
    -

    Type declaration

    -
      -
    • -
      components: Component[]
    • -
    • -
      defaultOpen: boolean
    • -
    • -
      inlineEdit: boolean
    • -
    • -
      modal: boolean
    • -
    • -
      openWhenEmpty: boolean
    • -
    • -
      removeRow: string
    • -
    • -
      templates: {
          footer: string;
          header: string;
          row: string;
          tableHeader: string;
          tableRow: string;
      }
      -
        -
      • -
        footer: string
      • -
      • -
        header: string
      • -
      • -
        row: string
      • -
      • -
        tableHeader: string
      • -
      • -
        tableRow: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.EmailComponent.html b/docs/types/types_Component.EmailComponent.html deleted file mode 100644 index f627a272..00000000 --- a/docs/types/types_Component.EmailComponent.html +++ /dev/null @@ -1,182 +0,0 @@ -EmailComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias EmailComponent

    -
    EmailComponent: TextFieldComponent & {
        kickbox?: {
            enabled?: boolean;
        };
    }
    -
    -

    Type declaration

    -
      -
    • -
      Optional kickbox?: {
          enabled?: boolean;
      }
      -
        -
      • -
        Optional enabled?: boolean
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.FieldSetComponent.html b/docs/types/types_Component.FieldSetComponent.html deleted file mode 100644 index fb2a84b6..00000000 --- a/docs/types/types_Component.FieldSetComponent.html +++ /dev/null @@ -1,179 +0,0 @@ -FieldSetComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias FieldSetComponent

    -
    FieldSetComponent: NestedComponent & {
        components: Component[];
    }
    -
    -

    Type declaration

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.FileComponent.html b/docs/types/types_Component.FileComponent.html deleted file mode 100644 index ba3c7734..00000000 --- a/docs/types/types_Component.FileComponent.html +++ /dev/null @@ -1,191 +0,0 @@ -FileComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias FileComponent

    -
    FileComponent: BaseComponent & {
        fileMaxSize?: string;
        fileMinSize?: string;
        filePattern?: string;
        image?: boolean;
        imageSize?: string;
        privateDownload?: boolean;
        uploadOnly?: boolean;
    }
    -
    -

    Type declaration

    -
      -
    • -
      Optional fileMaxSize?: string
    • -
    • -
      Optional fileMinSize?: string
    • -
    • -
      Optional filePattern?: string
    • -
    • -
      Optional image?: boolean
    • -
    • -
      Optional imageSize?: string
    • -
    • -
      Optional privateDownload?: boolean
    • -
    • -
      Optional uploadOnly?: boolean
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.FormComponent.html b/docs/types/types_Component.FormComponent.html deleted file mode 100644 index c18867d6..00000000 --- a/docs/types/types_Component.FormComponent.html +++ /dev/null @@ -1,185 +0,0 @@ -FormComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias FormComponent

    -
    FormComponent: BaseComponent & {
        form: string;
        path: string;
        reference: boolean;
        src: string;
    }
    -
    -

    Type declaration

    -
      -
    • -
      form: string
    • -
    • -
      path: string
    • -
    • -
      reference: boolean
    • -
    • -
      src: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.HiddenComponent.html b/docs/types/types_Component.HiddenComponent.html deleted file mode 100644 index 60182b4f..00000000 --- a/docs/types/types_Component.HiddenComponent.html +++ /dev/null @@ -1,174 +0,0 @@ -HiddenComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias HiddenComponent

    -
    HiddenComponent: BaseComponent
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.HtmlComponent.html b/docs/types/types_Component.HtmlComponent.html deleted file mode 100644 index 45707799..00000000 --- a/docs/types/types_Component.HtmlComponent.html +++ /dev/null @@ -1,183 +0,0 @@ -HtmlComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias HtmlComponent

    -
    HtmlComponent: BaseComponent & {
        attrs: Record<string, string>[];
        content: string;
        tag: string;
    }
    -
    -

    Type declaration

    -
      -
    • -
      attrs: Record<string, string>[]
    • -
    • -
      content: string
    • -
    • -
      tag: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.ListComponent.html b/docs/types/types_Component.ListComponent.html deleted file mode 100644 index ec6c146a..00000000 --- a/docs/types/types_Component.ListComponent.html +++ /dev/null @@ -1,196 +0,0 @@ -ListComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ListComponent

    -
    ListComponent: BaseComponent & {
        authenticate?: boolean;
        dataSrc?: string;
        dataType?: string;
        ignoreCache?: boolean;
        template?: string;
        validate?: {
            onlyAvailableItems?: boolean;
        };
        valueProperty?: string;
        values?: {
            label: string;
            shortcut?: string;
            value: string;
        }[];
    }
    -
    -

    Type declaration

    -
      -
    • -
      Optional authenticate?: boolean
    • -
    • -
      Optional dataSrc?: string
    • -
    • -
      Optional dataType?: string
    • -
    • -
      Optional ignoreCache?: boolean
    • -
    • -
      Optional template?: string
    • -
    • -
      Optional validate?: {
          onlyAvailableItems?: boolean;
      }
      -
        -
      • -
        Optional onlyAvailableItems?: boolean
    • -
    • -
      Optional valueProperty?: string
    • -
    • -
      Optional values?: {
          label: string;
          shortcut?: string;
          value: string;
      }[]
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.NestedArrayComponent.html b/docs/types/types_Component.NestedArrayComponent.html deleted file mode 100644 index 238f3081..00000000 --- a/docs/types/types_Component.NestedArrayComponent.html +++ /dev/null @@ -1,179 +0,0 @@ -NestedArrayComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias NestedArrayComponent

    -
    NestedArrayComponent: NestedComponent & {
        disableAddingRemovingRows: boolean;
    }
    -
    -

    Type declaration

    -
      -
    • -
      disableAddingRemovingRows: boolean
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.NestedComponent.html b/docs/types/types_Component.NestedComponent.html deleted file mode 100644 index 4a94566e..00000000 --- a/docs/types/types_Component.NestedComponent.html +++ /dev/null @@ -1,181 +0,0 @@ -NestedComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias NestedComponent

    -
    NestedComponent: BaseComponent & {
        lazyLoad: boolean;
        tree: boolean;
    }
    -
    -

    Type declaration

    -
      -
    • -
      lazyLoad: boolean
    • -
    • -
      tree: boolean
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.NumberComponent.html b/docs/types/types_Component.NumberComponent.html deleted file mode 100644 index 13d02453..00000000 --- a/docs/types/types_Component.NumberComponent.html +++ /dev/null @@ -1,194 +0,0 @@ -NumberComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias NumberComponent

    -
    NumberComponent: BaseComponent & {
        delimiter?: boolean;
        inputFormat?: string;
        requireDecimal?: boolean;
        truncateMultipleSpaces?: boolean;
        validate?: {
            max?: number | string;
            min?: number | string;
            step?: "any";
        };
    }
    -
    -

    Type declaration

    -
      -
    • -
      Optional delimiter?: boolean
    • -
    • -
      Optional inputFormat?: string
    • -
    • -
      Optional requireDecimal?: boolean
    • -
    • -
      Optional truncateMultipleSpaces?: boolean
    • -
    • -
      Optional validate?: {
          max?: number | string;
          min?: number | string;
          step?: "any";
      }
      -
        -
      • -
        Optional max?: number | string
      • -
      • -
        Optional min?: number | string
      • -
      • -
        Optional step?: "any"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.PanelComponent.html b/docs/types/types_Component.PanelComponent.html deleted file mode 100644 index 2e932c95..00000000 --- a/docs/types/types_Component.PanelComponent.html +++ /dev/null @@ -1,181 +0,0 @@ -PanelComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias PanelComponent

    -
    PanelComponent: NestedComponent & {
        breadcrumb: string;
        theme: string;
    }
    -
    -

    Type declaration

    -
      -
    • -
      breadcrumb: string
    • -
    • -
      theme: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.PasswordComponent.html b/docs/types/types_Component.PasswordComponent.html deleted file mode 100644 index 4d840029..00000000 --- a/docs/types/types_Component.PasswordComponent.html +++ /dev/null @@ -1,174 +0,0 @@ -PasswordComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias PasswordComponent

    -
    PasswordComponent: TextFieldComponent
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.PhoneNumberComponent.html b/docs/types/types_Component.PhoneNumberComponent.html deleted file mode 100644 index 3b00d524..00000000 --- a/docs/types/types_Component.PhoneNumberComponent.html +++ /dev/null @@ -1,179 +0,0 @@ -PhoneNumberComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias PhoneNumberComponent

    -
    PhoneNumberComponent: NumberComponent & {
        inputMode: "decimal";
    }
    -
    -

    Type declaration

    -
      -
    • -
      inputMode: "decimal"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.RadioComponent.html b/docs/types/types_Component.RadioComponent.html deleted file mode 100644 index e51e47d9..00000000 --- a/docs/types/types_Component.RadioComponent.html +++ /dev/null @@ -1,190 +0,0 @@ -RadioComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias RadioComponent

    -
    RadioComponent: ListComponent & {
        data?: {
            url?: string;
        };
        fieldSet?: boolean;
        inline?: boolean;
        optionsLabelPosition?: string;
        values: {
            label: string;
            shortcut?: string;
            value: string;
        }[];
    }
    -
    -

    Type declaration

    -
      -
    • -
      Optional data?: {
          url?: string;
      }
      -
        -
      • -
        Optional url?: string
    • -
    • -
      Optional fieldSet?: boolean
    • -
    • -
      Optional inline?: boolean
    • -
    • -
      Optional optionsLabelPosition?: string
    • -
    • -
      values: {
          label: string;
          shortcut?: string;
          value: string;
      }[]
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.RecaptchaComponent.html b/docs/types/types_Component.RecaptchaComponent.html deleted file mode 100644 index eadeace0..00000000 --- a/docs/types/types_Component.RecaptchaComponent.html +++ /dev/null @@ -1,174 +0,0 @@ -RecaptchaComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias RecaptchaComponent

    -
    RecaptchaComponent: BaseComponent
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.ResourceComponent.html b/docs/types/types_Component.ResourceComponent.html deleted file mode 100644 index 25129c73..00000000 --- a/docs/types/types_Component.ResourceComponent.html +++ /dev/null @@ -1,181 +0,0 @@ -ResourceComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ResourceComponent

    -
    ResourceComponent: SelectComponent & {
        project: string;
        resource: string;
    }
    -
    -

    Type declaration

    -
      -
    • -
      project: string
    • -
    • -
      resource: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.RowComponent.html b/docs/types/types_Component.RowComponent.html deleted file mode 100644 index 9ccf430a..00000000 --- a/docs/types/types_Component.RowComponent.html +++ /dev/null @@ -1,197 +0,0 @@ -RowComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias RowComponent

    -
    RowComponent: NestedComponent & {
        bordered: boolean;
        caption: string;
        cloneRows: boolean;
        condensed: boolean;
        header: [];
        hover: boolean;
        numCols: number;
        numRows: number;
        rows: {
            components: [];
        }[][];
        striped: boolean;
    }
    -
    -

    Type declaration

    -
      -
    • -
      bordered: boolean
    • -
    • -
      caption: string
    • -
    • -
      cloneRows: boolean
    • -
    • -
      condensed: boolean
    • -
    • -
      header: []
    • -
    • -
      hover: boolean
    • -
    • -
      numCols: number
    • -
    • -
      numRows: number
    • -
    • -
      rows: {
          components: [];
      }[][]
    • -
    • -
      striped: boolean
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.SelectBoxesComponent.html b/docs/types/types_Component.SelectBoxesComponent.html deleted file mode 100644 index 64b95e9d..00000000 --- a/docs/types/types_Component.SelectBoxesComponent.html +++ /dev/null @@ -1,194 +0,0 @@ -SelectBoxesComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias SelectBoxesComponent

    -
    SelectBoxesComponent: RadioComponent & {
        defaultValue?: Record<string, boolean>;
        inline?: boolean;
        maxSelectedCountMessage?: string;
        minSelectedCountMessage?: string;
        optionsLabelPosition?: string;
        validate?: {
            maxSelectedCount?: number | string;
            minSelectedCount?: number | string;
        };
    }
    -
    -

    Type declaration

    -
      -
    • -
      Optional defaultValue?: Record<string, boolean>
    • -
    • -
      Optional inline?: boolean
    • -
    • -
      Optional maxSelectedCountMessage?: string
    • -
    • -
      Optional minSelectedCountMessage?: string
    • -
    • -
      Optional optionsLabelPosition?: string
    • -
    • -
      Optional validate?: {
          maxSelectedCount?: number | string;
          minSelectedCount?: number | string;
      }
      -
        -
      • -
        Optional maxSelectedCount?: number | string
      • -
      • -
        Optional minSelectedCount?: number | string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.SelectComponent.html b/docs/types/types_Component.SelectComponent.html deleted file mode 100644 index a267da39..00000000 --- a/docs/types/types_Component.SelectComponent.html +++ /dev/null @@ -1,174 +0,0 @@ -SelectComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias SelectComponent

    -
    SelectComponent: (JsonValuesSelectData | StaticValuesSelectData | CustomValuesSelectData | ResourceValueSelectData | UrlValuesSelectData) & SelectComponentOptions
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.SelectComponentOptions.html b/docs/types/types_Component.SelectComponentOptions.html deleted file mode 100644 index 21b98f6e..00000000 --- a/docs/types/types_Component.SelectComponentOptions.html +++ /dev/null @@ -1,230 +0,0 @@ -SelectComponentOptions | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias SelectComponentOptions

    -
    SelectComponentOptions: ListComponent & {
        clearOnRefresh?: boolean;
        customOptions?: Record<string, string>;
        disableLimit?: boolean;
        filter?: string;
        fuseOptions?: {
            include?: string;
            threshold?: number;
        };
        idPath?: string;
        indexeddb?: {
            filter?: Record<string, any>;
        };
        lazyLoad?: boolean;
        limit?: number;
        minSearch?: number;
        readOnlyValue?: boolean;
        searchDebounce?: number;
        searchEnabled?: boolean;
        searchField?: string;
        selectFields?: string;
        selectThreshold?: number;
        sort?: string;
        uniqueOptions?: boolean;
        useExactSearch?: boolean;
        validate?: {
            select?: boolean;
        };
        valueProperty?: string;
    }
    -
    -

    Type declaration

    -
      -
    • -
      Optional clearOnRefresh?: boolean
    • -
    • -
      Optional customOptions?: Record<string, string>
    • -
    • -
      Optional disableLimit?: boolean
    • -
    • -
      Optional filter?: string
    • -
    • -
      Optional fuseOptions?: {
          include?: string;
          threshold?: number;
      }
      -
        -
      • -
        Optional include?: string
      • -
      • -
        Optional threshold?: number
    • -
    • -
      Optional idPath?: string
    • -
    • -
      Optional indexeddb?: {
          filter?: Record<string, any>;
      }
      -
        -
      • -
        Optional filter?: Record<string, any>
    • -
    • -
      Optional lazyLoad?: boolean
    • -
    • -
      Optional limit?: number
    • -
    • -
      Optional minSearch?: number
    • -
    • -
      Optional readOnlyValue?: boolean
    • -
    • -
      Optional searchDebounce?: number
    • -
    • -
      Optional searchEnabled?: boolean
    • -
    • -
      Optional searchField?: string
    • -
    • -
      Optional selectFields?: string
    • -
    • -
      Optional selectThreshold?: number
    • -
    • -
      Optional sort?: string
    • -
    • -
      Optional uniqueOptions?: boolean
    • -
    • -
      Optional useExactSearch?: boolean
    • -
    • -
      Optional validate?: {
          select?: boolean;
      }
      -
        -
      • -
        Optional select?: boolean
    • -
    • -
      Optional valueProperty?: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.SignatureComponent.html b/docs/types/types_Component.SignatureComponent.html deleted file mode 100644 index 1a157053..00000000 --- a/docs/types/types_Component.SignatureComponent.html +++ /dev/null @@ -1,193 +0,0 @@ -SignatureComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias SignatureComponent

    -
    SignatureComponent: BaseComponent & {
        backgroundColor: string;
        footer: string;
        height: string;
        keepOverlayRatio: boolean;
        maxWidth: string;
        minWidth: string;
        penColor: string;
        width: string;
    }
    -
    -

    Type declaration

    -
      -
    • -
      backgroundColor: string
    • -
    • -
      footer: string
    • -
    • -
      height: string
    • -
    • -
      keepOverlayRatio: boolean
    • -
    • -
      maxWidth: string
    • -
    • -
      minWidth: string
    • -
    • -
      penColor: string
    • -
    • -
      width: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.SurveyComponent.html b/docs/types/types_Component.SurveyComponent.html deleted file mode 100644 index 9fe1a00d..00000000 --- a/docs/types/types_Component.SurveyComponent.html +++ /dev/null @@ -1,181 +0,0 @@ -SurveyComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias SurveyComponent

    -
    SurveyComponent: BaseComponent & {
        questions: {
            label: string;
            tooltip: string;
            value: string;
        }[];
        values: {
            label: string;
            tooltip: string;
            value: string;
        }[];
    }
    -
    -

    Type declaration

    -
      -
    • -
      questions: {
          label: string;
          tooltip: string;
          value: string;
      }[]
    • -
    • -
      values: {
          label: string;
          tooltip: string;
          value: string;
      }[]
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.TabsComponent.html b/docs/types/types_Component.TabsComponent.html deleted file mode 100644 index 6eefbdf4..00000000 --- a/docs/types/types_Component.TabsComponent.html +++ /dev/null @@ -1,181 +0,0 @@ -TabsComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias TabsComponent

    -
    TabsComponent: NestedComponent & {
        components: {
            components: Component[];
            key: string;
            label: string;
        }[];
        verticalLayout: boolean;
    }
    -
    -

    Type declaration

    -
      -
    • -
      components: {
          components: Component[];
          key: string;
          label: string;
      }[]
    • -
    • -
      verticalLayout: boolean
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.TagsComponent.html b/docs/types/types_Component.TagsComponent.html deleted file mode 100644 index a8eded6f..00000000 --- a/docs/types/types_Component.TagsComponent.html +++ /dev/null @@ -1,183 +0,0 @@ -TagsComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias TagsComponent

    -
    TagsComponent: BaseComponent & {
        delimeter: string;
        maxTags: number;
        storeas: string;
    }
    -
    -

    Type declaration

    -
      -
    • -
      delimeter: string
    • -
    • -
      maxTags: number
    • -
    • -
      storeas: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.TextAreaComponent.html b/docs/types/types_Component.TextAreaComponent.html deleted file mode 100644 index d2003d81..00000000 --- a/docs/types/types_Component.TextAreaComponent.html +++ /dev/null @@ -1,189 +0,0 @@ -TextAreaComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias TextAreaComponent

    -
    TextAreaComponent: TextFieldComponent & {
        as?: string;
        editor: string;
        fixedSize: boolean;
        inputFormat: string;
        rows: number;
        wysiwyg: boolean;
    }
    -
    -

    Type declaration

    -
      -
    • -
      Optional as?: string
    • -
    • -
      editor: string
    • -
    • -
      fixedSize: boolean
    • -
    • -
      inputFormat: string
    • -
    • -
      rows: number
    • -
    • -
      wysiwyg: boolean
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.TextFieldComponent.html b/docs/types/types_Component.TextFieldComponent.html deleted file mode 100644 index c14df6f5..00000000 --- a/docs/types/types_Component.TextFieldComponent.html +++ /dev/null @@ -1,208 +0,0 @@ -TextFieldComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias TextFieldComponent

    -
    TextFieldComponent: BaseComponent & {
        displayMask?: string;
        inputFormat?: string;
        inputMask?: string;
        inputMasks?: {
            label: string;
            mask: string;
        }[];
        inputType?: string;
        isMultipleMasksField?: boolean;
        spellcheck?: boolean;
        truncateMultipleSpaces?: boolean;
        validate?: {
            maxLength?: number | string;
            maxWords?: number | string;
            minLength?: number | string;
            minWords?: number | string;
            pattern?: string;
        };
        widget?: {
            type: "input";
        } | CalendarPickerOptions & {
            displayInTimezone?: string;
            enableDate?: boolean;
            format?: string;
            saveAs?: string;
            useLocaleSettings?: boolean;
        } | null;
    }
    -
    -

    Type declaration

    -
      -
    • -
      Optional displayMask?: string
    • -
    • -
      Optional inputFormat?: string
    • -
    • -
      Optional inputMask?: string
    • -
    • -
      Optional inputMasks?: {
          label: string;
          mask: string;
      }[]
    • -
    • -
      Optional inputType?: string
    • -
    • -
      Optional isMultipleMasksField?: boolean
    • -
    • -
      Optional spellcheck?: boolean
    • -
    • -
      Optional truncateMultipleSpaces?: boolean
    • -
    • -
      Optional validate?: {
          maxLength?: number | string;
          maxWords?: number | string;
          minLength?: number | string;
          minWords?: number | string;
          pattern?: string;
      }
      -
        -
      • -
        Optional maxLength?: number | string
      • -
      • -
        Optional maxWords?: number | string
      • -
      • -
        Optional minLength?: number | string
      • -
      • -
        Optional minWords?: number | string
      • -
      • -
        Optional pattern?: string
    • -
    • -
      Optional widget?: {
          type: "input";
      } | CalendarPickerOptions & {
          displayInTimezone?: string;
          enableDate?: boolean;
          format?: string;
          saveAs?: string;
          useLocaleSettings?: boolean;
      } | null
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.TimeComponent.html b/docs/types/types_Component.TimeComponent.html deleted file mode 100644 index 3dd304ce..00000000 --- a/docs/types/types_Component.TimeComponent.html +++ /dev/null @@ -1,181 +0,0 @@ -TimeComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias TimeComponent

    -
    TimeComponent: TextFieldComponent & {
        dataFormat: string;
        format: string;
    }
    -
    -

    Type declaration

    -
      -
    • -
      dataFormat: string
    • -
    • -
      format: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.TreeComponent.html b/docs/types/types_Component.TreeComponent.html deleted file mode 100644 index f1d6df3f..00000000 --- a/docs/types/types_Component.TreeComponent.html +++ /dev/null @@ -1,181 +0,0 @@ -TreeComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias TreeComponent

    -
    TreeComponent: NestedComponent & {
        components: Component[];
        multiple: boolean;
    }
    -
    -

    Type declaration

    -
      -
    • -
      components: Component[]
    • -
    • -
      multiple: boolean
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.UrlComponent.html b/docs/types/types_Component.UrlComponent.html deleted file mode 100644 index a6fe4bb2..00000000 --- a/docs/types/types_Component.UrlComponent.html +++ /dev/null @@ -1,174 +0,0 @@ -UrlComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias UrlComponent

    -
    UrlComponent: TextFieldComponent
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Component.WellComponent.html b/docs/types/types_Component.WellComponent.html deleted file mode 100644 index 7455308f..00000000 --- a/docs/types/types_Component.WellComponent.html +++ /dev/null @@ -1,179 +0,0 @@ -WellComponent | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias WellComponent

    -
    WellComponent: NestedComponent & {
        components: Component[];
    }
    -
    -

    Type declaration

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_DataObject.AddressComponentDataObject.html b/docs/types/types_DataObject.AddressComponentDataObject.html deleted file mode 100644 index d05286c9..00000000 --- a/docs/types/types_DataObject.AddressComponentDataObject.html +++ /dev/null @@ -1,134 +0,0 @@ -AddressComponentDataObject | @formio/core
    -
    - -
    -
    - -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_DataObject.AutocompleteAddressComponentDataObject.html b/docs/types/types_DataObject.AutocompleteAddressComponentDataObject.html deleted file mode 100644 index 6f583742..00000000 --- a/docs/types/types_DataObject.AutocompleteAddressComponentDataObject.html +++ /dev/null @@ -1,144 +0,0 @@ -AutocompleteAddressComponentDataObject | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias AutocompleteAddressComponentDataObject

    -
    AutocompleteAddressComponentDataObject: {
        address: {
            [key: string]: unknown;
        };
        mode: "autocomplete";
    }
    -
    -

    Type declaration

    -
      -
    • -
      address: {
          [key: string]: unknown;
      }
      -
        -
      • -
        [key: string]: unknown
    • -
    • -
      mode: "autocomplete"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_DataObject.DataObject.html b/docs/types/types_DataObject.DataObject.html deleted file mode 100644 index b90111f7..00000000 --- a/docs/types/types_DataObject.DataObject.html +++ /dev/null @@ -1,139 +0,0 @@ -DataObject | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias DataObject

    -
    DataObject: {
        [key: string]: unknown;
    }
    -
    -

    Type declaration

    -
      -
    • -
      [key: string]: unknown
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_DataObject.ManualAddressComponentDataObject.html b/docs/types/types_DataObject.ManualAddressComponentDataObject.html deleted file mode 100644 index 4f1458d0..00000000 --- a/docs/types/types_DataObject.ManualAddressComponentDataObject.html +++ /dev/null @@ -1,154 +0,0 @@ -ManualAddressComponentDataObject | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ManualAddressComponentDataObject

    -
    ManualAddressComponentDataObject: {
        address: {
            address1: string;
            address2: string;
            city: string;
            country: string;
            state: string;
            zip: string;
        };
        mode: "manual";
    }
    -
    -

    Type declaration

    -
      -
    • -
      address: {
          address1: string;
          address2: string;
          city: string;
          country: string;
          state: string;
          zip: string;
      }
      -
        -
      • -
        address1: string
      • -
      • -
        address2: string
      • -
      • -
        city: string
      • -
      • -
        country: string
      • -
      • -
        state: string
      • -
      • -
        zip: string
    • -
    • -
      mode: "manual"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Form.FormDisplay.html b/docs/types/types_Form.FormDisplay.html deleted file mode 100644 index 1b8d5200..00000000 --- a/docs/types/types_Form.FormDisplay.html +++ /dev/null @@ -1,135 +0,0 @@ -FormDisplay | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias FormDisplay

    -
    FormDisplay: "form" | "pdf" | "wizard"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Form.FormId.html b/docs/types/types_Form.FormId.html deleted file mode 100644 index 730fbbb0..00000000 --- a/docs/types/types_Form.FormId.html +++ /dev/null @@ -1,135 +0,0 @@ -FormId | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias FormId

    -
    FormId: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Form.FormSettings.html b/docs/types/types_Form.FormSettings.html deleted file mode 100644 index d3a36282..00000000 --- a/docs/types/types_Form.FormSettings.html +++ /dev/null @@ -1,169 +0,0 @@ -FormSettings | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias FormSettings

    -
    FormSettings: {
        collection?: string;
        condensedMode?: boolean;
        disableAutocomplete?: boolean;
        fontSize?: number;
        hideTitle: boolean;
        layout?: string;
        margins?: string;
        pdf?: {
            id: string;
            src: string;
        };
        showCheckboxBacground?: boolean;
        theme?: string;
        viewAsHtml?: boolean;
        viewer?: string;
        wizardHeaderType?: string;
    }
    -
    -

    Type declaration

    -
      -
    • -
      Optional collection?: string
    • -
    • -
      Optional condensedMode?: boolean
    • -
    • -
      Optional disableAutocomplete?: boolean
    • -
    • -
      Optional fontSize?: number
    • -
    • -
      hideTitle: boolean
    • -
    • -
      Optional layout?: string
    • -
    • -
      Optional margins?: string
    • -
    • -
      Optional pdf?: {
          id: string;
          src: string;
      }
      -
        -
      • -
        id: string
      • -
      • -
        src: string
    • -
    • -
      Optional showCheckboxBacground?: boolean
    • -
    • -
      Optional theme?: string
    • -
    • -
      Optional viewAsHtml?: boolean
    • -
    • -
      Optional viewer?: string
    • -
    • -
      Optional wizardHeaderType?: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Form.FormType.html b/docs/types/types_Form.FormType.html deleted file mode 100644 index 27675b44..00000000 --- a/docs/types/types_Form.FormType.html +++ /dev/null @@ -1,135 +0,0 @@ -FormType | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias FormType

    -
    FormType: "form" | "resource"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_PassedComponentInstance.PassedComponentInstance.html b/docs/types/types_PassedComponentInstance.PassedComponentInstance.html deleted file mode 100644 index 48c81703..00000000 --- a/docs/types/types_PassedComponentInstance.PassedComponentInstance.html +++ /dev/null @@ -1,190 +0,0 @@ -PassedComponentInstance | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias PassedComponentInstance

    -
    PassedComponentInstance: {
        evalContext: (() => {
            component: Component;
            data: DataObject;
            form: Form;
            iconClass: string;
            options: Record<string, any>;
            row: DataObject;
            rowIndex: number;
            submission: {
                data: DataObject;
            };
            t: ((message) => string);
        });
        shouldSkipValidation: ((data?, row?) => boolean);
    }
    -
    -

    Type declaration

    -
      -
    • -
      evalContext: (() => {
          component: Component;
          data: DataObject;
          form: Form;
          iconClass: string;
          options: Record<string, any>;
          row: DataObject;
          rowIndex: number;
          submission: {
              data: DataObject;
          };
          t: ((message) => string);
      })
      -
        -
      • -
          -
        • (): {
              component: Component;
              data: DataObject;
              form: Form;
              iconClass: string;
              options: Record<string, any>;
              row: DataObject;
              rowIndex: number;
              submission: {
                  data: DataObject;
              };
              t: ((message) => string);
          }
        • -
        • -

          Returns {
              component: Component;
              data: DataObject;
              form: Form;
              iconClass: string;
              options: Record<string, any>;
              row: DataObject;
              rowIndex: number;
              submission: {
                  data: DataObject;
              };
              t: ((message) => string);
          }

          -
            -
          • -
            component: Component
          • -
          • -
            data: DataObject
          • -
          • -
            form: Form
          • -
          • -
            iconClass: string
          • -
          • -
            options: Record<string, any>
          • -
          • -
            row: DataObject
          • -
          • -
            rowIndex: number
          • -
          • -
            submission: {
                data: DataObject;
            }
            -
          • -
          • -
            t: ((message) => string)
            -
              -
            • -
                -
              • (message): string
              • -
              • -
                -

                Parameters

                -
                  -
                • -
                  message: string
                -

                Returns string

    • -
    • -
      shouldSkipValidation: ((data?, row?) => boolean)
      -
        -
      • -
          -
        • (data?, row?): boolean
        • -
        • -
          -

          Parameters

          -
          -

          Returns boolean

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Role.Role.html b/docs/types/types_Role.Role.html deleted file mode 100644 index 315de547..00000000 --- a/docs/types/types_Role.Role.html +++ /dev/null @@ -1,155 +0,0 @@ -Role | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias Role

    -
    Role: {
        _id: RoleId;
        admin: boolean;
        created: Date | string;
        default: boolean;
        delted: Date | string;
        description: string;
        machineName: string;
        modified: Date | string;
        project: ProjectId;
        title: string;
    }
    -
    -

    Type declaration

    -
      -
    • -
      _id: RoleId
    • -
    • -
      admin: boolean
    • -
    • -
      created: Date | string
    • -
    • -
      default: boolean
    • -
    • -
      delted: Date | string
    • -
    • -
      description: string
    • -
    • -
      machineName: string
    • -
    • -
      modified: Date | string
    • -
    • -
      project: ProjectId
    • -
    • -
      title: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Role.RoleId.html b/docs/types/types_Role.RoleId.html deleted file mode 100644 index 33cfdf8d..00000000 --- a/docs/types/types_Role.RoleId.html +++ /dev/null @@ -1,132 +0,0 @@ -RoleId | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias RoleId

    -
    RoleId: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_RuleFn.RuleContext.html b/docs/types/types_RuleFn.RuleContext.html deleted file mode 100644 index 22f08ebf..00000000 --- a/docs/types/types_RuleFn.RuleContext.html +++ /dev/null @@ -1,138 +0,0 @@ -RuleContext | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias RuleContext

    -
    RuleContext: ProcessorContext & {
        value: unknown;
    }
    -
    -

    Type declaration

    -
      -
    • -
      value: unknown
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_RuleFn.RuleFn.html b/docs/types/types_RuleFn.RuleFn.html deleted file mode 100644 index 0954bc89..00000000 --- a/docs/types/types_RuleFn.RuleFn.html +++ /dev/null @@ -1,146 +0,0 @@ -RuleFn | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias RuleFn

    -
    RuleFn: ((context) => Promise<FieldError | null>)
    -
    -

    Type declaration

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_RuleFn.RuleFnSync.html b/docs/types/types_RuleFn.RuleFnSync.html deleted file mode 100644 index 571bcc15..00000000 --- a/docs/types/types_RuleFn.RuleFnSync.html +++ /dev/null @@ -1,146 +0,0 @@ -RuleFnSync | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias RuleFnSync

    -
    RuleFnSync: ((context) => FieldError | null)
    -
    -

    Type declaration

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Submission.SubmissionId.html b/docs/types/types_Submission.SubmissionId.html deleted file mode 100644 index eda773e3..00000000 --- a/docs/types/types_Submission.SubmissionId.html +++ /dev/null @@ -1,134 +0,0 @@ -SubmissionId | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias SubmissionId

    -
    SubmissionId: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Submission.SubmissionMetadata.html b/docs/types/types_Submission.SubmissionMetadata.html deleted file mode 100644 index fffb65bc..00000000 --- a/docs/types/types_Submission.SubmissionMetadata.html +++ /dev/null @@ -1,161 +0,0 @@ -SubmissionMetadata | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias SubmissionMetadata

    -
    SubmissionMetadata: {
        browserName: string;
        headers?: Record<string, string>;
        memberCount?: number;
        offset: number;
        onLine: boolean;
        origin: string;
        pathName: string;
        referrer: string;
        selectData?: any;
        ssoteam?: boolean;
        timezone: string;
        userAgent: string;
    }
    -
    -

    Type declaration

    -
      -
    • -
      browserName: string
    • -
    • -
      Optional headers?: Record<string, string>
    • -
    • -
      Optional memberCount?: number
    • -
    • -
      offset: number
    • -
    • -
      onLine: boolean
    • -
    • -
      origin: string
    • -
    • -
      pathName: string
    • -
    • -
      referrer: string
    • -
    • -
      Optional selectData?: any
    • -
    • -
      Optional ssoteam?: boolean
    • -
    • -
      timezone: string
    • -
    • -
      userAgent: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_Submission.SubmissionState.html b/docs/types/types_Submission.SubmissionState.html deleted file mode 100644 index f22ec541..00000000 --- a/docs/types/types_Submission.SubmissionState.html +++ /dev/null @@ -1,134 +0,0 @@ -SubmissionState | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias SubmissionState

    -
    SubmissionState: "submitted"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_ValidatorConfig.ProcessConfig.html b/docs/types/types_ValidatorConfig.ProcessConfig.html deleted file mode 100644 index d8db97fe..00000000 --- a/docs/types/types_ValidatorConfig.ProcessConfig.html +++ /dev/null @@ -1,140 +0,0 @@ -ProcessConfig | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ProcessConfig

    -
    ProcessConfig: {
        database?: Database;
        evaluator?: Evaluator;
        token?: string;
    }
    -
    -

    Type declaration

    -
      -
    • -
      Optional database?: Database
    • -
    • -
      Optional evaluator?: Evaluator
    • -
    • -
      Optional token?: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_formUtil.AsyncComponentDataCallback.html b/docs/types/types_formUtil.AsyncComponentDataCallback.html deleted file mode 100644 index 348214cc..00000000 --- a/docs/types/types_formUtil.AsyncComponentDataCallback.html +++ /dev/null @@ -1,155 +0,0 @@ -AsyncComponentDataCallback | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias AsyncComponentDataCallback

    -
    AsyncComponentDataCallback: ((component, data, row, path, components?, index?) => Promise<void>)
    -
    -

    Type declaration

    -
      -
    • -
        -
      • (component, data, row, path, components?, index?): Promise<void>
      • -
      • -
        -

        Parameters

        -
        -

        Returns Promise<void>

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_formUtil.ComponentDataCallback.html b/docs/types/types_formUtil.ComponentDataCallback.html deleted file mode 100644 index bef88c99..00000000 --- a/docs/types/types_formUtil.ComponentDataCallback.html +++ /dev/null @@ -1,155 +0,0 @@ -ComponentDataCallback | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ComponentDataCallback

    -
    ComponentDataCallback: ((component, data, row, path, components?, index?) => void)
    -
    -

    Type declaration

    -
      -
    • -
        -
      • (component, data, row, path, components?, index?): void
      • -
      • -
        -

        Parameters

        -
        -

        Returns void

    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_process_ProcessContext.ProcessContext.html b/docs/types/types_process_ProcessContext.ProcessContext.html deleted file mode 100644 index 803f4183..00000000 --- a/docs/types/types_process_ProcessContext.ProcessContext.html +++ /dev/null @@ -1,150 +0,0 @@ -ProcessContext | @formio/core
    -
    - -
    -
    -
    - -
    ProcessContext: {
        after?: ProcessorFn[];
        before?: ProcessorFn[];
        components: Component[];
        data: DataObject;
        instances?: {
            [key: string]: PassedComponentInstance;
        };
        process?: ProcessType;
    }
    -
    -

    Type declaration

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_process_ProcessContext.ProcessContextSync.html b/docs/types/types_process_ProcessContext.ProcessContextSync.html deleted file mode 100644 index 81cf2a96..00000000 --- a/docs/types/types_process_ProcessContext.ProcessContextSync.html +++ /dev/null @@ -1,150 +0,0 @@ -ProcessContextSync | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ProcessContextSync

    -
    ProcessContextSync: {
        after?: ProcessorFnSync[];
        before?: ProcessorFnSync[];
        components: Component[];
        data: DataObject;
        instances?: {
            [key: string]: any;
        };
        process?: ProcessType;
    }
    -
    -

    Type declaration

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_process_ProcessOneContext.ProcessOneContext.html b/docs/types/types_process_ProcessOneContext.ProcessOneContext.html deleted file mode 100644 index a0a844ff..00000000 --- a/docs/types/types_process_ProcessOneContext.ProcessOneContext.html +++ /dev/null @@ -1,151 +0,0 @@ -ProcessOneContext | @formio/core
    -
    - -
    -
    -
    - -
    ProcessOneContext: {
        after?: ProcessorFn[];
        before?: ProcessorFn[];
        component: Component;
        data: DataObject;
        instance?: PassedComponentInstance;
        path: string;
        process?: ProcessType;
        row: any;
    }
    -
    -

    Type declaration

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_process_ProcessOneContext.ProcessOneContextSync.html b/docs/types/types_process_ProcessOneContext.ProcessOneContextSync.html deleted file mode 100644 index af1da948..00000000 --- a/docs/types/types_process_ProcessOneContext.ProcessOneContextSync.html +++ /dev/null @@ -1,151 +0,0 @@ -ProcessOneContextSync | @formio/core
    -
    - -
    -
    -
    - -
    ProcessOneContextSync: {
        after?: ProcessorFnSync[];
        before?: ProcessorFnSync[];
        component: Component;
        data: DataObject;
        instance?: PassedComponentInstance;
        path: string;
        process?: ProcessType;
        row: any;
    }
    -
    -

    Type declaration

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_process_ProcessorContext.ProcessorContext.html b/docs/types/types_process_ProcessorContext.ProcessorContext.html deleted file mode 100644 index ada592b1..00000000 --- a/docs/types/types_process_ProcessorContext.ProcessorContext.html +++ /dev/null @@ -1,154 +0,0 @@ -ProcessorContext | @formio/core
    -
    - -
    -
    -
    - -
    ProcessorContext: {
        component: Component;
        config?: Record<string, any>;
        data: DataObject;
        errors?: FieldError[];
        index?: number;
        instance?: PassedComponentInstance;
        path: string;
        process?: string;
        processor: ProcessorType;
        row: any;
    }
    -
    -

    Type declaration

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_process_ProcessorFn.ProcessorFn.html b/docs/types/types_process_ProcessorFn.ProcessorFn.html deleted file mode 100644 index 995f5d04..00000000 --- a/docs/types/types_process_ProcessorFn.ProcessorFn.html +++ /dev/null @@ -1,147 +0,0 @@ -ProcessorFn | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ProcessorFn

    -
    ProcessorFn: ((context, rules?) => Promise<FieldError[]>)
    -
    -

    Type declaration

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_process_ProcessorFn.ProcessorFnSync.html b/docs/types/types_process_ProcessorFn.ProcessorFnSync.html deleted file mode 100644 index 162aba63..00000000 --- a/docs/types/types_process_ProcessorFn.ProcessorFnSync.html +++ /dev/null @@ -1,147 +0,0 @@ -ProcessorFnSync | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ProcessorFnSync

    -
    ProcessorFnSync: ((context, rules?) => FieldError[])
    -
    -

    Type declaration

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_project_Project.Project.html b/docs/types/types_project_Project.Project.html deleted file mode 100644 index f46e8e25..00000000 --- a/docs/types/types_project_Project.Project.html +++ /dev/null @@ -1,212 +0,0 @@ -Project | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias Project

    -
    Project: {
        _id: ProjectId;
        access: Access[];
        apiCalls?: ProjectApiCalls;
        billing?: ProjectBilling;
        config?: Record<string, string>;
        created: Date | string;
        deleted: Date | string;
        description?: string;
        formDefaults: {
            revisions?: "current" | "original";
        };
        framework: ProjectFramework;
        lastDeploy?: Date | string;
        machineName: string;
        modified: Date | string;
        name: string;
        owner: SubmissionId;
        plan: ProjectPlan;
        primary: boolean;
        project?: string;
        protect: boolean;
        public?: {
            custom?: {
                css?: string;
                js?: string;
            };
            formModule?: string;
        };
        remote?: any;
        remoteSecret?: string;
        settings?: ProjectSettings;
        stageTitle: string;
        steps: string[];
        tag?: string;
        title: string;
        trial?: Date | string;
        type?: ProjectType;
    }
    -
    -

    Type declaration

    -
      -
    • -
      _id: ProjectId
    • -
    • -
      access: Access[]
    • -
    • -
      Optional apiCalls?: ProjectApiCalls
    • -
    • -
      Optional billing?: ProjectBilling
    • -
    • -
      Optional config?: Record<string, string>
    • -
    • -
      created: Date | string
    • -
    • -
      deleted: Date | string
    • -
    • -
      Optional description?: string
    • -
    • -
      formDefaults: {
          revisions?: "current" | "original";
      }
      -
        -
      • -
        Optional revisions?: "current" | "original"
    • -
    • -
      framework: ProjectFramework
    • -
    • -
      Optional lastDeploy?: Date | string
    • -
    • -
      machineName: string
    • -
    • -
      modified: Date | string
    • -
    • -
      name: string
    • -
    • -
      owner: SubmissionId
    • -
    • -
      plan: ProjectPlan
    • -
    • -
      primary: boolean
    • -
    • -
      Optional project?: string
    • -
    • -
      protect: boolean
    • -
    • -
      Optional public?: {
          custom?: {
              css?: string;
              js?: string;
          };
          formModule?: string;
      }
      -
        -
      • -
        Optional custom?: {
            css?: string;
            js?: string;
        }
        -
          -
        • -
          Optional css?: string
        • -
        • -
          Optional js?: string
      • -
      • -
        Optional formModule?: string
    • -
    • -
      Optional remote?: any
    • -
    • -
      Optional remoteSecret?: string
    • -
    • -
      Optional settings?: ProjectSettings
    • -
    • -
      stageTitle: string
    • -
    • -
      steps: string[]
    • -
    • -
      Optional tag?: string
    • -
    • -
      title: string
    • -
    • -
      Optional trial?: Date | string
    • -
    • -
      Optional type?: ProjectType
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_project_Project.ProjectApiCalls.html b/docs/types/types_project_Project.ProjectApiCalls.html deleted file mode 100644 index 2114b85b..00000000 --- a/docs/types/types_project_Project.ProjectApiCalls.html +++ /dev/null @@ -1,147 +0,0 @@ -ProjectApiCalls | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ProjectApiCalls

    -
    ProjectApiCalls: {
        limit: ProjectUsage;
        reset: Date | string;
        used: ProjectUsage;
    }
    -
    -

    Type declaration

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_project_Project.ProjectBilling.html b/docs/types/types_project_Project.ProjectBilling.html deleted file mode 100644 index 1e2b7517..00000000 --- a/docs/types/types_project_Project.ProjectBilling.html +++ /dev/null @@ -1,149 +0,0 @@ -ProjectBilling | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ProjectBilling

    -
    ProjectBilling: {
        calls: number;
        checked: number;
        exceeds: boolean;
        usage: ProjectUsage;
    }
    -
    -

    Type declaration

    -
      -
    • -
      calls: number
    • -
    • -
      checked: number
    • -
    • -
      exceeds: boolean
    • -
    • -
      usage: ProjectUsage
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_project_Project.ProjectFramework.html b/docs/types/types_project_Project.ProjectFramework.html deleted file mode 100644 index 9c24863b..00000000 --- a/docs/types/types_project_Project.ProjectFramework.html +++ /dev/null @@ -1,138 +0,0 @@ -ProjectFramework | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ProjectFramework

    -
    ProjectFramework: "angular" | "angular2" | "react" | "vue" | "html5" | "simple" | "custom" | "aurelia" | "javascript"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_project_Project.ProjectId.html b/docs/types/types_project_Project.ProjectId.html deleted file mode 100644 index 43dff5f4..00000000 --- a/docs/types/types_project_Project.ProjectId.html +++ /dev/null @@ -1,138 +0,0 @@ -ProjectId | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ProjectId

    -
    ProjectId: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_project_Project.ProjectPlan.html b/docs/types/types_project_Project.ProjectPlan.html deleted file mode 100644 index 3bf190e2..00000000 --- a/docs/types/types_project_Project.ProjectPlan.html +++ /dev/null @@ -1,138 +0,0 @@ -ProjectPlan | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ProjectPlan

    -
    ProjectPlan: "basic" | "independent" | "team" | "trial" | "commercial"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_project_Project.ProjectType.html b/docs/types/types_project_Project.ProjectType.html deleted file mode 100644 index 15e93fac..00000000 --- a/docs/types/types_project_Project.ProjectType.html +++ /dev/null @@ -1,138 +0,0 @@ -ProjectType | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ProjectType

    -
    ProjectType: "project" | "stage" | "tenant"
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/types/types_project_Project.ProjectUsage.html b/docs/types/types_project_Project.ProjectUsage.html deleted file mode 100644 index 98f599b6..00000000 --- a/docs/types/types_project_Project.ProjectUsage.html +++ /dev/null @@ -1,186 +0,0 @@ -ProjectUsage | @formio/core
    -
    - -
    -
    -
    -
    - -

    Type alias ProjectUsage

    -
    ProjectUsage: {
        apiServers?: number;
        emails?: number;
        formManagers?: number;
        formRequests?: number;
        forms?: number;
        livestages?: number;
        options?: {
            pdfBasic?: boolean;
            sac?: boolean;
            vpat?: boolean;
        };
        pdfDownloads?: number;
        pdfServers?: number;
        pdfs?: number;
        plan?: ProjectPlan;
        projects?: number;
        remoteStages?: number;
        stages?: number;
        startDate?: string;
        submissionRequests?: number;
        submissionServers?: number;
        tenants?: number;
        vpats?: number;
    }
    -
    -

    Type declaration

    -
      -
    • -
      Optional apiServers?: number
    • -
    • -
      Optional emails?: number
    • -
    • -
      Optional formManagers?: number
    • -
    • -
      Optional formRequests?: number
    • -
    • -
      Optional forms?: number
    • -
    • -
      Optional livestages?: number
    • -
    • -
      Optional options?: {
          pdfBasic?: boolean;
          sac?: boolean;
          vpat?: boolean;
      }
      -
        -
      • -
        Optional pdfBasic?: boolean
      • -
      • -
        Optional sac?: boolean
      • -
      • -
        Optional vpat?: boolean
    • -
    • -
      Optional pdfDownloads?: number
    • -
    • -
      Optional pdfServers?: number
    • -
    • -
      Optional pdfs?: number
    • -
    • -
      Optional plan?: ProjectPlan
    • -
    • -
      Optional projects?: number
    • -
    • -
      Optional remoteStages?: number
    • -
    • -
      Optional stages?: number
    • -
    • -
      Optional startDate?: string
    • -
    • -
      Optional submissionRequests?: number
    • -
    • -
      Optional submissionServers?: number
    • -
    • -
      Optional tenants?: number
    • -
    • -
      Optional vpats?: number
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/variables/components.default.html b/docs/variables/components.default.html deleted file mode 100644 index 2fe5538f..00000000 --- a/docs/variables/components.default.html +++ /dev/null @@ -1,161 +0,0 @@ -default | @formio/core
    -
    - -
    -
    -
    -
    - -

    Variable default

    -
    default: {
        components: {
            datatable: typeof DataTableComponent;
            datavalue: typeof DataValueComponent;
            html: typeof HTMLComponent;
            htmlcontainer: typeof HTMLContainerComponent;
            input: typeof InputComponent;
        };
        templates: {
            bootstrap: __module;
        };
    }
    -
    -

    Type declaration

    -
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/variables/components_html.HTMLProperties.html b/docs/variables/components_html.HTMLProperties.html deleted file mode 100644 index baf1fbcf..00000000 --- a/docs/variables/components_html.HTMLProperties.html +++ /dev/null @@ -1,162 +0,0 @@ -HTMLProperties | @formio/core
    -
    - -
    -
    -
    -
    - -

    Variable HTMLPropertiesConst

    -
    HTMLProperties: {
        schema: {
            attrs: never[];
            className: string;
            content: string;
            tag: string;
        };
        template: ((ctx) => string);
        type: string;
    } = ...
    -
    -

    Type declaration

    -
      -
    • -
      schema: {
          attrs: never[];
          className: string;
          content: string;
          tag: string;
      }
      -
        -
      • -
        attrs: never[]
      • -
      • -
        className: string
      • -
      • -
        content: string
      • -
      • -
        tag: string
    • -
    • -
      template: ((ctx) => string)
      -
        -
      • -
          -
        • (ctx): string
        • -
        • -
          -

          Parameters

          -
            -
          • -
            ctx: any
          -

          Returns string

    • -
    • -
      type: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/variables/components_templates.default.html b/docs/variables/components_templates.default.html deleted file mode 100644 index 790d0ff3..00000000 --- a/docs/variables/components_templates.default.html +++ /dev/null @@ -1,136 +0,0 @@ -default | @formio/core
    -
    - -
    -
    -
    -
    - -

    Variable default

    -
    default: {
        bootstrap: __module;
    }
    -
    -

    Type declaration

    -
      -
    • -
      bootstrap: __module
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/variables/ejs.default.html b/docs/variables/ejs.default.html deleted file mode 100644 index 93a3960b..00000000 --- a/docs/variables/ejs.default.html +++ /dev/null @@ -1,131 +0,0 @@ -default | @formio/core
    -
    - -
    -
    -
    -
    - -

    Variable defaultConst

    -
    default: string
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/variables/index.dayjs.Ls.html b/docs/variables/index.dayjs.Ls.html deleted file mode 100644 index e244f09f..00000000 --- a/docs/variables/index.dayjs.Ls.html +++ /dev/null @@ -1,224 +0,0 @@ -Ls | @formio/core
    -
    - -
    -
    -
    -
    - -

    Variable LsConst

    -
    Ls: {
        [key: string]: ILocale;
    }
    -
    -

    Type declaration

    -
      -
    • -
      [key: string]: ILocale
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/variables/model_EventEmitter.EventEmitterBase.EventEmitter.html b/docs/variables/model_EventEmitter.EventEmitterBase.EventEmitter.html deleted file mode 100644 index 0767a9b5..00000000 --- a/docs/variables/model_EventEmitter.EventEmitterBase.EventEmitter.html +++ /dev/null @@ -1,146 +0,0 @@ -EventEmitter | @formio/core
    -
    - -
    -
    -
    -
    - -

    Variable EventEmitterConst

    -
    EventEmitter: EventEmitterStatic
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/variables/modules.default.html b/docs/variables/modules.default.html deleted file mode 100644 index 6bc1dfe9..00000000 --- a/docs/variables/modules.default.html +++ /dev/null @@ -1,138 +0,0 @@ -default | @formio/core
    -
    - -
    -
    -
    -
    - -

    Variable default

    -
    default: {
        evaluator: typeof JSONLogicEvaluator;
        jsonLogic: jsonLogic;
    }[]
    -
    -

    Type declaration

    -
      -
    • -
      evaluator: typeof JSONLogicEvaluator
    • -
    • -
      jsonLogic: jsonLogic
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/variables/modules_jsonlogic.default.html b/docs/variables/modules_jsonlogic.default.html deleted file mode 100644 index 21da9019..00000000 --- a/docs/variables/modules_jsonlogic.default.html +++ /dev/null @@ -1,138 +0,0 @@ -default | @formio/core
    -
    - -
    -
    -
    -
    - -

    Variable default

    -
    default: {
        evaluator: typeof JSONLogicEvaluator;
        jsonLogic: jsonLogic;
    }
    -
    -

    Type declaration

    -
      -
    • -
      evaluator: typeof JSONLogicEvaluator
    • -
    • -
      jsonLogic: jsonLogic
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/docs/variables/modules_jsonlogic_operators.lodashOperators.html b/docs/variables/modules_jsonlogic_operators.lodashOperators.html deleted file mode 100644 index 1cfff6c8..00000000 --- a/docs/variables/modules_jsonlogic_operators.lodashOperators.html +++ /dev/null @@ -1,131 +0,0 @@ -lodashOperators | @formio/core
    -
    - -
    -
    -
    -
    - -

    Variable lodashOperatorsConst

    -
    lodashOperators: string[] = ...
    -
    - -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/package.json b/package.json index 5d89b5cf..2f483fc0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@formio/core", - "version": "1.3.0-rc.17", + "version": "1.3.0-rc.18", "description": "The core Form.io renderering framework.", "main": "lib/index.js", "exports": {