From 2f2bb64bdc9e9e9db3519b167acef299c0cdc873 Mon Sep 17 00:00:00 2001 From: Djamil Legato Date: Mon, 28 Oct 2019 14:27:54 -0700 Subject: [PATCH] Potential fix array within list (#1774) --- themes/grav/app/forms/fields/array.js | 12 +++++++++--- themes/grav/app/forms/fields/collections.js | 2 +- themes/grav/js/admin.min.js | 6 +++--- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/themes/grav/app/forms/fields/array.js b/themes/grav/app/forms/fields/array.js index 1b241dde..d592f12b 100644 --- a/themes/grav/app/forms/fields/array.js +++ b/themes/grav/app/forms/fields/array.js @@ -87,7 +87,13 @@ export default class ArrayField { container.data('array-sort', new Sortable(container.get(0), { handle: '.fa-bars', - animation: 150 + animation: 150, + onUpdate: () => { + const item = container.find('[data-grav-array-type="row"]:first'); + this._setTemplate(item); + const template = item.data('array-template'); + this.refreshNames(template); + } })); }); } @@ -154,8 +160,8 @@ export default class ArrayField { inputs.each((index, input) => { input = $(input); - let name = input.attr('name'); - name = name.replace(/\[\d+\]$/, `[${index}]`); + const preserved_name = input.closest('[data-grav-array-name]'); + const name = `${preserved_name.attr('data-grav-array-name')}[${index}]`; input.attr('name', name); }); diff --git a/themes/grav/app/forms/fields/collections.js b/themes/grav/app/forms/fields/collections.js index b9d48556..48deb585 100644 --- a/themes/grav/app/forms/fields/collections.js +++ b/themes/grav/app/forms/fields/collections.js @@ -186,7 +186,7 @@ export default class CollectionsField { // special case to preserve array field index keys if (prop === 'name' && element.data('gravArrayType')) { const match_index = element.attr(prop).match(/\[[0-9]{1,}\]$/); - const pattern = element.closest('[data-grav-array-name]').data('gravArrayName'); + const pattern = element[0].closest('[data-grav-array-name]').dataset.gravArrayName; if (match_index && pattern) { array_index = match_index[0]; element.attr(prop, `${pattern}${match_index[0]}`); diff --git a/themes/grav/js/admin.min.js b/themes/grav/js/admin.min.js index edbbcc18..5e639947 100644 --- a/themes/grav/js/admin.min.js +++ b/themes/grav/js/admin.min.js @@ -10,15 +10,15 @@ mode:"sparql",ext:["rq","sparql"],alias:["sparul"]},{name:"Spreadsheet",mime:"te e.registerHelper("hintWords","php",[a,o,s].join(" ").split(" ")),e.registerHelper("wordChars","php",/[\w$]/);var l={name:"clike",helperType:"php",keywords:t(a),blockKeywords:t("catch do else elseif for foreach if switch try while finally"),defKeywords:t("class function interface namespace trait"),atoms:t(o),builtin:t(s),multiLineStrings:!0,hooks:{$:function(e){return e.eatWhile(/[\w\$_]/),"variable-2"},"<":function(e,t){var n;if(n=e.match(/<<\s*/)){var i=e.eat(/['"]/);e.eatWhile(/[\w\.]/);var a=e.current().slice(n[0].length+(i?2:1));if(i&&e.eat(i),a)return(t.tokStack||(t.tokStack=[])).push(a,0),t.tokenize=r(a,"'"!=i),"string"}return!1},"#":function(e){for(;!e.eol()&&!e.match("?>",!1);)e.next();return"comment"},"/":function(e){if(e.eat("/")){for(;!e.eol()&&!e.match("?>",!1);)e.next();return"comment"}return!1},'"':function(e,t){return(t.tokStack||(t.tokStack=[])).push('"',0),t.tokenize=r('"'),"string"},"{":function(e,t){return t.tokStack&&t.tokStack.length&&t.tokStack[t.tokStack.length-1]++,!1},"}":function(e,t){return t.tokStack&&t.tokStack.length>0&&!--t.tokStack[t.tokStack.length-1]&&(t.tokenize=r(t.tokStack[t.tokStack.length-2])),!1}}};e.defineMode("php",function(t,n){function r(t,n){var r=n.curMode==a;if(t.sol()&&n.pending&&'"'!=n.pending&&"'"!=n.pending&&(n.pending=null),r)return r&&null==n.php.tokenize&&t.match("?>")?(n.curMode=i,n.curState=n.html,n.php.context.prev||(n.php=null),"meta"):a.token(t,n.curState);if(t.match(/^<\?\w*/))return n.curMode=a,n.php||(n.php=e.startState(a,i.indent(n.html,""))),n.curState=n.php,"meta";if('"'==n.pending||"'"==n.pending){for(;!t.eol()&&t.next()!=n.pending;);var o="string"}else if(n.pending&&t.pos/.test(l)?n.pending=s[0]:n.pending={end:t.pos,style:o},t.backUp(l.length-c)),o}var i=e.getMode(t,n&&n.htmlMode||"text/html"),a=e.getMode(t,l);return{startState:function(){var t=e.startState(i),r=n.startOpen?e.startState(a):null;return{html:t,php:r,curMode:n.startOpen?a:i,curState:n.startOpen?r:t,pending:null}},copyState:function(t){var n,r=t.html,o=e.copyState(i,r),s=t.php,l=s&&e.copyState(a,s);return n=t.curMode==i?o:l,{html:o,php:l,curMode:t.curMode,curState:n,pending:t.pending}},token:r,indent:function(e,t){return e.curMode!=a&&/^\s*<\//.test(t)||e.curMode==a&&/^\?>/.test(t)?i.indent(e.html,t):e.curMode.indent(e.curState,t)},blockCommentStart:"/*",blockCommentEnd:"*/",lineComment:"//",innerMode:function(e){return{state:e.curState,mode:e.curMode}}}},"htmlmixed","clike"),e.defineMIME("application/x-httpd-php","php"),e.defineMIME("application/x-httpd-php-open",{name:"php",startOpen:!0}),e.defineMIME("text/x-php",l)})},function(e,t,n){!function(e){e(n(394))}(function(e){"use strict";function t(e,t,n,r,i,a){this.indented=e,this.column=t,this.type=n,this.info=r,this.align=i,this.prev=a}function n(e,n,r,i){var a=e.indented;return e.context&&"statement"==e.context.type&&"statement"!=r&&(a=e.context.indented),e.context=new t(a,n,r,i,null,e.context)}function r(e){var t=e.context.type;return")"!=t&&"]"!=t&&"}"!=t||(e.indented=e.context.indented),e.context=e.context.prev}function i(e,t,n){return"variable"==t.prevToken||"type"==t.prevToken||(!!/\S(?:[^- ]>|[*\]])\s*$|\*$/.test(e.string.slice(0,n))||(!(!t.typeAtEndOfLine||e.column()!=e.indentation())||void 0))}function a(e){for(;;){if(!e||"top"==e.type)return!0;if("}"==e.type&&"namespace"!=e.prev.info)return!1;e=e.prev}}function o(e){for(var t={},n=e.split(" "),r=0;r!?|\/]/,j=l.isIdentifierChar||/[\w\$_\xa1-\uffff]/;return{startState:function(e){return{tokenize:null,context:new t((e||0)-m,0,"top",null,!1),indented:0,startOfLine:!0,prevToken:null}},token:function(e,t){var o=t.context;if(e.sol()&&(null==o.align&&(o.align=!1),t.indented=e.indentation(),t.startOfLine=!0),e.eatSpace())return d(e,t),null;h=p=null;var s=(t.tokenize||c)(e,t);if("comment"==s||"meta"==s)return s;if(null==o.align&&(o.align=!0),";"==h||":"==h||","==h&&e.match(/^\s*(?:\/\/.*)?$/,!1))for(;"statement"==t.context.type;)r(t);else if("{"==h)n(t,e.column(),"}");else if("["==h)n(t,e.column(),"]");else if("("==h)n(t,e.column(),")");else if("}"==h){for(;"statement"==o.type;)o=r(t);for("}"==o.type&&(o=r(t));"statement"==o.type;)o=r(t)}else h==o.type?r(t):E&&(("}"==o.type||"top"==o.type)&&";"!=h||"statement"==o.type&&"newstatement"==h)&&n(t,e.column(),"statement",e.current());if("variable"==s&&("def"==t.prevToken||l.typeFirstDefinitions&&i(e,t,e.start)&&a(t.context)&&e.match(/^\s*\(/,!1))&&(s="def"),S.token){var u=S.token(e,t,s);void 0!==u&&(s=u)}return"def"==s&&l.styleDefs===!1&&(s="variable"),t.startOfLine=!1,t.prevToken=p?"def":s||h,d(e,t),s},indent:function(t,n){if(t.tokenize!=c&&null!=t.tokenize||t.typeAtEndOfLine)return e.Pass;var r=t.context,i=n&&n.charAt(0),a=i==r.type;if("statement"==r.type&&"}"==i&&(r=r.prev),l.dontIndentStatements)for(;"statement"==r.type&&l.dontIndentStatements.test(r.info);)r=r.prev;if(S.indent){var o=S.indent(t,r,n,m);if("number"==typeof o)return o}var s=r.prev&&"switch"==r.prev.info;if(l.allmanIndentation&&/[{(]/.test(i)){for(;"top"!=r.type&&"}"!=r.type;)r=r.prev;return r.indented}return"statement"==r.type?r.indented+("{"==i?0:v):!r.align||g&&")"==r.type?")"!=r.type||a?r.indented+(a?0:m)+(a||!s||/^(?:case|default)\b/.test(n)?0:m):r.indented+v:r.column+(a?0:1)},electricInput:I?/^\s*(?:case .*?:|default:|\{\}?|\})$/:/^\s*[{}]$/,blockCommentStart:"/*",blockCommentEnd:"*/",blockCommentContinue:" * ",lineComment:"//",fold:"brace"}});var b="auto if break case register continue return default do sizeof static else struct switch extern typedef union for goto while enum const volatile",w="int long char short double float unsigned signed void size_t ptrdiff_t";m(["text/x-csrc","text/x-c","text/x-chdr"],{name:"clike",keywords:o(b),types:o(w+" bool _Complex _Bool float_t double_t intptr_t intmax_t int8_t int16_t int32_t int64_t uintptr_t uintmax_t uint8_t uint16_t uint32_t uint64_t"),blockKeywords:o("case do else for if switch while struct"),defKeywords:o("struct"),typeFirstDefinitions:!0,atoms:o("NULL true false"),hooks:{"#":l,"*":c},modeProps:{fold:["brace","include"]}}),m(["text/x-c++src","text/x-c++hdr"],{name:"clike",keywords:o(b+" asm dynamic_cast namespace reinterpret_cast try explicit new static_cast typeid catch operator template typename class friend private this using const_cast inline public throw virtual delete mutable protected alignas alignof constexpr decltype nullptr noexcept thread_local final static_assert override"),types:o(w+" bool wchar_t"),blockKeywords:o("catch class do else finally for if struct switch try while"),defKeywords:o("class namespace struct enum union"),typeFirstDefinitions:!0,atoms:o("true false NULL"),dontIndentStatements:/^template$/,isIdentifierChar:/[\w\$_~\xa1-\uffff]/,hooks:{"#":l,"*":c,u:f,U:f,L:f,R:f,0:u,1:u,2:u,3:u,4:u,5:u,6:u,7:u,8:u,9:u,token:function(e,t,n){if("variable"==n&&"("==e.peek()&&(";"==t.prevToken||null==t.prevToken||"}"==t.prevToken)&&d(e.current()))return"def"}},namespaceSeparator:"::",modeProps:{fold:["brace","include"]}}),m("text/x-java",{name:"clike",keywords:o("abstract assert break case catch class const continue default do else enum extends final finally float for goto if implements import instanceof interface native new package private protected public return static strictfp super switch synchronized this throw throws transient try volatile while @interface"),types:o("byte short int long float double boolean char void Boolean Byte Character Double Float Integer Long Number Object Short String StringBuffer StringBuilder Void"),blockKeywords:o("catch class do else finally for if switch try while"),defKeywords:o("class interface enum @interface"),typeFirstDefinitions:!0,atoms:o("true false null"),number:/^(?:0x[a-f\d_]+|0b[01_]+|(?:[\d_]+\.?\d*|\.\d+)(?:e[-+]?[\d_]+)?)(u|ll?|l|f)?/i,hooks:{"@":function(e){return!e.match("interface",!1)&&(e.eatWhile(/[\w\$_]/),"meta")}},modeProps:{fold:["brace","import"]}}),m("text/x-csharp",{name:"clike",keywords:o("abstract as async await base break case catch checked class const continue default delegate do else enum event explicit extern finally fixed for foreach goto if implicit in interface internal is lock namespace new operator out override params private protected public readonly ref return sealed sizeof stackalloc static struct switch this throw try typeof unchecked unsafe using virtual void volatile while add alias ascending descending dynamic from get global group into join let orderby partial remove select set value var yield"),types:o("Action Boolean Byte Char DateTime DateTimeOffset Decimal Double Func Guid Int16 Int32 Int64 Object SByte Single String Task TimeSpan UInt16 UInt32 UInt64 bool byte char decimal double short int long object sbyte float string ushort uint ulong"),blockKeywords:o("catch class do else finally for foreach if struct switch try while"),defKeywords:o("class interface namespace struct var"),typeFirstDefinitions:!0,atoms:o("true false null"),hooks:{"@":function(e,t){return e.eat('"')?(t.tokenize=h,h(e,t)):(e.eatWhile(/[\w\$_]/),"meta")}}}),m("text/x-scala",{name:"clike",keywords:o("abstract case catch class def do else extends final finally for forSome if implicit import lazy match new null object override package private protected return sealed super this throw trait try type val var while with yield _ assert assume require print println printf readLine readBoolean readByte readShort readChar readInt readLong readFloat readDouble"),types:o("AnyVal App Application Array BufferedIterator BigDecimal BigInt Char Console Either Enumeration Equiv Error Exception Fractional Function IndexedSeq Int Integral Iterable Iterator List Map Numeric Nil NotNull Option Ordered Ordering PartialFunction PartialOrdering Product Proxy Range Responder Seq Serializable Set Specializable Stream StringBuilder StringContext Symbol Throwable Traversable TraversableOnce Tuple Unit Vector Boolean Byte Character CharSequence Class ClassLoader Cloneable Comparable Compiler Double Exception Float Integer Long Math Number Object Package Pair Process Runtime Runnable SecurityManager Short StackTraceElement StrictMath String StringBuffer System Thread ThreadGroup ThreadLocal Throwable Triple Void"),multiLineStrings:!0,blockKeywords:o("catch class enum do else finally for forSome if match switch try while"),defKeywords:o("class enum def object package trait type val var"),atoms:o("true false null"),indentStatements:!1,indentSwitch:!1,isOperatorChar:/[+\-*&%=<>!?|\/#:@]/,hooks:{"@":function(e){return e.eatWhile(/[\w\$_]/),"meta"},'"':function(e,t){return!!e.match('""')&&(t.tokenize=v,t.tokenize(e,t))},"'":function(e){return e.eatWhile(/[\w\$_\xa1-\uffff]/),"atom"},"=":function(e,n){var r=n.context;return!("}"!=r.type||!r.align||!e.eat(">"))&&(n.context=new t(r.indented,r.column,r.type,r.info,null,r.prev),"operator")},"/":function(e,t){return!!e.eat("*")&&(t.tokenize=g(1),t.tokenize(e,t))}},modeProps:{closeBrackets:{pairs:'()[]{}""',triples:'"'}}}),m("text/x-kotlin",{name:"clike",keywords:o("package as typealias class interface this super val operator var fun for is in This throw return annotation break continue object if else while do try when !in !is as? file import where by get set abstract enum open inner override private public internal protected catch finally out final vararg reified dynamic companion constructor init sealed field property receiver param sparam lateinit data inline noinline tailrec external annotation crossinline const operator infix suspend actual expect setparam"),types:o("Boolean Byte Character CharSequence Class ClassLoader Cloneable Comparable Compiler Double Exception Float Integer Long Math Number Object Package Pair Process Runtime Runnable SecurityManager Short StackTraceElement StrictMath String StringBuffer System Thread ThreadGroup ThreadLocal Throwable Triple Void Annotation Any BooleanArray ByteArray Char CharArray DeprecationLevel DoubleArray Enum FloatArray Function Int IntArray Lazy LazyThreadSafetyMode LongArray Nothing ShortArray Unit"),intendSwitch:!1,indentStatements:!1,multiLineStrings:!0,number:/^(?:0x[a-f\d_]+|0b[01_]+|(?:[\d_]+(\.\d+)?|\.\d+)(?:e[-+]?[\d_]+)?)(u|ll?|l|f)?/i,blockKeywords:o("catch class do else finally for if where try while enum"),defKeywords:o("class val var object interface fun"),atoms:o("true false null this"),hooks:{"@":function(e){return e.eatWhile(/[\w\$_]/),"meta"},'"':function(e,t){return t.tokenize=y(e.match('""')),t.tokenize(e,t)},indent:function(e,t,n,r){var i=n&&n.charAt(0);return"}"!=e.prevToken&&")"!=e.prevToken||""!=n?"operator"==e.prevToken&&"}"!=n||"variable"==e.prevToken&&"."==i||("}"==e.prevToken||")"==e.prevToken)&&"."==i?2*r+t.indented:t.align&&"}"==t.type?t.indented+(e.context.type==(n||"").charAt(0)?0:r):void 0:e.indented}},modeProps:{closeBrackets:{triples:'"'}}}),m(["x-shader/x-vertex","x-shader/x-fragment"],{name:"clike",keywords:o("sampler1D sampler2D sampler3D samplerCube sampler1DShadow sampler2DShadow const attribute uniform varying break continue discard return for while do if else struct in out inout"),types:o("float int bool void vec2 vec3 vec4 ivec2 ivec3 ivec4 bvec2 bvec3 bvec4 mat2 mat3 mat4"),blockKeywords:o("for while do if else struct"),builtin:o("radians degrees sin cos tan asin acos atan pow exp log exp2 sqrt inversesqrt abs sign floor ceil fract mod min max clamp mix step smoothstep length distance dot cross normalize ftransform faceforward reflect refract matrixCompMult lessThan lessThanEqual greaterThan greaterThanEqual equal notEqual any all not texture1D texture1DProj texture1DLod texture1DProjLod texture2D texture2DProj texture2DLod texture2DProjLod texture3D texture3DProj texture3DLod texture3DProjLod textureCube textureCubeLod shadow1D shadow2D shadow1DProj shadow2DProj shadow1DLod shadow2DLod shadow1DProjLod shadow2DProjLod dFdx dFdy fwidth noise1 noise2 noise3 noise4"),atoms:o("true false gl_FragColor gl_SecondaryColor gl_Normal gl_Vertex gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_FogCoord gl_PointCoord gl_Position gl_PointSize gl_ClipVertex gl_FrontColor gl_BackColor gl_FrontSecondaryColor gl_BackSecondaryColor gl_TexCoord gl_FogFragCoord gl_FragCoord gl_FrontFacing gl_FragData gl_FragDepth gl_ModelViewMatrix gl_ProjectionMatrix gl_ModelViewProjectionMatrix gl_TextureMatrix gl_NormalMatrix gl_ModelViewMatrixInverse gl_ProjectionMatrixInverse gl_ModelViewProjectionMatrixInverse gl_TexureMatrixTranspose gl_ModelViewMatrixInverseTranspose gl_ProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixInverseTranspose gl_TextureMatrixInverseTranspose gl_NormalScale gl_DepthRange gl_ClipPlane gl_Point gl_FrontMaterial gl_BackMaterial gl_LightSource gl_LightModel gl_FrontLightModelProduct gl_BackLightModelProduct gl_TextureColor gl_EyePlaneS gl_EyePlaneT gl_EyePlaneR gl_EyePlaneQ gl_FogParameters gl_MaxLights gl_MaxClipPlanes gl_MaxTextureUnits gl_MaxTextureCoords gl_MaxVertexAttribs gl_MaxVertexUniformComponents gl_MaxVaryingFloats gl_MaxVertexTextureImageUnits gl_MaxTextureImageUnits gl_MaxFragmentUniformComponents gl_MaxCombineTextureImageUnits gl_MaxDrawBuffers"),indentSwitch:!1,hooks:{"#":l},modeProps:{fold:["brace","include"]}}),m("text/x-nesc",{name:"clike",keywords:o(b+"as atomic async call command component components configuration event generic implementation includes interface module new norace nx_struct nx_union post provides signal task uses abstract extends"),types:o(w),blockKeywords:o("case do else for if switch while struct"),atoms:o("null true false"),hooks:{"#":l},modeProps:{fold:["brace","include"]}}),m("text/x-objectivec",{name:"clike",keywords:o(b+"inline restrict _Bool _Complex _Imaginary BOOL Class bycopy byref id IMP in inout nil oneway out Protocol SEL self super atomic nonatomic retain copy readwrite readonly"),types:o(w),atoms:o("YES NO NULL NILL ON OFF true false"),hooks:{"@":function(e){return e.eatWhile(/[\w\$]/),"keyword"},"#":l,indent:function(e,t,n){if("statement"==t.type&&/^@\w/.test(n))return t.indented}},modeProps:{fold:"brace"}}),m("text/x-squirrel",{name:"clike",keywords:o("base break clone continue const default delete enum extends function in class foreach local resume return this throw typeof yield constructor instanceof static"),types:o(w),blockKeywords:o("case catch class else for foreach if switch try while"),defKeywords:o("function local class"),typeFirstDefinitions:!0,atoms:o("true false null"),hooks:{"#":l},modeProps:{fold:["brace","include"]}});var x=null;m("text/x-ceylon",{name:"clike",keywords:o("abstracts alias assembly assert assign break case catch class continue dynamic else exists extends finally for function given if import in interface is let module new nonempty object of out outer package return satisfies super switch then this throw try value void while"),types:function(e){var t=e.charAt(0);return t===t.toUpperCase()&&t!==t.toLowerCase()},blockKeywords:o("case catch class dynamic else finally for function if interface module new object switch try while"),defKeywords:o("class dynamic function interface module object package value"),builtin:o("abstract actual aliased annotation by default deprecated doc final formal late license native optional sealed see serializable shared suppressWarnings tagged throws variable"),isPunctuationChar:/[\[\]{}\(\),;\:\.`]/,isOperatorChar:/[+\-*&%=<>!?|^~:\/]/,numberStart:/[\d#$]/,number:/^(?:#[\da-fA-F_]+|\$[01_]+|[\d_]+[kMGTPmunpf]?|[\d_]+\.[\d_]+(?:[eE][-+]?\d+|[kMGTPmunpf]|)|)/i,multiLineStrings:!0,typeFirstDefinitions:!0,atoms:o("true false null larger smaller equal empty finished"),indentSwitch:!1,styleDefs:!1,hooks:{"@":function(e){return e.eatWhile(/[\w\$_]/),"meta"},'"':function(e,t){return t.tokenize=_(e.match('""')?"triple":"single"),t.tokenize(e,t)},"`":function(e,t){return!(!x||!e.match("`"))&&(t.tokenize=x,x=null,t.tokenize(e,t))},"'":function(e){return e.eatWhile(/[\w\$_\xa1-\uffff]/),"atom"},token:function(e,t,n){if(("variable"==n||"type"==n)&&"."==t.prevToken)return"variable-2"}},modeProps:{fold:["brace","import"],closeBrackets:{triples:'"'}}})})},function(e,t,n){!function(e){e(n(394),n(431))}(function(e){"use strict";e.defineMode("sass",function(t){function n(e){return new RegExp("^"+e.join("|"))}function r(e){return!e.peek()||e.match(/\s+$/,!1)}function i(e,t){var n=e.peek();return")"===n?(e.next(),t.tokenizer=u,"operator"):"("===n?(e.next(),e.eatSpace(),"operator"):"'"===n||'"'===n?(t.tokenizer=o(e.next()),"string"):(t.tokenizer=o(")",!1),"string")}function a(e,t){return function(n,r){return n.sol()&&n.indentation()<=e?(r.tokenizer=u,u(n,r)):(t&&n.skipTo("*/")?(n.next(),n.next(),r.tokenizer=u):n.skipToEnd(),"comment")}}function o(e,t){function n(i,a){var o=i.next(),l=i.peek(),c=i.string.charAt(i.pos-2),f="\\"!==o&&l===e||o===e&&"\\"!==c;return f?(o!==e&&t&&i.next(),r(i)&&(a.cursorHalf=0),a.tokenizer=u,"string"):"#"===o&&"{"===l?(a.tokenizer=s(n),i.next(),"operator"):"string"}return null==t&&(t=!0),n}function s(e){return function(t,n){return"}"===t.peek()?(t.next(),n.tokenizer=e,"operator"):u(t,n)}}function l(e){if(0==e.indentCount){e.indentCount++;var n=e.scopes[0].offset,r=n+t.indentUnit;e.scopes.unshift({offset:r})}}function c(e){1!=e.scopes.length&&e.scopes.shift()}function u(e,t){var n=e.peek();if(e.match("/*"))return t.tokenizer=a(e.indentation(),!0),t.tokenizer(e,t);if(e.match("//"))return t.tokenizer=a(e.indentation(),!1),t.tokenizer(e,t);if(e.match("#{"))return t.tokenizer=s(u),"operator";if('"'===n||"'"===n)return e.next(),t.tokenizer=o(n),"string";if(t.cursorHalf){if("#"===n&&(e.next(),e.match(/[0-9a-fA-F]{6}|[0-9a-fA-F]{3}/)))return r(e)&&(t.cursorHalf=0),"number";if(e.match(/^-?[0-9\.]+/))return r(e)&&(t.cursorHalf=0),"number";if(e.match(/^(px|em|in)\b/))return r(e)&&(t.cursorHalf=0),"unit";if(e.match(_))return r(e)&&(t.cursorHalf=0),"keyword";if(e.match(/^url/)&&"("===e.peek())return t.tokenizer=i,r(e)&&(t.cursorHalf=0),"atom";if("$"===n)return e.next(),e.eatWhile(/[\w-]/),r(e)&&(t.cursorHalf=0),"variable-2";if("!"===n)return e.next(),t.cursorHalf=0,e.match(/^[\w]+/)?"keyword":"operator";if(e.match(w))return r(e)&&(t.cursorHalf=0),"operator";if(e.eatWhile(/[\w-]/))return r(e)&&(t.cursorHalf=0),d=e.current().toLowerCase(),v.hasOwnProperty(d)?"atom":m.hasOwnProperty(d)?"keyword":p.hasOwnProperty(d)?(t.prevProp=e.current().toLowerCase(),"property"):"tag";if(r(e))return t.cursorHalf=0,null}else{if("-"===n&&e.match(/^-\w+-/))return"meta";if("."===n){if(e.next(),e.match(/^[\w-]+/))return l(t),"qualifier";if("#"===e.peek())return l(t),"tag"}if("#"===n){if(e.next(),e.match(/^[\w-]+/))return l(t),"builtin";if("#"===e.peek())return l(t),"tag"}if("$"===n)return e.next(),e.eatWhile(/[\w-]/),"variable-2";if(e.match(/^-?[0-9\.]+/))return"number";if(e.match(/^(px|em|in)\b/))return"unit";if(e.match(_))return"keyword";if(e.match(/^url/)&&"("===e.peek())return t.tokenizer=i,"atom";if("="===n&&e.match(/^=[\w-]+/))return l(t),"meta";if("+"===n&&e.match(/^\+[\w-]+/))return"variable-3";if("@"===n&&e.match(/@extend/)&&(e.match(/\s*[\w]/)||c(t)),e.match(/^@(else if|if|media|else|for|each|while|mixin|function)/))return l(t),"def";if("@"===n)return e.next(),e.eatWhile(/[\w-]/),"def";if(e.eatWhile(/[\w-]/)){if(e.match(/ *: *[\w-\+\$#!\("']/,!1)){d=e.current().toLowerCase();var f=t.prevProp+"-"+d;return p.hasOwnProperty(f)?"property":p.hasOwnProperty(d)?(t.prevProp=d,"property"):g.hasOwnProperty(d)?"property":"tag"}return e.match(/ *:/,!1)?(l(t),t.cursorHalf=1,t.prevProp=e.current().toLowerCase(),"property"):e.match(/ *,/,!1)?"tag":(l(t),"tag")}if(":"===n)return e.match(x)?"variable-3":(e.next(),t.cursorHalf=1,"operator")}return e.match(w)?"operator":(e.next(),null)}function f(e,n){e.sol()&&(n.indentCount=0);var r=n.tokenizer(e,n),i=e.current();if("@return"!==i&&"}"!==i||c(n),null!==r){for(var a=e.pos-i.length,o=a+t.indentUnit*n.indentCount,s=[],l=0;l","<","==",">=","<=","\\+","-","\\!=","/","\\*","%","and","or","not",";","\\{","\\}",":"],w=n(b),x=/^::?[a-zA-Z_][\w\-]*/;return{startState:function(){return{tokenizer:u,scopes:[{offset:0,type:"sass"}],indentCount:0,cursorHalf:0,definedVars:[],definedMixins:[]}},token:function(e,t){var n=f(e,t);return t.lastToken={style:n,content:e.current()},n},indent:function(e){return e.scopes[0].offset}}},"css"),e.defineMIME("text/x-sass","sass")})},function(e,t,n){!function(e){e(n(394),n(443))}(function(e){"use strict";e.defineMode("twig:inner",function(){function e(e,o){var s=e.peek();if(o.incomment)return e.skipTo("#}")?(e.eatWhile(/\#|}/),o.incomment=!1):e.skipToEnd(),"comment";if(o.intag){if(o.operator){if(o.operator=!1,e.match(i))return"atom";if(e.match(a))return"number"}if(o.sign){if(o.sign=!1,e.match(i))return"atom";if(e.match(a))return"number"}if(o.instring)return s==o.instring&&(o.instring=!1),e.next(),"string";if("'"==s||'"'==s)return o.instring=s,e.next(),"string";if(e.match(o.intag+"}")||e.eat("-")&&e.match(o.intag+"}"))return o.intag=!1,"tag";if(e.match(n))return o.operator=!0,"operator";if(e.match(r))o.sign=!0;else if(e.eat(" ")||e.sol()){if(e.match(t))return"keyword";if(e.match(i))return"atom";if(e.match(a))return"number";e.sol()&&e.next()}else e.next();return"variable"}if(e.eat("{")){if(e.eat("#"))return o.incomment=!0,e.skipTo("#}")?(e.eatWhile(/\#|}/),o.incomment=!1):e.skipToEnd(),"comment";if(s=e.eat(/\{|%/))return o.intag=s,"{"==s&&(o.intag="}"),e.eat("-"),"tag"}e.next()}var t=["and","as","autoescape","endautoescape","block","do","endblock","else","elseif","extends","for","endfor","embed","endembed","filter","endfilter","flush","from","if","endif","in","is","include","import","not","or","set","spaceless","endspaceless","with","endwith","trans","endtrans","blocktrans","endblocktrans","macro","endmacro","use","verbatim","endverbatim"],n=/^[+\-*&%=<>!?|~^]/,r=/^[:\[\(\{]/,i=["true","false","null","empty","defined","divisibleby","divisible by","even","odd","iterable","sameas","same as"],a=/^(\d[+\-\*\/])?\d+(\.\d+)?/;return t=new RegExp("(("+t.join(")|(")+"))\\b"),i=new RegExp("(("+i.join(")|(")+"))\\b"),{startState:function(){return{}},token:function(t,n){return e(t,n)}}}),e.defineMode("twig",function(t,n){var r=e.getMode(t,"twig:inner");return n&&n.base?e.multiplexingMode(e.getMode(t,n.base),{open:/\{[{#%]/,close:/[}#%]\}/,mode:r,parseDelimiters:!0}):r}),e.defineMIME("text/x-twig","twig")})},function(e,t,n){!function(e){e(n(394))}(function(e){"use strict";e.multiplexingMode=function(t){function n(e,t,n,r){if("string"==typeof t){var i=e.indexOf(t,n);return r&&i>-1?i+t.length:i}var a=t.exec(n?e.slice(n):e);return a?a.index+n+(r?a[0].length:0):-1}var r=Array.prototype.slice.call(arguments,1);return{startState:function(){return{outer:e.startState(t),innerActive:null,inner:null}},copyState:function(n){return{outer:e.copyState(t,n.outer),innerActive:n.innerActive,inner:n.innerActive&&e.copyState(n.innerActive.mode,n.inner)}},token:function(i,a){if(a.innerActive){var o=a.innerActive,s=i.string;if(!o.close&&i.sol())return a.innerActive=a.inner=null,this.token(i,a);var l=o.close?n(s,o.close,i.pos,o.parseDelimiters):-1;if(l==i.pos&&!o.parseDelimiters)return i.match(o.close),a.innerActive=a.inner=null,o.delimStyle&&o.delimStyle+" "+o.delimStyle+"-close";l>-1&&(i.string=s.slice(0,l));var c=o.mode.token(i,a.inner);return l>-1&&(i.string=s),l==i.pos&&o.parseDelimiters&&(a.innerActive=a.inner=null),o.innerStyle&&(c=c?c+" "+o.innerStyle:o.innerStyle),c}for(var u=1/0,s=i.string,f=0;fn.keyCol)return e.skipToEnd(),"string";if(n.literal&&(n.literal=!1),e.sol()){if(n.keyCol=0,n.pair=!1,n.pairStart=!1,e.match(/---/))return"def";if(e.match(/\.\.\./))return"def";if(e.match(/\s*-\s+/))return"meta"}if(e.match(/^(\{|\}|\[|\])/))return"{"==r?n.inlinePairs++:"}"==r?n.inlinePairs--:"["==r?n.inlineList++:n.inlineList--,"meta";if(n.inlineList>0&&!i&&","==r)return e.next(),"meta";if(n.inlinePairs>0&&!i&&","==r)return n.keyCol=0,n.pair=!1,n.pairStart=!1,e.next(),"meta";if(n.pairStart){if(e.match(/^\s*(\||\>)\s*/))return n.literal=!0,"meta";if(e.match(/^\s*(\&|\*)[a-z0-9\._-]+\b/i))return"variable-2";if(0==n.inlinePairs&&e.match(/^\s*-?[0-9\.\,]+\s?$/))return"number";if(n.inlinePairs>0&&e.match(/^\s*-?[0-9\.\,]+\s?(?=(,|}))/))return"number";if(e.match(t))return"keyword"}return!n.pair&&e.match(/^\s*(?:[,\[\]{}&*!|>'"%@`][^\s'":]|[^,\[\]{}#&*!|>'"%@`])[^#]*?(?=\s*:($|\s))/)?(n.pair=!0,n.keyCol=e.indentation(),"atom"):n.pair&&e.match(/^:\s*/)?(n.pairStart=!0,"meta"):(n.pairStart=!1,n.escaped="\\"==r,e.next(),null)},startState:function(){return{pair:!1,pairStart:!1,keyCol:0,inlinePairs:0,inlineList:0,literal:!1,escaped:!1}},lineComment:"#",fold:"indent" }}),e.defineMIME("text/x-yaml","yaml"),e.defineMIME("text/yaml","yaml")})},function(e,t,n){!function(e){e(n(394))}(function(e){"use strict";function t(e,t){var r=t.line,i=0,a=0,o=n.exec(e.getLine(r)),s=o[1];do{i+=1;var l=r+i,c=e.getLine(l),u=n.exec(c);if(u){var f=u[1],d=parseInt(o[3],10)+i-a,h=parseInt(u[3],10),p=h;if(s!==f||isNaN(h)){if(s.length>f.length)return;if(s.lengthh&&(p=d+1),e.replaceRange(c.replace(n,f+p+u[4]+u[5]),{line:l,ch:0},{line:l,ch:c.length})}}while(u)}var n=/^(\s*)(>[> ]*|[*+-] \[[x ]\]\s|[*+-]\s|(\d+)([.)]))(\s*)/,r=/^(\s*)(>[> ]*|[*+-] \[[x ]\]|[*+-]|(\d+)[.)])(\s*)$/,i=/[*+-]\s/;e.commands.newlineAndIndentContinueMarkdownList=function(a){if(a.getOption("disableInput"))return e.Pass;for(var o=a.listSelections(),s=[],l=0;l\s*$/.test(h)||a.replaceRange("",{line:c.line,ch:0},{line:c.line,ch:c.ch+1}),s[l]="\n";else{var v=p[1],g=p[5],y=!(i.test(p[2])||p[2].indexOf(">")>=0),_=y?parseInt(p[3],10)+1+p[4]:p[2].replace("x"," ");s[l]="\n"+v+_+g,y&&t(a,c)}}a.replaceSelections(s)}})},function(e,t,n){!function(e){e(n(394))}(function(e){"use strict";function t(e){for(var t=0;t1,n.options.tooltips))}}r.onUpdateLinting&&r.onUpdateLinting(t,i,e)}function m(e){var t=e.state.lint;t&&(clearTimeout(t.timeout),t.timeout=setTimeout(function(){h(e)},t.options.delay||500))}function v(e,t){for(var n=t.target||t.srcElement,r=document.createDocumentFragment(),a=0;a=0&&b.splice(t,1)}function s(e){var t=document.createElement("style");return e.attrs.type="text/css",c(t,e.attrs),a(e,t),t}function l(e){var t=document.createElement("link");return e.attrs.type="text/css",e.attrs.rel="stylesheet",c(t,e.attrs),a(e,t),t}function c(e,t){Object.keys(t).forEach(function(n){e.setAttribute(n,t[n])})}function u(e,t){var n,r,i,a;if(t.transform&&e.css){if(a=t.transform(e.css),!a)return function(){};e.css=a}if(t.singleton){var c=_++;n=y||(y=s(t)),r=f.bind(null,n,c,!1),i=f.bind(null,n,c,!0)}else e.sourceMap&&"function"==typeof URL&&"function"==typeof URL.createObjectURL&&"function"==typeof URL.revokeObjectURL&&"function"==typeof Blob&&"function"==typeof btoa?(n=l(t),r=h.bind(null,n,t),i=function(){o(n),n.href&&URL.revokeObjectURL(n.href)}):(n=s(t),r=d.bind(null,n),i=function(){o(n)});return r(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap)return;r(e=t)}else i()}}function f(e,t,n,r){var i=n?"":r.css;if(e.styleSheet)e.styleSheet.cssText=x(t,i);else{var a=document.createTextNode(i),o=e.childNodes;o[t]&&e.removeChild(o[t]),o.length?e.insertBefore(a,o[t]):e.appendChild(a)}}function d(e,t){var n=t.css,r=t.media;if(r&&e.setAttribute("media",r),e.styleSheet)e.styleSheet.cssText=n;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(n))}}function h(e,t,n){var r=n.css,i=n.sourceMap,a=void 0===t.convertToAbsoluteUrls&&i;(t.convertToAbsoluteUrls||a)&&(r=w(r)),i&&(r+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(i))))+" */");var o=new Blob([r],{type:"text/css"}),s=e.href;e.href=URL.createObjectURL(o),s&&URL.revokeObjectURL(s)}var p={},m=function(e){var t;return function(){return"undefined"==typeof t&&(t=e.apply(this,arguments)),t}},v=m(function(){return window&&document&&document.all&&!window.atob}),g=function(e){var t={};return function(n){return"undefined"==typeof t[n]&&(t[n]=e.call(this,n)),t[n]}}(function(e){return document.querySelector(e)}),y=null,_=0,b=[],w=n(452);e.exports=function(e,t){t=t||{},t.attrs="object"==typeof t.attrs?t.attrs:{},t.singleton||(t.singleton=v()),t.insertInto||(t.insertInto="head"),t.insertAt||(t.insertAt="bottom");var n=i(e,t);return r(n,t),function(e){for(var a=[],o=0;o-1&&(o+=s)}var l={message:i.reason,severity:i.code&&i.code.startsWith("W")?"warning":"error",from:e.Pos(i.line-1,a),to:e.Pos(i.line-1,o)};n.push(l)}}}e.registerHelper("lint","javascript",t)})},function(e,t,n){!function(e){e(n(394))}(function(e){"use strict";e.registerHelper("lint","json",function(t){var n=[];if(!window.jsonlint)return window.console&&window.console.error("Error: window.jsonlint not defined, CodeMirror JSON linting cannot run."),n;var r=window.jsonlint.parser||window.jsonlint;r.parseError=function(t,r){var i=r.loc;n.push({from:e.Pos(i.first_line-1,i.first_column),to:e.Pos(i.last_line-1,i.last_column),message:t})};try{r.parse(t)}catch(e){}return n})})},function(e,t,n){!function(e){e(n(394))}(function(e){"use strict";e.registerHelper("lint","yaml",function(t){var n=[];if(!window.jsyaml)return window.console&&window.console.error("Error: window.jsyaml not defined, CodeMirror YAML linting cannot run."),n;try{jsyaml.load(t)}catch(t){var r=t.mark,i=r?e.Pos(r.line,r.column):e.Pos(0,0),a=i;n.push({from:i,to:a,message:t.message})}return n})})},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}var i=n(1),a=r(i);(0,a.default)('[name="task"][value="saveas"], [name="task"][value="switchlanguage"]').on("mousedown touchstart",function(e){var t=["lang","redirect"],n=(0,a.default)(e.currentTarget),r=(0,a.default)("#"+n.attr("form"));if(r.length)return t.forEach(function(e){var t=n.attr(e);if(t){var i=r.find('[name="data['+e+']"]');i.length||(i=(0,a.default)(''),r.append(i)),i.val(t)}}),!0})},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(459),a=r(i),o=n(465),s=r(o),l=n(466),c=r(l);t.default={Form:{Form:s.default,Instance:o.Instance},Fields:c.default,FormState:{FormState:a.default,Instance:i.Instance}}},function(e,t,n){(function(e){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.DOMBehaviors=t.Instance=void 0;var a=function(){function e(e,t){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:{ignore:[],form_id:"blueprints"};i(this,e),this.options=t,this.refresh(),this.form&&this.fields.length&&(d=this.collect(),this.loadState=d,h.attach())}return a(e,[{key:"refresh",value:function(){return this.form=(0,s.default)("form#"+this.options.form_id).filter(":noparents(.remodal)"),this.fields=(0,s.default)("form#"+this.options.form_id+' *, [form="'+this.options.form_id+'"]').filter(":input:not(.no-form)").filter(":noparents(.remodal)"),this}},{key:"collect",value:function(){var e=this;if(this.form&&this.fields.length){var t={};return this.refresh().fields.each(function(n,r){r=(0,s.default)(r);var i=r.prop("name"),a=r.prop("type"),o=r.prop("tagName").toLowerCase(),l=void 0;if(!i.startsWith("toggleable_")&&"data[lang]"!==i&&"data[redirect]"!==i){switch(a){case"checkbox":l=r.is(":checked");break;case"radio":if(!r.is(":checked"))return;l=r.val();break;default:l=r.val()}"select"===o&&null===l&&(l=""),Array.isArray(l)&&(l=l.join("|")),i&&!~e.options.ignore.indexOf(i)&&(t[i]=l)}}),c.default.OrderedMap(t)}}},{key:"diff",value:function(){return(0,f.default)(d,this.collect())}},{key:"equals",value:function(){return this.form&&this.fields.length?c.default.is(d,this.collect()):null}}]),e}();t.default=p;var m=t.Instance=new p;t.DOMBehaviors=h}).call(t,function(){return this}())},function(e,t,n){!function(t,n){e.exports=n()}(this,function(){"use strict";function e(e,t){t&&(e.prototype=Object.create(t.prototype)),e.prototype.constructor=e}function t(e){return a(e)?e:O(e)}function n(e){return o(e)?e:M(e)}function r(e){return s(e)?e:T(e)}function i(e){return a(e)&&!l(e)?e:P(e)}function a(e){return!(!e||!e[cn])}function o(e){return!(!e||!e[un])}function s(e){return!(!e||!e[fn])}function l(e){return o(e)||s(e)}function c(e){return!(!e||!e[dn])}function u(e){return e.value=!1,e}function f(e){e&&(e.value=!0)}function d(){}function h(e,t){t=t||0;for(var n=Math.max(0,e.length-t),r=new Array(n),i=0;i>>0;if(""+n!==t||4294967295===n)return NaN;t=n}return t<0?p(e)+t:t}function v(){return!0}function g(e,t,n){return(0===e||void 0!==n&&e<=-n)&&(void 0===t||void 0!==n&&t>=n)}function y(e,t){return b(e,t,0)}function _(e,t){return b(e,t,t)}function b(e,t,n){return void 0===e?n:e<0?Math.max(0,t+e):void 0===t?e:Math.min(t,e)}function w(e){this.next=e}function x(e,t,n,r){var i=0===e?t:1===e?n:[t,n];return r?r.value=i:r={value:i,done:!1},r}function k(){return{value:void 0,done:!0}}function S(e){return!!I(e)}function C(e){return e&&"function"==typeof e.next}function E(e){var t=I(e);return t&&t.call(e)}function I(e){var t=e&&(kn&&e[kn]||e[Sn]);if("function"==typeof t)return t}function A(e){return e&&"number"==typeof e.length}function O(e){return null===e||void 0===e?F():a(e)?e.toSeq():U(e)}function M(e){return null===e||void 0===e?F().toKeyedSeq():a(e)?o(e)?e.toSeq():e.fromEntrySeq():R(e)}function T(e){return null===e||void 0===e?F():a(e)?o(e)?e.entrySeq():e.toIndexedSeq():q(e)}function P(e){return(null===e||void 0===e?F():a(e)?o(e)?e.entrySeq():e:q(e)).toSetSeq()}function j(e){this._array=e,this.size=e.length}function D(e){var t=Object.keys(e);this._object=e,this._keys=t,this.size=t.length}function L(e){this._iterable=e,this.size=e.length||e.size}function N(e){this._iterator=e,this._iteratorCache=[]}function z(e){return!(!e||!e[En])}function F(){return In||(In=new j([]))}function R(e){var t=Array.isArray(e)?new j(e).fromEntrySeq():C(e)?new N(e).fromEntrySeq():S(e)?new L(e).fromEntrySeq():"object"==typeof e?new D(e):void 0;if(!t)throw new TypeError("Expected Array or iterable object of [k, v] entries, or keyed object: "+e);return t}function q(e){var t=V(e);if(!t)throw new TypeError("Expected Array or iterable object of values: "+e);return t}function U(e){var t=V(e)||"object"==typeof e&&new D(e);if(!t)throw new TypeError("Expected Array or iterable object of values, or keyed object: "+e);return t}function V(e){return A(e)?new j(e):C(e)?new N(e):S(e)?new L(e):void 0}function B(e,t,n,r){var i=e._cache;if(i){for(var a=i.length-1,o=0;o<=a;o++){var s=i[n?a-o:o];if(t(s[1],r?s[0]:o,e)===!1)return o+1}return o}return e.__iterateUncached(t,n)}function G(e,t,n,r){var i=e._cache;if(i){var a=i.length-1,o=0;return new w(function(){var e=i[n?a-o:o];return o++>a?k():x(t,r?e[0]:o-1,e[1])})}return e.__iteratorUncached(t,n)}function $(e,t){return t?H(t,e,"",{"":e}):K(e)}function H(e,t,n,r){return Array.isArray(t)?e.call(r,n,T(t).map(function(n,r){return H(e,n,r,t)})):W(t)?e.call(r,n,M(t).map(function(n,r){return H(e,n,r,t)})):t}function K(e){return Array.isArray(e)?T(e).map(K).toList():W(e)?M(e).map(K).toMap():e}function W(e){return e&&(e.constructor===Object||void 0===e.constructor)}function Y(e,t){if(e===t||e!==e&&t!==t)return!0;if(!e||!t)return!1;if("function"==typeof e.valueOf&&"function"==typeof t.valueOf){if(e=e.valueOf(),t=t.valueOf(),e===t||e!==e&&t!==t)return!0;if(!e||!t)return!1}return!("function"!=typeof e.equals||"function"!=typeof t.equals||!e.equals(t))}function J(e,t){if(e===t)return!0;if(!a(t)||void 0!==e.size&&void 0!==t.size&&e.size!==t.size||void 0!==e.__hash&&void 0!==t.__hash&&e.__hash!==t.__hash||o(e)!==o(t)||s(e)!==s(t)||c(e)!==c(t))return!1;if(0===e.size&&0===t.size)return!0;var n=!l(e);if(c(e)){var r=e.entries();return t.every(function(e,t){var i=r.next().value;return i&&Y(i[1],e)&&(n||Y(i[0],t))})&&r.next().done}var i=!1;if(void 0===e.size)if(void 0===t.size)"function"==typeof e.cacheResult&&e.cacheResult();else{i=!0;var u=e;e=t,t=u}var f=!0,d=t.__iterate(function(t,r){if(n?!e.has(t):i?!Y(t,e.get(r,gn)):!Y(e.get(r,gn),t))return f=!1,!1});return f&&e.size===d}function X(e,t){if(!(this instanceof X))return new X(e,t);if(this._value=e,this.size=void 0===t?1/0:Math.max(0,t),0===this.size){if(An)return An;An=this}}function Q(e,t){if(!e)throw new Error(t)}function Z(e,t,n){if(!(this instanceof Z))return new Z(e,t,n);if(Q(0!==n,"Cannot step a Range by 0"),e=e||0,void 0===t&&(t=1/0),n=void 0===n?1:Math.abs(n),t>>1&1073741824|3221225471&e}function ae(e){if(e===!1||null===e||void 0===e)return 0;if("function"==typeof e.valueOf&&(e=e.valueOf(),e===!1||null===e||void 0===e))return 0;if(e===!0)return 1;var t=typeof e;if("number"===t){if(e!==e||e===1/0)return 0;var n=0|e;for(n!==e&&(n^=4294967295*e);e>4294967295;)e/=4294967295,n^=e;return ie(n)}if("string"===t)return e.length>zn?oe(e):se(e);if("function"==typeof e.hashCode)return e.hashCode();if("object"===t)return le(e);if("function"==typeof e.toString)return se(e.toString());throw new Error("Value type "+t+" cannot be hashed.")}function oe(e){var t=qn[e];return void 0===t&&(t=se(e),Rn===Fn&&(Rn=0,qn={}),Rn++,qn[e]=t),t}function se(e){for(var t=0,n=0;n0)switch(e.nodeType){case 1:return e.uniqueID;case 9:return e.documentElement&&e.documentElement.uniqueID}}function ue(e){Q(e!==1/0,"Cannot perform this action with an infinite size.")}function fe(e){return null===e||void 0===e?xe():de(e)&&!c(e)?e:xe().withMutations(function(t){var r=n(e);ue(r.size),r.forEach(function(e,n){return t.set(n,e)})})}function de(e){return!(!e||!e[Un])}function he(e,t){this.ownerID=e,this.entries=t}function pe(e,t,n){this.ownerID=e,this.bitmap=t,this.nodes=n}function me(e,t,n){this.ownerID=e,this.count=t,this.nodes=n}function ve(e,t,n){this.ownerID=e,this.keyHash=t,this.entries=n}function ge(e,t,n){this.ownerID=e,this.keyHash=t,this.entry=n}function ye(e,t,n){this._type=t,this._reverse=n,this._stack=e._root&&be(e._root)}function _e(e,t){return x(e,t[0],t[1])}function be(e,t){return{node:e,index:0,__prev:t}}function we(e,t,n,r){var i=Object.create(Vn);return i.size=e,i._root=t,i.__ownerID=n,i.__hash=r,i.__altered=!1,i}function xe(){return Bn||(Bn=we(0))}function ke(e,t,n){var r,i;if(e._root){var a=u(yn),o=u(_n);if(r=Se(e._root,e.__ownerID,0,void 0,t,n,a,o),!o.value)return e;i=e.size+(a.value?n===gn?-1:1:0)}else{if(n===gn)return e;i=1,r=new he(e.__ownerID,[[t,n]])}return e.__ownerID?(e.size=i,e._root=r,e.__hash=void 0,e.__altered=!0,e):r?we(i,r):xe()}function Se(e,t,n,r,i,a,o,s){return e?e.update(t,n,r,i,a,o,s):a===gn?e:(f(s),f(o),new ge(t,r,[i,a]))}function Ce(e){return e.constructor===ge||e.constructor===ve}function Ee(e,t,n,r,i){if(e.keyHash===r)return new ve(t,r,[e.entry,i]);var a,o=(0===n?e.keyHash:e.keyHash>>>n)&vn,s=(0===n?r:r>>>n)&vn,l=o===s?[Ee(e,t,n+pn,r,i)]:(a=new ge(t,r,i),o>>=1)o[s]=1&n?t[a++]:void 0;return o[r]=i,new me(e,a+1,o)}function Me(e,t,r){for(var i=[],o=0;o>1&1431655765,e=(858993459&e)+(e>>2&858993459),e=e+(e>>4)&252645135,e+=e>>8,e+=e>>16,127&e}function Ne(e,t,n,r){var i=r?e:h(e);return i[t]=n,i}function ze(e,t,n,r){var i=e.length+1;if(r&&t+1===i)return e[t]=n,e;for(var a=new Array(i),o=0,s=0;s0&&ia?0:a-n,c=o-n;return c>mn&&(c=mn),function(){if(i===c)return Jn;var e=t?--c:i++;return r&&r[e]}}function i(e,r,i){var s,l=e&&e.array,c=i>a?0:a-i>>r,u=(o-i>>r)+1;return u>mn&&(u=mn),function(){for(;;){if(s){var e=s();if(e!==Jn)return e;s=null}if(c===u)return Jn;var a=t?--u:c++;s=n(l&&l[a],r-pn,i+(a<=e.size||t<0)return e.withMutations(function(e){t<0?Ye(e,t).set(0,n):Ye(e,0,t+1).set(t,n)});t+=e._origin;var r=e._tail,i=e._root,a=u(_n);return t>=Xe(e._capacity)?r=He(r,e.__ownerID,0,t,n,a):i=He(i,e.__ownerID,e._level,t,n,a),a.value?e.__ownerID?(e._root=i,e._tail=r,e.__hash=void 0,e.__altered=!0,e):Be(e._origin,e._capacity,e._level,i,r):e}function He(e,t,n,r,i,a){var o=r>>>n&vn,s=e&&o0){var c=e&&e.array[o],u=He(c,t,n-pn,r,i,a);return u===c?e:(l=Ke(e,t),l.array[o]=u,l)}return s&&e.array[o]===i?e:(f(a),l=Ke(e,t),void 0===i&&o===l.array.length-1?l.array.pop():l.array[o]=i,l)}function Ke(e,t){return t&&e&&t===e.ownerID?e:new Ue(e?e.array.slice():[],t)}function We(e,t){if(t>=Xe(e._capacity))return e._tail;if(t<1<0;)n=n.array[t>>>r&vn],r-=pn;return n}}function Ye(e,t,n){void 0!==t&&(t|=0),void 0!==n&&(n|=0);var r=e.__ownerID||new d,i=e._origin,a=e._capacity,o=i+t,s=void 0===n?a:n<0?a+n:i+n;if(o===i&&s===a)return e;if(o>=s)return e.clear();for(var l=e._level,c=e._root,u=0;o+u<0;)c=new Ue(c&&c.array.length?[void 0,c]:[],r),l+=pn,u+=1<=1<f?new Ue([],r):p;if(p&&h>f&&opn;g-=pn){var y=f>>>g&vn;v=v.array[y]=Ke(v.array[y],r)}v.array[f>>>pn&vn]=p}if(s=h)o-=h,s-=h,l=pn,c=null,m=m&&m.removeBefore(r,0,o);else if(o>i||h>>l&vn;if(_!==h>>>l&vn)break;_&&(u+=(1<i&&(c=c.removeBefore(r,l,o-u)),c&&ho&&(o=c.size),a(l)||(c=c.map(function(e){return $(e)})),i.push(c)}return o>e.size&&(e=e.setSize(o)),je(e,t,i)}function Xe(e){return e>>pn<=mn&&o.size>=2*a.size?(i=o.filter(function(e,t){return void 0!==e&&s!==t}),r=i.toKeyedSeq().map(function(e){return e[0]}).flip().toMap(),e.__ownerID&&(r.__ownerID=i.__ownerID=e.__ownerID)):(r=a.remove(t),i=s===o.size-1?o.pop():o.set(s,void 0))}else if(l){if(n===o.get(s)[1])return e;r=a,i=o.set(s,[t,n])}else r=a.set(t,o.size),i=o.set(o.size,[t,n]);return e.__ownerID?(e.size=r.size,e._map=r,e._list=i,e.__hash=void 0,e):et(r,i)}function rt(e,t){this._iter=e,this._useKeys=t,this.size=e.size}function it(e){this._iter=e,this.size=e.size}function at(e){this._iter=e,this.size=e.size}function ot(e){this._iter=e,this.size=e.size}function st(e){var t=At(e);return t._iter=e,t.size=e.size,t.flip=function(){return e},t.reverse=function(){var t=e.reverse.apply(this);return t.flip=function(){return e.reverse()},t},t.has=function(t){return e.includes(t)},t.includes=function(t){return e.has(t)},t.cacheResult=Ot,t.__iterateUncached=function(t,n){var r=this;return e.__iterate(function(e,n){return t(n,e,r)!==!1},n)},t.__iteratorUncached=function(t,n){if(t===xn){var r=e.__iterator(t,n);return new w(function(){var e=r.next();if(!e.done){var t=e.value[0];e.value[0]=e.value[1],e.value[1]=t}return e})}return e.__iterator(t===wn?bn:wn,n)},t}function lt(e,t,n){var r=At(e);return r.size=e.size,r.has=function(t){return e.has(t)},r.get=function(r,i){var a=e.get(r,gn);return a===gn?i:t.call(n,a,r,e)},r.__iterateUncached=function(r,i){var a=this;return e.__iterate(function(e,i,o){return r(t.call(n,e,i,o),i,a)!==!1},i)},r.__iteratorUncached=function(r,i){var a=e.__iterator(xn,i);return new w(function(){var i=a.next();if(i.done)return i;var o=i.value,s=o[0];return x(r,s,t.call(n,o[1],s,e),i)})},r}function ct(e,t){var n=At(e);return n._iter=e,n.size=e.size,n.reverse=function(){return e},e.flip&&(n.flip=function(){var t=st(e);return t.reverse=function(){return e.flip()},t}),n.get=function(n,r){return e.get(t?n:-1-n,r)},n.has=function(n){return e.has(t?n:-1-n)},n.includes=function(t){return e.includes(t)},n.cacheResult=Ot,n.__iterate=function(t,n){var r=this;return e.__iterate(function(e,n){return t(e,n,r)},!n)},n.__iterator=function(t,n){return e.__iterator(t,!n)},n}function ut(e,t,n,r){var i=At(e);return r&&(i.has=function(r){var i=e.get(r,gn);return i!==gn&&!!t.call(n,i,r,e)},i.get=function(r,i){var a=e.get(r,gn);return a!==gn&&t.call(n,a,r,e)?a:i}),i.__iterateUncached=function(i,a){var o=this,s=0;return e.__iterate(function(e,a,l){if(t.call(n,e,a,l))return s++,i(e,r?a:s-1,o)},a),s},i.__iteratorUncached=function(i,a){var o=e.__iterator(xn,a),s=0;return new w(function(){for(;;){var a=o.next();if(a.done)return a;var l=a.value,c=l[0],u=l[1];if(t.call(n,u,c,e))return x(i,r?c:s++,u,a)}})},i}function ft(e,t,n){var r=fe().asMutable();return e.__iterate(function(i,a){r.update(t.call(n,i,a,e),0,function(e){return e+1})}),r.asImmutable()}function dt(e,t,n){var r=o(e),i=(c(e)?Qe():fe()).asMutable();e.__iterate(function(a,o){i.update(t.call(n,a,o,e),function(e){return e=e||[],e.push(r?[o,a]:a),e})});var a=It(e);return i.map(function(t){return St(e,a(t))})}function ht(e,t,n,r){var i=e.size;if(void 0!==t&&(t|=0),void 0!==n&&(n===1/0?n=i:n|=0),g(t,n,i))return e;var a=y(t,i),o=_(n,i);if(a!==a||o!==o)return ht(e.toSeq().cacheResult(),t,n,r);var s,l=o-a;l===l&&(s=l<0?0:l);var c=At(e);return c.size=0===s?s:e.size&&s||void 0,!r&&z(e)&&s>=0&&(c.get=function(t,n){return t=m(this,t),t>=0&&ts)return k();var e=i.next();return r||t===wn?e:t===bn?x(t,l-1,void 0,e):x(t,l-1,e.value[1],e)})},c}function pt(e,t,n){var r=At(e);return r.__iterateUncached=function(r,i){var a=this;if(i)return this.cacheResult().__iterate(r,i);var o=0;return e.__iterate(function(e,i,s){return t.call(n,e,i,s)&&++o&&r(e,i,a)}),o},r.__iteratorUncached=function(r,i){var a=this;if(i)return this.cacheResult().__iterator(r,i);var o=e.__iterator(xn,i),s=!0;return new w(function(){if(!s)return k();var e=o.next();if(e.done)return e;var i=e.value,l=i[0],c=i[1];return t.call(n,c,l,a)?r===xn?e:x(r,l,c,e):(s=!1,k())})},r}function mt(e,t,n,r){var i=At(e);return i.__iterateUncached=function(i,a){var o=this;if(a)return this.cacheResult().__iterate(i,a);var s=!0,l=0;return e.__iterate(function(e,a,c){if(!s||!(s=t.call(n,e,a,c)))return l++,i(e,r?a:l-1,o)}),l},i.__iteratorUncached=function(i,a){var o=this;if(a)return this.cacheResult().__iterator(i,a);var s=e.__iterator(xn,a),l=!0,c=0;return new w(function(){var e,a,u;do{if(e=s.next(),e.done)return r||i===wn?e:i===bn?x(i,c++,void 0,e):x(i,c++,e.value[1],e);var f=e.value;a=f[0],u=f[1],l&&(l=t.call(n,u,a,o))}while(l);return i===xn?e:x(i,a,u,e)})},i}function vt(e,t){var r=o(e),i=[e].concat(t).map(function(e){return a(e)?r&&(e=n(e)):e=r?R(e):q(Array.isArray(e)?e:[e]),e}).filter(function(e){return 0!==e.size});if(0===i.length)return e;if(1===i.length){var l=i[0];if(l===e||r&&o(l)||s(e)&&s(l))return l}var c=new j(i);return r?c=c.toKeyedSeq():s(e)||(c=c.toSetSeq()),c=c.flatten(!0),c.size=i.reduce(function(e,t){if(void 0!==e){var n=t.size;if(void 0!==n)return e+n}},0),c}function gt(e,t,n){var r=At(e);return r.__iterateUncached=function(r,i){function o(e,c){var u=this;e.__iterate(function(e,i){return(!t||c0}function kt(e,n,r){var i=At(e);return i.size=new j(r).map(function(e){return e.size}).min(),i.__iterate=function(e,t){for(var n,r=this.__iterator(wn,t),i=0;!(n=r.next()).done&&e(n.value,i++,this)!==!1;);return i},i.__iteratorUncached=function(e,i){var a=r.map(function(e){return e=t(e),E(i?e.reverse():e)}),o=0,s=!1;return new w(function(){var t;return s||(t=a.map(function(e){return e.next()}),s=t.some(function(e){return e.done})),s?k():x(e,o++,n.apply(null,t.map(function(e){return e.value})))})},i}function St(e,t){return z(e)?t:e.constructor(t)}function Ct(e){if(e!==Object(e))throw new TypeError("Expected [K, V] tuple: "+e)}function Et(e){return ue(e.size),p(e)}function It(e){return o(e)?n:s(e)?r:i}function At(e){return Object.create((o(e)?M:s(e)?T:P).prototype)}function Ot(){return this._iter.cacheResult?(this._iter.cacheResult(),this.size=this._iter.size,this):O.prototype.cacheResult.call(this)}function Mt(e,t){return e>t?1:et?-1:0}function an(e){if(e.size===1/0)return 0;var t=c(e),n=o(e),r=t?1:0,i=e.__iterate(n?t?function(e,t){r=31*r+sn(ae(e),ae(t))|0}:function(e,t){r=r+sn(ae(e),ae(t))|0}:t?function(e){r=31*r+ae(e)|0}:function(e){r=r+ae(e)|0});return on(i,r)}function on(e,t){return t=Tn(t,3432918353),t=Tn(t<<15|t>>>-15,461845907),t=Tn(t<<13|t>>>-13,5),t=(t+3864292196|0)^e,t=Tn(t^t>>>16,2246822507),t=Tn(t^t>>>13,3266489909),t=ie(t^t>>>16)}function sn(e,t){return e^t+2654435769+(e<<6)+(e>>2)|0}var ln=Array.prototype.slice;e(n,t),e(r,t),e(i,t),t.isIterable=a,t.isKeyed=o,t.isIndexed=s,t.isAssociative=l,t.isOrdered=c,t.Keyed=n,t.Indexed=r,t.Set=i;var cn="@@__IMMUTABLE_ITERABLE__@@",un="@@__IMMUTABLE_KEYED__@@",fn="@@__IMMUTABLE_INDEXED__@@",dn="@@__IMMUTABLE_ORDERED__@@",hn="delete",pn=5,mn=1<r?k():x(e,i,n[t?r-i++:i++])})},e(D,M),D.prototype.get=function(e,t){return void 0===t||this.has(e)?this._object[e]:t},D.prototype.has=function(e){return this._object.hasOwnProperty(e)},D.prototype.__iterate=function(e,t){for(var n=this._object,r=this._keys,i=r.length-1,a=0;a<=i;a++){var o=r[t?i-a:a];if(e(n[o],o,this)===!1)return a+1}return a},D.prototype.__iterator=function(e,t){var n=this._object,r=this._keys,i=r.length-1,a=0;return new w(function(){var o=r[t?i-a:a];return a++>i?k():x(e,o,n[o])})},D.prototype[dn]=!0,e(L,T),L.prototype.__iterateUncached=function(e,t){if(t)return this.cacheResult().__iterate(e,t);var n=this._iterable,r=E(n),i=0;if(C(r))for(var a;!(a=r.next()).done&&e(a.value,i++,this)!==!1;);return i},L.prototype.__iteratorUncached=function(e,t){if(t)return this.cacheResult().__iterator(e,t);var n=this._iterable,r=E(n);if(!C(r))return new w(k);var i=0;return new w(function(){var t=r.next();return t.done?t:x(e,i++,t.value)})},e(N,T),N.prototype.__iterateUncached=function(e,t){if(t)return this.cacheResult().__iterate(e,t);for(var n=this._iterator,r=this._iteratorCache,i=0;i=r.length){var t=n.next();if(t.done)return t;r[i]=t.value}return x(e,i,r[i++])})};var In;e(X,T),X.prototype.toString=function(){return 0===this.size?"Repeat []":"Repeat [ "+this._value+" "+this.size+" times ]"},X.prototype.get=function(e,t){return this.has(e)?this._value:t},X.prototype.includes=function(e){return Y(this._value,e)},X.prototype.slice=function(e,t){var n=this.size;return g(e,t,n)?this:new X(this._value,_(t,n)-y(e,n))},X.prototype.reverse=function(){return this},X.prototype.indexOf=function(e){return Y(this._value,e)?0:-1},X.prototype.lastIndexOf=function(e){return Y(this._value,e)?this.size:-1},X.prototype.__iterate=function(e,t){for(var n=0;n=0&&t=0&&nn?k():x(e,a++,o)})},Z.prototype.equals=function(e){return e instanceof Z?this._start===e._start&&this._end===e._end&&this._step===e._step:J(this,e)};var On;e(ee,t),e(te,ee),e(ne,ee),e(re,ee),ee.Keyed=te,ee.Indexed=ne,ee.Set=re;var Mn,Tn="function"==typeof Math.imul&&Math.imul(4294967295,2)===-2?Math.imul:function(e,t){e|=0,t|=0;var n=65535&e,r=65535&t;return n*r+((e>>>16)*r+n*(t>>>16)<<16>>>0)|0},Pn=Object.isExtensible,jn=function(){try{return Object.defineProperty({},"@",{}),!0}catch(e){return!1}}(),Dn="function"==typeof WeakMap;Dn&&(Mn=new WeakMap);var Ln=0,Nn="__immutablehash__";"function"==typeof Symbol&&(Nn=Symbol(Nn));var zn=16,Fn=255,Rn=0,qn={};e(fe,te),fe.of=function(){var e=ln.call(arguments,0);return xe().withMutations(function(t){for(var n=0;n=e.length)throw new Error("Missing value for key: "+e[n]);t.set(e[n],e[n+1])}})},fe.prototype.toString=function(){return this.__toString("Map {","}")},fe.prototype.get=function(e,t){return this._root?this._root.get(0,void 0,e,t):t},fe.prototype.set=function(e,t){return ke(this,e,t)},fe.prototype.setIn=function(e,t){return this.updateIn(e,gn,function(){return t})},fe.prototype.remove=function(e){return ke(this,e,gn)},fe.prototype.deleteIn=function(e){return this.updateIn(e,function(){return gn})},fe.prototype.update=function(e,t,n){return 1===arguments.length?e(this):this.updateIn([e],t,n)},fe.prototype.updateIn=function(e,t,n){n||(n=t,t=void 0);var r=De(this,Tt(e),t,n);return r===gn?void 0:r},fe.prototype.clear=function(){return 0===this.size?this:this.__ownerID?(this.size=0,this._root=null,this.__hash=void 0,this.__altered=!0,this):xe()},fe.prototype.merge=function(){return Me(this,void 0,arguments)},fe.prototype.mergeWith=function(e){var t=ln.call(arguments,1);return Me(this,e,t)},fe.prototype.mergeIn=function(e){var t=ln.call(arguments,1);return this.updateIn(e,xe(),function(e){return"function"==typeof e.merge?e.merge.apply(e,t):t[t.length-1]})},fe.prototype.mergeDeep=function(){return Me(this,Te,arguments)},fe.prototype.mergeDeepWith=function(e){var t=ln.call(arguments,1);return Me(this,Pe(e),t)},fe.prototype.mergeDeepIn=function(e){var t=ln.call(arguments,1);return this.updateIn(e,xe(),function(e){return"function"==typeof e.mergeDeep?e.mergeDeep.apply(e,t):t[t.length-1]})},fe.prototype.sort=function(e){return Qe(bt(this,e))},fe.prototype.sortBy=function(e,t){return Qe(bt(this,t,e))},fe.prototype.withMutations=function(e){var t=this.asMutable();return e(t),t.wasAltered()?t.__ensureOwner(this.__ownerID):this},fe.prototype.asMutable=function(){return this.__ownerID?this:this.__ensureOwner(new d)},fe.prototype.asImmutable=function(){return this.__ensureOwner()},fe.prototype.wasAltered=function(){return this.__altered},fe.prototype.__iterator=function(e,t){return new ye(this,e,t)},fe.prototype.__iterate=function(e,t){var n=this,r=0;return this._root&&this._root.iterate(function(t){return r++,e(t[1],t[0],n)},t),r},fe.prototype.__ensureOwner=function(e){return e===this.__ownerID?this:e?we(this.size,this._root,e,this.__hash):(this.__ownerID=e,this.__altered=!1,this)},fe.isMap=de;var Un="@@__IMMUTABLE_MAP__@@",Vn=fe.prototype;Vn[Un]=!0,Vn[hn]=Vn.remove,Vn.removeIn=Vn.deleteIn,he.prototype.get=function(e,t,n,r){for(var i=this.entries,a=0,o=i.length;a=Gn)return Ie(e,l,r,i);var p=e&&e===this.ownerID,m=p?l:h(l);return d?s?c===u-1?m.pop():m[c]=m.pop():m[c]=[r,i]:m.push([r,i]),p?(this.entries=m,this):new he(e,m)}},pe.prototype.get=function(e,t,n,r){void 0===t&&(t=ae(n));var i=1<<((0===e?t:t>>>e)&vn),a=this.bitmap;return 0===(a&i)?r:this.nodes[Le(a&i-1)].get(e+pn,t,n,r)},pe.prototype.update=function(e,t,n,r,i,a,o){void 0===n&&(n=ae(r));var s=(0===t?n:n>>>t)&vn,l=1<=$n)return Oe(e,d,c,s,p);if(u&&!p&&2===d.length&&Ce(d[1^f]))return d[1^f];if(u&&p&&1===d.length&&Ce(p))return p;var m=e&&e===this.ownerID,v=u?p?c:c^l:c|l,g=u?p?Ne(d,f,p,m):Fe(d,f,m):ze(d,f,p,m);return m?(this.bitmap=v,this.nodes=g,this):new pe(e,v,g)},me.prototype.get=function(e,t,n,r){void 0===t&&(t=ae(n));var i=(0===e?t:t>>>e)&vn,a=this.nodes[i];return a?a.get(e+pn,t,n,r):r},me.prototype.update=function(e,t,n,r,i,a,o){void 0===n&&(n=ae(r));var s=(0===t?n:n>>>t)&vn,l=i===gn,c=this.nodes,u=c[s];if(l&&!u)return this;var f=Se(u,e,t+pn,n,r,i,a,o);if(f===u)return this;var d=this.count;if(u){if(!f&&(d--,d=0&&e>>t&vn;if(r>=this.array.length)return new Ue([],e);var i,a=0===r;if(t>0){var o=this.array[r];if(i=o&&o.removeBefore(e,t-pn,n),i===o&&a)return this}if(a&&!i)return this;var s=Ke(this,e);if(!a)for(var l=0;l>>t&vn;if(r>=this.array.length)return this;var i;if(t>0){var a=this.array[r];if(i=a&&a.removeAfter(e,t-pn,n),i===a&&r===this.array.length-1)return this}var o=Ke(this,e);return o.array.splice(r+1),i&&(o.array[r]=i),o};var Yn,Jn={};e(Qe,fe),Qe.of=function(){return this(arguments)},Qe.prototype.toString=function(){return this.__toString("OrderedMap {","}")},Qe.prototype.get=function(e,t){var n=this._map.get(e);return void 0!==n?this._list.get(n)[1]:t},Qe.prototype.clear=function(){return 0===this.size?this:this.__ownerID?(this.size=0,this._map.clear(),this._list.clear(),this):tt()},Qe.prototype.set=function(e,t){return nt(this,e,t)},Qe.prototype.remove=function(e){return nt(this,e,gn)},Qe.prototype.wasAltered=function(){return this._map.wasAltered()||this._list.wasAltered()},Qe.prototype.__iterate=function(e,t){var n=this;return this._list.__iterate(function(t){return t&&e(t[1],t[0],n)},t)},Qe.prototype.__iterator=function(e,t){return this._list.fromEntrySeq().__iterator(e,t)},Qe.prototype.__ensureOwner=function(e){if(e===this.__ownerID)return this;var t=this._map.__ensureOwner(e),n=this._list.__ensureOwner(e);return e?et(t,n,e,this.__hash):(this.__ownerID=e,this._map=t,this._list=n,this)},Qe.isOrderedMap=Ze,Qe.prototype[dn]=!0,Qe.prototype[hn]=Qe.prototype.remove;var Xn;e(rt,M),rt.prototype.get=function(e,t){return this._iter.get(e,t)},rt.prototype.has=function(e){return this._iter.has(e)},rt.prototype.valueSeq=function(){return this._iter.valueSeq()},rt.prototype.reverse=function(){var e=this,t=ct(this,!0);return this._useKeys||(t.valueSeq=function(){return e._iter.toSeq().reverse()}),t},rt.prototype.map=function(e,t){var n=this,r=lt(this,e,t);return this._useKeys||(r.valueSeq=function(){return n._iter.toSeq().map(e,t)}),r},rt.prototype.__iterate=function(e,t){var n,r=this;return this._iter.__iterate(this._useKeys?function(t,n){return e(t,n,r)}:(n=t?Et(this):0,function(i){return e(i,t?--n:n++,r)}),t)},rt.prototype.__iterator=function(e,t){if(this._useKeys)return this._iter.__iterator(e,t);var n=this._iter.__iterator(wn,t),r=t?Et(this):0;return new w(function(){var i=n.next();return i.done?i:x(e,t?--r:r++,i.value,i)})},rt.prototype[dn]=!0,e(it,T),it.prototype.includes=function(e){return this._iter.includes(e)},it.prototype.__iterate=function(e,t){var n=this,r=0;return this._iter.__iterate(function(t){return e(t,r++,n)},t)},it.prototype.__iterator=function(e,t){var n=this._iter.__iterator(wn,t),r=0;return new w(function(){var t=n.next();return t.done?t:x(e,r++,t.value,t)})},e(at,P),at.prototype.has=function(e){return this._iter.includes(e)},at.prototype.__iterate=function(e,t){var n=this;return this._iter.__iterate(function(t){return e(t,t,n)},t)},at.prototype.__iterator=function(e,t){var n=this._iter.__iterator(wn,t);return new w(function(){var t=n.next();return t.done?t:x(e,t.value,t.value,t)})},e(ot,M),ot.prototype.entrySeq=function(){return this._iter.toSeq()},ot.prototype.__iterate=function(e,t){var n=this;return this._iter.__iterate(function(t){if(t){Ct(t);var r=a(t);return e(r?t.get(1):t[1],r?t.get(0):t[0],n)}},t)},ot.prototype.__iterator=function(e,t){var n=this._iter.__iterator(wn,t);return new w(function(){for(;;){var t=n.next();if(t.done)return t;var r=t.value;if(r){Ct(r);var i=a(r);return x(e,i?r.get(0):r[0],i?r.get(1):r[1],t)}}})},it.prototype.cacheResult=rt.prototype.cacheResult=at.prototype.cacheResult=ot.prototype.cacheResult=Ot,e(Pt,te),Pt.prototype.toString=function(){return this.__toString(Dt(this)+" {","}")},Pt.prototype.has=function(e){return this._defaultValues.hasOwnProperty(e)},Pt.prototype.get=function(e,t){if(!this.has(e))return t;var n=this._defaultValues[e];return this._map?this._map.get(e,n):n},Pt.prototype.clear=function(){if(this.__ownerID)return this._map&&this._map.clear(),this;var e=this.constructor;return e._empty||(e._empty=jt(this,xe()))},Pt.prototype.set=function(e,t){if(!this.has(e))throw new Error('Cannot set unknown key "'+e+'" on '+Dt(this));if(this._map&&!this._map.has(e)){var n=this._defaultValues[e];if(t===n)return this}var r=this._map&&this._map.set(e,t);return this.__ownerID||r===this._map?this:jt(this,r)},Pt.prototype.remove=function(e){if(!this.has(e))return this; -var t=this._map&&this._map.remove(e);return this.__ownerID||t===this._map?this:jt(this,t)},Pt.prototype.wasAltered=function(){return this._map.wasAltered()},Pt.prototype.__iterator=function(e,t){var r=this;return n(this._defaultValues).map(function(e,t){return r.get(t)}).__iterator(e,t)},Pt.prototype.__iterate=function(e,t){var r=this;return n(this._defaultValues).map(function(e,t){return r.get(t)}).__iterate(e,t)},Pt.prototype.__ensureOwner=function(e){if(e===this.__ownerID)return this;var t=this._map&&this._map.__ensureOwner(e);return e?jt(this,t,e):(this.__ownerID=e,this._map=t,this)};var Qn=Pt.prototype;Qn[hn]=Qn.remove,Qn.deleteIn=Qn.removeIn=Vn.removeIn,Qn.merge=Vn.merge,Qn.mergeWith=Vn.mergeWith,Qn.mergeIn=Vn.mergeIn,Qn.mergeDeep=Vn.mergeDeep,Qn.mergeDeepWith=Vn.mergeDeepWith,Qn.mergeDeepIn=Vn.mergeDeepIn,Qn.setIn=Vn.setIn,Qn.update=Vn.update,Qn.updateIn=Vn.updateIn,Qn.withMutations=Vn.withMutations,Qn.asMutable=Vn.asMutable,Qn.asImmutable=Vn.asImmutable,e(zt,re),zt.of=function(){return this(arguments)},zt.fromKeys=function(e){return this(n(e).keySeq())},zt.prototype.toString=function(){return this.__toString("Set {","}")},zt.prototype.has=function(e){return this._map.has(e)},zt.prototype.add=function(e){return Rt(this,this._map.set(e,!0))},zt.prototype.remove=function(e){return Rt(this,this._map.remove(e))},zt.prototype.clear=function(){return Rt(this,this._map.clear())},zt.prototype.union=function(){var e=ln.call(arguments,0);return e=e.filter(function(e){return 0!==e.size}),0===e.length?this:0!==this.size||this.__ownerID||1!==e.length?this.withMutations(function(t){for(var n=0;n=0;n--)t={value:arguments[n],next:t};return this.__ownerID?(this.size=e,this._head=t,this.__hash=void 0,this.__altered=!0,this):Wt(e,t)},Ht.prototype.pushAll=function(e){if(e=r(e),0===e.size)return this;ue(e.size);var t=this.size,n=this._head;return e.reverse().forEach(function(e){t++,n={value:e,next:n}}),this.__ownerID?(this.size=t,this._head=n,this.__hash=void 0,this.__altered=!0,this):Wt(t,n)},Ht.prototype.pop=function(){return this.slice(1)},Ht.prototype.unshift=function(){return this.push.apply(this,arguments)},Ht.prototype.unshiftAll=function(e){return this.pushAll(e)},Ht.prototype.shift=function(){return this.pop.apply(this,arguments)},Ht.prototype.clear=function(){return 0===this.size?this:this.__ownerID?(this.size=0,this._head=void 0,this.__hash=void 0,this.__altered=!0,this):Yt()},Ht.prototype.slice=function(e,t){if(g(e,t,this.size))return this;var n=y(e,this.size),r=_(t,this.size);if(r!==this.size)return ne.prototype.slice.call(this,e,t);for(var i=this.size-n,a=this._head;n--;)a=a.next;return this.__ownerID?(this.size=i,this._head=a,this.__hash=void 0,this.__altered=!0,this):Wt(i,a)},Ht.prototype.__ensureOwner=function(e){return e===this.__ownerID?this:e?Wt(this.size,this._head,e,this.__hash):(this.__ownerID=e,this.__altered=!1,this)},Ht.prototype.__iterate=function(e,t){if(t)return this.reverse().__iterate(e);for(var n=0,r=this._head;r&&e(r.value,n++,this)!==!1;)r=r.next;return n},Ht.prototype.__iterator=function(e,t){if(t)return this.reverse().__iterator(e);var n=0,r=this._head;return new w(function(){if(r){var t=r.value;return r=r.next,x(e,n++,t)}return k()})},Ht.isStack=Kt;var ir="@@__IMMUTABLE_STACK__@@",ar=Ht.prototype;ar[ir]=!0,ar.withMutations=Vn.withMutations,ar.asMutable=Vn.asMutable,ar.asImmutable=Vn.asImmutable,ar.wasAltered=Vn.wasAltered;var or;t.Iterator=w,Jt(t,{toArray:function(){ue(this.size);var e=new Array(this.size||0);return this.valueSeq().__iterate(function(t,n){e[n]=t}),e},toIndexedSeq:function(){return new it(this)},toJS:function(){return this.toSeq().map(function(e){return e&&"function"==typeof e.toJS?e.toJS():e}).__toJS()},toJSON:function(){return this.toSeq().map(function(e){return e&&"function"==typeof e.toJSON?e.toJSON():e}).__toJS()},toKeyedSeq:function(){return new rt(this,!0)},toMap:function(){return fe(this.toKeyedSeq())},toObject:function(){ue(this.size);var e={};return this.__iterate(function(t,n){e[n]=t}),e},toOrderedMap:function(){return Qe(this.toKeyedSeq())},toOrderedSet:function(){return Vt(o(this)?this.valueSeq():this)},toSet:function(){return zt(o(this)?this.valueSeq():this)},toSetSeq:function(){return new at(this)},toSeq:function(){return s(this)?this.toIndexedSeq():o(this)?this.toKeyedSeq():this.toSetSeq()},toStack:function(){return Ht(o(this)?this.valueSeq():this)},toList:function(){return Re(o(this)?this.valueSeq():this)},toString:function(){return"[Iterable]"},__toString:function(e,t){return 0===this.size?e+t:e+" "+this.toSeq().map(this.__toStringMapper).join(", ")+" "+t},concat:function(){var e=ln.call(arguments,0);return St(this,vt(this,e))},includes:function(e){return this.some(function(t){return Y(t,e)})},entries:function(){return this.__iterator(xn)},every:function(e,t){ue(this.size);var n=!0;return this.__iterate(function(r,i,a){if(!e.call(t,r,i,a))return n=!1,!1}),n},filter:function(e,t){return St(this,ut(this,e,t,!0))},find:function(e,t,n){var r=this.findEntry(e,t);return r?r[1]:n},forEach:function(e,t){return ue(this.size),this.__iterate(t?e.bind(t):e)},join:function(e){ue(this.size),e=void 0!==e?""+e:",";var t="",n=!0;return this.__iterate(function(r){n?n=!1:t+=e,t+=null!==r&&void 0!==r?r.toString():""}),t},keys:function(){return this.__iterator(bn)},map:function(e,t){return St(this,lt(this,e,t))},reduce:function(e,t,n){ue(this.size);var r,i;return arguments.length<2?i=!0:r=t,this.__iterate(function(t,a,o){i?(i=!1,r=t):r=e.call(n,r,t,a,o)}),r},reduceRight:function(e,t,n){var r=this.toKeyedSeq().reverse();return r.reduce.apply(r,arguments)},reverse:function(){return St(this,ct(this,!0))},slice:function(e,t){return St(this,ht(this,e,t,!0))},some:function(e,t){return!this.every(Zt(e),t)},sort:function(e){return St(this,bt(this,e))},values:function(){return this.__iterator(wn)},butLast:function(){return this.slice(0,-1)},isEmpty:function(){return void 0!==this.size?0===this.size:!this.some(function(){return!0})},count:function(e,t){return p(e?this.toSeq().filter(e,t):this)},countBy:function(e,t){return ft(this,e,t)},equals:function(e){return J(this,e)},entrySeq:function(){var e=this;if(e._cache)return new j(e._cache);var t=e.toSeq().map(Qt).toIndexedSeq();return t.fromEntrySeq=function(){return e.toSeq()},t},filterNot:function(e,t){return this.filter(Zt(e),t)},findEntry:function(e,t,n){var r=n;return this.__iterate(function(n,i,a){if(e.call(t,n,i,a))return r=[i,n],!1}),r},findKey:function(e,t){var n=this.findEntry(e,t);return n&&n[0]},findLast:function(e,t,n){return this.toKeyedSeq().reverse().find(e,t,n)},findLastEntry:function(e,t,n){return this.toKeyedSeq().reverse().findEntry(e,t,n)},findLastKey:function(e,t){return this.toKeyedSeq().reverse().findKey(e,t)},first:function(){return this.find(v)},flatMap:function(e,t){return St(this,yt(this,e,t))},flatten:function(e){return St(this,gt(this,e,!0))},fromEntrySeq:function(){return new ot(this)},get:function(e,t){return this.find(function(t,n){return Y(n,e)},void 0,t)},getIn:function(e,t){for(var n,r=this,i=Tt(e);!(n=i.next()).done;){var a=n.value;if(r=r&&r.get?r.get(a,gn):gn,r===gn)return t}return r},groupBy:function(e,t){return dt(this,e,t)},has:function(e){return this.get(e,gn)!==gn},hasIn:function(e){return this.getIn(e,gn)!==gn},isSubset:function(e){return e="function"==typeof e.includes?e:t(e),this.every(function(t){return e.includes(t)})},isSuperset:function(e){return e="function"==typeof e.isSubset?e:t(e),e.isSubset(this)},keyOf:function(e){return this.findKey(function(t){return Y(t,e)})},keySeq:function(){return this.toSeq().map(Xt).toIndexedSeq()},last:function(){return this.toSeq().reverse().first()},lastKeyOf:function(e){return this.toKeyedSeq().reverse().keyOf(e)},max:function(e){return wt(this,e)},maxBy:function(e,t){return wt(this,t,e)},min:function(e){return wt(this,e?en(e):rn)},minBy:function(e,t){return wt(this,t?en(t):rn,e)},rest:function(){return this.slice(1)},skip:function(e){return this.slice(Math.max(0,e))},skipLast:function(e){return St(this,this.toSeq().reverse().skip(e).reverse())},skipWhile:function(e,t){return St(this,mt(this,e,t,!0))},skipUntil:function(e,t){return this.skipWhile(Zt(e),t)},sortBy:function(e,t){return St(this,bt(this,t,e))},take:function(e){return this.slice(0,Math.max(0,e))},takeLast:function(e){return St(this,this.toSeq().reverse().take(e).reverse())},takeWhile:function(e,t){return St(this,pt(this,e,t))},takeUntil:function(e,t){return this.takeWhile(Zt(e),t)},valueSeq:function(){return this.toIndexedSeq()},hashCode:function(){return this.__hash||(this.__hash=an(this))}});var sr=t.prototype;sr[cn]=!0,sr[Cn]=sr.values,sr.__toJS=sr.toArray,sr.__toStringMapper=tn,sr.inspect=sr.toSource=function(){return this.toString()},sr.chain=sr.flatMap,sr.contains=sr.includes,Jt(n,{flip:function(){return St(this,st(this))},mapEntries:function(e,t){var n=this,r=0;return St(this,this.toSeq().map(function(i,a){return e.call(t,[a,i],r++,n)}).fromEntrySeq())},mapKeys:function(e,t){var n=this;return St(this,this.toSeq().flip().map(function(r,i){return e.call(t,r,i,n)}).flip())}});var lr=n.prototype;lr[un]=!0,lr[Cn]=sr.entries,lr.__toJS=sr.toObject,lr.__toStringMapper=function(e,t){return JSON.stringify(t)+": "+tn(e)},Jt(r,{toKeyedSeq:function(){return new rt(this,!1)},filter:function(e,t){return St(this,ut(this,e,t,!1))},findIndex:function(e,t){var n=this.findEntry(e,t);return n?n[0]:-1},indexOf:function(e){var t=this.keyOf(e);return void 0===t?-1:t},lastIndexOf:function(e){var t=this.lastKeyOf(e);return void 0===t?-1:t},reverse:function(){return St(this,ct(this,!1))},slice:function(e,t){return St(this,ht(this,e,t,!1))},splice:function(e,t){var n=arguments.length;if(t=Math.max(0|t,0),0===n||2===n&&!t)return this;e=y(e,e<0?this.count():this.size);var r=this.slice(0,e);return St(this,1===n?r:r.concat(h(arguments,2),this.slice(e+t)))},findLastIndex:function(e,t){var n=this.findLastEntry(e,t);return n?n[0]:-1},first:function(){return this.get(0)},flatten:function(e){return St(this,gt(this,e,!1))},get:function(e,t){return e=m(this,e),e<0||this.size===1/0||void 0!==this.size&&e>this.size?t:this.find(function(t,n){return n===e},void 0,t)},has:function(e){return e=m(this,e),e>=0&&(void 0!==this.size?this.size===1/0||e=1e4)return d(e,t,n);var l=a.diff(e,t),f=0;return l.forEach(function(e){if("="===e.op)f++;else if("!="===e.op){if(u(e.val)&&u(e.newVal)){var t=d(e.val,e.newVal,s(o,f));i=i.concat(t)}else i.push(c("replace",s(o,f),e.newVal));f++}else"+"===e.op?(i.push(c("add",s(o,f),e.val)),f++):"-"===e.op&&i.push(c("remove",s(o,f)))}),i},p=function(e,t,n){var r=n||"";return e===t?[]:[c("replace",s(r,""),t)]},m=function(e,t,n){return r.is(e,t)?r.List():e==t||null!=e&&null!=t?f(e)&&f(t)?r.fromJS(h(e,t)):u(e)&&u(t)?r.fromJS(d(e,t)):r.fromJS(p(e,t,n)):r.fromJS([c("replace","/",t)])};e.exports=m},function(e,t,n){"use strict";var r=n(460),i=function(e){return r.Iterable.isKeyed(e)},a=function(e){return r.Iterable.isIndexed(e)},o=function(e,t,n){return"remove"===e?{op:e,path:t}:{op:e,path:t,value:n}};e.exports={isMap:i,isIndexed:a,op:o}},function(e,t,n){"use strict";function r(e,t){for(var n=e.size||0,r=t.size||0,o=a(n+1,r+1,0),s=0;s=0||u>=0;)c>=0&&u>=0&&i.is(t.get(c),n.get(u))?(o.push(new s({op:"=",val:t.get(c)})),c-=1,u-=1):c>=0&&u>=0&&c===u&&!i.is(t.get(c),n.get(u))?(o.push(new l({val:t.get(c),newVal:n.get(c)})),c-=1,u-=1):u>=0&&(c===-1||e[c+1][u]>=e[c][u+1])?(o.push(new s({op:"+",val:n.get(u)})),u-=1):c>=0&&(u===-1||e[c+1][u]');n.append(i)}),e=!0,!0)})})}},{key:"addedNodes",value:function(e){var t=this;e.forEach(function(e){"childList"===e.type&&(e.addedNodes&&(0,s.default)("body").trigger("mutation._grav",e.target,e,t),e.removedNodes&&(0,s.default)("body").trigger("mutation_removed._grav",{target:e.target,mutation:e},t))})}}]),t}();t.default=l;t.Instance=new l("form#blueprints")}).call(t,function(){return this}())},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(467),a=r(i),o=n(468),s=r(o),l=n(470),c=r(l),u=n(471),f=r(u),d=n(472),h=r(d),p=n(392),m=r(p),v=n(599),g=r(v),y=n(388),_=r(y),b=n(604),w=r(b),x=n(607),k=r(x),S=n(608),C=r(S),E=n(609),I=r(E),A=n(610),O=r(A),M=n(612),T=r(M),P=n(613),j=r(P);t.default={FilepickerField:{FilepickerField:a.default,Instance:i.Instance},SelectizeField:{SelectizeField:s.default,Instance:o.Instance},ArrayField:{ArrayField:c.default,Instance:l.Instance},CollectionsField:{CollectionsField:f.default,Instance:u.Instance},DateTimeField:{DateTimeField:h.default,Instance:d.Instance},EditorField:{EditorField:m.default,Instance:p.Instance},ColorpickerField:{ColorpickerField:g.default,Instance:v.Instance},FilesField:{FilesField:_.default,Instance:y.Instance},SelectUniqueField:{SelectUniqueField:C.default,Instance:S.Instance},MediapickerField:{MediapickerField:w.default,Instance:b.Instance},MultilevelField:{MultilevelField:k.default,Instance:x.Instance},IconpickerField:{IconpickerField:I.default,Instance:E.Instance},CronField:{CronField:O.default,Instance:A.Instance},TextField:{TextField:T.default,Instance:M.Instance},ParentsField:{ParentsField:j.default,Instance:P.Instance}}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.Instance=void 0;var a=function(){function e(e,t){for(var n=0;n2&&void 0!==arguments[2]?arguments[2]:"all",r=l.config.current_url+(".json/task"+l.config.param_sep+"getFilesInFolder"),o=e.closest("[data-grav-filepicker]"),s=o.data("name"),c=o.data("value"),f=JSON.stringify(l.uri_params||"{}");(0,u.default)(r,{method:"post",body:{name:s,params:f}},function(e){if("undefined"!=typeof e.files){var r=[];a=e.thumbs||{};for(var o=0;o0,f=!1,d=function(e,t){var n="";if(c&&i&&(!e.status||"available"===e.status)&&e.name.match(/\.(jpg|jpeg|png|gif)$/i)){var r=a[e.name]||l.config.base_url_relative+"/../"+i+"/"+e.name;n=''}return'
\n \n '+n+' '+t(e.name)+"\n \n
"};r.selectize({plugins:["required-fix"],valueField:"name",labelField:"name",searchField:"name",optgroups:[{$order:1,value:"pending",label:"Pending"},{$order:2,value:"available",label:"Available"}],optgroupField:"status",create:!1,preload:!1,render:{option:function(e,t){return d(e,t)},item:function(e,t){return d(e,t)}},onInitialize:function(){this.load(function(e){return o(r,function(t){return e(t)},"selected")})},onLoad:function(){if(!f){var e=this.getValue();this.updateOption(e,{name:e}),f=!0}},onFocus:function(){this.load(function(e){return o(r,function(t){return e(t)})})}})}}}]),e}();t.default=f;t.Instance=new f},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.Instance=void 0;var a=function(){function e(e,t){for(var n=0;n\n '+r+'\n \n '+i.replace("(","/").replace(")","")+"\n "+n.join(" ")+"\n \n "}},c=function(){function e(){var t=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};i(this,e),this.options=Object.assign({},n),this.elements=[],(0,s.default)("[data-grav-selectize]").each(function(e,n){return t.add(n)}),(0,s.default)("body").on("mutation._grav",this._onAddedNodes.bind(this))}return a(e,[{key:"add",value:function(e){e=(0,s.default)(e);var t=e.prop("tagName").toLowerCase(),n="input"===t||"select"===t,r=(n?e.closest("[data-grav-selectize]"):e).data("grav-selectize")||{},i=n?e:e.find("input, select");if("data[route]"===i.attr("name")&&(r=s.default.extend({},r,{render:l})),i.length&&!i.get(0).selectize){var a=s.default.merge(r.plugins?r.plugins:[],["required-fix"]);i.selectize(s.default.extend({},r,{plugins:a})),this.elements.push(i.data("selectize"))}}},{key:"_onAddedNodes",value:function(e,t){var n=this,r=(0,s.default)(t).find("select.fancy, input.fancy, [data-grav-selectize]");r.length&&r.each(function(e,t){return n.add(t)})}}]),e}();t.default=c;t.Instance=new c},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}var i=n(1),a=r(i),o=n(375),s=r(o);s.default.define("option_click",function(e){var t=this,n=t.setup;this.setup=function(){n.apply(t,arguments);var e=!1;t.$dropdown_content.on("mousedown click",function(n){var r=(0,a.default)(n.target);r.hasClass("clickable")||r.closest(".clickable").length?"mousedown"===n.type?(e=!0,t.isFocused=!1):(t.isFocused=!0,setTimeout(function(){e=!1})):(e=!1,t.isFocused=!0)}),t.$dropdown.off("mousedown click","[data-selectable]").on("mousedown click","[data-selectable]",function(){if(!e)return t.onOptionSelect.apply(t,arguments)}),t.$control_input.off("blur").on("blur",function(){if(!e)return t.onBlur.apply(t,arguments)})}})},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.Instance=void 0;var a=function(){function e(e,t){for(var n=0;n':"';return e+=this.isValueOnly()?'\n
\n \n '+t+"\n ":'\n
\n \n \n '+t+"\n ",e+='\n \n \n
'}}]),e}(),d=function(){function e(){var t=this;i(this,e),u.on("input",'[data-grav-array-type="key"], [data-grav-array-type="value"]',function(e){return t.actionInput(e)}),u.on("click touch",'[data-grav-array-action]:not([data-grav-array-action="sort"])',function(e){return t.actionEvent(e)}),this.arrays=(0,s.default)(),(0,s.default)('[data-grav-field="array"]').each(function(e,n){return t.addArray(n)}),(0,s.default)("body").on("mutation._grav",this._onAddedNodes.bind(this))}return a(e,[{key:"addArray",value:function(e){e=(0,s.default)(e),e.find('[data-grav-array-type="container"]').each(function(e,t){t=(0,s.default)(t),t.data("array-sort")||t[0].hasAttribute("data-array-nosort")||t.data("array-sort",new c.default(t.get(0),{handle:".fa-bars",animation:150}))})}},{key:"actionInput",value:function(e){var t=(0,s.default)(e.target),n=t.data("grav-array-type");this._setTemplate(t);var r=t.data("array-template"),i="key"===n?t:t.siblings('[data-grav-array-type="key"]:first'),a="value"===n?t:t.siblings('[data-grav-array-type="value"]:first'),o=r.isValueOnly()?this.getIndexFor(t):i.val();o=o.toString().replace(/\[/g,"%5B").replace(/]/g,"%5D");var l=r.getName()+"["+o+"]";a.attr("name",a.val()?l:r.getName()),this.refreshNames(r)}},{key:"actionEvent",value:function(e){e&&e.preventDefault();var t=(0,s.default)(e.target),n=t.data("grav-array-action"),r=t.parents('[data-grav-array-type="container"]');this._setTemplate(t),this[n+"Action"](t);var i=r.find("> div");r[i.length>1?"removeClass":"addClass"]("one-child")}},{key:"addAction",value:function(e){var t=e.data("array-template"),n=e.closest('[data-grav-array-type="row"]');n.after(t.getNewRow())}},{key:"remAction",value:function(e){var t=e.data("array-template"),n=e.closest('[data-grav-array-type="row"]'),r=!n.siblings().length;if(r){var i=(0,s.default)(t.getNewRow());n.after(i),i.find('[data-grav-array-type="value"]:last').attr("name",t.getName())}n.remove(),this.refreshNames(t)}},{key:"refreshNames",value:function(e){if(e.isValueOnly()){var t=e.container.find('> div > [data-grav-array-type="row"]'),n=t.find('[name]:not([name=""])');n.each(function(e,t){t=(0,s.default)(t);var n=t.attr("name");n=n.replace(/\[\d+\]$/,"["+e+"]"),t.attr("name",n)}),n.length||t.find('[data-grav-array-type="value"]').attr("name",e.getName())}}},{key:"getIndexFor",value:function(e){var t=e.data("array-template"),n=e.closest('[data-grav-array-type="row"]');return t.container.find((t.isValueOnly()?"> div ":"")+' > [data-grav-array-type="row"]').index(n)}},{key:"_setTemplate",value:function(e){e.data("array-template")||e.data("array-template",new f(e.closest("[data-grav-array-name]"))); -}},{key:"_onAddedNodes",value:function(e,t){var n=this,r=(0,s.default)(t).find('[data-grav-field="array"]');r.length&&r.each(function(e,t){t=(0,s.default)(t),~n.arrays.index(t)||n.addArray(t)})}}]),e}();t.default=d;t.Instance=new d},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.Instance=void 0;var a=function(){function e(e,t){for(var n=0;n .collection-actions [data-action="add"]',function(e){return t.addItem(e)}),e.on("click",'> ul > li > .item-actions [data-action="delete"]',function(e){return t.removeItem(e)}),e.on("click",'> ul > li > .item-actions [data-action="collapse"]',function(e){return t.collapseItem(e)}),e.on("click",'> ul > li > .item-actions [data-action="expand"]',function(e){return t.expandItem(e)}),e.on("click",'> .collection-actions [data-action-sort="date"]',function(e){return t.sortItems(e)}),e.on("click",'> .collection-actions [data-action="collapse_all"]',function(e){return t.collapseItems(e)}),e.on("click",'> .collection-actions [data-action="expand_all"]',function(e){return t.expandItems(e)}),e.on("input change","[data-key-observe]",function(e){return t.observeKey(e)}),e.find("[data-collection-holder]").each(function(e,n){n=(0,s.default)(n),n.data("collection-sort")||n[0].hasAttribute("data-collection-nosort")||n.data("collection-sort",new c.default(n.get(0),{forceFallback:!1,handle:".collection-sort",animation:150,onUpdate:function(){return t.reindex(n)}}))}),this._updateActionsStateBasedOnMinMax(e)}},{key:"addItem",value:function(e){var t=(0,s.default)(e.currentTarget),n=t.data("action-add")||"bottom",r=(0,s.default)(t.closest('[data-type="collection"]')),i=(0,s.default)(r.find('> [data-collection-template="new"]').data("collection-template-html"));this._updateActionsStateBasedOnMinMax(r);var a=r.closest('[data-type="collection"]').find("> ul > [data-collection-item]"),o=r.data("max");if(!("undefined"!=typeof o&&a.length>=o)){r.find("> [data-collection-holder]")["top"===n?"prepend":"append"](i),this.reindex(r),a=r.closest('[data-type="collection"]').find("> ul > [data-collection-item]");var l=r.closest('[data-type="collection"]').find('[data-action-add="top"]'),c=r.closest('[data-type="collection"]').find('[data-action="sort"]');a.length&&(l.length&&l.parent().removeClass("hidden"),c.length&&a.length>1&&c.removeClass("hidden")),(0,s.default)('[data-grav-field="toggleable"] input[type="checkbox"]').trigger("change")}}},{key:"removeItem",value:function(e){var t=(0,s.default)(e.currentTarget),n=t.closest("[data-collection-item]"),r=(0,s.default)(t.closest('[data-type="collection"]')),i=r.closest('[data-type="collection"]').find("> ul > [data-collection-item]"),a=r.data("min");if(!("undefined"!=typeof a&&i.length<=a)){n.remove(),this.reindex(r),i=r.closest('[data-type="collection"]').find("> ul > [data-collection-item]");var o=r.closest('[data-type="collection"]').find('[data-action-add="top"]'),l=r.closest('[data-type="collection"]').find('[data-action="sort"]');i.length||o.length&&o.parent().addClass("hidden"),l.length&&i.length<=1&&l.addClass("hidden"),this._updateActionsStateBasedOnMinMax(r)}}},{key:"collapseItems",value:function(e){var t=(0,s.default)(e.currentTarget),n=(0,s.default)(t.closest('[data-type="collection"]')).find('> ul > [data-collection-item] > .item-actions [data-action="collapse"]');n.click()}},{key:"collapseItem",value:function(e){var t=(0,s.default)(e.currentTarget),n=t.closest("[data-collection-item]");t.attr("data-action","expand").removeClass("fa-chevron-circle-down").addClass("fa-chevron-circle-right"),n.addClass("collection-collapsed")}},{key:"expandItems",value:function(e){var t=(0,s.default)(e.currentTarget),n=(0,s.default)(t.closest('[data-type="collection"]')).find('> ul > [data-collection-item] > .item-actions [data-action="expand"]');n.click()}},{key:"expandItem",value:function(e){var t=(0,s.default)(e.currentTarget),n=t.closest("[data-collection-item]");t.attr("data-action","collapse").removeClass("fa-chevron-circle-right").addClass("fa-chevron-circle-down"),n.removeClass("collection-collapsed")}},{key:"sortItems",value:function(e){var t=(0,s.default)(e.currentTarget),n=t.data("action-sort"),r=t.data("action-sort-dir")||"asc",i=(0,s.default)(t.closest('[data-type="collection"]')),a=i.closest('[data-type="collection"]').find("> ul > [data-collection-item]");a.sort(function(e,t){var i=(0,s.default)(e).find('[name$="['+n+']"]'),a=(0,s.default)(t).find('[name$="['+n+']"]'),o=void 0;return o="asc"===r?i.val()a.val()?1:0:i.val()>a.val()?-1:i.val() ul > [data-collection-item]"),t.each(function(e,t){t=(0,s.default)(t);var n=t.find("[data-key-observe]"),r=n.val(),i=n.length,a=t.data("collection-key-backup");t.attr("data-collection-key",i?r:e),["name","data-grav-field-name","for","id","data-grav-file-settings","data-grav-array-name"].forEach(function(e){t.find("["+e+"], [_"+e+"]").each(function(){var t=(0,s.default)(this),n=[],o=null,l=[new RegExp("\\[(\\d+|\\*|"+a+")\\]","g"),new RegExp("\\.(\\d+|\\*|"+a+")\\.","g")];if("name"===e&&t.data("gravArrayType")){var c=t.attr(e).match(/\[[0-9]{1,}\]$/),u=t.closest("[data-grav-array-name]").data("gravArrayName");if(c&&u)return o=c[0],void t.attr(e,""+u+c[0])}if(i&&!r)return t.attr("_"+e,t.attr(e)),void t.attr(e,null);t.attr("_"+e)&&(t.attr(e,t.attr("_"+e)),t.attr("_"+e,null)),t.parents("[data-collection-key]").map(function(e,t){return n.push((0,s.default)(t).attr("data-collection-key"))}),n.reverse();var f=a,d=t.attr(e).replace(l[0],function(){var e="";return o&&(e=o,console.log(n,e)),f=n.shift()||f,"["+f+"]"+e});d=d.replace(l[1],function(){return f=n.shift()||f,"."+f+"."}),t.attr(e,d)})})})}},{key:"_onAddedNodes",value:function(e,t){var n=this,r=(0,s.default)(t).find('[data-type="collection"]');r.length&&r.each(function(e,t){t=(0,s.default)(t),~n.lists.index(t)||n.addList(t)})}},{key:"_updateActionsStateBasedOnMinMax",value:function(e){var t=e.closest('[data-type="collection"]').find("> ul > [data-collection-item]"),n=e.data("min"),r=e.data("max");e.find('> .collection-actions [data-action="add"]').attr("disabled",!1),e.find('> ul > li > .item-actions [data-action="delete"]').attr("disabled",!1),"undefined"!=typeof n&&t.length<=n&&e.find('> ul > li > .item-actions [data-action="delete"]').attr("disabled",!0),"undefined"!=typeof r&&t.length>=r&&e.find('> .collection-actions [data-action="add"]').attr("disabled",!0)}}]),e}();t.default=u;t.Instance=new u},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.Instance=void 0;var a=function(){function e(e,t){for(var n=0;n-1,p=(0,s.default)("body"),m="mousedown touchstart MSPointerDown pointerdown",v="mousemove touchmove MSPointerMove pointermove",g="mouseup touchend MSPointerUp pointerup",y=h?"focus":"focusin",_=function(){function e(t){var n=this;i(this,e),this.selector=t,this.field=(0,s.default)(this.selector),this.options=Object.assign({},this.field.data("grav-colorpicker")),this.built=!1,this.attach(),this.options.update&&this.field.on("change._grav_colorpicker",function(e,t,r,i){var a=r,o=(0,d.hex2rgb)(r);i<1&&(a="rgba("+o.r+", "+o.g+", "+o.b+", "+i+")");var s=t.closest(n.options.update);s.length||(s=t.siblings(n.options.update)),s.length||(s=t.parent(".g-colorpicker").find(n.options.update)),s.css({backgroundColor:a})})}return a(e,[{key:"attach",value:function(){var e=this;p.on(y,this.selector,function(t){return e.show(t,t.currentTarget)}),p.on(m,this.selector+" .g-colorpicker, "+this.selector+" .g-colorpicker i",this.bound("iconClick")),p.on("keydown",this.selector,function(t){switch(t.keyCode){case 9:e.hide();break;case 13:case 27:e.hide(),t.currentTarget.blur()}return!0}),p.on("keyup",this.selector,function(t){return e.updateFromInput(!0,t.currentTarget),!0}),p.on("paste",this.selector,function(t){setTimeout(function(){return e.updateFromInput(!0,t.currentTarget)},1)})}},{key:"show",value:function(e,t){t=(0,s.default)(t),this.built||this.build(),this.element=t,this.reposition(),this.wrapper.addClass("cp-visible"),this.updateFromInput();var n=(0,s.default)("#admin-main .content-wrapper").data("scrollbar").getViewElement();this.wrapper.on(m,".cp-grid, .cp-slider, .cp-opacity-slider",this.bound("bodyDown")),p.on(v,this.bound("bodyMove")),p.on(m,this.bound("bodyClick")),p.on(g,this.bound("targetReset")),(0,s.default)(n).on("scroll",this.bound("reposition"))}},{key:"hide",value:function(){if(this.built){this.wrapper.removeClass("cp-visible");var e=(0,s.default)("#admin-main .content-wrapper").data("scrollbar").getViewElement();this.wrapper.undelegate(m,".cp-grid, .cp-slider, .cp-opacity-slider",this.bound("bodyDown")),p.off(v,this.bound("bodyMove")),p.off(m,this.bound("bodyClick")),p.off(g,this.bound("targetReset")),(0,s.default)(e).off("scroll",this.bound("reposition"))}}},{key:"build",value:function(){var e=this;this.wrapper=(0,s.default)('
'),this.slider=(0,s.default)('
').appendTo(this.wrapper).append((0,s.default)('
')),this.opacitySlider=(0,s.default)('
').appendTo(this.wrapper).append((0,s.default)('
')),this.grid=(0,s.default)('
').appendTo(this.wrapper).append((0,s.default)('
')).append((0,s.default)('
')),(0,s.default)("
").appendTo(this.grid.find(".cp-picker"));var t=(0,s.default)('
').appendTo(this.wrapper);this.tabs={hue:(0,s.default)('
').text("HUE").appendTo(t),brightness:(0,s.default)('
').text("BRI").appendTo(t),saturation:(0,s.default)('
').text("SAT").appendTo(t),wheel:(0,s.default)('
').text("WHEEL").appendTo(t),transparent:(0,s.default)('
').text("TRANSPARENT").appendTo(t)},t.on(m,"> div",function(n){var r=(0,s.default)(n.currentTarget);if(r.is(e.tabs.transparent)){var i=e.opacitySlider.height();return e.opacity=0,e.opacitySlider.find(".cp-picker").css({top:(0,c.default)(i-i*e.opacity,0,i)}),void e.move(e.opacitySlider,{manualOpacity:!0})}var a=t.find(".active"),o=a.attr("class").replace(/\s|active|cp-tab-/g,""),l=r.attr("class").replace(/\s|active|cp-tab-/g,"");e.wrapper.removeClass("cp-mode-"+o).addClass("cp-mode-"+l),a.removeClass("active"),r.addClass("active"),e.mode=l,e.updateFromInput()}),this.wrapper.appendTo(".content-wrapper"),this.built=!0,this.mode="hue"}},{key:"reposition",value:function(){var e=(0,s.default)(".content-wrapper")[0],t=this.element[0].getBoundingClientRect(),n=e.getBoundingClientRect(),r={x:0,y:0};this.options.offset&&(r.x=this.options.offset.x||0,r.y=this.options.offset.y||0),this.wrapper.css({top:t.top+t.height+e.scrollTop-n.top+r.y,left:t.left+e.scrollLeft-n.left+r.x})}},{key:"iconClick",value:function(e){if(this.wrapper&&this.wrapper.hasClass("cp-visible"))return!0;e&&e.preventDefault();var t=(0,s.default)(e.currentTarget).find("input");setTimeout(function(){return t.focus()},50)}},{key:"bodyMove",value:function(e){e&&e.preventDefault(),this.target&&this.move(this.target,e)}},{key:"bodyClick",value:function(e){var t=(0,s.default)(e.target);t.closest(".cp-wrapper").length||t.is(this.selector)||this.hide()}},{key:"bodyDown",value:function(e){e&&e.preventDefault(),this.target=(0,s.default)(e.currentTarget),this.move(this.target,e,!0)}},{key:"targetReset",value:function(e){e&&e.preventDefault(),this.target=null}},{key:"move",value:function(e,t){var n=this.element,r=e.find(".cp-picker"),i=e[0].getBoundingClientRect(),a=i.left+window.scrollX,o=i.top+window.scrollY,s=Math.round((t?t.pageX:0)-a),l=Math.round((t?t.pageY:0)-o),c=void 0,u=void 0,f=void 0,d=void 0,h=t.changedTouches||t.originalEvent&&t.originalEvent.changedTouches;t&&h&&(s=(h?h[0].pageX:0)-a,l=(h?h[0].pageY:0)-o),t&&t.manualOpacity&&(l=i.height),s<0&&(s=0),l<0&&(l=0),s>i.width&&(s=i.width),l>i.height&&(l=i.height),e.parent(".cp-mode-wheel").length&&r.parent(".cp-grid").length&&(c=75-s,u=75-l,f=Math.sqrt(c*c+u*u),d=Math.atan2(u,c),d<0&&(d+=2*Math.PI),f>75&&(s=75-75*Math.cos(d),l=75-75*Math.sin(d)),s=Math.round(s),l=Math.round(l)),e.hasClass("cp-grid")?(r.css({top:l,left:s}),this.updateFromPicker(n,e)):(r.css({top:l}),this.updateFromPicker(n,e))}},{key:"updateFromInput",value:function(e,t){t=t?(0,s.default)(t):this.element;var n=t.val(),r=n.replace(/\s/g,"").match(/^rgba?\([0-9]{1,3},[0-9]{1,3},[0-9]{1,3},(.+)\)/),i=void 0,a=void 0;if(n=(0,d.rgbstr2hex)(n)||n,r=r?(0,c.default)(r[1],0,1):1,(i=(0,d.parseHex)(n))||(i="#ffffff"),a=(0,d.hex2hsb)(i),this.built){this.opacity=r;var o=this.opacitySlider.height();this.opacitySlider.find(".cp-picker").css({top:(0,c.default)(o-o*this.opacity,0,o)});var l=this.grid.height(),u=this.grid.width(),f=void 0,h=void 0,p=void 0,m=void 0;switch(o=this.slider.height(),this.mode){case"wheel":f=(0,c.default)(Math.ceil(.75*a.s),0,l/2),h=a.h*Math.PI/180,p=(0,c.default)(75-Math.cos(h)*f,0,u),m=(0,c.default)(75-Math.sin(h)*f,0,l),this.grid.css({backgroundColor:"transparent"}).find(".cp-picker").css({top:m,left:p}),m=150-a.b/(100/l),""===i&&(m=0),this.slider.find(".cp-picker").css({top:m}),this.slider.css({backgroundColor:(0,d.hsb2hex)({h:a.h,s:a.s,b:100})});break;case"saturation":p=(0,c.default)(5*a.h/12,0,150),m=(0,c.default)(l-Math.ceil(a.b/(100/l)),0,l),this.grid.find(".cp-picker").css({top:m,left:p}),m=(0,c.default)(o-a.s*(o/100),0,o),this.slider.find(".cp-picker").css({top:m}),this.slider.css({backgroundColor:(0,d.hsb2hex)({h:a.h,s:100,b:a.b})}),this.grid.find(".cp-grid-inner").css({opacity:a.s/100});break;case"brightness":p=(0,c.default)(5*a.h/12,0,150),m=(0,c.default)(l-Math.ceil(a.s/(100/l)),0,l),this.grid.find(".cp-picker").css({top:m,left:p}),m=(0,c.default)(o-a.b*(o/100),0,o),this.slider.find(".cp-picker").css({top:m}),this.slider.css({backgroundColor:(0,d.hsb2hex)({h:a.h,s:a.s,b:100})}),this.grid.find(".cp-grid-inner").css({opacity:1-a.b/100});break;case"hue":default:p=(0,c.default)(Math.ceil(a.s/(100/u)),0,u),m=(0,c.default)(l-Math.ceil(a.b/(100/l)),0,l),this.grid.find(".cp-picker").css({top:m,left:p}),m=(0,c.default)(o-a.h/(360/o),0,o),this.slider.find(".cp-picker").css({top:m}),this.grid.css({backgroundColor:(0,d.hsb2hex)({h:a.h,s:100,b:100})})}}e||t.val(this.getValue(i)),(this.element||t).trigger("change._grav_colorpicker",[t,i,r])}},{key:"updateFromPicker",value:function(e,t){var n=function(e,t){var n,r;return e.length&&t?(n=e[0].getBoundingClientRect().left,r=e[0].getBoundingClientRect().top,{x:n-t[0].getBoundingClientRect().left+e[0].offsetWidth/2,y:r-t[0].getBoundingClientRect().top+e[0].offsetHeight/2}):null},r=void 0,i=void 0,a=void 0,o=void 0,s=void 0,l=void 0,u=void 0,f=void 0,h=this.wrapper.find(".cp-grid"),p=this.wrapper.find(".cp-slider"),m=this.wrapper.find(".cp-opacity-slider"),v=h.find(".cp-picker"),g=p.find(".cp-picker"),y=m.find(".cp-picker"),_=n(v,h),b=n(g,p),w=n(y,m),x=h[0].getBoundingClientRect().width,k=h[0].getBoundingClientRect().height,S=p[0].getBoundingClientRect().height,C=m[0].getBoundingClientRect().height,E=this.element.val();if(E=(0,d.rgbstr2hex)(E)||E,(r=(0,d.parseHex)(E))||(r="#ffffff"),t.hasClass("cp-grid")||t.hasClass("cp-slider"))switch(this.mode){case"wheel":s=x/2-_.x,l=k/2-_.y,u=Math.sqrt(s*s+l*l),f=Math.atan2(l,s),f<0&&(f+=2*Math.PI),u>75&&(u=75,_.x=69-75*Math.cos(f),_.y=69-75*Math.sin(f)),a=(0,c.default)(u/.75,0,100),i=(0,c.default)(180*f/Math.PI,0,360),o=(0,c.default)(100-Math.floor(b.y*(100/S)),0,100),r=(0,d.hsb2hex)({h:i,s:a,b:o}),p.css({backgroundColor:(0,d.hsb2hex)({h:i,s:a,b:100})});break;case"saturation":i=(0,c.default)(parseInt(_.x*(360/x),10),0,360),a=(0,c.default)(100-Math.floor(b.y*(100/S)),0,100),o=(0,c.default)(100-Math.floor(_.y*(100/k)),0,100),r=(0,d.hsb2hex)({h:i,s:a,b:o}),p.css({backgroundColor:(0,d.hsb2hex)({h:i,s:100,b:o})}),h.find(".cp-grid-inner").css({opacity:a/100});break;case"brightness":i=(0,c.default)(parseInt(_.x*(360/x),10),0,360),a=(0,c.default)(100-Math.floor(_.y*(100/k)),0,100),o=(0,c.default)(100-Math.floor(b.y*(100/S)),0,100),r=(0,d.hsb2hex)({h:i,s:a,b:o}),p.css({backgroundColor:(0,d.hsb2hex)({h:i,s:a,b:100})}),h.find(".cp-grid-inner").css({opacity:1-o/100});break;default:i=(0,c.default)(360-parseInt(b.y*(360/S),10),0,360),a=(0,c.default)(Math.floor(_.x*(100/x)),0,100),o=(0,c.default)(100-Math.floor(_.y*(100/k)),0,100),r=(0,d.hsb2hex)({h:i,s:a,b:o}),h.css({backgroundColor:(0,d.hsb2hex)({h:i,s:100,b:100})})}t.hasClass("cp-opacity-slider")&&(this.opacity=parseFloat(1-w.y/C).toFixed(2)),e.val(this.getValue(r)),this.element.trigger("change._grav_colorpicker",[this.element,r,this.opacity])}},{key:"getValue",value:function(e){if(1===this.opacity)return e;var t=(0,d.hex2rgb)(e);return"rgba("+t.r+", "+t.g+", "+t.b+", "+this.opacity+")"}},{key:"bound",value:function e(t){var e=this._bound||(this._bound={});return e[t]||(e[t]=(0,f.default)(this[t],this))}}]),e}();t.default=_;t.Instance=new _("[data-grav-colorpicker]")},function(e,t){function n(e,t,n){return en?n:e}e.exports=n},function(e,t,n){function r(e,t,n){var r=i(arguments,2);return function(){return e.apply(t,r.concat(i(arguments)))}}var i=n(602);e.exports=r},function(e,t){function n(e,t,n){var r=e.length;t=null==t?0:t<0?Math.max(r+t,0):Math.min(t,r),n=null==n?r:n<0?Math.max(r+n,0):Math.min(n,r);for(var i=[];t-1?e.substring(1):e,16),{r:e>>16,g:(65280&e)>>8,b:255&e}}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}var i=n(1),a=r(i),o=n(605),s=r(o),l=n(373),c={tree:".pages-list-container .mediapicker-scroll",thumb:".thumbs-list-container .mediapicker-scroll"};(0,a.default)(function(){var e="",t=(0,a.default)("body"),n=[],r=[];(0,a.default)(c.tree).each(function(e,t){n.push(new s.default(t,{autoshow:!0}))}),(0,a.default)(c.thumb).each(function(e,t){r.push(new s.default(t,{autoshow:!0}))}),(0,a.default)(document).on("input change",".media-container .media-range",function(e){var t=(0,a.default)(e.currentTarget),i=t.closest(".remodal"),o=i.find(".media-container div.card-item"),s=t.val()+"px";o.each(function(){(0,a.default)(this).css("width",s)}),n.forEach(function(e){return e.update()}),r.forEach(function(e){return e.update()})}),(0,a.default)(document).on("opened",".remodal",function(){setTimeout(function(){n.forEach(function(e){return e.update()}),r.forEach(function(e){return e.update()})},10)}),t.on("click","[data-mediapicker-modal-trigger]",function(i){var o=(0,a.default)(i.currentTarget),u=(0,a.default)(this).data("grav-mediapicker-unique-identifier"),f=t.find('[data-remodal-unique-identifier="'+u+'"]');e=a.default.remodal.lookup[f.data("remodal")],e||(f.remodal(),e=a.default.remodal.lookup[f.data("remodal")]),(0,a.default)(c.tree).filter(function(e,t){return!(0,a.default)(t).data("scrollbar")}).each(function(e,t){n.push(new s.default(t,{autoshow:!0}))}),(0,a.default)(c.thumb).filter(function(e,t){return!(0,a.default)(t).data("scrollbar")}).each(function(e,t){r.push(new s.default(t,{autoshow:!0}))}),e.open(),e.dataField=o.find("input"),n.forEach(function(e){return e.update()}),r.forEach(function(e){return e.update()}),f.find(".js__files").trigger("fillView"),setTimeout(function(){return l.Instance.reload()},100)}),t.on("click","[data-remodal-mediapicker] .media-container.in-modal .admin-media-details a",function(t){t.preventDefault(),t.stopPropagation();var n=(0,a.default)(t.target).parents(".js__media-element").data("file-url"),r=n.replace(/ /g,"%20");e.dataField.val(r),e.close()})})},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.Instance=void 0;var a=function(){function e(e,t){for(var n=0;n=0;n--)t={value:arguments[n],next:t};return this.__ownerID?(this.size=e,this._head=t,this.__hash=void 0,this.__altered=!0,this):Wt(e,t)},Ht.prototype.pushAll=function(e){if(e=r(e),0===e.size)return this;ue(e.size);var t=this.size,n=this._head;return e.reverse().forEach(function(e){t++,n={value:e,next:n}}),this.__ownerID?(this.size=t,this._head=n,this.__hash=void 0,this.__altered=!0,this):Wt(t,n)},Ht.prototype.pop=function(){return this.slice(1)},Ht.prototype.unshift=function(){return this.push.apply(this,arguments)},Ht.prototype.unshiftAll=function(e){return this.pushAll(e)},Ht.prototype.shift=function(){return this.pop.apply(this,arguments)},Ht.prototype.clear=function(){return 0===this.size?this:this.__ownerID?(this.size=0,this._head=void 0,this.__hash=void 0,this.__altered=!0,this):Yt()},Ht.prototype.slice=function(e,t){if(g(e,t,this.size))return this;var n=y(e,this.size),r=_(t,this.size);if(r!==this.size)return ne.prototype.slice.call(this,e,t);for(var i=this.size-n,a=this._head;n--;)a=a.next;return this.__ownerID?(this.size=i,this._head=a,this.__hash=void 0,this.__altered=!0,this):Wt(i,a)},Ht.prototype.__ensureOwner=function(e){return e===this.__ownerID?this:e?Wt(this.size,this._head,e,this.__hash):(this.__ownerID=e,this.__altered=!1,this)},Ht.prototype.__iterate=function(e,t){if(t)return this.reverse().__iterate(e);for(var n=0,r=this._head;r&&e(r.value,n++,this)!==!1;)r=r.next;return n},Ht.prototype.__iterator=function(e,t){if(t)return this.reverse().__iterator(e);var n=0,r=this._head;return new w(function(){if(r){var t=r.value;return r=r.next,x(e,n++,t)}return k()})},Ht.isStack=Kt;var ir="@@__IMMUTABLE_STACK__@@",ar=Ht.prototype;ar[ir]=!0,ar.withMutations=Vn.withMutations,ar.asMutable=Vn.asMutable,ar.asImmutable=Vn.asImmutable,ar.wasAltered=Vn.wasAltered;var or;t.Iterator=w,Jt(t,{toArray:function(){ue(this.size);var e=new Array(this.size||0);return this.valueSeq().__iterate(function(t,n){e[n]=t}),e},toIndexedSeq:function(){return new it(this)},toJS:function(){return this.toSeq().map(function(e){return e&&"function"==typeof e.toJS?e.toJS():e}).__toJS()},toJSON:function(){return this.toSeq().map(function(e){return e&&"function"==typeof e.toJSON?e.toJSON():e}).__toJS()},toKeyedSeq:function(){return new rt(this,!0)},toMap:function(){return fe(this.toKeyedSeq())},toObject:function(){ue(this.size);var e={};return this.__iterate(function(t,n){e[n]=t}),e},toOrderedMap:function(){return Qe(this.toKeyedSeq())},toOrderedSet:function(){return Vt(o(this)?this.valueSeq():this)},toSet:function(){return zt(o(this)?this.valueSeq():this)},toSetSeq:function(){return new at(this)},toSeq:function(){return s(this)?this.toIndexedSeq():o(this)?this.toKeyedSeq():this.toSetSeq()},toStack:function(){return Ht(o(this)?this.valueSeq():this)},toList:function(){return Re(o(this)?this.valueSeq():this)},toString:function(){return"[Iterable]"},__toString:function(e,t){return 0===this.size?e+t:e+" "+this.toSeq().map(this.__toStringMapper).join(", ")+" "+t},concat:function(){var e=ln.call(arguments,0);return St(this,vt(this,e))},includes:function(e){return this.some(function(t){return Y(t,e)})},entries:function(){return this.__iterator(xn)},every:function(e,t){ue(this.size);var n=!0;return this.__iterate(function(r,i,a){if(!e.call(t,r,i,a))return n=!1,!1}),n},filter:function(e,t){return St(this,ut(this,e,t,!0))},find:function(e,t,n){var r=this.findEntry(e,t);return r?r[1]:n},forEach:function(e,t){return ue(this.size),this.__iterate(t?e.bind(t):e)},join:function(e){ue(this.size),e=void 0!==e?""+e:",";var t="",n=!0;return this.__iterate(function(r){n?n=!1:t+=e,t+=null!==r&&void 0!==r?r.toString():""}),t},keys:function(){return this.__iterator(bn)},map:function(e,t){return St(this,lt(this,e,t))},reduce:function(e,t,n){ue(this.size);var r,i;return arguments.length<2?i=!0:r=t,this.__iterate(function(t,a,o){i?(i=!1,r=t):r=e.call(n,r,t,a,o)}),r},reduceRight:function(e,t,n){var r=this.toKeyedSeq().reverse();return r.reduce.apply(r,arguments)},reverse:function(){return St(this,ct(this,!0))},slice:function(e,t){return St(this,ht(this,e,t,!0))},some:function(e,t){return!this.every(Zt(e),t)},sort:function(e){return St(this,bt(this,e))},values:function(){return this.__iterator(wn)},butLast:function(){return this.slice(0,-1)},isEmpty:function(){return void 0!==this.size?0===this.size:!this.some(function(){return!0})},count:function(e,t){return p(e?this.toSeq().filter(e,t):this)},countBy:function(e,t){return ft(this,e,t)},equals:function(e){return J(this,e)},entrySeq:function(){var e=this;if(e._cache)return new j(e._cache);var t=e.toSeq().map(Qt).toIndexedSeq();return t.fromEntrySeq=function(){return e.toSeq()},t},filterNot:function(e,t){return this.filter(Zt(e),t)},findEntry:function(e,t,n){var r=n;return this.__iterate(function(n,i,a){if(e.call(t,n,i,a))return r=[i,n],!1}),r},findKey:function(e,t){var n=this.findEntry(e,t);return n&&n[0]},findLast:function(e,t,n){return this.toKeyedSeq().reverse().find(e,t,n)},findLastEntry:function(e,t,n){return this.toKeyedSeq().reverse().findEntry(e,t,n)},findLastKey:function(e,t){return this.toKeyedSeq().reverse().findKey(e,t)},first:function(){return this.find(v)},flatMap:function(e,t){return St(this,yt(this,e,t))},flatten:function(e){return St(this,gt(this,e,!0))},fromEntrySeq:function(){return new ot(this)},get:function(e,t){return this.find(function(t,n){return Y(n,e)},void 0,t)},getIn:function(e,t){for(var n,r=this,i=Tt(e);!(n=i.next()).done;){var a=n.value;if(r=r&&r.get?r.get(a,gn):gn,r===gn)return t}return r},groupBy:function(e,t){return dt(this,e,t)},has:function(e){return this.get(e,gn)!==gn},hasIn:function(e){return this.getIn(e,gn)!==gn},isSubset:function(e){return e="function"==typeof e.includes?e:t(e),this.every(function(t){return e.includes(t)})},isSuperset:function(e){return e="function"==typeof e.isSubset?e:t(e),e.isSubset(this)},keyOf:function(e){return this.findKey(function(t){return Y(t,e)})},keySeq:function(){return this.toSeq().map(Xt).toIndexedSeq()},last:function(){return this.toSeq().reverse().first()},lastKeyOf:function(e){return this.toKeyedSeq().reverse().keyOf(e)},max:function(e){return wt(this,e)},maxBy:function(e,t){return wt(this,t,e)},min:function(e){return wt(this,e?en(e):rn)},minBy:function(e,t){return wt(this,t?en(t):rn,e)},rest:function(){return this.slice(1)},skip:function(e){return this.slice(Math.max(0,e))},skipLast:function(e){return St(this,this.toSeq().reverse().skip(e).reverse())},skipWhile:function(e,t){return St(this,mt(this,e,t,!0))},skipUntil:function(e,t){return this.skipWhile(Zt(e),t)},sortBy:function(e,t){return St(this,bt(this,t,e))},take:function(e){return this.slice(0,Math.max(0,e))},takeLast:function(e){return St(this,this.toSeq().reverse().take(e).reverse())},takeWhile:function(e,t){return St(this,pt(this,e,t))},takeUntil:function(e,t){return this.takeWhile(Zt(e),t)},valueSeq:function(){return this.toIndexedSeq()},hashCode:function(){return this.__hash||(this.__hash=an(this))}});var sr=t.prototype;sr[cn]=!0,sr[Cn]=sr.values,sr.__toJS=sr.toArray,sr.__toStringMapper=tn,sr.inspect=sr.toSource=function(){return this.toString()},sr.chain=sr.flatMap,sr.contains=sr.includes,Jt(n,{flip:function(){return St(this,st(this))},mapEntries:function(e,t){var n=this,r=0;return St(this,this.toSeq().map(function(i,a){return e.call(t,[a,i],r++,n)}).fromEntrySeq())},mapKeys:function(e,t){var n=this;return St(this,this.toSeq().flip().map(function(r,i){return e.call(t,r,i,n)}).flip())}});var lr=n.prototype;lr[un]=!0,lr[Cn]=sr.entries,lr.__toJS=sr.toObject,lr.__toStringMapper=function(e,t){return JSON.stringify(t)+": "+tn(e)},Jt(r,{toKeyedSeq:function(){return new rt(this,!1)},filter:function(e,t){return St(this,ut(this,e,t,!1))},findIndex:function(e,t){var n=this.findEntry(e,t);return n?n[0]:-1},indexOf:function(e){var t=this.keyOf(e);return void 0===t?-1:t},lastIndexOf:function(e){var t=this.lastKeyOf(e);return void 0===t?-1:t},reverse:function(){return St(this,ct(this,!1))},slice:function(e,t){return St(this,ht(this,e,t,!1))},splice:function(e,t){var n=arguments.length;if(t=Math.max(0|t,0),0===n||2===n&&!t)return this;e=y(e,e<0?this.count():this.size);var r=this.slice(0,e);return St(this,1===n?r:r.concat(h(arguments,2),this.slice(e+t)))},findLastIndex:function(e,t){var n=this.findLastEntry(e,t);return n?n[0]:-1},first:function(){return this.get(0)},flatten:function(e){return St(this,gt(this,e,!1))},get:function(e,t){return e=m(this,e),e<0||this.size===1/0||void 0!==this.size&&e>this.size?t:this.find(function(t,n){return n===e},void 0,t)},has:function(e){return e=m(this,e),e>=0&&(void 0!==this.size?this.size===1/0||e=1e4)return d(e,t,n);var l=a.diff(e,t),f=0;return l.forEach(function(e){if("="===e.op)f++;else if("!="===e.op){if(u(e.val)&&u(e.newVal)){var t=d(e.val,e.newVal,s(o,f));i=i.concat(t)}else i.push(c("replace",s(o,f),e.newVal));f++}else"+"===e.op?(i.push(c("add",s(o,f),e.val)),f++):"-"===e.op&&i.push(c("remove",s(o,f)))}),i},p=function(e,t,n){var r=n||"";return e===t?[]:[c("replace",s(r,""),t)]},m=function(e,t,n){return r.is(e,t)?r.List():e==t||null!=e&&null!=t?f(e)&&f(t)?r.fromJS(h(e,t)):u(e)&&u(t)?r.fromJS(d(e,t)):r.fromJS(p(e,t,n)):r.fromJS([c("replace","/",t)])};e.exports=m},function(e,t,n){"use strict";var r=n(460),i=function(e){return r.Iterable.isKeyed(e)},a=function(e){return r.Iterable.isIndexed(e)},o=function(e,t,n){return"remove"===e?{op:e,path:t}:{op:e,path:t,value:n}};e.exports={isMap:i,isIndexed:a,op:o}},function(e,t,n){"use strict";function r(e,t){for(var n=e.size||0,r=t.size||0,o=a(n+1,r+1,0),s=0;s=0||u>=0;)c>=0&&u>=0&&i.is(t.get(c),n.get(u))?(o.push(new s({op:"=",val:t.get(c)})),c-=1,u-=1):c>=0&&u>=0&&c===u&&!i.is(t.get(c),n.get(u))?(o.push(new l({val:t.get(c),newVal:n.get(c)})),c-=1,u-=1):u>=0&&(c===-1||e[c+1][u]>=e[c][u+1])?(o.push(new s({op:"+",val:n.get(u)})),u-=1):c>=0&&(u===-1||e[c+1][u]');n.append(i)}),e=!0,!0)})})}},{key:"addedNodes",value:function(e){var t=this;e.forEach(function(e){"childList"===e.type&&(e.addedNodes&&(0,s.default)("body").trigger("mutation._grav",e.target,e,t),e.removedNodes&&(0,s.default)("body").trigger("mutation_removed._grav",{target:e.target,mutation:e},t))})}}]),t}();t.default=l;t.Instance=new l("form#blueprints")}).call(t,function(){return this}())},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(467),a=r(i),o=n(468),s=r(o),l=n(470),c=r(l),u=n(471),f=r(u),d=n(472),h=r(d),p=n(392),m=r(p),v=n(599),g=r(v),y=n(388),_=r(y),b=n(604),w=r(b),x=n(607),k=r(x),S=n(608),C=r(S),E=n(609),I=r(E),A=n(610),O=r(A),M=n(612),T=r(M),P=n(613),j=r(P);t.default={FilepickerField:{FilepickerField:a.default,Instance:i.Instance},SelectizeField:{SelectizeField:s.default,Instance:o.Instance},ArrayField:{ArrayField:c.default,Instance:l.Instance},CollectionsField:{CollectionsField:f.default,Instance:u.Instance},DateTimeField:{DateTimeField:h.default,Instance:d.Instance},EditorField:{EditorField:m.default,Instance:p.Instance},ColorpickerField:{ColorpickerField:g.default,Instance:v.Instance},FilesField:{FilesField:_.default,Instance:y.Instance},SelectUniqueField:{SelectUniqueField:C.default,Instance:S.Instance},MediapickerField:{MediapickerField:w.default,Instance:b.Instance},MultilevelField:{MultilevelField:k.default,Instance:x.Instance},IconpickerField:{IconpickerField:I.default,Instance:E.Instance},CronField:{CronField:O.default,Instance:A.Instance},TextField:{TextField:T.default,Instance:M.Instance},ParentsField:{ParentsField:j.default,Instance:P.Instance}}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.Instance=void 0;var a=function(){function e(e,t){for(var n=0;n2&&void 0!==arguments[2]?arguments[2]:"all",r=l.config.current_url+(".json/task"+l.config.param_sep+"getFilesInFolder"),o=e.closest("[data-grav-filepicker]"),s=o.data("name"),c=o.data("value"),f=JSON.stringify(l.uri_params||"{}");(0,u.default)(r,{method:"post",body:{name:s,params:f}},function(e){if("undefined"!=typeof e.files){var r=[];a=e.thumbs||{};for(var o=0;o0,f=!1,d=function(e,t){var n="";if(c&&i&&(!e.status||"available"===e.status)&&e.name.match(/\.(jpg|jpeg|png|gif)$/i)){var r=a[e.name]||l.config.base_url_relative+"/../"+i+"/"+e.name;n=''}return'
\n \n '+n+' '+t(e.name)+"\n \n
"};r.selectize({plugins:["required-fix"],valueField:"name",labelField:"name",searchField:"name",optgroups:[{$order:1,value:"pending",label:"Pending"},{$order:2,value:"available",label:"Available"}],optgroupField:"status",create:!1,preload:!1,render:{option:function(e,t){return d(e,t)},item:function(e,t){return d(e,t)}},onInitialize:function(){this.load(function(e){return o(r,function(t){return e(t)},"selected")})},onLoad:function(){if(!f){var e=this.getValue();this.updateOption(e,{name:e}),f=!0}},onFocus:function(){this.load(function(e){return o(r,function(t){return e(t)})})}})}}}]),e}();t.default=f;t.Instance=new f},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.Instance=void 0;var a=function(){function e(e,t){for(var n=0;n\n '+r+'\n \n '+i.replace("(","/").replace(")","")+"\n "+n.join(" ")+"\n \n
"}},c=function(){function e(){var t=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};i(this,e),this.options=Object.assign({},n),this.elements=[],(0,s.default)("[data-grav-selectize]").each(function(e,n){return t.add(n)}),(0,s.default)("body").on("mutation._grav",this._onAddedNodes.bind(this))}return a(e,[{key:"add",value:function(e){e=(0,s.default)(e);var t=e.prop("tagName").toLowerCase(),n="input"===t||"select"===t,r=(n?e.closest("[data-grav-selectize]"):e).data("grav-selectize")||{},i=n?e:e.find("input, select");if("data[route]"===i.attr("name")&&(r=s.default.extend({},r,{render:l})),i.length&&!i.get(0).selectize){var a=s.default.merge(r.plugins?r.plugins:[],["required-fix"]);i.selectize(s.default.extend({},r,{plugins:a})),this.elements.push(i.data("selectize"))}}},{key:"_onAddedNodes",value:function(e,t){var n=this,r=(0,s.default)(t).find("select.fancy, input.fancy, [data-grav-selectize]");r.length&&r.each(function(e,t){return n.add(t)})}}]),e}();t.default=c;t.Instance=new c},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}var i=n(1),a=r(i),o=n(375),s=r(o);s.default.define("option_click",function(e){var t=this,n=t.setup;this.setup=function(){n.apply(t,arguments);var e=!1;t.$dropdown_content.on("mousedown click",function(n){var r=(0,a.default)(n.target);r.hasClass("clickable")||r.closest(".clickable").length?"mousedown"===n.type?(e=!0,t.isFocused=!1):(t.isFocused=!0,setTimeout(function(){e=!1})):(e=!1,t.isFocused=!0)}),t.$dropdown.off("mousedown click","[data-selectable]").on("mousedown click","[data-selectable]",function(){if(!e)return t.onOptionSelect.apply(t,arguments)}),t.$control_input.off("blur").on("blur",function(){if(!e)return t.onBlur.apply(t,arguments)})}})},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.Instance=void 0;var a=function(){function e(e,t){for(var n=0;n':"';return e+=this.isValueOnly()?'\n
\n \n '+t+"\n ":'\n
\n \n \n '+t+"\n ",e+='\n \n \n
'}}]),e}(),d=function(){function e(){var t=this;i(this,e),u.on("input",'[data-grav-array-type="key"], [data-grav-array-type="value"]',function(e){return t.actionInput(e)}),u.on("click touch",'[data-grav-array-action]:not([data-grav-array-action="sort"])',function(e){return t.actionEvent(e)}),this.arrays=(0,s.default)(),(0,s.default)('[data-grav-field="array"]').each(function(e,n){return t.addArray(n)}),(0,s.default)("body").on("mutation._grav",this._onAddedNodes.bind(this))}return a(e,[{key:"addArray",value:function(e){var t=this;e=(0,s.default)(e),e.find('[data-grav-array-type="container"]').each(function(e,n){n=(0,s.default)(n),n.data("array-sort")||n[0].hasAttribute("data-array-nosort")||n.data("array-sort",new c.default(n.get(0),{handle:".fa-bars",animation:150,onUpdate:function(){var e=n.find('[data-grav-array-type="row"]:first');t._setTemplate(e);var r=e.data("array-template");t.refreshNames(r)}}))})}},{key:"actionInput",value:function(e){var t=(0,s.default)(e.target),n=t.data("grav-array-type");this._setTemplate(t);var r=t.data("array-template"),i="key"===n?t:t.siblings('[data-grav-array-type="key"]:first'),a="value"===n?t:t.siblings('[data-grav-array-type="value"]:first'),o=r.isValueOnly()?this.getIndexFor(t):i.val();o=o.toString().replace(/\[/g,"%5B").replace(/]/g,"%5D");var l=r.getName()+"["+o+"]";a.attr("name",a.val()?l:r.getName()),this.refreshNames(r)}},{key:"actionEvent",value:function(e){e&&e.preventDefault();var t=(0,s.default)(e.target),n=t.data("grav-array-action"),r=t.parents('[data-grav-array-type="container"]');this._setTemplate(t),this[n+"Action"](t);var i=r.find("> div");r[i.length>1?"removeClass":"addClass"]("one-child")}},{key:"addAction",value:function(e){var t=e.data("array-template"),n=e.closest('[data-grav-array-type="row"]');n.after(t.getNewRow())}},{key:"remAction",value:function(e){var t=e.data("array-template"),n=e.closest('[data-grav-array-type="row"]'),r=!n.siblings().length;if(r){var i=(0,s.default)(t.getNewRow());n.after(i),i.find('[data-grav-array-type="value"]:last').attr("name",t.getName())}n.remove(),this.refreshNames(t)}},{key:"refreshNames",value:function(e){if(e.isValueOnly()){var t=e.container.find('> div > [data-grav-array-type="row"]'),n=t.find('[name]:not([name=""])');n.each(function(e,t){t=(0,s.default)(t);var n=t.closest("[data-grav-array-name]"),r=n.attr("data-grav-array-name")+"["+e+"]";t.attr("name",r)}),n.length||t.find('[data-grav-array-type="value"]').attr("name",e.getName())}}},{key:"getIndexFor",value:function(e){var t=e.data("array-template"),n=e.closest('[data-grav-array-type="row"]');return t.container.find((t.isValueOnly()?"> div ":"")+' > [data-grav-array-type="row"]').index(n); +}},{key:"_setTemplate",value:function(e){e.data("array-template")||e.data("array-template",new f(e.closest("[data-grav-array-name]")))}},{key:"_onAddedNodes",value:function(e,t){var n=this,r=(0,s.default)(t).find('[data-grav-field="array"]');r.length&&r.each(function(e,t){t=(0,s.default)(t),~n.arrays.index(t)||n.addArray(t)})}}]),e}();t.default=d;t.Instance=new d},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.Instance=void 0;var a=function(){function e(e,t){for(var n=0;n .collection-actions [data-action="add"]',function(e){return t.addItem(e)}),e.on("click",'> ul > li > .item-actions [data-action="delete"]',function(e){return t.removeItem(e)}),e.on("click",'> ul > li > .item-actions [data-action="collapse"]',function(e){return t.collapseItem(e)}),e.on("click",'> ul > li > .item-actions [data-action="expand"]',function(e){return t.expandItem(e)}),e.on("click",'> .collection-actions [data-action-sort="date"]',function(e){return t.sortItems(e)}),e.on("click",'> .collection-actions [data-action="collapse_all"]',function(e){return t.collapseItems(e)}),e.on("click",'> .collection-actions [data-action="expand_all"]',function(e){return t.expandItems(e)}),e.on("input change","[data-key-observe]",function(e){return t.observeKey(e)}),e.find("[data-collection-holder]").each(function(e,n){n=(0,s.default)(n),n.data("collection-sort")||n[0].hasAttribute("data-collection-nosort")||n.data("collection-sort",new c.default(n.get(0),{forceFallback:!1,handle:".collection-sort",animation:150,onUpdate:function(){return t.reindex(n)}}))}),this._updateActionsStateBasedOnMinMax(e)}},{key:"addItem",value:function(e){var t=(0,s.default)(e.currentTarget),n=t.data("action-add")||"bottom",r=(0,s.default)(t.closest('[data-type="collection"]')),i=(0,s.default)(r.find('> [data-collection-template="new"]').data("collection-template-html"));this._updateActionsStateBasedOnMinMax(r);var a=r.closest('[data-type="collection"]').find("> ul > [data-collection-item]"),o=r.data("max");if(!("undefined"!=typeof o&&a.length>=o)){r.find("> [data-collection-holder]")["top"===n?"prepend":"append"](i),this.reindex(r),a=r.closest('[data-type="collection"]').find("> ul > [data-collection-item]");var l=r.closest('[data-type="collection"]').find('[data-action-add="top"]'),c=r.closest('[data-type="collection"]').find('[data-action="sort"]');a.length&&(l.length&&l.parent().removeClass("hidden"),c.length&&a.length>1&&c.removeClass("hidden")),(0,s.default)('[data-grav-field="toggleable"] input[type="checkbox"]').trigger("change")}}},{key:"removeItem",value:function(e){var t=(0,s.default)(e.currentTarget),n=t.closest("[data-collection-item]"),r=(0,s.default)(t.closest('[data-type="collection"]')),i=r.closest('[data-type="collection"]').find("> ul > [data-collection-item]"),a=r.data("min");if(!("undefined"!=typeof a&&i.length<=a)){n.remove(),this.reindex(r),i=r.closest('[data-type="collection"]').find("> ul > [data-collection-item]");var o=r.closest('[data-type="collection"]').find('[data-action-add="top"]'),l=r.closest('[data-type="collection"]').find('[data-action="sort"]');i.length||o.length&&o.parent().addClass("hidden"),l.length&&i.length<=1&&l.addClass("hidden"),this._updateActionsStateBasedOnMinMax(r)}}},{key:"collapseItems",value:function(e){var t=(0,s.default)(e.currentTarget),n=(0,s.default)(t.closest('[data-type="collection"]')).find('> ul > [data-collection-item] > .item-actions [data-action="collapse"]');n.click()}},{key:"collapseItem",value:function(e){var t=(0,s.default)(e.currentTarget),n=t.closest("[data-collection-item]");t.attr("data-action","expand").removeClass("fa-chevron-circle-down").addClass("fa-chevron-circle-right"),n.addClass("collection-collapsed")}},{key:"expandItems",value:function(e){var t=(0,s.default)(e.currentTarget),n=(0,s.default)(t.closest('[data-type="collection"]')).find('> ul > [data-collection-item] > .item-actions [data-action="expand"]');n.click()}},{key:"expandItem",value:function(e){var t=(0,s.default)(e.currentTarget),n=t.closest("[data-collection-item]");t.attr("data-action","collapse").removeClass("fa-chevron-circle-right").addClass("fa-chevron-circle-down"),n.removeClass("collection-collapsed")}},{key:"sortItems",value:function(e){var t=(0,s.default)(e.currentTarget),n=t.data("action-sort"),r=t.data("action-sort-dir")||"asc",i=(0,s.default)(t.closest('[data-type="collection"]')),a=i.closest('[data-type="collection"]').find("> ul > [data-collection-item]");a.sort(function(e,t){var i=(0,s.default)(e).find('[name$="['+n+']"]'),a=(0,s.default)(t).find('[name$="['+n+']"]'),o=void 0;return o="asc"===r?i.val()a.val()?1:0:i.val()>a.val()?-1:i.val() ul > [data-collection-item]"),t.each(function(e,t){t=(0,s.default)(t);var n=t.find("[data-key-observe]"),r=n.val(),i=n.length,a=t.data("collection-key-backup");t.attr("data-collection-key",i?r:e),["name","data-grav-field-name","for","id","data-grav-file-settings","data-grav-array-name"].forEach(function(e){t.find("["+e+"], [_"+e+"]").each(function(){var t=(0,s.default)(this),n=[],o=null,l=[new RegExp("\\[(\\d+|\\*|"+a+")\\]","g"),new RegExp("\\.(\\d+|\\*|"+a+")\\.","g")];if("name"===e&&t.data("gravArrayType")){var c=t.attr(e).match(/\[[0-9]{1,}\]$/),u=t[0].closest("[data-grav-array-name]").dataset.gravArrayName;if(c&&u)return o=c[0],void t.attr(e,""+u+c[0])}if(i&&!r)return t.attr("_"+e,t.attr(e)),void t.attr(e,null);t.attr("_"+e)&&(t.attr(e,t.attr("_"+e)),t.attr("_"+e,null)),t.parents("[data-collection-key]").map(function(e,t){return n.push((0,s.default)(t).attr("data-collection-key"))}),n.reverse();var f=a,d=t.attr(e).replace(l[0],function(){var e="";return o&&(e=o,console.log(n,e)),f=n.shift()||f,"["+f+"]"+e});d=d.replace(l[1],function(){return f=n.shift()||f,"."+f+"."}),t.attr(e,d)})})})}},{key:"_onAddedNodes",value:function(e,t){var n=this,r=(0,s.default)(t).find('[data-type="collection"]');r.length&&r.each(function(e,t){t=(0,s.default)(t),~n.lists.index(t)||n.addList(t)})}},{key:"_updateActionsStateBasedOnMinMax",value:function(e){var t=e.closest('[data-type="collection"]').find("> ul > [data-collection-item]"),n=e.data("min"),r=e.data("max");e.find('> .collection-actions [data-action="add"]').attr("disabled",!1),e.find('> ul > li > .item-actions [data-action="delete"]').attr("disabled",!1),"undefined"!=typeof n&&t.length<=n&&e.find('> ul > li > .item-actions [data-action="delete"]').attr("disabled",!0),"undefined"!=typeof r&&t.length>=r&&e.find('> .collection-actions [data-action="add"]').attr("disabled",!0)}}]),e}();t.default=u;t.Instance=new u},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.Instance=void 0;var a=function(){function e(e,t){for(var n=0;n-1,p=(0,s.default)("body"),m="mousedown touchstart MSPointerDown pointerdown",v="mousemove touchmove MSPointerMove pointermove",g="mouseup touchend MSPointerUp pointerup",y=h?"focus":"focusin",_=function(){function e(t){var n=this;i(this,e),this.selector=t,this.field=(0,s.default)(this.selector),this.options=Object.assign({},this.field.data("grav-colorpicker")),this.built=!1,this.attach(),this.options.update&&this.field.on("change._grav_colorpicker",function(e,t,r,i){var a=r,o=(0,d.hex2rgb)(r);i<1&&(a="rgba("+o.r+", "+o.g+", "+o.b+", "+i+")");var s=t.closest(n.options.update);s.length||(s=t.siblings(n.options.update)),s.length||(s=t.parent(".g-colorpicker").find(n.options.update)),s.css({backgroundColor:a})})}return a(e,[{key:"attach",value:function(){var e=this;p.on(y,this.selector,function(t){return e.show(t,t.currentTarget)}),p.on(m,this.selector+" .g-colorpicker, "+this.selector+" .g-colorpicker i",this.bound("iconClick")),p.on("keydown",this.selector,function(t){switch(t.keyCode){case 9:e.hide();break;case 13:case 27:e.hide(),t.currentTarget.blur()}return!0}),p.on("keyup",this.selector,function(t){return e.updateFromInput(!0,t.currentTarget),!0}),p.on("paste",this.selector,function(t){setTimeout(function(){return e.updateFromInput(!0,t.currentTarget)},1)})}},{key:"show",value:function(e,t){t=(0,s.default)(t),this.built||this.build(),this.element=t,this.reposition(),this.wrapper.addClass("cp-visible"),this.updateFromInput();var n=(0,s.default)("#admin-main .content-wrapper").data("scrollbar").getViewElement();this.wrapper.on(m,".cp-grid, .cp-slider, .cp-opacity-slider",this.bound("bodyDown")),p.on(v,this.bound("bodyMove")),p.on(m,this.bound("bodyClick")),p.on(g,this.bound("targetReset")),(0,s.default)(n).on("scroll",this.bound("reposition"))}},{key:"hide",value:function(){if(this.built){this.wrapper.removeClass("cp-visible");var e=(0,s.default)("#admin-main .content-wrapper").data("scrollbar").getViewElement();this.wrapper.undelegate(m,".cp-grid, .cp-slider, .cp-opacity-slider",this.bound("bodyDown")),p.off(v,this.bound("bodyMove")),p.off(m,this.bound("bodyClick")),p.off(g,this.bound("targetReset")),(0,s.default)(e).off("scroll",this.bound("reposition"))}}},{key:"build",value:function(){var e=this;this.wrapper=(0,s.default)('
'),this.slider=(0,s.default)('
').appendTo(this.wrapper).append((0,s.default)('
')),this.opacitySlider=(0,s.default)('
').appendTo(this.wrapper).append((0,s.default)('
')),this.grid=(0,s.default)('
').appendTo(this.wrapper).append((0,s.default)('
')).append((0,s.default)('
')),(0,s.default)("
").appendTo(this.grid.find(".cp-picker"));var t=(0,s.default)('
').appendTo(this.wrapper);this.tabs={hue:(0,s.default)('
').text("HUE").appendTo(t),brightness:(0,s.default)('
').text("BRI").appendTo(t),saturation:(0,s.default)('
').text("SAT").appendTo(t),wheel:(0,s.default)('
').text("WHEEL").appendTo(t),transparent:(0,s.default)('
').text("TRANSPARENT").appendTo(t)},t.on(m,"> div",function(n){var r=(0,s.default)(n.currentTarget);if(r.is(e.tabs.transparent)){var i=e.opacitySlider.height();return e.opacity=0,e.opacitySlider.find(".cp-picker").css({top:(0,c.default)(i-i*e.opacity,0,i)}),void e.move(e.opacitySlider,{manualOpacity:!0})}var a=t.find(".active"),o=a.attr("class").replace(/\s|active|cp-tab-/g,""),l=r.attr("class").replace(/\s|active|cp-tab-/g,"");e.wrapper.removeClass("cp-mode-"+o).addClass("cp-mode-"+l),a.removeClass("active"),r.addClass("active"),e.mode=l,e.updateFromInput()}),this.wrapper.appendTo(".content-wrapper"),this.built=!0,this.mode="hue"}},{key:"reposition",value:function(){var e=(0,s.default)(".content-wrapper")[0],t=this.element[0].getBoundingClientRect(),n=e.getBoundingClientRect(),r={x:0,y:0};this.options.offset&&(r.x=this.options.offset.x||0,r.y=this.options.offset.y||0),this.wrapper.css({top:t.top+t.height+e.scrollTop-n.top+r.y,left:t.left+e.scrollLeft-n.left+r.x})}},{key:"iconClick",value:function(e){if(this.wrapper&&this.wrapper.hasClass("cp-visible"))return!0;e&&e.preventDefault();var t=(0,s.default)(e.currentTarget).find("input");setTimeout(function(){return t.focus()},50)}},{key:"bodyMove",value:function(e){e&&e.preventDefault(),this.target&&this.move(this.target,e)}},{key:"bodyClick",value:function(e){var t=(0,s.default)(e.target);t.closest(".cp-wrapper").length||t.is(this.selector)||this.hide()}},{key:"bodyDown",value:function(e){e&&e.preventDefault(),this.target=(0,s.default)(e.currentTarget),this.move(this.target,e,!0)}},{key:"targetReset",value:function(e){e&&e.preventDefault(),this.target=null}},{key:"move",value:function(e,t){var n=this.element,r=e.find(".cp-picker"),i=e[0].getBoundingClientRect(),a=i.left+window.scrollX,o=i.top+window.scrollY,s=Math.round((t?t.pageX:0)-a),l=Math.round((t?t.pageY:0)-o),c=void 0,u=void 0,f=void 0,d=void 0,h=t.changedTouches||t.originalEvent&&t.originalEvent.changedTouches;t&&h&&(s=(h?h[0].pageX:0)-a,l=(h?h[0].pageY:0)-o),t&&t.manualOpacity&&(l=i.height),s<0&&(s=0),l<0&&(l=0),s>i.width&&(s=i.width),l>i.height&&(l=i.height),e.parent(".cp-mode-wheel").length&&r.parent(".cp-grid").length&&(c=75-s,u=75-l,f=Math.sqrt(c*c+u*u),d=Math.atan2(u,c),d<0&&(d+=2*Math.PI),f>75&&(s=75-75*Math.cos(d),l=75-75*Math.sin(d)),s=Math.round(s),l=Math.round(l)),e.hasClass("cp-grid")?(r.css({top:l,left:s}),this.updateFromPicker(n,e)):(r.css({top:l}),this.updateFromPicker(n,e))}},{key:"updateFromInput",value:function(e,t){t=t?(0,s.default)(t):this.element;var n=t.val(),r=n.replace(/\s/g,"").match(/^rgba?\([0-9]{1,3},[0-9]{1,3},[0-9]{1,3},(.+)\)/),i=void 0,a=void 0;if(n=(0,d.rgbstr2hex)(n)||n,r=r?(0,c.default)(r[1],0,1):1,(i=(0,d.parseHex)(n))||(i="#ffffff"),a=(0,d.hex2hsb)(i),this.built){this.opacity=r;var o=this.opacitySlider.height();this.opacitySlider.find(".cp-picker").css({top:(0,c.default)(o-o*this.opacity,0,o)});var l=this.grid.height(),u=this.grid.width(),f=void 0,h=void 0,p=void 0,m=void 0;switch(o=this.slider.height(),this.mode){case"wheel":f=(0,c.default)(Math.ceil(.75*a.s),0,l/2),h=a.h*Math.PI/180,p=(0,c.default)(75-Math.cos(h)*f,0,u),m=(0,c.default)(75-Math.sin(h)*f,0,l),this.grid.css({backgroundColor:"transparent"}).find(".cp-picker").css({top:m,left:p}),m=150-a.b/(100/l),""===i&&(m=0),this.slider.find(".cp-picker").css({top:m}),this.slider.css({backgroundColor:(0,d.hsb2hex)({h:a.h,s:a.s,b:100})});break;case"saturation":p=(0,c.default)(5*a.h/12,0,150),m=(0,c.default)(l-Math.ceil(a.b/(100/l)),0,l),this.grid.find(".cp-picker").css({top:m,left:p}),m=(0,c.default)(o-a.s*(o/100),0,o),this.slider.find(".cp-picker").css({top:m}),this.slider.css({backgroundColor:(0,d.hsb2hex)({h:a.h,s:100,b:a.b})}),this.grid.find(".cp-grid-inner").css({opacity:a.s/100});break;case"brightness":p=(0,c.default)(5*a.h/12,0,150),m=(0,c.default)(l-Math.ceil(a.s/(100/l)),0,l),this.grid.find(".cp-picker").css({top:m,left:p}),m=(0,c.default)(o-a.b*(o/100),0,o),this.slider.find(".cp-picker").css({top:m}),this.slider.css({backgroundColor:(0,d.hsb2hex)({h:a.h,s:a.s,b:100})}),this.grid.find(".cp-grid-inner").css({opacity:1-a.b/100});break;case"hue":default:p=(0,c.default)(Math.ceil(a.s/(100/u)),0,u),m=(0,c.default)(l-Math.ceil(a.b/(100/l)),0,l),this.grid.find(".cp-picker").css({top:m,left:p}),m=(0,c.default)(o-a.h/(360/o),0,o),this.slider.find(".cp-picker").css({top:m}),this.grid.css({backgroundColor:(0,d.hsb2hex)({h:a.h,s:100,b:100})})}}e||t.val(this.getValue(i)),(this.element||t).trigger("change._grav_colorpicker",[t,i,r])}},{key:"updateFromPicker",value:function(e,t){var n=function(e,t){var n,r;return e.length&&t?(n=e[0].getBoundingClientRect().left,r=e[0].getBoundingClientRect().top,{x:n-t[0].getBoundingClientRect().left+e[0].offsetWidth/2,y:r-t[0].getBoundingClientRect().top+e[0].offsetHeight/2}):null},r=void 0,i=void 0,a=void 0,o=void 0,s=void 0,l=void 0,u=void 0,f=void 0,h=this.wrapper.find(".cp-grid"),p=this.wrapper.find(".cp-slider"),m=this.wrapper.find(".cp-opacity-slider"),v=h.find(".cp-picker"),g=p.find(".cp-picker"),y=m.find(".cp-picker"),_=n(v,h),b=n(g,p),w=n(y,m),x=h[0].getBoundingClientRect().width,k=h[0].getBoundingClientRect().height,S=p[0].getBoundingClientRect().height,C=m[0].getBoundingClientRect().height,E=this.element.val();if(E=(0,d.rgbstr2hex)(E)||E,(r=(0,d.parseHex)(E))||(r="#ffffff"),t.hasClass("cp-grid")||t.hasClass("cp-slider"))switch(this.mode){case"wheel":s=x/2-_.x,l=k/2-_.y,u=Math.sqrt(s*s+l*l),f=Math.atan2(l,s),f<0&&(f+=2*Math.PI),u>75&&(u=75,_.x=69-75*Math.cos(f),_.y=69-75*Math.sin(f)),a=(0,c.default)(u/.75,0,100),i=(0,c.default)(180*f/Math.PI,0,360),o=(0,c.default)(100-Math.floor(b.y*(100/S)),0,100),r=(0,d.hsb2hex)({h:i,s:a,b:o}),p.css({backgroundColor:(0,d.hsb2hex)({h:i,s:a,b:100})});break;case"saturation":i=(0,c.default)(parseInt(_.x*(360/x),10),0,360),a=(0,c.default)(100-Math.floor(b.y*(100/S)),0,100),o=(0,c.default)(100-Math.floor(_.y*(100/k)),0,100),r=(0,d.hsb2hex)({h:i,s:a,b:o}),p.css({backgroundColor:(0,d.hsb2hex)({h:i,s:100,b:o})}),h.find(".cp-grid-inner").css({opacity:a/100});break;case"brightness":i=(0,c.default)(parseInt(_.x*(360/x),10),0,360),a=(0,c.default)(100-Math.floor(_.y*(100/k)),0,100),o=(0,c.default)(100-Math.floor(b.y*(100/S)),0,100),r=(0,d.hsb2hex)({h:i,s:a,b:o}),p.css({backgroundColor:(0,d.hsb2hex)({h:i,s:a,b:100})}),h.find(".cp-grid-inner").css({opacity:1-o/100});break;default:i=(0,c.default)(360-parseInt(b.y*(360/S),10),0,360),a=(0,c.default)(Math.floor(_.x*(100/x)),0,100),o=(0,c.default)(100-Math.floor(_.y*(100/k)),0,100),r=(0,d.hsb2hex)({h:i,s:a,b:o}),h.css({backgroundColor:(0,d.hsb2hex)({h:i,s:100,b:100})})}t.hasClass("cp-opacity-slider")&&(this.opacity=parseFloat(1-w.y/C).toFixed(2)),e.val(this.getValue(r)),this.element.trigger("change._grav_colorpicker",[this.element,r,this.opacity])}},{key:"getValue",value:function(e){if(1===this.opacity)return e;var t=(0,d.hex2rgb)(e);return"rgba("+t.r+", "+t.g+", "+t.b+", "+this.opacity+")"}},{key:"bound",value:function e(t){var e=this._bound||(this._bound={});return e[t]||(e[t]=(0,f.default)(this[t],this))}}]),e}();t.default=_;t.Instance=new _("[data-grav-colorpicker]")},function(e,t){function n(e,t,n){return en?n:e}e.exports=n},function(e,t,n){function r(e,t,n){var r=i(arguments,2);return function(){return e.apply(t,r.concat(i(arguments)))}}var i=n(602);e.exports=r},function(e,t){function n(e,t,n){var r=e.length;t=null==t?0:t<0?Math.max(r+t,0):Math.min(t,r),n=null==n?r:n<0?Math.max(r+n,0):Math.min(n,r);for(var i=[];t-1?e.substring(1):e,16),{r:e>>16,g:(65280&e)>>8,b:255&e}}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}var i=n(1),a=r(i),o=n(605),s=r(o),l=n(373),c={tree:".pages-list-container .mediapicker-scroll",thumb:".thumbs-list-container .mediapicker-scroll"};(0,a.default)(function(){var e="",t=(0,a.default)("body"),n=[],r=[];(0,a.default)(c.tree).each(function(e,t){n.push(new s.default(t,{autoshow:!0}))}),(0,a.default)(c.thumb).each(function(e,t){r.push(new s.default(t,{autoshow:!0}))}),(0,a.default)(document).on("input change",".media-container .media-range",function(e){var t=(0,a.default)(e.currentTarget),i=t.closest(".remodal"),o=i.find(".media-container div.card-item"),s=t.val()+"px";o.each(function(){(0,a.default)(this).css("width",s)}),n.forEach(function(e){return e.update()}),r.forEach(function(e){return e.update()})}),(0,a.default)(document).on("opened",".remodal",function(){setTimeout(function(){n.forEach(function(e){return e.update()}),r.forEach(function(e){return e.update()})},10)}),t.on("click","[data-mediapicker-modal-trigger]",function(i){var o=(0,a.default)(i.currentTarget),u=(0,a.default)(this).data("grav-mediapicker-unique-identifier"),f=t.find('[data-remodal-unique-identifier="'+u+'"]');e=a.default.remodal.lookup[f.data("remodal")],e||(f.remodal(),e=a.default.remodal.lookup[f.data("remodal")]),(0,a.default)(c.tree).filter(function(e,t){return!(0,a.default)(t).data("scrollbar")}).each(function(e,t){n.push(new s.default(t,{autoshow:!0}))}),(0,a.default)(c.thumb).filter(function(e,t){return!(0,a.default)(t).data("scrollbar")}).each(function(e,t){r.push(new s.default(t,{autoshow:!0}))}),e.open(),e.dataField=o.find("input"),n.forEach(function(e){return e.update()}),r.forEach(function(e){return e.update()}),f.find(".js__files").trigger("fillView"),setTimeout(function(){return l.Instance.reload()},100)}),t.on("click","[data-remodal-mediapicker] .media-container.in-modal .admin-media-details a",function(t){t.preventDefault(),t.stopPropagation();var n=(0,a.default)(t.target).parents(".js__media-element").data("file-url"),r=n.replace(/ /g,"%20");e.dataField.val(r),e.close()})})},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.Instance=void 0;var a=function(){function e(e,t){for(var n=0;n0;)this._viewElement.appendChild(this.element.childNodes[0]);this.element.appendChild(this._viewElement)}else this._viewElement=this.element.querySelector("."+l.view);n(this.element,[l.element]),n(this._viewElement,[l.view]),this._createResizeTrigger()}return this}if(this._created===!0)return console.warn("calling on a already-created object"),this;if(this.autoshow&&n(this.element,[l.autoshow]),this._document=document,this.createElements===!0){for(this._viewElement=document.createElement("div"),this._scrollbarVerticalElement=document.createElement("div"),this._thumbVerticalElement=document.createElement("div"),this._scrollbarHorizontalElement=document.createElement("div"),this._thumbHorizontalElement=document.createElement("div");this.element.childNodes.length>0;)this._viewElement.appendChild(this.element.childNodes[0]);this._scrollbarVerticalElement.appendChild(this._thumbVerticalElement),this._scrollbarHorizontalElement.appendChild(this._thumbHorizontalElement),this.element.appendChild(this._scrollbarVerticalElement),this.element.appendChild(this._scrollbarHorizontalElement),this.element.appendChild(this._viewElement)}else this._viewElement=this.element.querySelector("."+l.view),this._scrollbarVerticalElement=this.element.querySelector("."+l.verticalScrollbar.split(" ").join(".")),this._thumbVerticalElement=this._scrollbarVerticalElement.querySelector("."+l.thumb),this._scrollbarHorizontalElement=this.element.querySelector("."+l.horizontalScrollbar.split(" ").join(".")),this._thumbHorizontalElement=this._scrollbarHorizontalElement.querySelector("."+l.thumb);return n(this.element,[l.element]),n(this._viewElement,[l.view]),n(this._scrollbarVerticalElement,l.verticalScrollbar.split(/\s/)),n(this._scrollbarHorizontalElement,l.horizontalScrollbar.split(/\s/)),n(this._thumbVerticalElement,[l.thumb]),n(this._thumbHorizontalElement,[l.thumb]),this._scrollbarVerticalElement.style.display="",this._scrollbarHorizontalElement.style.display="",this._createResizeTrigger(),this._created=!0,this._bindEvents().update()},a.prototype._createResizeTrigger=function(){var e=document.createElement("object");n(e,[l.resizeTrigger]),e.type="text/html",e.setAttribute("tabindex","-1");var t=this._resizeHandler.bind(this);e.onload=function(){var n=e.contentDocument.defaultView;n.addEventListener("resize",t)},i()||(e.data="about:blank"),this.element.appendChild(e),i()&&(e.data="about:blank"),this._resizeTriggerElement=e},a.prototype.update=function(){return s?this:this._created===!1?(console.warn("calling on a not-yet-created object"),this):(this._viewElement.style.width=(this.element.offsetWidth+o).toString()+"px",this._viewElement.style.height=(this.element.offsetHeight+o).toString()+"px",this._naturalThumbSizeX=this._scrollbarHorizontalElement.clientWidth/this._viewElement.scrollWidth*this._scrollbarHorizontalElement.clientWidth,this._naturalThumbSizeY=this._scrollbarVerticalElement.clientHeight/this._viewElement.scrollHeight*this._scrollbarVerticalElement.clientHeight,this._scrollTopMax=this._viewElement.scrollHeight-this._viewElement.clientHeight,this._scrollLeftMax=this._viewElement.scrollWidth-this._viewElement.clientWidth,this._naturalThumbSizeY0;)this.element.appendChild(this._viewElement.childNodes[0]);this.element.removeChild(this._viewElement)}else this._viewElement.style.width="",this._viewElement.style.height="",this._scrollbarVerticalElement.style.display="none",this._scrollbarHorizontalElement.style.display="none";return this._created=!1,this._document=null,null},a.prototype.getViewElement=function(){return this._viewElement},a.prototype._bindEvents=function(){return this._cache.events.scrollHandler=this._scrollHandler.bind(this),this._cache.events.clickVerticalTrackHandler=this._clickVerticalTrackHandler.bind(this),this._cache.events.clickHorizontalTrackHandler=this._clickHorizontalTrackHandler.bind(this),this._cache.events.clickVerticalThumbHandler=this._clickVerticalThumbHandler.bind(this),this._cache.events.clickHorizontalThumbHandler=this._clickHorizontalThumbHandler.bind(this),this._cache.events.mouseUpDocumentHandler=this._mouseUpDocumentHandler.bind(this),this._cache.events.mouseMoveDocumentHandler=this._mouseMoveDocumentHandler.bind(this),this._viewElement.addEventListener("scroll",this._cache.events.scrollHandler),this._scrollbarVerticalElement.addEventListener("mousedown",this._cache.events.clickVerticalTrackHandler),this._scrollbarHorizontalElement.addEventListener("mousedown",this._cache.events.clickHorizontalTrackHandler),this._thumbVerticalElement.addEventListener("mousedown",this._cache.events.clickVerticalThumbHandler),this._thumbHorizontalElement.addEventListener("mousedown",this._cache.events.clickHorizontalThumbHandler),this._document.addEventListener("mouseup",this._cache.events.mouseUpDocumentHandler),this},a.prototype._unbinEvents=function(){return this._viewElement.removeEventListener("scroll",this._cache.events.scrollHandler),this._scrollbarVerticalElement.removeEventListener("mousedown",this._cache.events.clickVerticalTrackHandler),this._scrollbarHorizontalElement.removeEventListener("mousedown",this._cache.events.clickHorizontalTrackHandler),this._thumbVerticalElement.removeEventListener("mousedown",this._cache.events.clickVerticalThumbHandler),this._thumbHorizontalElement.removeEventListener("mousedown",this._cache.events.clickHorizontalThumbHandler),this._document.removeEventListener("mouseup",this._cache.events.mouseUpDocumentHandler),this._document.removeEventListener("mousemove",this._cache.events.mouseMoveDocumentHandler),this},a.prototype._scrollHandler=function(){var e=this._viewElement.scrollLeft*this._trackLeftMax/this._scrollLeftMax||0,t=this._viewElement.scrollTop*this._trackTopMax/this._scrollTopMax||0;this._thumbHorizontalElement.style.msTransform="translateX("+e+"px)",this._thumbHorizontalElement.style.webkitTransform="translate3d("+e+"px, 0, 0)",this._thumbHorizontalElement.style.transform="translate3d("+e+"px, 0, 0)",this._thumbVerticalElement.style.msTransform="translateY("+t+"px)",this._thumbVerticalElement.style.webkitTransform="translate3d(0, "+t+"px, 0)",this._thumbVerticalElement.style.transform="translate3d(0, "+t+"px, 0)"},a.prototype._resizeHandler=function(){this.update(),this.onResize&&this.onResize()},a.prototype._clickVerticalTrackHandler=function(e){if(e.target===e.currentTarget){var t=e.offsetY-.5*this._naturalThumbSizeY,n=100*t/this._scrollbarVerticalElement.clientHeight;this._viewElement.scrollTop=n*this._viewElement.scrollHeight/100}},a.prototype._clickHorizontalTrackHandler=function(e){if(e.target===e.currentTarget){var t=e.offsetX-.5*this._naturalThumbSizeX,n=100*t/this._scrollbarHorizontalElement.clientWidth;this._viewElement.scrollLeft=n*this._viewElement.scrollWidth/100}},a.prototype._clickVerticalThumbHandler=function(e){this._startDrag(e),this._prevPageY=this._thumbSizeY-e.offsetY},a.prototype._clickHorizontalThumbHandler=function(e){this._startDrag(e),this._prevPageX=this._thumbSizeX-e.offsetX},a.prototype._startDrag=function(e){this._cursorDown=!0,n(document.body,[l.disable]),this._document.addEventListener("mousemove",this._cache.events.mouseMoveDocumentHandler),this._document.onselectstart=function(){return!1}},a.prototype._mouseUpDocumentHandler=function(){this._cursorDown=!1,this._prevPageX=this._prevPageY=0,r(document.body,[l.disable]),this._document.removeEventListener("mousemove",this._cache.events.mouseMoveDocumentHandler),this._document.onselectstart=null},a.prototype._mouseMoveDocumentHandler=function(e){if(this._cursorDown!==!1){var t,n;return this._prevPageY?(t=e.clientY-this._scrollbarVerticalElement.getBoundingClientRect().top,n=this._thumbSizeY-this._prevPageY,void(this._viewElement.scrollTop=this._scrollTopMax*(t-n)/this._trackTopMax)):void(this._prevPageX&&(t=e.clientX-this._scrollbarHorizontalElement.getBoundingClientRect().left,n=this._thumbSizeX-this._prevPageX,this._viewElement.scrollLeft=this._scrollLeftMax*(t-n)/this._trackLeftMax))}},e.exports=a}()},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}var i=n(1),a=r(i);(0,a.default)(function(){var e=function(e,t){var n=50*e,r=0===e?"top":"",i='name="'+t+'"';0===e&&(i='data-attr-name="'+t+'"');var a='\n
\n
\n \n\n \n \n \n
\n
\n ';return a},t=function(e){return!e.attr("name")},n=function(e){return(0,a.default)(e+" .js__multilevel-field.top")},r=function(e){var t="[data-grav-multilevel-field]";e&&(t='[data-grav-multilevel-field][data-id="'+e+'"]');var r=function(){(0,a.default)(t+" .js__add-sibling").addClass("hidden"),(0,a.default)(t+" .js__add-children").addClass("hidden")},i=function(){(0,a.default)(t+" .children-wrapper").each(function(){var e=(0,a.default)(this).children();e.last().each(function(){var e=(0,a.default)(this);(0,a.default)(this).hasClass("js__multilevel-field")||(e=(0,a.default)(this).find(".js__multilevel-field").first()),e.find(".js__add-sibling").removeClass("hidden")})}),(0,a.default)(t+" .js__multilevel-field.top").last().find(".js__add-sibling").removeClass("hidden")},o=function(){(0,a.default)(t+" .js__multilevel-field").each(function(){0!==(0,a.default)(this).siblings(".children-wrapper").length&&0!==(0,a.default)(this).siblings(".children-wrapper").find(".js__multilevel-field").length||(0,a.default)(this).find(".js__add-children").removeClass("hidden")})},s=function(){var e=n(t);1===e.length&&e.first().find(".js__remove-item").addClass("hidden")};r(),i(),o(),s()},i=function(e,t,n){e.parents("[data-grav-multilevel-field]").find("input").each(function(){var e=(0,a.default)(this);e.attr("name")&&e.attr("name",e.attr("name").replace(t,n)),e.attr("data-attr-name")&&e.attr("data-attr-name",e.attr("data-attr-name").replace(t,n))})};(0,a.default)(document).ready(function(){r()}),(0,a.default)(document).on("mouseleave","[data-grav-multilevel-field]",function(e){var t=n('[data-id="'+(0,a.default)(this).data("id")+'"]'),r=!1,i="";t.each(function(){var e=(0,a.default)(this);0===(0,a.default)(e).siblings(".children-wrapper").find("input").length&&(r=!0,i=e.find("input").val())}),r&&(i?alert("Warning: if you save now, the element "+i+", without children, will be removed, because it's invalid YAML"):alert("Warning: if you save now, the top elements without children will be removed, because it's invalid YAML"))}),(0,a.default)(document).on("click","[data-grav-multilevel-field] .js__add-children",function(t){var n=(0,a.default)(this),i=n.closest(".js__multilevel-field").data("id"),o=n.data("level")+1,s=function(e){var t=e.closest(".js__multilevel-field").parent().first();return 0===t.find(".children-wrapper").length&&(0,a.default)(t).append('
'),t=t.find(".children-wrapper").first()},l=function(e,t){return e.hasClass("children-wrapper")&&(e=e.siblings(".js__multilevel-field").first().find("input")),e.attr(t)+"["+e.val()+"]"},c=function(e){return e.siblings(".js__multilevel-field").first().find("input")},u=s(n),f=c(u),d="name";f.closest(".js__multilevel-field").hasClass("top")&&(d="data-attr-name"),f.attr(d,f.attr(d).replace("[]",""));var h=l(f,d),p=e(o,h);(0,a.default)(u).append(p),r(i)}),(0,a.default)(document).on("click","[data-grav-multilevel-field] .js__add-sibling",function(n){var o=(0,a.default)(this),s=o.closest(".js__multilevel-field").data("id"),l=o.data("level");o.closest(".children-wrapper").find(".js__add-sibling").addClass("hidden");var c=null,u=!1;o.closest(".js__multilevel-field").hasClass("top")&&(u=!0),u?c=o.closest(".js__multilevel-field").first().find("input").last():(c=o.siblings("input").first(),c||(c=o.closest(".children-wrapper").first().find("input").last()));var f=function(e){var t=e.closest(".js__multilevel-field").parent().first();return t.hasClass("element-wrapper")||(0===t.find(".element-wrapper").length&&(0,a.default)(t).append('
'),t=t.find(".element-wrapper").first()),t},d=function(e,n){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],o=n.attr("name");if(t(n)){var s=n.data("attr-name")+"[]";return n.removeAttr("name"),s}var l=o.lastIndexOf("["),c=o.substr(l+1),u=c.substr(0,c.length-1);return a.default.isNumeric(u)?o=o.replace("["+u+"]","["+(parseInt(u,10)+1)+"]"):r?o=o.replace("["+u+"]",""):(o+="[1]","[0]"!==n.attr("name").slice("-2")&&i(n,n.attr("name"),n.attr("name")+"[0]")),o},h=f(o),p=d(h,c,u),m=e(l,p);(0,a.default)(m).insertAfter(h),r(s)}),(0,a.default)(document).on("click","[data-grav-multilevel-field] .js__remove-item",function(e){(0,a.default)(this).parents(".element-wrapper").first().remove();var t=(0,a.default)(this).closest(".js__multilevel-field").data("id");r(t)}),(0,a.default)(document).on("focusin","[data-grav-multilevel-field] input",function(e){(0,a.default)(this).data("current-value",(0,a.default)(this).val())}),(0,a.default)(document).on("change","[data-grav-multilevel-field] input",function(e){var t=(0,a.default)(this),n=t.data("current-value"),r=t.val(),o=t.attr("name")||t.attr("data-attr-name"),s=o+"["+n+"]",l=o+"["+r+"]";i(t,s,l)})})},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.Instance=void 0;var a=function(){function e(e,t){for(var n=0;n"+r+"");if(a){if(e.get(0).selectize){var s=e.data("selectize");s.setValue(i)}delete u[n].state[t]}})}},{key:"refreshOptions",value:function(e,t){var n=e.val(),r=e.closest("[data-collection-holder]").data("collectionHolder");delete u[r].state[n],t&&u[r].original[t]&&(u[r].state[t]=u[r].original[t]),this.items.each(function(t,n){if(n=(0,s.default)(n),n[0]!==e[0]){var i=n.val();if(n.data("dummyChange",!0),n.get(0).selectize){var a=n.data("selectize");a&&(a.clearOptions(),i&&a.addOption({value:i,text:u[r].original[i]||i}),(0,c.default)(u[r].state,function(e,t){a.addOption({value:t,text:e})}),a.setValue(i,!0))}else n.empty(),(0,c.default)(u[r].state,function(e,t){var r=t===i?'selected="selected"':"";n.append('")});n.data("dummyChange",!1)}})}}]),e}();t.default=f;t.Instance=new f},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.Instance=void 0;var a=function(){function e(e,t){for(var n=0;n');this.$field=e.find("input"),this.makePreview(e,t,n),this.makeClear(t,n),this.makeLaunchers(e,t),this.makeDisplay(e)}},{key:"makePreview",value:function(e,t,n){var r=(0,s.default)(""),i=this.$field.val();n.prependTo(e),r.prependTo(n),""!==i&&(n.addClass("icon-preview-on"),r.addClass(i))}},{key:"makeClear",value:function(e,t){var n=this,r=(0,s.default)('');r.hide().prependTo(t),""!==n.$field.val()&&r.show(),t.on("click",".remove-icon",function(e){e.preventDefault(),n.$field.val(""),t.removeClass("icon-preview-on").find("i").removeClass(),(0,s.default)(this).hide()})}},{key:"makeDisplay",value:function(e){var t=this,n=t.settings.classes.close,r=(0,s.default)("body"),i=(0,s.default)('');"inline"===t.settings.mode?e.find(".icon-set").append(i).removeClass("dialog").addClass("ip-inline "+t.settings.size).parent().addClass("icon-set-wrap"):"dialog"===t.settings.mode&&((0,s.default)(".icon-set").addClass("dialog "+t.settings.size),(0,s.default)(".icon-picker-overlay").length<=0&&r.append('
').append(i)),r.on("click",".icon-picker-close, .icon-picker-overlay",function(n){n.preventDefault(),t.closePicker(e,(0,s.default)(t.iconSet),t.settings.mode)}).on("mouseenter mouseleave",".icon-picker-close",function(e){"mouseenter"===e.type?(0,s.default)(this).addClass(n):(0,s.default)(this).removeClass(n)})}},{key:"makeLaunchers",value:function(e){var t,n=this,r=e.data("iconsets");"undefined"==typeof r&&(r=n.settings.iconSets);for(t in r)r.hasOwnProperty(t)&&e.append(''+r[t]+"");e.find(".launch-icons").on("click",function(t){t.preventDefault();var r=(0,s.default)(this),i=r.data("icons");n.iconSetName=i,n.iconSet="."+i+"-set",n.iconPick(e),n.showPicker(e,(0,s.default)(n.iconSet),n.settings.mode)})}},{key:"iconPick",value:function(e){var t=this,n="icon-highlight "+t.settings.classes.highlight;(0,s.default)(t.iconSet).on("click","li",function(n){n.preventDefault();var r=(0,s.default)(this),i=r.data(t.settings.save);(0,s.default)(".icon-selected").removeClass("icon-selected"),r.addClass("icon-selected"),"short"===t.$field.data("format")&&(i=i.slice(6)),t.$field.val(i),t.settings.closeOnPick&&t.closePicker(e,r.closest(t.iconSet),t.settings.mode),t.setPreview(r.data("class")),(0,s.default)("body").trigger("iconselected.queryloop",i)}),(0,s.default)(t.iconSet).on("mouseenter mouseleave","li",function(e){"mouseenter"===e.type?(0,s.default)(this).addClass(n):(0,s.default)(this).removeClass(n)})}},{key:"showPicker",value:function(e,t,n){"inline"===n?((0,s.default)(".icon-set").removeClass("ip-inline-open"),e.find(t).toggleClass("ip-inline-open")):"dialog"===n&&(e.find(".icon-picker-close").addClass("make-visible"),e.find(".icon-picker-overlay").addClass("make-visible"),t.addClass("dialog-open")),t.find(".icon-selected").removeClass("icon-selected");var r=this.$field.val().replace(" ",".");""!==r&&("class"===this.settings.save?t.find("."+r).addClass("icon-selected"):t.find('[data-code="'+r+'"]').addClass("icon-selected")),(0,s.default)("body").trigger("iconpickershow.queryloop",n)}},{key:"closePicker",value:function(e,t,n){(0,s.default)(this.iconSet).off("click","li"),"inline"===n?e.find(t).removeClass("ip-inline-open"):"dialog"===n&&(0,s.default)(".icon-picker-close, .icon-picker-overlay").removeClass("make-visible"),(0,s.default)("body").trigger("iconpickerclose.queryloop",n),(0,s.default)(".icon-set").removeClass("dialog-open")}},{key:"setPreview",value:function(e){var t=(0,s.default)(this.element).find(".icon-preview");t.addClass("icon-preview-on").find("i").removeClass().addClass(this.iconSetName).addClass(e),t.find("a").show()}}]),e}();s.default.fn.qlIconPicker=function(e){return this.each(function(){s.default.data(this,"plugin_qlIconPicker")||s.default.data(this,"plugin_qlIconPicker",new c(this,e))}),this};var u=function(){function e(t){var n=this;i(this,e),this.items=(0,s.default)(),this.options=Object.assign({},this.defaults,t),(0,s.default)("[data-grav-iconpicker]").each(function(e,t){return n.addItem(t)}),(0,s.default)("body").on("mutation._grav",this._onAddedNodes.bind(this))}return a(e,[{key:"_onAddedNodes",value:function(e,t){var n=this,r=(0,s.default)(t).find("[data-grav-iconpicker]");r.length&&r.each(function(e,t){t=(0,s.default)(t),~n.items.index(t)||n.addItem(t)})}},{key:"addItem",value:function(e){e=(0,s.default)(e),this.items=this.items.add(e),e.find(".icon-picker").qlIconPicker({save:"class"}),(0,s.default)(".icon-set:not(:first)").remove()}}]),e}();t.default=u;t.Instance=new u;(0,s.default)(document).on("click",function(e){var t=(0,s.default)(e.target),n=".icon-set.dialog-open, .launch-icons[data-icons]";if(!t.is(n)&&!t.closest(n).length){var r=(0,s.default)(".icon-set.dialog-open");r.length&&r.each(function(e,t){var n=(0,s.default)(t).siblings(".icon-picker"),r=n.data("plugin_qlIconPicker");r.closePicker(n,(0,s.default)(r.iconSet),r.settings.mode)})}})},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.Instance=void 0;var a=function(){function e(e,t){for(var n=0;n').uniqueId("jqCron").insertAfter(a)}a.is(":input")&&(o.bind_to=o.bind_to||a),o.bind_to?(o.bind_to.is(":input")&&o.bind_to.blur(function(){var e=o.bind_method.get(o.bind_to);a.jqCronGetInstance().setCron(e)}),r=o.bind_method.get(o.bind_to),t=new jqCron(o),t.setCron(r)):t=new jqCron(o),e(this).data("jqCron",t)})}}.call(window,o.default),function(e){function t(t){function r(e,r,i){var o=new jqCronSelector(d,e,r,i);return o.$.bind("selector:open",function(){for(var e=n.length;e--;)if(n[e]!=d)n[e].closeSelectors();else for(var t=k.length;t--;)k[t]!=o&&k[t].close()}),o.$.bind("selector:change",function(){var e=!1;f&&(t.multiple_mins==t.multiple_time_minutes&&(o==a?e=s.setValue(a.getValue()):o==s&&(e=a.setValue(s.getValue()))), -e||p.trigger("cron:change",d.getCron()))}),k.push(o),o}var i,a,o,s,l,c,u,f=!1,d=this,h=this,p=e(''),m=e(''),v=e(''),g=e(''),y=e(''),_=e(''),b=e(''),w=e(''),x=e(''),k=[];this.disable=function(){p.addClass("disable"),t.disable=!0,d.closeSelectors()},this.isDisabled=function(){return 1==t.disable},this.enable=function(){p.removeClass("disable"),t.disable=!1},this.getCron=function(){var e=i.getValue(),t=["*","*","*","*","*"];return"hour"==e&&(t[0]=a.getCronValue()),"day"!=e&&"week"!=e&&"month"!=e&&"year"!=e||(t[0]=s.getCronValue(),t[1]=o.getCronValue()),"month"!=e&&"year"!=e||(t[2]=c.getCronValue()),"year"==e&&(t[3]=u.getCronValue()),"week"==e&&(t[4]=l.getCronValue()),t.join(" ")},this.setCron=function(e){if(e)try{e=e.replace(/\s+/g," ").replace(/^ +/,"").replace(/ +$/,"");var t=e.replace(/[^\* ]/g,"-").replace(/-+/g,"-").replace(/ +/g,""),n=e.split(" ");5!=n.length&&d.error(d.getText("error2")),"*****"==t?i.setValue("minute"):"-****"==t?(i.setValue("hour"),a.setCronValue(n[0]),s.setCronValue(n[0])):"***"==t.substring(2,t.length)?(i.setValue("day"),a.setCronValue(n[0]),s.setCronValue(n[0]),o.setCronValue(n[1])):"-**"==t.substring(2,t.length)?(i.setValue("month"),a.setCronValue(n[0]),s.setCronValue(n[0]),o.setCronValue(n[1]),c.setCronValue(n[2])):"**-"==t.substring(2,t.length)?(i.setValue("week"),a.setCronValue(n[0]),s.setCronValue(n[0]),o.setCronValue(n[1]),l.setCronValue(n[4])):"-*"==t.substring(3,t.length)?(i.setValue("year"),a.setCronValue(n[0]),s.setCronValue(n[0]),o.setCronValue(n[1]),c.setCronValue(n[2]),u.setCronValue(n[3])):d.error(d.getText("error4")),d.clearError()}catch(e){}},this.closeSelectors=function(){for(var e=k.length;e--;)k[e].close()},this.getId=function(){return h.attr("id")},this.getText=function(e){var n=t.texts[t.lang][e]||null;return"string"==typeof n&&n.match(")/gi,''),n=''+n+""),n},this.getHumanText=function(){var t=[];return p.find("> span > span:visible").find(".jqCron-text, .jqCron-selector > span").each(function(){var n=e(this).text().replace(/\s+$/g,"").replace(/^\s+/g,"");n&&t.push(n)}),t.join(" ").replace(/\s:\s/g,":")},this.getSettings=function(){return t},this.error=function(e){throw console&&console.error("[jqCron Error] "+e),p.addClass("jqCron-error").attr("title",e),e},this.clearError=function(){p.attr("title","").removeClass("jqCron-error")},this.clear=function(){c.setValue([]),l.setValue([]),a.setValue([]),u.setValue([]),o.setValue([]),s.setValue([]),d.triggerChange()},this.init=function(){var n,S,C;if(!f){for(t=jqCronMergeSettings(t),t.jquery_element||d.error(d.getText("error3")),h=t.jquery_element,h.append(p),p.data("id",t.id),p.data("jqCron",d),p.append(m),t.no_reset_button||p.append(x),!t.disable||p.addClass("disable"),m.append(v),/^(ko)$/i.test(t.lang)?m.append(y,g):m.append(g,y),m.append(_),m.append(b),m.append(w),x.click(function(){d.isDisabled()||d.clear()}),p.bind("cron:change",function(e,n){t.bind_to&&(t.bind_method.set&&t.bind_method.set(t.bind_to,n),d.clearError())}),v.append(d.getText("text_period")),i=r(v,!1,"period"),t.enabled_minute&&i.add("minute",d.getText("name_minute")),t.enabled_hour&&i.add("hour",d.getText("name_hour")),t.enabled_day&&i.add("day",d.getText("name_day")),t.enabled_week&&i.add("week",d.getText("name_week")),t.enabled_month&&i.add("month",d.getText("name_month")),t.enabled_year&&i.add("year",d.getText("name_year")),i.$.bind("selector:change",function(e,t){g.hide(),y.hide(),_.hide(),b.hide(),w.hide(),"hour"==t?_.show():"day"==t?w.show():"week"==t?(b.show(),w.show()):"month"==t?(g.show(),w.show()):"year"==t&&(g.show(),y.show(),w.show())}),i.setValue(t.default_period),_.append(d.getText("text_mins")),a=r(_,t.multiple_mins,"minutes"),n=0,C=t.minutes;n'),c=e(''),u=e(''),f={},d=[],h=!0,p=t.getSettings().numeric_zero_pad;this.getValue=function(){return r?d:d[0]},this.getCronValue=function(){if(0==d.length)return"*";var e,t=[d[0]],n=d[0],r=d[0],i=d.length;for(e=1;e"+n+"");l.append(i),f[t]=i,i.click(function(){r&&e(this).hasClass("selected")?s.removeValue(t):(s.addValue(t),r||s.close())})},this.$=u,n.find("b:eq(0)").after(u).remove(),u.addClass("jqCron-selector-"+n.find(".jqCron-selector").length).append(c).append(l).bind("selector:open",function(){if(h){var e=1,t=l.find("li").length;t>5&&t<=16?e=2:t>16&&t<=23?e=3:t>23&&t<=40?e=4:t>40&&(e=5),l.addClass("cols"+e)}l.show()}).bind("selector:close",function(){l.hide()}).bind("selector:change",function(){c.html(s.getTitleText())}).click(function(e){e.stopPropagation()}).trigger("selector:change"),e.fn.disableSelection&&u.disableSelection(),c.click(function(e){s.isOpened()||t.isDisabled()?s.close():s.open()}),s.close(),s.clear()}this.jqCronSelector=t}.call(window,o.default),function(e){var t=0,n=function(e){for(var n;;)if(t++,n=(e||"JQUID")+""+t,!document.getElementById(n))return n};e.fn.uniqueId=function(t){return this.each(function(){if(!e(this).attr("id")){var r=n(t);e(this).attr("id",r)}})}}.call(window,o.default),function(e){e.extend(e.expr[":"],{container:function(e){return(e.tagName+"").toLowerCase()in{a:1,abbr:1,acronym:1,address:1,b:1,big:1,blockquote:1,button:1,cite:1,code:1,dd:1,del:1,dfn:1,div:1,dt:1,em:1,fieldset:1,form:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,i:1,ins:1,kbd:1,label:1,li:1,p:1,pre:1,q:1,samp:1,small:1,span:1,strong:1,sub:1,sup:1,td:1,tt:1}},autoclose:function(e){return(e.tagName+"").toLowerCase()in{area:1,base:1,basefont:1,br:1,col:1,frame:1,hr:1,img:1,input:1,link:1,meta:1,param:1}}})}.call(window,o.default)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}var i=n(1),a=r(i);(0,a.default)(document).ready(function(){(0,a.default)(".copy-to-clipboard").click(function(e){var t=(0,a.default)("");(0,a.default)("body").append(t),t.val((0,a.default)(this).prev("input").val()).select(),document.execCommand("Copy"),t.remove(),(0,a.default)(this).attr("data-hint","Copied to clipboard!").addClass("hint--left")})})},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.b64_decode_unicode=t.b64_encode_unicode=t.Parents=t.Instances=void 0;var a=function(){function e(e,t){for(var n=0;n'),i=(0,s.default)(""),a=(0,s.default)(""),o=["fa"],l=["fa"];return t.children||"dir"===t.type?o.push("fa-folder"):"root"===t.type?o.push("fa-sitemap"):"file"===t.type&&o.push("fa-file-o"),i.addClass(o.join(" ")),r.text(t[e.labelKey]).prepend(i),r.appendTo(n),(t.children||"dir"===t.type)&&l.push("fa-caret-right"),a.addClass(l.join(" ")),a.appendTo(n),n}},{key:"createLoadingColumn",value:function(){return(0,s.default)('\n
\n
\n
Loading...
\n
\n
\n ')}},{key:"createErrorColumn",value:function(e){return(0,s.default)('\n
\n
\n \n '+e+"\n
\n
\n ")}}]),e}(),p=t.b64_encode_unicode=function(e){return btoa(encodeURIComponent(e).replace(/%([0-9A-F]{2})/g,function(e,t){return String.fromCharCode("0x"+t)}))},m=(t.b64_decode_unicode=function(e){return decodeURIComponent(atob(e).split("").map(function(e){return"%"+("00"+e.charCodeAt(0).toString(16)).slice(-2)}).join(""))},function(e){var t=e.closest("form");e.closest("[data-remodal-id]").length&&(t=(0,s.default)("form#blueprints"));var n={},r=t.find('[name="__unique_form_id__"]');return n["__form-name__"]=t.find('[name="__form-name__"]').val(),n["form-nonce"]=t.find('[name="form-nonce"]').val(),r.length&&(n.__unique_form_id__=r.val()),n});(0,s.default)(document).on("click","[data-parents]",function(e){e.preventDefault(),e.stopPropagation();var t=(0,s.default)(e.currentTarget),n=t.closest(".parents-wrapper").find("input[name]"),r=n.attr("name");n.length||(r=t.data("parents"),n=(0,s.default)('[name="'+t.data("parents")+'"]').first());var i=(0,s.default)('[data-remodal-id="'+(t.data("remodalTarget")||"parents")+'"]'),a=i.find(".grav-loading"),o=i.find(".parents-content");a.css("display","block"),o.html(""),s.default.ajax({url:""+u.config.current_url,method:"post",data:Object.assign({},m(t),{route:p(n.val()),field:n.data("fieldName"),action:"getLevelListing",initial:!0}),success:function(e){return a.css("display","none"),"error"===e.status?(o.html(e.message),!0):(d[r+"-"+i.data("remodalId")]?d[r+"-"+i.data("remodalId")].finder.reload(e.data):d[r+"-"+i.data("remodalId")]=new h(o,n,e.data),void i.data("parents",d[r+"-"+i.data("remodalId")]))}})}),(0,s.default)(document).on("click","[data-remodal-id].parents-container [data-parents-select]",function(e){var t=(0,s.default)(e.currentTarget).closest("[data-remodal-id]"),n=t.data("parents"),r=n.finder,i=n.field,a=n.parentLabel,o=n.parentName,l=r.findLastActive().item[0],c=l._item[r.config.valueKey],u=l._item[r.config.labelKey];i.val(c),a.text(c),o.text(u),r.config.defaultPath=c;var f=s.default.remodal.lookup[(0,s.default)('[data-remodal-id="'+t.data("remodalId")+'"]').data("remodal")];f.close()})},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.DEFAULTS=void 0;var a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o=function(){function e(e,t){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:this.data;this.createColumn(e),(this.config.defaultPath||""===this.config.defaultPath)&&this.goTo(e,this.config.defaultPath)}},{key:"createColumn",value:function(e,t){var n=this,r=function(e){return n.createColumn(e,t)};if("function"!=typeof e){if(Array.isArray(e)||"object"===("undefined"==typeof e?"undefined":a(e))){"object"===("undefined"==typeof e?"undefined":a(e))&&(e=Array.from(e));var i=this.createList(e),o=(0,l.default)("
");return o.append(i).addClass(this.config.className.col),this.$emitter.emit("create-column",o),o}throw new Error("Unknown data type")}e.call(this,t,r)}},{key:"createPathBar",value:function(){this.container.siblings("."+this.config.className.pathBar).remove();var e=(0,l.default)('
');return e.insertAfter(this.container),e}},{key:"clickEvent",value:function(e){e.stopPropagation(),e.preventDefault();var t=(0,l.default)(e.target),n=t.closest("."+this.config.className.col),r=t.closest("."+this.config.className.item);r.length&&this.$emitter.emit("item-selected",{column:n,item:r})}},{key:"keydownEvent",value:function(e){var t={37:"left",38:"up",39:"right",40:"down"};e.keyCode in t&&(e.stopPropagation(),e.preventDefault(),this.$emitter.emit("navigate",{direction:t[e.keyCode]}))}},{key:"itemSelected",value:function(e){var t=e.item;if(!t.length)return!1;var n=t[0]._item,r=e.column,i=n[this.config.childKey]||this.data,a=(0,l.default)(r).find("."+this.config.className.active);a.length&&a.removeClass(this.config.className.active),t.addClass(this.config.className.active),r.nextAll().remove(),this.container[0].focus(),window.scrollTo(window.pageXOffset,window.pageYOffset),this.updatePathBar();var o=void 0;return i?(o=this.createColumn(i,n),this.$emitter.emit("interior-selected",n)):this.$emitter.emit("leaf-selected",n),o}},{key:"addColumn",value:function(e){this.container.append(e),this.$emitter.emit("column-created",e)}},{key:"navigate",value:function(e){var t=this.findLastActive(),n=e.direction,r=void 0,i=void 0,a=void 0;t?(i=t.item,r=t.column,"up"===n&&i.prev().length?a=i.prev():"down"===n&&i.next().length?a=i.next():"right"===n&&r.next().length?(r=r.next(),a=r.find("."+this.config.className.item).first()):"left"===n&&r.prev().length&&(r=r.prev(),a=r.find("."+this.config.className.active).first()||r.find("."+this.config.className.item))):(r=this.container.find("."+this.config.className.col).first(),a=r.find("."+this.config.className.item).first()),a&&this.$emitter.emit("item-selected",{column:r,item:a})}},{key:"goTo",value:function(e,t){var n=this;t=Array.isArray(t)?t:t.split("/").map(function(e){return e.trim()}).filter(Boolean),t.length&&this.container.children().remove(),"function"==typeof e?e.call(this,null,function(e){return n.selectPath(t,e)}):this.selectPath(t,e)}},{key:"selectPath",value:function(e,t,n){var r=this;n=n||(e.length?this.createColumn(t):this.container.find("> ."+this.config.className.col));var i=e[0]||"",a=t.find(function(e){return e[r.config.itemKey]===i}),o=this.itemSelected({column:n,item:n.find('[data-fjs-item="'+i+'"]').first()});e.shift(),e.length&&this.selectPath(e,a[this.config.childKey],o)}},{key:"findLastActive",value:function(){var e=this.container.find("."+this.config.className.active);if(!e.length)return null;var t=e.last(),n=t.closest("."+this.config.className.col);return{item:t,column:n}}},{key:"createList",value:function(e){var t=this,n=(0,l.default)("'),c=e(''),u=e(''),f={},d=[],h=!0,p=t.getSettings().numeric_zero_pad;this.getValue=function(){return r?d:d[0]},this.getCronValue=function(){if(0==d.length)return"*";var e,t=[d[0]],n=d[0],r=d[0],i=d.length;for(e=1;e"+n+"");l.append(i),f[t]=i,i.click(function(){r&&e(this).hasClass("selected")?s.removeValue(t):(s.addValue(t),r||s.close())})},this.$=u,n.find("b:eq(0)").after(u).remove(),u.addClass("jqCron-selector-"+n.find(".jqCron-selector").length).append(c).append(l).bind("selector:open",function(){if(h){var e=1,t=l.find("li").length;t>5&&t<=16?e=2:t>16&&t<=23?e=3:t>23&&t<=40?e=4:t>40&&(e=5),l.addClass("cols"+e)}l.show()}).bind("selector:close",function(){l.hide()}).bind("selector:change",function(){c.html(s.getTitleText())}).click(function(e){e.stopPropagation()}).trigger("selector:change"),e.fn.disableSelection&&u.disableSelection(),c.click(function(e){s.isOpened()||t.isDisabled()?s.close():s.open()}),s.close(),s.clear()}this.jqCronSelector=t}.call(window,o.default),function(e){var t=0,n=function(e){for(var n;;)if(t++,n=(e||"JQUID")+""+t,!document.getElementById(n))return n};e.fn.uniqueId=function(t){return this.each(function(){if(!e(this).attr("id")){var r=n(t);e(this).attr("id",r)}})}}.call(window,o.default),function(e){e.extend(e.expr[":"],{container:function(e){return(e.tagName+"").toLowerCase()in{a:1,abbr:1,acronym:1,address:1,b:1,big:1,blockquote:1,button:1,cite:1,code:1,dd:1,del:1,dfn:1,div:1,dt:1,em:1,fieldset:1,form:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,i:1,ins:1,kbd:1,label:1,li:1,p:1,pre:1,q:1,samp:1,small:1,span:1,strong:1,sub:1,sup:1,td:1,tt:1}},autoclose:function(e){return(e.tagName+"").toLowerCase()in{area:1,base:1,basefont:1,br:1,col:1,frame:1,hr:1,img:1,input:1,link:1,meta:1,param:1}}})}.call(window,o.default)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}var i=n(1),a=r(i);(0,a.default)(document).ready(function(){(0,a.default)(".copy-to-clipboard").click(function(e){var t=(0,a.default)("");(0,a.default)("body").append(t),t.val((0,a.default)(this).prev("input").val()).select(),document.execCommand("Copy"),t.remove(),(0,a.default)(this).attr("data-hint","Copied to clipboard!").addClass("hint--left")})})},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.b64_decode_unicode=t.b64_encode_unicode=t.Parents=t.Instances=void 0;var a=function(){function e(e,t){for(var n=0;n'),i=(0,s.default)(""),a=(0,s.default)(""),o=["fa"],l=["fa"];return t.children||"dir"===t.type?o.push("fa-folder"):"root"===t.type?o.push("fa-sitemap"):"file"===t.type&&o.push("fa-file-o"),i.addClass(o.join(" ")),r.text(t[e.labelKey]).prepend(i),r.appendTo(n),(t.children||"dir"===t.type)&&l.push("fa-caret-right"),a.addClass(l.join(" ")),a.appendTo(n),n}},{key:"createLoadingColumn",value:function(){return(0,s.default)('\n
\n
\n
Loading...
\n
\n
\n ')}},{key:"createErrorColumn",value:function(e){return(0,s.default)('\n
\n
\n \n '+e+"\n
\n
\n ")}}]),e}(),p=t.b64_encode_unicode=function(e){return btoa(encodeURIComponent(e).replace(/%([0-9A-F]{2})/g,function(e,t){return String.fromCharCode("0x"+t)}))},m=(t.b64_decode_unicode=function(e){return decodeURIComponent(atob(e).split("").map(function(e){return"%"+("00"+e.charCodeAt(0).toString(16)).slice(-2)}).join(""))},function(e){var t=e.closest("form");e.closest("[data-remodal-id]").length&&(t=(0,s.default)("form#blueprints"));var n={},r=t.find('[name="__unique_form_id__"]');return n["__form-name__"]=t.find('[name="__form-name__"]').val(),n["form-nonce"]=t.find('[name="form-nonce"]').val(),r.length&&(n.__unique_form_id__=r.val()),n});(0,s.default)(document).on("click","[data-parents]",function(e){e.preventDefault(),e.stopPropagation();var t=(0,s.default)(e.currentTarget),n=t.closest(".parents-wrapper").find("input[name]"),r=n.attr("name");n.length||(r=t.data("parents"),n=(0,s.default)('[name="'+t.data("parents")+'"]').first());var i=(0,s.default)('[data-remodal-id="'+(t.data("remodalTarget")||"parents")+'"]'),a=i.find(".grav-loading"),o=i.find(".parents-content");a.css("display","block"),o.html(""),s.default.ajax({url:""+u.config.current_url,method:"post",data:Object.assign({},m(t),{route:p(n.val()),field:n.data("fieldName"),action:"getLevelListing",initial:!0}),success:function(e){return a.css("display","none"),"error"===e.status?(o.html(e.message),!0):(d[r+"-"+i.data("remodalId")]?d[r+"-"+i.data("remodalId")].finder.reload(e.data):d[r+"-"+i.data("remodalId")]=new h(o,n,e.data),void i.data("parents",d[r+"-"+i.data("remodalId")]))}})}),(0,s.default)(document).on("click","[data-remodal-id].parents-container [data-parents-select]",function(e){var t=(0,s.default)(e.currentTarget).closest("[data-remodal-id]"),n=t.data("parents"),r=n.finder,i=n.field,a=n.parentLabel,o=n.parentName,l=r.findLastActive().item[0],c=l._item[r.config.valueKey],u=l._item[r.config.labelKey];i.val(c),a.text(c),o.text(u),r.config.defaultPath=c;var f=s.default.remodal.lookup[(0,s.default)('[data-remodal-id="'+t.data("remodalId")+'"]').data("remodal")];f.close()})},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0}),t.DEFAULTS=void 0;var a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o=function(){function e(e,t){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:this.data;this.createColumn(e),(this.config.defaultPath||""===this.config.defaultPath)&&this.goTo(e,this.config.defaultPath)}},{key:"createColumn",value:function(e,t){var n=this,r=function(e){return n.createColumn(e,t)};if("function"!=typeof e){if(Array.isArray(e)||"object"===("undefined"==typeof e?"undefined":a(e))){"object"===("undefined"==typeof e?"undefined":a(e))&&(e=Array.from(e));var i=this.createList(e),o=(0,l.default)("
");return o.append(i).addClass(this.config.className.col),this.$emitter.emit("create-column",o),o}throw new Error("Unknown data type")}e.call(this,t,r)}},{key:"createPathBar",value:function(){this.container.siblings("."+this.config.className.pathBar).remove();var e=(0,l.default)('
');return e.insertAfter(this.container),e}},{key:"clickEvent",value:function(e){e.stopPropagation(),e.preventDefault();var t=(0,l.default)(e.target),n=t.closest("."+this.config.className.col),r=t.closest("."+this.config.className.item);r.length&&this.$emitter.emit("item-selected",{column:n,item:r})}},{key:"keydownEvent",value:function(e){var t={37:"left",38:"up",39:"right",40:"down"};e.keyCode in t&&(e.stopPropagation(),e.preventDefault(),this.$emitter.emit("navigate",{direction:t[e.keyCode]}))}},{key:"itemSelected",value:function(e){var t=e.item;if(!t.length)return!1;var n=t[0]._item,r=e.column,i=n[this.config.childKey]||this.data,a=(0,l.default)(r).find("."+this.config.className.active);a.length&&a.removeClass(this.config.className.active),t.addClass(this.config.className.active),r.nextAll().remove(),this.container[0].focus(),window.scrollTo(window.pageXOffset,window.pageYOffset),this.updatePathBar();var o=void 0;return i?(o=this.createColumn(i,n),this.$emitter.emit("interior-selected",n)):this.$emitter.emit("leaf-selected",n),o}},{key:"addColumn",value:function(e){this.container.append(e),this.$emitter.emit("column-created",e)}},{key:"navigate",value:function(e){var t=this.findLastActive(),n=e.direction,r=void 0,i=void 0,a=void 0;t?(i=t.item,r=t.column,"up"===n&&i.prev().length?a=i.prev():"down"===n&&i.next().length?a=i.next():"right"===n&&r.next().length?(r=r.next(),a=r.find("."+this.config.className.item).first()):"left"===n&&r.prev().length&&(r=r.prev(),a=r.find("."+this.config.className.active).first()||r.find("."+this.config.className.item))):(r=this.container.find("."+this.config.className.col).first(),a=r.find("."+this.config.className.item).first()),a&&this.$emitter.emit("item-selected",{column:r,item:a})}},{key:"goTo",value:function(e,t){var n=this;t=Array.isArray(t)?t:t.split("/").map(function(e){return e.trim()}).filter(Boolean),t.length&&this.container.children().remove(),"function"==typeof e?e.call(this,null,function(e){return n.selectPath(t,e)}):this.selectPath(t,e)}},{key:"selectPath",value:function(e,t,n){var r=this;n=n||(e.length?this.createColumn(t):this.container.find("> ."+this.config.className.col));var i=e[0]||"",a=t.find(function(e){return e[r.config.itemKey]===i}),o=this.itemSelected({column:n,item:n.find('[data-fjs-item="'+i+'"]').first()});e.shift(),e.length&&a&&this.selectPath(e,a[this.config.childKey],o)}},{key:"findLastActive",value:function(){var e=this.container.find("."+this.config.className.active);if(!e.length)return null;var t=e.last(),n=t.closest("."+this.config.className.col);return{item:t,column:n}}},{key:"createList",value:function(e){var t=this,n=(0,l.default)("