2812-2812.js 20 KB

12
  1. "use strict";(self.webpackChunknextcloud=self.webpackChunknextcloud||[]).push([[2812],{38762:(t,e,i)=>{i.d(e,{A:()=>o});var a=i(71354),n=i.n(a),l=i(76314),r=i.n(l)()(n());r.push([t.id,".template-field-modal__content[data-v-38092102]{padding:calc(var(--default-grid-baseline)*4)}.template-field-modal__content h3[data-v-38092102]{text-align:center}.template-field-modal__buttons[data-v-38092102]{display:flex;justify-content:flex-end;gap:var(--default-grid-baseline);margin:calc(var(--default-grid-baseline)*4);margin-top:0}","",{version:3,sources:["webpack://./apps/files/src/components/TemplateFiller.vue"],names:[],mappings:"AAGA,gDACC,4CAHc,CAKd,mDACC,iBAAA,CAIF,gDACC,YAAA,CACA,wBAAA,CACA,gCAAA,CACA,2CAdc,CAed,YAAA",sourcesContent:["\n$modal-margin: calc(var(--default-grid-baseline) * 4);\n\n.template-field-modal__content {\n\tpadding: $modal-margin;\n\n\th3 {\n\t\ttext-align: center;\n\t}\n}\n\n.template-field-modal__buttons {\n\tdisplay: flex;\n\tjustify-content: flex-end;\n\tgap: var(--default-grid-baseline);\n\tmargin: $modal-margin;\n\tmargin-top: 0;\n}\n"],sourceRoot:""}]);const o=r},21803:(t,e,i)=>{i.d(e,{A:()=>o});var a=i(71354),n=i.n(a),l=i(76314),r=i.n(l)()(n());r.push([t.id,".template-field__text[data-v-6cc559b7]{margin:20px 0}.template-field__text label[data-v-6cc559b7]{font-weight:bold}","",{version:3,sources:["webpack://./apps/files/src/components/TemplateFiller/TemplateTextField.vue"],names:[],mappings:"AACA,uCACC,aAAA,CAEA,6CACC,gBAAA",sourcesContent:["\n.template-field__text {\n\tmargin: 20px 0;\n\n\tlabel {\n\t\tfont-weight: bold;\n\t}\n}\n"],sourceRoot:""}]);const o=r},68280:(t,e,i)=>{i.d(e,{A:()=>o});var a=i(71354),n=i.n(a),l=i(76314),r=i.n(l)()(n());r.push([t.id,".template-picker__item[data-v-15948b5a]{display:flex}.template-picker__label[data-v-15948b5a]{display:flex;align-items:center;flex:1 1;flex-direction:column}.template-picker__label[data-v-15948b5a],.template-picker__label *[data-v-15948b5a]{cursor:pointer;user-select:none}.template-picker__label[data-v-15948b5a]::before{display:none !important}.template-picker__preview[data-v-15948b5a]{display:block;overflow:hidden;flex:1 1;width:var(--width);min-height:var(--height);max-height:var(--height);padding:0;border:var(--border) solid var(--color-border);border-radius:var(--border-radius-large)}input:checked+label>.template-picker__preview[data-v-15948b5a]{border-color:var(--color-primary-element)}.template-picker__preview--failed[data-v-15948b5a]{display:flex}.template-picker__image[data-v-15948b5a]{max-width:100%;background-color:var(--color-main-background);object-fit:cover}.template-picker__preview--failed .template-picker__image[data-v-15948b5a]{width:calc(var(--margin)*8);margin:auto;background-color:rgba(0,0,0,0) !important;object-fit:initial}.template-picker__title[data-v-15948b5a]{overflow:hidden;max-width:calc(var(--width) + 4px);padding:var(--margin);white-space:nowrap;text-overflow:ellipsis}","",{version:3,sources:["webpack://./apps/files/src/components/TemplatePreview.vue"],names:[],mappings:"AAGC,wCACC,YAAA,CAGD,yCACC,YAAA,CAEA,kBAAA,CACA,QAAA,CACA,qBAAA,CAEA,oFACC,cAAA,CACA,gBAAA,CAGD,iDACC,uBAAA,CAIF,2CACC,aAAA,CACA,eAAA,CAEA,QAAA,CACA,kBAAA,CACA,wBAAA,CACA,wBAAA,CACA,SAAA,CACA,8CAAA,CACA,wCAAA,CAEA,+DACC,yCAAA,CAGD,mDAEC,YAAA,CAIF,yCACC,cAAA,CACA,6CAAA,CAEA,gBAAA,CAID,2EACC,2BAAA,CAEA,WAAA,CACA,yCAAA,CAEA,kBAAA,CAGD,yCACC,eAAA,CAEA,kCAAA,CACA,qBAAA,CACA,kBAAA,CACA,sBAAA",sourcesContent:["\n\n.template-picker {\n\t&__item {\n\t\tdisplay: flex;\n\t}\n\n\t&__label {\n\t\tdisplay: flex;\n\t\t// Align in the middle of the grid\n\t\talign-items: center;\n\t\tflex: 1 1;\n\t\tflex-direction: column;\n\n\t\t&, * {\n\t\t\tcursor: pointer;\n\t\t\tuser-select: none;\n\t\t}\n\n\t\t&::before {\n\t\t\tdisplay: none !important;\n\t\t}\n\t}\n\n\t&__preview {\n\t\tdisplay: block;\n\t\toverflow: hidden;\n\t\t// Stretch so all entries are the same width\n\t\tflex: 1 1;\n\t\twidth: var(--width);\n\t\tmin-height: var(--height);\n\t\tmax-height: var(--height);\n\t\tpadding: 0;\n\t\tborder: var(--border) solid var(--color-border);\n\t\tborder-radius: var(--border-radius-large);\n\n\t\tinput:checked + label > & {\n\t\t\tborder-color: var(--color-primary-element);\n\t\t}\n\n\t\t&--failed {\n\t\t\t// Make sure to properly center fallback icon\n\t\t\tdisplay: flex;\n\t\t}\n\t}\n\n\t&__image {\n\t\tmax-width: 100%;\n\t\tbackground-color: var(--color-main-background);\n\n\t\tobject-fit: cover;\n\t}\n\n\t// Failed preview, fallback to mime icon\n\t&__preview--failed &__image {\n\t\twidth: calc(var(--margin) * 8);\n\t\t// Center mime icon\n\t\tmargin: auto;\n\t\tbackground-color: transparent !important;\n\n\t\tobject-fit: initial;\n\t}\n\n\t&__title {\n\t\toverflow: hidden;\n\t\t// also count preview border\n\t\tmax-width: calc(var(--width) + 2*2px);\n\t\tpadding: var(--margin);\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t}\n}\n\n"],sourceRoot:""}]);const o=r},4573:(t,e,i)=>{i.d(e,{A:()=>o});var a=i(71354),n=i.n(a),l=i(76314),r=i.n(l)()(n());r.push([t.id,".templates-picker__form[data-v-141f3ac3]{padding:calc(var(--margin)*2);padding-bottom:0}.templates-picker__form h2[data-v-141f3ac3]{text-align:center;font-weight:bold;margin:var(--margin) 0 calc(var(--margin)*2)}.templates-picker__list[data-v-141f3ac3]{display:grid;grid-gap:calc(var(--margin)*2);grid-auto-columns:1fr;max-width:calc(var(--fullwidth)*6);grid-template-columns:repeat(auto-fit, var(--fullwidth));grid-auto-rows:1fr;justify-content:center}.templates-picker__buttons[data-v-141f3ac3]{display:flex;justify-content:end;padding:calc(var(--margin)*2) var(--margin);position:sticky;bottom:0;background-image:linear-gradient(0, var(--gradient-main-background))}.templates-picker__buttons button[data-v-141f3ac3],.templates-picker__buttons input[type=submit][data-v-141f3ac3]{height:44px}.templates-picker[data-v-141f3ac3] .modal-container{position:relative}.templates-picker__loading[data-v-141f3ac3]{position:absolute;top:0;left:0;justify-content:center;width:100%;height:100%;margin:0;background-color:var(--color-main-background-translucent)}","",{version:3,sources:["webpack://./apps/files/src/views/TemplatePicker.vue"],names:[],mappings:"AAEC,yCACC,6BAAA,CAEA,gBAAA,CAEA,4CACC,iBAAA,CACA,gBAAA,CACA,4CAAA,CAIF,yCACC,YAAA,CACA,8BAAA,CACA,qBAAA,CAEA,kCAAA,CACA,wDAAA,CAEA,kBAAA,CAEA,sBAAA,CAGD,4CACC,YAAA,CACA,mBAAA,CACA,2CAAA,CACA,eAAA,CACA,QAAA,CACA,oEAAA,CAEA,kHACC,WAAA,CAKF,oDACC,iBAAA,CAGD,4CACC,iBAAA,CACA,KAAA,CACA,MAAA,CACA,sBAAA,CACA,UAAA,CACA,WAAA,CACA,QAAA,CACA,yDAAA",sourcesContent:["\n.templates-picker {\n\t&__form {\n\t\tpadding: calc(var(--margin) * 2);\n\t\t// Will be handled by the buttons\n\t\tpadding-bottom: 0;\n\n\t\th2 {\n\t\t\ttext-align: center;\n\t\t\tfont-weight: bold;\n\t\t\tmargin: var(--margin) 0 calc(var(--margin) * 2);\n\t\t}\n\t}\n\n\t&__list {\n\t\tdisplay: grid;\n\t\tgrid-gap: calc(var(--margin) * 2);\n\t\tgrid-auto-columns: 1fr;\n\t\t// We want maximum 5 columns. Putting 6 as we don't count the grid gap. So it will always be lower than 6\n\t\tmax-width: calc(var(--fullwidth) * 6);\n\t\tgrid-template-columns: repeat(auto-fit, var(--fullwidth));\n\t\t// Make sure all rows are the same height\n\t\tgrid-auto-rows: 1fr;\n\t\t// Center the columns set\n\t\tjustify-content: center;\n\t}\n\n\t&__buttons {\n\t\tdisplay: flex;\n\t\tjustify-content: end;\n\t\tpadding: calc(var(--margin) * 2) var(--margin);\n\t\tposition: sticky;\n\t\tbottom: 0;\n\t\tbackground-image: linear-gradient(0, var(--gradient-main-background));\n\n\t\tbutton, input[type='submit'] {\n\t\t\theight: 44px;\n\t\t}\n\t}\n\n\t// Make sure we're relative for the loading emptycontent on top\n\t::v-deep .modal-container {\n\t\tposition: relative;\n\t}\n\n\t&__loading {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tjustify-content: center;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tmargin: 0;\n\t\tbackground-color: var(--color-main-background-translucent);\n\t}\n}\n\n"],sourceRoot:""}]);const o=r},21266:(t,e,i)=>{i.r(e),i.d(e,{default:()=>O});var a=i(21777),n=i(85168),l=i(61338),r=i(31346),o=i(53334),s=i(63814),d=i(43627),c=i(85471),A=i(65043),p=i(34196),m=i(71650),u=i(71225);const v=256,h={name:"TemplatePreview",inheritAttrs:!1,props:{basename:{type:String,required:!0},checked:{type:Boolean,default:!1},fileid:{type:[String,Number],required:!0},filename:{type:String,required:!0},previewUrl:{type:String,default:null},hasPreview:{type:Boolean,default:!0},mime:{type:String,required:!0},ratio:{type:Number,default:null}},data:()=>({failedPreview:!1}),computed:{nameWithoutExt(){return this.basename.indexOf(".")>-1?this.basename.split(".").slice(0,-1).join("."):this.basename},id(){return"template-picker-".concat(this.fileid)},realPreviewUrl(){return this.failedPreview&&this.mimeIcon?this.mimeIcon:this.previewUrl?this.previewUrl:(0,a.HW)()?(0,s.Jv)("/core/preview?fileId=".concat(this.fileid,"&x=").concat(v,"&y=").concat(v,"&a=1")):(0,s.Jv)("/apps/files_sharing/publicpreview/".concat(document.getElementById("sharingToken")&&document.getElementById("sharingToken").value,"?fileId=").concat(this.fileid,"&file=").concat((0,u.O0)(this.filename),"&x=").concat(v,"&y=").concat(v,"&a=1"))},mimeIcon(){return OC.MimeType.getIconUrl(this.mime)}},methods:{onCheck(){this.$emit("check",this.fileid)},onFailure(){this.failedPreview=!0}}};var f=i(85072),g=i.n(f),C=i(97825),b=i.n(C),_=i(77659),w=i.n(_),y=i(55056),k=i.n(y),x=i(10540),N=i.n(x),T=i(41113),P=i.n(T),B=i(68280),F={};F.styleTagTransform=P(),F.setAttributes=k(),F.insert=w().bind(null,"head"),F.domAPI=b(),F.insertStyleElement=N(),g()(B.A,F),B.A&&B.A.locals&&B.A.locals;var E=i(14486);const I=(0,E.A)(h,(function(){var t=this,e=t._self._c;return e("li",{staticClass:"template-picker__item"},[e("input",{staticClass:"radio",attrs:{id:t.id,type:"radio",name:"template-picker"},domProps:{checked:t.checked},on:{change:t.onCheck}}),t._v(" "),e("label",{staticClass:"template-picker__label",attrs:{for:t.id}},[e("div",{staticClass:"template-picker__preview",class:t.failedPreview?"template-picker__preview--failed":""},[e("img",{staticClass:"template-picker__image",attrs:{src:t.realPreviewUrl,alt:"",draggable:"false"},on:{error:t.onFailure}})]),t._v(" "),e("span",{staticClass:"template-picker__title"},[t._v("\n\t\t\t"+t._s(t.nameWithoutExt)+"\n\t\t")])])])}),[],!1,null,"15948b5a",null).exports;var S=i(76333);const D=(0,c.pM)({name:"TemplateTextField",components:{NcTextField:S.v},props:{field:{type:Object,default:()=>{}}},data:()=>({value:""}),computed:{fieldLabel(){var t,e;const i=null!==(t=null!==(e=this.field.name)&&void 0!==e?e:this.field.alias)&&void 0!==t?t:"Unknown field";return i.charAt(0).toUpperCase()+i.slice(1)},fieldId(){return"text-field"+this.field.index}}});var L=i(21803),M={};M.styleTagTransform=P(),M.setAttributes=k(),M.insert=w().bind(null,"head"),M.domAPI=b(),M.insertStyleElement=N(),g()(L.A,M),L.A&&L.A.locals&&L.A.locals;const j=(0,E.A)(D,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{staticClass:"template-field__text"},[e("label",{attrs:{for:t.fieldId}},[t._v("\n\t\t"+t._s(t.fieldLabel)+"\n\t")]),t._v(" "),e("NcTextField",{attrs:{id:t.fieldId,type:"text",value:t.value,label:t.fieldLabel,"label-outside":!0,placeholder:t.field.content},on:{"update:value":function(e){t.value=e},input:function(e){return t.$emit("input",[t.value,t.field.index])}}})],1)}),[],!1,null,"6cc559b7",null).exports,G=(0,c.pM)({name:"TemplateFiller",components:{NcModal:S.FH,NcButton:S.x1,NcLoadingIcon:S.ne,TemplateTextField:j},props:{fields:{type:Array,default:()=>[]},onSubmit:{type:Function,default:async()=>{}}},data:()=>({localFields:{},loading:!1}),methods:{t:o.Tl,trackInput(t){let[e,i]=t;this.localFields[i]={content:e}},async submit(){this.loading=!0,await this.onSubmit(this.localFields),this.$emit("close")}}});var W=i(38762),U={};U.styleTagTransform=P(),U.setAttributes=k(),U.insert=w().bind(null,"head"),U.domAPI=b(),U.insertStyleElement=N(),g()(W.A,U),W.A&&W.A.locals&&W.A.locals;const z=(0,E.A)(G,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcModal",[e("div",{staticClass:"template-field-modal__content"},[e("form",[e("h3",[t._v(t._s(t.t("files","Fill template fields")))]),t._v(" "),t._l(t.fields,(function(i){return e("div",{key:i.index},["rich-text"==i.type?e("TemplateTextField",{attrs:{field:i},on:{input:t.trackInput}}):t._e()],1)}))],2)]),t._v(" "),e("div",{staticClass:"template-field-modal__buttons"},[t.loading?e("NcLoadingIcon",{attrs:{name:t.t("files","Submitting fields…")}}):t._e(),t._v(" "),e("NcButton",{attrs:{"aria-label":"Submit button",type:"primary"},on:{click:t.submit}},[t._v("\n\t\t\t"+t._s(t.t("files","Submit"))+"\n\t\t")])],1)])}),[],!1,null,"38092102",null).exports;var R=i(76150);const X=(0,c.pM)({name:"TemplatePicker",components:{NcEmptyContent:p.A,NcModal:m.A,TemplatePreview:I},props:{parent:{type:Object,default:()=>null}},data:()=>({checked:-1,loading:!1,name:null,opened:!1,provider:null}),computed:{extension(){var t;return(0,d.extname)(null!==(t=this.name)&&void 0!==t?t:"")},nameWithoutExt(){return this.extension?this.name.slice(0,0-this.extension.length):this.name},emptyTemplate(){var t,e;return{basename:(0,o.Tl)("files","Blank"),fileid:-1,filename:(0,o.Tl)("files","Blank"),hasPreview:!1,mime:(null===(t=this.provider)||void 0===t?void 0:t.mimetypes[0])||(null===(e=this.provider)||void 0===e?void 0:e.mimetypes)}},selectedTemplate(){return this.provider?this.provider.templates.find((t=>t.fileid===this.checked)):null},style(){if(!this.provider)return{};const t=(this.provider.ratio?this.provider.ratio:1.77)>1?240:160;return{"--margin":"8px","--width":t+"px","--border":"2px","--fullwidth":t+16+4+"px","--height":this.provider.ratio?Math.round(t/this.provider.ratio)+"px":null}}},methods:{t:o.Tl,async open(t,e){this.checked=this.emptyTemplate.fileid,this.name=t,this.provider=e;const i=(await async function(){return(await A.Ay.get((0,s.KT)("apps/files/api/v1/templates"))).data.ocs.data}()).find((t=>t.app===e.app&&t.label===e.label));if(null===i)throw new Error("Failed to match provider in results");this.provider=i,0!==i.templates.length?this.opened=!0:this.onSubmit()},close(){this.checked=this.emptyTemplate.fileid,this.loading=!1,this.name=null,this.opened=!1,this.provider=null},onCheck(t){this.checked=t},async createFile(t){const e=new URL(window.location.href).searchParams.get("dir")||"/";var i,c,p;this.nameWithoutExt===this.name&&(R.A.warn("Fixed invalid filename",{name:this.name,extension:null===(i=this.provider)||void 0===i?void 0:i.extension}),this.name="".concat(this.name).concat(null!==(c=null===(p=this.provider)||void 0===p?void 0:p.extension)&&void 0!==c?c:""));try{var m,u,v,h,f,g,C,b;const i=await async function(t,e,i,a){return(await A.Ay.post((0,s.KT)("apps/files/api/v1/templates/create"),{filePath:t,templatePath:e,templateType:i,templateFields:a})).data.ocs.data}((0,d.normalize)("".concat(e,"/").concat(this.name)),null!==(m=null===(u=this.selectedTemplate)||void 0===u?void 0:u.filename)&&void 0!==m?m:"",null!==(v=null===(h=this.selectedTemplate)||void 0===h?void 0:h.templateType)&&void 0!==v?v:"",t);R.A.debug("Created new file",i);const n=(null===(f=(0,a.HW)())||void 0===f?void 0:f.uid)||null,o=new r.ZH({id:i.fileid,source:(0,s.dC)((0,d.join)("dav/files/".concat(n),i.filename)),root:"/files/".concat(n),mime:i.mime,mtime:new Date(1e3*i.lastmod),owner:n,size:i.size,permissions:i.permissions,attributes:{"mount-type":null===(g=this.parent)||void 0===g||null===(g=g.attributes)||void 0===g?void 0:g["mount-type"],"owner-id":null===(C=this.parent)||void 0===C||null===(C=C.attributes)||void 0===C?void 0:C["owner-id"],"owner-display-name":null===(b=this.parent)||void 0===b||null===(b=b.attributes)||void 0===b?void 0:b["owner-display-name"],...i,"has-preview":i.hasPreview}});(0,l.Ic)("files:node:created",o),window.OCP.Files.Router.goToRoute(null,{view:"files",fileid:o.fileid},{dir:o.dirname,openfile:"true"}),this.close()}catch(t){R.A.error("Error while creating the new file from template",{error:t}),(0,n.Qg)((0,o.Tl)("files","Unable to create new file from template"))}finally{this.loading=!1}},async onSubmit(){var t;this.loading=!0,null!==(t=this.selectedTemplate)&&void 0!==t&&t.fields?(0,n.Ss)(z,{fields:this.selectedTemplate.fields,onSubmit:this.createFile}):await this.createFile()}}});var q=i(4573),H={};H.styleTagTransform=P(),H.setAttributes=k(),H.insert=w().bind(null,"head"),H.domAPI=b(),H.insertStyleElement=N(),g()(q.A,H),q.A&&q.A.locals&&q.A.locals;const O=(0,E.A)(X,(function(){var t=this,e=t._self._c;return t._self._setupProxy,t.opened?e("NcModal",{staticClass:"templates-picker",attrs:{"clear-view-delay":-1,size:"large"},on:{close:t.close}},[e("form",{staticClass:"templates-picker__form",style:t.style,on:{submit:function(e){return e.preventDefault(),e.stopPropagation(),t.onSubmit.apply(null,arguments)}}},[e("h2",[t._v(t._s(t.t("files","Pick a template for {name}",{name:t.nameWithoutExt})))]),t._v(" "),e("ul",{staticClass:"templates-picker__list"},[e("TemplatePreview",t._b({attrs:{checked:t.checked===t.emptyTemplate.fileid},on:{check:t.onCheck}},"TemplatePreview",t.emptyTemplate,!1)),t._v(" "),t._l(t.provider.templates,(function(i){return e("TemplatePreview",t._b({key:i.fileid,attrs:{checked:t.checked===i.fileid,ratio:t.provider.ratio},on:{check:t.onCheck}},"TemplatePreview",i,!1))}))],2),t._v(" "),e("div",{staticClass:"templates-picker__buttons"},[e("input",{staticClass:"primary",attrs:{type:"submit","aria-label":t.t("files","Create a new file with the selected template")},domProps:{value:t.t("files","Create")}})])]),t._v(" "),t.loading?e("NcEmptyContent",{staticClass:"templates-picker__loading",attrs:{icon:"icon-loading"}},[t._v("\n\t\t"+t._s(t.t("files","Creating file"))+"\n\t")]):t._e()],1):t._e()}),[],!1,null,"141f3ac3",null).exports},27518:t=>{t.exports="data:image/svg+xml,%3c%21--%20-%20SPDX-FileCopyrightText:%202020%20Google%20Inc.%20-%20SPDX-License-Identifier:%20Apache-2.0%20--%3e%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20width=%2724%27%20height=%2724%27%20fill=%27%23222%27%3e%3cpath%20d=%27M15.4%2016.6L10.8%2012l4.6-4.6L14%206l-6%206%206%206%201.4-1.4z%27/%3e%3c/svg%3e"},27514:t=>{t.exports="data:image/svg+xml,%3c%21--%20-%20SPDX-FileCopyrightText:%202020%20Google%20Inc.%20-%20SPDX-License-Identifier:%20Apache-2.0%20--%3e%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20width=%2724%27%20height=%2724%27%20fill=%27%23222%27%3e%3cpath%20d=%27M18.4%207.4L17%206l-6%206%206%206%201.4-1.4-4.6-4.6%204.6-4.6m-6%200L11%206l-6%206%206%206%201.4-1.4L7.8%2012l4.6-4.6z%27/%3e%3c/svg%3e"},79722:t=>{t.exports="data:image/svg+xml,%3c%21--%20-%20SPDX-FileCopyrightText:%202020%20Google%20Inc.%20-%20SPDX-License-Identifier:%20Apache-2.0%20--%3e%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20width=%2724%27%20height=%2724%27%20fill=%27%23222%27%3e%3cpath%20d=%27M5.6%207.4L7%206l6%206-6%206-1.4-1.4%204.6-4.6-4.6-4.6m6%200L13%206l6%206-6%206-1.4-1.4%204.6-4.6-4.6-4.6z%27/%3e%3c/svg%3e"},86886:t=>{t.exports="data:image/svg+xml,%3c%21--%20-%20SPDX-FileCopyrightText:%202020%20Google%20Inc.%20-%20SPDX-License-Identifier:%20Apache-2.0%20--%3e%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20width=%2724%27%20height=%2724%27%20fill=%27%23222%27%3e%3cpath%20d=%27M8.6%2016.6l4.6-4.6-4.6-4.6L10%206l6%206-6%206-1.4-1.4z%27/%3e%3c/svg%3e"},76333:(t,e,i)=>{i.d(e,{AO:()=>M.N,Az:()=>o.N,B6:()=>A.N,EQ:()=>ut.N,FH:()=>lt.A,K1:()=>tt.N,Qz:()=>D.N,R1:()=>S.N,i$:()=>O.N,lT:()=>X.N,ne:()=>nt.A,v:()=>vt.N,x1:()=>L.A,yI:()=>K.A}),i(28054);var a=i(89257),n=i(4176),l=i(30567),r=i(3441),o=i(43073),s=i(73267),d=i(15683),c=i(93806),A=i(34441),p=i(80114),m=i(32831),u=i(98060),v=i(93025),h=i(47611),f=i(10363),g=i(42373),C=i(19119),b=i(20377),_=i(44929),w=i(80329),y=i(62720),k=i(11167),x=i(62450),N=i(63527),T=i(66687),P=i(91841),B=i(85948),F=i(89438),E=i(46503),I=i(68763),S=i(35147),D=i(64698),L=i(54332),M=i(97143),j=i(81756),G=i(57330),W=i(67105),U=i(5569),z=i(77530),R=i(87277),X=i(60296),q=i(18311),H=i(31126),O=i(7271),Q=i(17635),Y=i(68296),$=i(38608),K=i(34196),J=i(78298),Z=i(49708),V=i(94659),tt=i(15676),et=i(18045),it=i(37210),at=i(70225),nt=i(84237),lt=i(71650),rt=i(52201),ot=i(28957),st=i(28640),dt=i(97595),ct=i(10821),At=i(23596),pt=i(84595),mt=i(87565),ut=(i(40708),i(86148),i(65043),i(21777),i(52169)),vt=i(804),ht=(i(61338),i(12679)),ft=i(49101),gt=i(81012),Ct=i(73142),bt=i(20472),_t=i(42740),wt=i(7810),yt=i(78900),kt=i(50037),xt=i(23610),Nt=(i(23020),i(53429),i(9050),i(64077),i(42892)),Tt=i(65842),Pt=(i(18300),i(75105),i(92471),i(16406),i(2508));a.A,n.N,l.A,r.A,o.N,s.A,d.A,c.A,p.A,m.A,u.A,A.N,v.N,h.A,f.A,g.N,C.N,b.A,_.N,w.A,y.A,k.N,x.N,N.N,T.A,P.N,B.A,F.N,E.A,pt.N,I.N,S.N,D.N,L.A,M.N,j.N,G.N,W.N,U.A,z.N,R.N,X.N,q.A,H.A,O.N,Q.N,Y.A,$.N,K.A,J.A,Z.N,V.N,tt.N,et.A,it.N,at.N,nt.A,At.N,lt.A,rt.A,ot.N,st.N,dt.N,ct.N,pt.a,mt.N,ht.N,ut.N,ft.N,gt.N,Ct.N,bt.N,_t.A,vt.N,wt.N,yt.N,kt.N,xt.A,Symbol.toStringTag,Nt.u,Tt.u,Pt.yw,Symbol.toStringTag}}]);
  2. //# sourceMappingURL=2812-2812.js.map?v=538011788243d1523b2f